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/Microsoft.Graph/Generated/model/AccessPackageAssignmentRequest.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public partial class AccessPackageAssignmentRequestObject : Entity
37
37
38
38
/// <summary>
39
39
/// Gets or sets request type.
40
-
/// The type of the request. The possible values are: notSpecified, userAdd, UserExtend, userUpdate, userRemove, adminAdd, adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd, unknownFutureValue. A request from the user themselves would have requestType of userAdd, userUpdate or userRemove. This property cannot be changed once set.
40
+
/// The type of the request. The possible values are: notSpecified, userAdd, UserExtend, userUpdate, userRemove, adminAdd, adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd (not supported), unknownFutureValue. A request from the user themselves would have requestType of userAdd, userUpdate or userRemove. This property cannot be changed once set.
Copy file name to clipboardExpand all lines: src/Microsoft.Graph/Generated/model/Application.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -224,7 +224,7 @@ public Application()
224
224
225
225
/// <summary>
226
226
/// Gets or sets sign in audience.
227
-
/// Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount (default), and PersonalMicrosoftAccount. See more in the table. The value of this object also limits the number of permissions an app can request. For more information, see Limits on requested permissions per app. Supports $filter (eq, ne, not).
227
+
/// Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount (default), and PersonalMicrosoftAccount. See more in the table. The value of this object also limits the number of permissions an app can request. For more information, see Limits on requested permissions per app. The value for this property has implications on other app object properties. As a result, if you change this property, you may need to change other properties first. For more information, see Validation differences for signInAudience.Supports $filter (eq, ne, not).
228
228
/// </summary>
229
229
[JsonPropertyName("signInAudience")]
230
230
publicstringSignInAudience{get;set;}
@@ -266,14 +266,14 @@ public Application()
266
266
267
267
/// <summary>
268
268
/// Gets or sets created on behalf of.
269
-
/// Supports $filter (eq when counting empty collections). Read-only.
269
+
/// Supports $filter (/$count eq 0, /$count ne 0). Read-only.
270
270
/// </summary>
271
271
[JsonPropertyName("createdOnBehalfOf")]
272
272
publicDirectoryObjectCreatedOnBehalfOf{get;set;}
273
273
274
274
/// <summary>
275
275
/// Gets or sets extension properties.
276
-
/// Read-only. Nullable. Supports $expand and $filter (eq and ne when counting empty collections and only with advanced query parameters).
276
+
/// Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0).
/// Federated identities for applications. Supports $expand and $filter (startsWith, and eq, ne when counting empty collections and only with advanced query parameters).
290
+
/// Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0).
/// Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (eq when counting empty collections).
317
+
/// Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
Copy file name to clipboardExpand all lines: src/Microsoft.Graph/Generated/model/Device.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ public Device()
58
58
59
59
/// <summary>
60
60
/// Gets or sets device id.
61
-
/// Unique identifier set by Azure Device Registration Service at the time of registration. Supports $filter (eq, ne, not, startsWith).
61
+
/// Unique identifier set by Azure Device Registration Service at the time of registration. This is an alternate key that can be used to reference the device object. Supports $filter (eq, ne, not, startsWith).
62
62
/// </summary>
63
63
[JsonPropertyName("deviceId")]
64
64
publicstringDeviceId{get;set;}
@@ -135,7 +135,7 @@ public Device()
135
135
136
136
/// <summary>
137
137
/// Gets or sets physical ids.
138
-
/// For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, and counting empty collections).
138
+
/// For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith,/$count eq 0, /$count ne 0).
139
139
/// </summary>
140
140
[JsonPropertyName("physicalIds")]
141
141
publicIEnumerable<string>PhysicalIds{get;set;}
@@ -149,7 +149,7 @@ public Device()
149
149
150
150
/// <summary>
151
151
/// Gets or sets system labels.
152
-
/// List of labels applied to the device by the system. Supports $filter (eq when counting empty collections).
152
+
/// List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0).
Copy file name to clipboardExpand all lines: src/Microsoft.Graph/Generated/model/EducationAssignment.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ public partial class EducationAssignment : Entity
23
23
24
24
/// <summary>
25
25
/// Gets or sets added student action.
26
-
/// Optional field to control the assignment behavior for students who are added after the assignment is published. If not specified, defaults to none value. Currently supports only two values: none or assignIfOpen.
26
+
/// Optional field to control the assignment behavior for students who are added after the assignment is published. If not specified, defaults to none. Supported values are: none, assignIfOpen. For example, a teacher can use assignIfOpen to indicate that an assignment should be assigned to any new student who joins the class while the assignment is still open, and none to indicate that an assignment should not be assigned to new students.
0 commit comments