diff --git a/src/Microsoft.Graph/Generated/callrecords/model/CallRecord.cs b/src/Microsoft.Graph/Generated/callrecords/model/CallRecord.cs index 5d308032eea..70d5a42a991 100644 --- a/src/Microsoft.Graph/Generated/callrecords/model/CallRecord.cs +++ b/src/Microsoft.Graph/Generated/callrecords/model/CallRecord.cs @@ -65,7 +65,7 @@ public partial class CallRecord : Microsoft.Graph.Entity /// /// Gets or sets start date time. - /// UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + /// UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z /// [JsonPropertyName("startDateTime")] public DateTimeOffset? StartDateTime { get; set; } @@ -79,7 +79,7 @@ public partial class CallRecord : Microsoft.Graph.Entity /// /// Gets or sets version. - /// Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version. + /// Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version. /// [JsonPropertyName("version")] public Int64? Version { get; set; } diff --git a/src/Microsoft.Graph/Generated/callrecords/model/ClientUserAgent.cs b/src/Microsoft.Graph/Generated/callrecords/model/ClientUserAgent.cs index 9418d3d3893..c4c465f0f49 100644 --- a/src/Microsoft.Graph/Generated/callrecords/model/ClientUserAgent.cs +++ b/src/Microsoft.Graph/Generated/callrecords/model/ClientUserAgent.cs @@ -37,7 +37,7 @@ public ClientUserAgent() /// /// Gets or sets productFamily. - /// Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue, azureCommunicationServices. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: azureCommunicationServices. + /// Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue, azureCommunicationServices. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: azureCommunicationServices. /// [JsonPropertyName("productFamily")] public ProductFamily? ProductFamily { get; set; } diff --git a/src/Microsoft.Graph/Generated/callrecords/model/Session.cs b/src/Microsoft.Graph/Generated/callrecords/model/Session.cs index e91779972c3..99d08206fd6 100644 --- a/src/Microsoft.Graph/Generated/callrecords/model/Session.cs +++ b/src/Microsoft.Graph/Generated/callrecords/model/Session.cs @@ -58,7 +58,7 @@ public partial class Session : Microsoft.Graph.Entity /// /// Gets or sets start date time. - /// UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z + /// UTC fime when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z /// [JsonPropertyName("startDateTime")] public DateTimeOffset? StartDateTime { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/Acl.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/Acl.cs index 0eef497dc73..81475b39be0 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/Acl.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/Acl.cs @@ -23,21 +23,21 @@ public partial class Acl /// /// Gets or sets accessType. - /// The access granted to the identity. Possible values are: grant, deny, unknownFutureValue. + /// The access granted to the identity. Possible values are: grant, deny. /// [JsonPropertyName("accessType")] public AccessType? AccessType { get; set; } /// /// Gets or sets type. - /// The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests, externalGroup, unknownFutureValue. + /// The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests if the identitySource is azureActiveDirectory and just group if the identitySource is external. /// [JsonPropertyName("type")] public AclType? Type { get; set; } /// /// Gets or sets value. - /// The unique identifer of the identity. In case of Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. In case of external groups value is set to the ID of the externalGroup + /// The unique identifer of the identity. In case of Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. In case of external groups value is set to the ID of the externalGroup. /// [JsonPropertyName("value")] public string Value { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/ConnectionOperation.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/ConnectionOperation.cs index 6baef414eb5..b786d4a30f6 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/ConnectionOperation.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/ConnectionOperation.cs @@ -30,7 +30,7 @@ public partial class ConnectionOperation : Microsoft.Graph.Entity /// /// Gets or sets status. - /// Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed, unknownFutureValue. + /// Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed. /// [JsonPropertyName("status")] public ConnectionOperationStatus? Status { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalConnection.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalConnection.cs index 32a71a990e8..773f8070abd 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalConnection.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalConnection.cs @@ -44,7 +44,7 @@ public partial class ExternalConnection : Microsoft.Graph.Entity /// /// Gets or sets state. - /// Indicates the current state of the connection. Possible values are: draft, ready, obsolete, limitExceeded, unknownFutureValue. + /// Indicates the current state of the connection. Possible values are draft, ready, obsolete, and limitExceeded. Required. /// [JsonPropertyName("state")] public ConnectionState? State { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalGroup.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalGroup.cs index 729c39319a9..5b5eeff1b60 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalGroup.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalGroup.cs @@ -36,7 +36,7 @@ public partial class ExternalGroup : Microsoft.Graph.Entity /// /// Gets or sets members. - /// A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or an externalGroup as members. + /// A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or other externalGroups as members. /// [JsonPropertyName("members")] public IExternalGroupMembersCollectionPage Members { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItemContent.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItemContent.cs index 446965fbc10..dda28d6340f 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItemContent.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItemContent.cs @@ -23,7 +23,7 @@ public partial class ExternalItemContent /// /// Gets or sets type. - /// The type of content in the value property. Possible values are: text, html, unknownFutureValue. These are the content types that the indexer supports, and not the file extension types allowed. + /// The type of content in the value property. Possible values are text and html. These are the content types that the indexer supports, and not the file extension types allowed. Required. /// [JsonPropertyName("type")] public ExternalItemContentType? Type { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/Property.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/Property.cs index ed5c1be8053..7f65122ea2b 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/Property.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/Property.cs @@ -51,14 +51,14 @@ public partial class Property /// /// Gets or sets isSearchable. - /// Specifies if the property is searchable. Only properties of type String or StringCollection can be searchable. Non-searchable properties are not added to the search index. Optional. + /// Specifies if the property is searchable. Only properties of type string or stringCollection can be searchable. Non-searchable properties are not added to the search index. Optional. /// [JsonPropertyName("isSearchable")] public bool? IsSearchable { get; set; } /// /// Gets or sets labels. - /// Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue. Optional. + /// Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). Optional.The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue, iconUrl, containerName, containerUrl. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: iconUrl, containerName, containerUrl. /// [JsonPropertyName("labels")] public IEnumerable