diff --git a/src/Microsoft.Graph/Generated/callrecords/model/CallRecord.cs b/src/Microsoft.Graph/Generated/callrecords/model/CallRecord.cs index 70d5a42a991..5d308032eea 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 c4c465f0f49..9418d3d3893 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 99d08206fd6..e91779972c3 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 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 + /// 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 /// [JsonPropertyName("startDateTime")] public DateTimeOffset? StartDateTime { get; set; } diff --git a/src/Microsoft.Graph/Generated/callrecords/model/TraceRouteHop.cs b/src/Microsoft.Graph/Generated/callrecords/model/TraceRouteHop.cs index 16672693d30..67242cdf7fc 100644 --- a/src/Microsoft.Graph/Generated/callrecords/model/TraceRouteHop.cs +++ b/src/Microsoft.Graph/Generated/callrecords/model/TraceRouteHop.cs @@ -23,7 +23,7 @@ public partial class TraceRouteHop /// /// Gets or sets hopCount. - /// The network path count of this hop that was used to compute the round-trip time. + /// The network path count of this hop that was used to compute the RTT. /// [JsonPropertyName("hopCount")] public Int32? HopCount { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/Acl.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/Acl.cs index 81475b39be0..0eef497dc73 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. + /// The access granted to the identity. Possible values are: grant, deny, unknownFutureValue. /// [JsonPropertyName("accessType")] public AccessType? AccessType { get; set; } /// /// Gets or sets type. - /// The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests if the identitySource is azureActiveDirectory and just group if the identitySource is external. + /// The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests, externalGroup, unknownFutureValue. /// [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 b786d4a30f6..6baef414eb5 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. + /// Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed, unknownFutureValue. /// [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 c224ddf9f05..07d72cf1909 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, and limitExceeded. Required. + /// Indicates the current state of the connection. Possible values are: draft, ready, obsolete, limitExceeded, unknownFutureValue. /// [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 5b5eeff1b60..729c39319a9 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 other externalGroups as members. + /// A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or an externalGroup as members. /// [JsonPropertyName("members")] public IExternalGroupMembersCollectionPage Members { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItem.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItem.cs index 7c3df5c89cb..ab31e909e42 100644 --- a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItem.cs +++ b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItem.cs @@ -29,7 +29,7 @@ public partial class ExternalItem : Microsoft.Graph.Entity /// /// Gets or sets content. - /// A plain-text representation of the contents of the item. The text in this property is full-text indexed. Optional. + /// A plain-text representation of the contents of the item. The text in this property is full-text indexed. Optional. /// [JsonPropertyName("content")] public ExternalItemContent Content { get; set; } diff --git a/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItemContent.cs b/src/Microsoft.Graph/Generated/externalconnectors/model/ExternalItemContent.cs index dda28d6340f..446965fbc10 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 and html. These are the content types that the indexer supports, and not the file extension types allowed. Required. + /// 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. /// [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 7f65122ea2b..ed5c1be8053 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). 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. + /// 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. /// [JsonPropertyName("labels")] public IEnumerable