Skip to content

Commit bedbcfa

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 87032
1 parent e0c7fa8 commit bedbcfa

12 files changed

+176
-24
lines changed

src/Beta/Microsoft/Graph/Model/Application.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function setAppId($val)
8989

9090
/**
9191
* Gets the appRoles
92-
* The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
92+
* The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
9393
*
9494
* @return array|null The appRoles
9595
*/
@@ -104,7 +104,7 @@ public function getAppRoles()
104104

105105
/**
106106
* Sets the appRoles
107-
* The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
107+
* The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
108108
*
109109
* @param AppRole[] $val The appRoles
110110
*

src/Beta/Microsoft/Graph/Model/ConditionalAccessApplications.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,37 @@
2323
*/
2424
class ConditionalAccessApplications extends Entity
2525
{
26+
27+
/**
28+
* Gets the applicationFilter
29+
*
30+
* @return ConditionalAccessFilter|null The applicationFilter
31+
*/
32+
public function getApplicationFilter()
33+
{
34+
if (array_key_exists("applicationFilter", $this->_propDict)) {
35+
if (is_a($this->_propDict["applicationFilter"], "\Beta\Microsoft\Graph\Model\ConditionalAccessFilter") || is_null($this->_propDict["applicationFilter"])) {
36+
return $this->_propDict["applicationFilter"];
37+
} else {
38+
$this->_propDict["applicationFilter"] = new ConditionalAccessFilter($this->_propDict["applicationFilter"]);
39+
return $this->_propDict["applicationFilter"];
40+
}
41+
}
42+
return null;
43+
}
44+
45+
/**
46+
* Sets the applicationFilter
47+
*
48+
* @param ConditionalAccessFilter $val The value to assign to the applicationFilter
49+
*
50+
* @return ConditionalAccessApplications The ConditionalAccessApplications
51+
*/
52+
public function setApplicationFilter($val)
53+
{
54+
$this->_propDict["applicationFilter"] = $val;
55+
return $this;
56+
}
2657
/**
2758
* Gets the excludeApplications
2859
* Can be one of the following: The list of client IDs (appId) explicitly excluded from the policy. Office365 - For the list of apps included in Office365, see Conditional Access target apps: Office 365

src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,35 @@ public function setIncludeServicePrincipals($val)
7979
$this->_propDict["includeServicePrincipals"] = $val;
8080
return $this;
8181
}
82+
83+
/**
84+
* Gets the servicePrincipalFilter
85+
*
86+
* @return ConditionalAccessFilter|null The servicePrincipalFilter
87+
*/
88+
public function getServicePrincipalFilter()
89+
{
90+
if (array_key_exists("servicePrincipalFilter", $this->_propDict)) {
91+
if (is_a($this->_propDict["servicePrincipalFilter"], "\Beta\Microsoft\Graph\Model\ConditionalAccessFilter") || is_null($this->_propDict["servicePrincipalFilter"])) {
92+
return $this->_propDict["servicePrincipalFilter"];
93+
} else {
94+
$this->_propDict["servicePrincipalFilter"] = new ConditionalAccessFilter($this->_propDict["servicePrincipalFilter"]);
95+
return $this->_propDict["servicePrincipalFilter"];
96+
}
97+
}
98+
return null;
99+
}
100+
101+
/**
102+
* Sets the servicePrincipalFilter
103+
*
104+
* @param ConditionalAccessFilter $val The value to assign to the servicePrincipalFilter
105+
*
106+
* @return ConditionalAccessClientApplications The ConditionalAccessClientApplications
107+
*/
108+
public function setServicePrincipalFilter($val)
109+
{
110+
$this->_propDict["servicePrincipalFilter"] = $val;
111+
return $this;
112+
}
82113
}

src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingApplicability.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public function setPlatform($val)
120120

121121
/**
122122
* Gets the technologies
123-
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, unknownFutureValue.
123+
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, enrollment, unknownFutureValue.
124124
*
125125
* @return DeviceManagementConfigurationTechnologies|null The technologies
126126
*/
@@ -139,7 +139,7 @@ public function getTechnologies()
139139

140140
/**
141141
* Sets the technologies
142-
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, unknownFutureValue.
142+
* Which technology channels this setting can be deployed through. Possible values are: none, mdm, windows10XManagement, configManager, appleRemoteManagement, microsoftSense, exchangeOnline, linuxMdm, enrollment, unknownFutureValue.
143143
*
144144
* @param DeviceManagementConfigurationTechnologies $val The value to assign to the technologies
145145
*

src/Beta/Microsoft/Graph/Model/EducationSynchronizationProfileStatus.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function setErrorCount($val)
5555

5656
/**
5757
* Gets the lastActivityDateTime
58-
* Represents the time when most recent changes were observed in profile.
58+
* Date and time when most recent changes were observed in the profile.
5959
*
6060
* @return \DateTime|null The lastActivityDateTime
6161
*/
@@ -74,7 +74,7 @@ public function getLastActivityDateTime()
7474

7575
/**
7676
* Sets the lastActivityDateTime
77-
* Represents the time when most recent changes were observed in profile.
77+
* Date and time when most recent changes were observed in the profile.
7878
*
7979
* @param \DateTime $val The lastActivityDateTime
8080
*
@@ -88,7 +88,7 @@ public function setLastActivityDateTime($val)
8888

8989
/**
9090
* Gets the lastSynchronizationDateTime
91-
* Represents the time of the most recent successful synchronization.
91+
* Date and time of the most recent successful synchronization.
9292
*
9393
* @return \DateTime|null The lastSynchronizationDateTime
9494
*/
@@ -107,7 +107,7 @@ public function getLastSynchronizationDateTime()
107107

108108
/**
109109
* Sets the lastSynchronizationDateTime
110-
* Represents the time of the most recent successful synchronization.
110+
* Date and time of the most recent successful synchronization.
111111
*
112112
* @param \DateTime $val The lastSynchronizationDateTime
113113
*
@@ -154,7 +154,7 @@ public function setStatus($val)
154154

155155
/**
156156
* Gets the statusMessage
157-
* Status message for the current profile's synchronization stage.
157+
* Status message for the synchronization stage of the current profile.
158158
*
159159
* @return string|null The statusMessage
160160
*/
@@ -169,7 +169,7 @@ public function getStatusMessage()
169169

170170
/**
171171
* Sets the statusMessage
172-
* Status message for the current profile's synchronization stage.
172+
* Status message for the synchronization stage of the current profile.
173173
*
174174
* @param string $val The statusMessage
175175
*

src/Beta/Microsoft/Graph/Model/Identity.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Identity extends Entity
2525
{
2626
/**
2727
* Gets the displayName
28-
* The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won't show up as having changed when using delta.
28+
* The display name of the identity. This property is read-only.
2929
*
3030
* @return string|null The displayName
3131
*/
@@ -40,7 +40,7 @@ public function getDisplayName()
4040

4141
/**
4242
* Sets the displayName
43-
* The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won't show up as having changed when using delta.
43+
* The display name of the identity. This property is read-only.
4444
*
4545
* @param string $val The value of the displayName
4646
*
@@ -53,7 +53,7 @@ public function setDisplayName($val)
5353
}
5454
/**
5555
* Gets the id
56-
* Unique identifier for the identity.
56+
* The identifier of the identity. This property is read-only.
5757
*
5858
* @return string|null The id
5959
*/
@@ -68,7 +68,7 @@ public function getId()
6868

6969
/**
7070
* Sets the id
71-
* Unique identifier for the identity.
71+
* The identifier of the identity. This property is read-only.
7272
*
7373
* @param string $val The value of the id
7474
*

src/Beta/Microsoft/Graph/Model/IdentitySet.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class IdentitySet extends Entity
2626

2727
/**
2828
* Gets the application
29-
* The Identity of the Application. This property is read-only.
29+
* Optional. The application associated with this action.
3030
*
3131
* @return Identity|null The application
3232
*/
@@ -45,7 +45,7 @@ public function getApplication()
4545

4646
/**
4747
* Sets the application
48-
* The Identity of the Application. This property is read-only.
48+
* Optional. The application associated with this action.
4949
*
5050
* @param Identity $val The value to assign to the application
5151
*
@@ -59,7 +59,7 @@ public function setApplication($val)
5959

6060
/**
6161
* Gets the device
62-
* The Identity of the Device. This property is read-only.
62+
* Optional. The device associated with this action.
6363
*
6464
* @return Identity|null The device
6565
*/
@@ -78,7 +78,7 @@ public function getDevice()
7878

7979
/**
8080
* Sets the device
81-
* The Identity of the Device. This property is read-only.
81+
* Optional. The device associated with this action.
8282
*
8383
* @param Identity $val The value to assign to the device
8484
*
@@ -92,7 +92,7 @@ public function setDevice($val)
9292

9393
/**
9494
* Gets the user
95-
* The Identity of the User. This property is read-only.
95+
* Optional. The user associated with this action.
9696
*
9797
* @return Identity|null The user
9898
*/
@@ -111,7 +111,7 @@ public function getUser()
111111

112112
/**
113113
* Sets the user
114-
* The Identity of the User. This property is read-only.
114+
* Optional. The user associated with this action.
115115
*
116116
* @param Identity $val The value to assign to the user
117117
*

src/Beta/Microsoft/Graph/Model/KeyValue.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class KeyValue extends Entity
2525
{
2626
/**
2727
* Gets the key
28-
* Key.
28+
* Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.
2929
*
3030
* @return string|null The key
3131
*/
@@ -40,7 +40,7 @@ public function getKey()
4040

4141
/**
4242
* Sets the key
43-
* Key.
43+
* Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.
4444
*
4545
* @param string $val The value of the key
4646
*
@@ -53,7 +53,7 @@ public function setKey($val)
5353
}
5454
/**
5555
* Gets the value
56-
* Value.
56+
* Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
5757
*
5858
* @return string|null The value
5959
*/
@@ -68,7 +68,7 @@ public function getValue()
6868

6969
/**
7070
* Sets the value
71-
* Value.
71+
* Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
7272
*
7373
* @param string $val The value of the value
7474
*

src/Beta/Microsoft/Graph/Model/OrganizationSettings.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,37 @@ public function setMicrosoftApplicationDataAccess($val)
5555
return $this;
5656
}
5757

58+
/**
59+
* Gets the contactInsights
60+
*
61+
* @return InsightsSettings|null The contactInsights
62+
*/
63+
public function getContactInsights()
64+
{
65+
if (array_key_exists("contactInsights", $this->_propDict)) {
66+
if (is_a($this->_propDict["contactInsights"], "\Beta\Microsoft\Graph\Model\InsightsSettings") || is_null($this->_propDict["contactInsights"])) {
67+
return $this->_propDict["contactInsights"];
68+
} else {
69+
$this->_propDict["contactInsights"] = new InsightsSettings($this->_propDict["contactInsights"]);
70+
return $this->_propDict["contactInsights"];
71+
}
72+
}
73+
return null;
74+
}
75+
76+
/**
77+
* Sets the contactInsights
78+
*
79+
* @param InsightsSettings $val The contactInsights
80+
*
81+
* @return OrganizationSettings
82+
*/
83+
public function setContactInsights($val)
84+
{
85+
$this->_propDict["contactInsights"] = $val;
86+
return $this;
87+
}
88+
5889
/**
5990
* Gets the itemInsights
6091
* Contains the properties that are configured by an administrator for the visibility of Microsoft Graph-derived insights, between a user and other items in Microsoft 365, such as documents or sites. List itemInsights returns the settings to display or return item insights in an organization.

src/Beta/Microsoft/Graph/Model/PlannerTaskDetails.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,37 @@ public function setDescription($val)
8686
return $this;
8787
}
8888

89+
/**
90+
* Gets the notes
91+
*
92+
* @return ItemBody|null The notes
93+
*/
94+
public function getNotes()
95+
{
96+
if (array_key_exists("notes", $this->_propDict)) {
97+
if (is_a($this->_propDict["notes"], "\Beta\Microsoft\Graph\Model\ItemBody") || is_null($this->_propDict["notes"])) {
98+
return $this->_propDict["notes"];
99+
} else {
100+
$this->_propDict["notes"] = new ItemBody($this->_propDict["notes"]);
101+
return $this->_propDict["notes"];
102+
}
103+
}
104+
return null;
105+
}
106+
107+
/**
108+
* Sets the notes
109+
*
110+
* @param ItemBody $val The notes
111+
*
112+
* @return PlannerTaskDetails
113+
*/
114+
public function setNotes($val)
115+
{
116+
$this->_propDict["notes"] = $val;
117+
return $this;
118+
}
119+
89120
/**
90121
* Gets the previewType
91122
* This sets the type of preview that shows up on the task. Possible values are: automatic, noPreview, checklist, description, reference. When set to automatic the displayed preview is chosen by the app viewing the task.

0 commit comments

Comments
 (0)