You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/Model/Application.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ public function setAppId($val)
89
89
90
90
/**
91
91
* 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.
93
93
*
94
94
* @return array|null The appRoles
95
95
*/
@@ -104,7 +104,7 @@ public function getAppRoles()
104
104
105
105
/**
106
106
* 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.
* @param ConditionalAccessFilter $val The value to assign to the applicationFilter
49
+
*
50
+
* @return ConditionalAccessApplications The ConditionalAccessApplications
51
+
*/
52
+
publicfunctionsetApplicationFilter($val)
53
+
{
54
+
$this->_propDict["applicationFilter"] = $val;
55
+
return$this;
56
+
}
26
57
/**
27
58
* Gets the excludeApplications
28
59
* 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
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingApplicability.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ public function setPlatform($val)
120
120
121
121
/**
122
122
* 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.
124
124
*
125
125
* @return DeviceManagementConfigurationTechnologies|null The technologies
126
126
*/
@@ -139,7 +139,7 @@ public function getTechnologies()
139
139
140
140
/**
141
141
* 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.
143
143
*
144
144
* @param DeviceManagementConfigurationTechnologies $val The value to assign to the technologies
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/Model/Identity.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ class Identity extends Entity
25
25
{
26
26
/**
27
27
* 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.
29
29
*
30
30
* @return string|null The displayName
31
31
*/
@@ -40,7 +40,7 @@ public function getDisplayName()
40
40
41
41
/**
42
42
* 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.
44
44
*
45
45
* @param string $val The value of the displayName
46
46
*
@@ -53,7 +53,7 @@ public function setDisplayName($val)
53
53
}
54
54
/**
55
55
* Gets the id
56
-
* Unique identifier for the identity.
56
+
* The identifier of the identity. This property is read-only.
57
57
*
58
58
* @return string|null The id
59
59
*/
@@ -68,7 +68,7 @@ public function getId()
68
68
69
69
/**
70
70
* Sets the id
71
-
* Unique identifier for the identity.
71
+
* The identifier of the identity. This property is read-only.
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/Model/KeyValue.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ class KeyValue extends Entity
25
25
{
26
26
/**
27
27
* 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.
29
29
*
30
30
* @return string|null The key
31
31
*/
@@ -40,7 +40,7 @@ public function getKey()
40
40
41
41
/**
42
42
* 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.
44
44
*
45
45
* @param string $val The value of the key
46
46
*
@@ -53,7 +53,7 @@ public function setKey($val)
53
53
}
54
54
/**
55
55
* 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.
57
57
*
58
58
* @return string|null The value
59
59
*/
@@ -68,7 +68,7 @@ public function getValue()
68
68
69
69
/**
70
70
* 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.
* @param InsightsSettings $val The contactInsights
80
+
*
81
+
* @return OrganizationSettings
82
+
*/
83
+
publicfunctionsetContactInsights($val)
84
+
{
85
+
$this->_propDict["contactInsights"] = $val;
86
+
return$this;
87
+
}
88
+
58
89
/**
59
90
* Gets the itemInsights
60
91
* 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.
* 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