diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9b7db9d617..53716eb396d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,7 +7,15 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v
## [Unreleased]
-## [5.22.0] - 2023-08-16
+## [5.24.0] - 2023-08-23
+
+- Adds GraphServiceClient constructor for use with a `TokenCredential` and a `HttpClient`.
+- Fix for incorrect discriminator in DirectoryObject type (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/2084).
+- Fix for incorrect property names when the reserved names matched the type name (https://github.com/microsoft/kiota/pull/3107).
+- Fix for missing PlannerCheckListItem and PlannerExternalReference models (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/2050).
+- Latest metadata updates from 22nd August 2023.
+
+## [5.23.0] - 2023-08-16
- Fix for incorrect property names when the reserved names matched the type name (https://github.com/microsoft/kiota/pull/3107).
- Latest metadata updates from 15th August 2023.
diff --git a/src/Microsoft.Graph/Extensions/PlannerAssignment.cs b/src/Microsoft.Graph/Extensions/PlannerAssignment.cs
index 9e9acc28176..0c5688e0749 100644
--- a/src/Microsoft.Graph/Extensions/PlannerAssignment.cs
+++ b/src/Microsoft.Graph/Extensions/PlannerAssignment.cs
@@ -46,6 +46,25 @@ public string OrderHint {
set { BackingStore?.Set("orderHint", value); }
}
#endif
+ /// Read-only. User ID by which this is last modified.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public IdentitySet? AssignedBy {
+ get { return BackingStore?.Get("assignedBy"); }
+ set { BackingStore?.Set("assignedBy", value); }
+ }
+#nullable restore
+#else
+ public IdentitySet AssignedBy {
+ get { return BackingStore?.Get("assignedBy"); }
+ set { BackingStore?.Set("assignedBy", value); }
+ }
+#endif
+
+ public DateTimeOffset? AssignedDateTime {
+ get { return BackingStore?.Get("assignedDateTime"); }
+ set { BackingStore?.Set("assignedDateTime", value); }
+ }
///
/// Instantiates a new auditActivityInitiator and sets the default values.
///
@@ -70,6 +89,8 @@ public IDictionary> GetFieldDeserializers() {
return new Dictionary> {
{"@odata.type", n => { OdataType = n.GetStringValue(); } },
{"orderHint", n => { OrderHint = n.GetStringValue(); } },
+ {"assignedBy", n => { AssignedBy = n.GetObjectValue(IdentitySet.CreateFromDiscriminatorValue); } },
+ {"assignedDateTime", n => { AssignedDateTime = n.GetDateTimeOffsetValue(); } },
};
}
///
@@ -80,6 +101,8 @@ public void Serialize(ISerializationWriter writer) {
_ = writer ?? throw new ArgumentNullException(nameof(writer));
writer.WriteStringValue("@odata.type", OdataType);
writer.WriteStringValue("orderHint", OrderHint);
+ writer.WriteObjectValue("assignedBy", AssignedBy);
+ writer.WriteDateTimeOffsetValue("assignedDateTime", AssignedDateTime);
writer.WriteAdditionalData(AdditionalData);
}
}
diff --git a/src/Microsoft.Graph/Extensions/PlannerCheckListItem.cs b/src/Microsoft.Graph/Extensions/PlannerCheckListItem.cs
new file mode 100644
index 00000000000..e18866c0c4c
--- /dev/null
+++ b/src/Microsoft.Graph/Extensions/PlannerCheckListItem.cs
@@ -0,0 +1,130 @@
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System;
+using System.Collections.Generic;
+
+namespace Microsoft.Graph.Models;
+
+public class PlannerCheckListItem: IAdditionalDataHolder, IBackedModel, IParsable
+{
+ /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
+ public IDictionary AdditionalData {
+ get { return BackingStore?.Get>("additionalData"); }
+ set { BackingStore?.Set("additionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The OdataType property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? OdataType {
+ get { return BackingStore?.Get("@odata.type"); }
+ set { BackingStore?.Set("@odata.type", value); }
+ }
+#nullable restore
+#else
+ public string OdataType {
+ get { return BackingStore?.Get("@odata.type"); }
+ set { BackingStore?.Set("@odata.type", value); }
+ }
+#endif
+ /// Value is true if the item is checked and false otherwise.
+ public bool? IsChecked {
+ get { return BackingStore?.Get("isChecked"); }
+ set { BackingStore?.Set("isChecked", value); }
+ }
+ /// Read-only. User ID by which this is last modified.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public IdentitySet? LastModifiedBy {
+ get { return BackingStore?.Get("lastModifiedBy"); }
+ set { BackingStore?.Set("lastModifiedBy", value); }
+ }
+#nullable restore
+#else
+ public IdentitySet LastModifiedBy {
+ get { return BackingStore?.Get("lastModifiedBy"); }
+ set { BackingStore?.Set("lastModifiedBy", value); }
+ }
+#endif
+ /// Read-only. Date and time at which this is last modified. The Timestamp 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.
+ public DateTimeOffset? LastModifiedDateTime {
+ get { return BackingStore?.Get("lastModifiedDateTime"); }
+ set { BackingStore?.Set("lastModifiedDateTime", value); }
+ }
+ /// Used to set the relative order of items in the checklist. The format is defined as outlined here..
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? OrderHint {
+ get { return BackingStore?.Get("orderHint"); }
+ set { BackingStore?.Set("orderHint", value); }
+ }
+#nullable restore
+#else
+ public string OrderHint {
+ get { return BackingStore?.Get("orderHint"); }
+ set { BackingStore?.Set("orderHint", value); }
+ }
+#endif
+ /// Title of the checklist item.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? Title {
+ get { return BackingStore?.Get("title"); }
+ set { BackingStore?.Set("title", value); }
+ }
+#nullable restore
+#else
+ public string Title {
+ get { return BackingStore?.Get("title"); }
+ set { BackingStore?.Set("title", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new auditActivityInitiator and sets the default values.
+ ///
+ public PlannerCheckListItem() {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ OdataType = "#microsoft.graph.plannerChecklistItem";
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// The parse node to use to read the discriminator value and create the object
+ public static PlannerCheckListItem CreateFromDiscriminatorValue(IParseNode parseNode) {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new PlannerCheckListItem();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ public IDictionary> GetFieldDeserializers() {
+ return new Dictionary> {
+ {"@odata.type", n => { OdataType = n.GetStringValue(); } },
+ {"isChecked", n => { IsChecked = n.GetBoolValue(); } },
+ {"lastModifiedBy", n => { LastModifiedBy = n.GetObjectValue(IdentitySet.CreateFromDiscriminatorValue); } },
+ {"lastModifiedDateTime", n => { LastModifiedDateTime = n.GetDateTimeOffsetValue(); } },
+ {"orderHint", n => { OrderHint = n.GetStringValue(); } },
+ {"title", n => { Title = n.GetStringValue(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public void Serialize(ISerializationWriter writer) {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteStringValue("@odata.type", OdataType);
+ writer.WriteBoolValue("isChecked", IsChecked);
+ writer.WriteObjectValue("lastModifiedBy", LastModifiedBy);
+ writer.WriteDateTimeOffsetValue("lastModifiedDateTime", LastModifiedDateTime);
+ writer.WriteStringValue("orderHint", OrderHint);
+ writer.WriteStringValue("title", Title);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+}
diff --git a/src/Microsoft.Graph/Extensions/PlannerExternalReference.cs b/src/Microsoft.Graph/Extensions/PlannerExternalReference.cs
new file mode 100644
index 00000000000..d3ebdc8b92a
--- /dev/null
+++ b/src/Microsoft.Graph/Extensions/PlannerExternalReference.cs
@@ -0,0 +1,137 @@
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System;
+using System.Collections.Generic;
+
+namespace Microsoft.Graph.Models;
+
+public class PlannerExternalReference: IAdditionalDataHolder, IBackedModel, IParsable
+{
+ /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
+ public IDictionary AdditionalData {
+ get { return BackingStore?.Get>("additionalData"); }
+ set { BackingStore?.Set("additionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The OdataType property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? OdataType {
+ get { return BackingStore?.Get("@odata.type"); }
+ set { BackingStore?.Set("@odata.type", value); }
+ }
+#nullable restore
+#else
+ public string OdataType {
+ get { return BackingStore?.Get("@odata.type"); }
+ set { BackingStore?.Set("@odata.type", value); }
+ }
+#endif
+ /// Used to set the relative order of items in the checklist. The format is defined as outlined here..
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? Alias {
+ get { return BackingStore?.Get("alias"); }
+ set { BackingStore?.Set("alias", value); }
+ }
+#nullable restore
+#else
+ public string Alias {
+ get { return BackingStore?.Get("alias"); }
+ set { BackingStore?.Set("alias", value); }
+ }
+#endif
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? PreviewPriority {
+ get { return BackingStore?.Get("previewPriority"); }
+ set { BackingStore?.Set("previewPriority", value); }
+ }
+#nullable restore
+#else
+ public string PreviewPriority {
+ get { return BackingStore?.Get("previewPriority"); }
+ set { BackingStore?.Set("previewPriority", value); }
+ }
+#endif
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? Type {
+ get { return BackingStore?.Get("type"); }
+ set { BackingStore?.Set("type", value); }
+ }
+#nullable restore
+#else
+ public string Type {
+ get { return BackingStore?.Get("type"); }
+ set { BackingStore?.Set("type", value); }
+ }
+#endif
+ /// Read-only. User ID by which this is last modified.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public IdentitySet? LastModifiedBy {
+ get { return BackingStore?.Get("lastModifiedBy"); }
+ set { BackingStore?.Set("lastModifiedBy", value); }
+ }
+#nullable restore
+#else
+ public IdentitySet LastModifiedBy {
+ get { return BackingStore?.Get("lastModifiedBy"); }
+ set { BackingStore?.Set("lastModifiedBy", value); }
+ }
+#endif
+ /// Read-only. Date and time at which this is last modified. The Timestamp 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.
+ public DateTimeOffset? LastModifiedDateTime {
+ get { return BackingStore?.Get("lastModifiedDateTime"); }
+ set { BackingStore?.Set("lastModifiedDateTime", value); }
+ }
+ ///
+ /// Instantiates a new auditActivityInitiator and sets the default values.
+ ///
+ public PlannerExternalReference() {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ OdataType = "#microsoft.graph.plannerExternalReference";
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// The parse node to use to read the discriminator value and create the object
+ public static PlannerExternalReference CreateFromDiscriminatorValue(IParseNode parseNode) {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new PlannerExternalReference();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ public IDictionary> GetFieldDeserializers() {
+ return new Dictionary> {
+ {"@odata.type", n => { OdataType = n.GetStringValue(); } },
+ {"type", n => { Type = n.GetStringValue(); } },
+ {"lastModifiedBy", n => { LastModifiedBy = n.GetObjectValue(IdentitySet.CreateFromDiscriminatorValue); } },
+ {"lastModifiedDateTime", n => { LastModifiedDateTime = n.GetDateTimeOffsetValue(); } },
+ {"previewPriority", n => { PreviewPriority = n.GetStringValue(); } },
+ {"alias", n => { Alias = n.GetStringValue(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public void Serialize(ISerializationWriter writer) {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteStringValue("@odata.type", OdataType);
+ writer.WriteStringValue("type", Type);
+ writer.WriteObjectValue("lastModifiedBy", LastModifiedBy);
+ writer.WriteDateTimeOffsetValue("lastModifiedDateTime", LastModifiedDateTime);
+ writer.WriteStringValue("previewPriority", PreviewPriority);
+ writer.WriteStringValue("alias", Alias);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+}
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index c7103eb5e9d..da7eaa1b17b 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
index a0f9e179eb9..c8b933a6d9a 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -49,8 +49,8 @@ public async Task DeleteAsync(Action
- /// Retrieve a conversationMember from a chat.
- /// Find more info here
+ /// Retrieve a conversationMember from a chat or channel.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -114,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve a conversationMember from a chat.
+ /// Retrieve a conversationMember from a chat or channel.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -184,7 +184,7 @@ public ConversationMemberItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Retrieve a conversationMember from a chat.
+ /// Retrieve a conversationMember from a chat or channel.
///
public class ConversationMemberItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
index 6f6e11c7ae0..1ba94e70a93 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel or a chat.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ /// Send a new chatMessage in the specified channel or a chat.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index cc09b9944b8..0c4aba30689 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/permissionGrants/{resourceSpecificPermissionGrant%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
index 361e8f3f095..f9434ce2fc1 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
@@ -29,8 +29,8 @@ public InviteRequestBuilder(Dictionary pathParameters, IRequestA
public InviteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/participants/invite", rawUrl) {
}
///
- /// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
- /// Find more info here
+ /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -51,7 +51,7 @@ public async Task PostAsync(InvitePostRequestBody b
return await RequestAdapter.SendAsync(requestInfo, InviteParticipantsOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Contacts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contacts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index f6ed9851486..e479bae892a 100644
--- a/src/Microsoft.Graph/Generated/Contacts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contacts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts/{orgContact%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs
index 2e17a5f0550..161aa522f55 100644
--- a/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs
@@ -7,6 +7,7 @@
using Microsoft.Graph.Contacts.Item.Manager;
using Microsoft.Graph.Contacts.Item.MemberOf;
using Microsoft.Graph.Contacts.Item.Restore;
+using Microsoft.Graph.Contacts.Item.RetryServiceProvisioning;
using Microsoft.Graph.Contacts.Item.TransitiveMemberOf;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
@@ -55,6 +56,10 @@ public class OrgContactItemRequestBuilder : BaseRequestBuilder {
public RestoreRequestBuilder Restore { get =>
new RestoreRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the retryServiceProvisioning method.
+ public RetryServiceProvisioningRequestBuilder RetryServiceProvisioning { get =>
+ new RetryServiceProvisioningRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the transitiveMemberOf property of the microsoft.graph.orgContact entity.
public TransitiveMemberOfRequestBuilder TransitiveMemberOf { get =>
new TransitiveMemberOfRequestBuilder(PathParameters, RequestAdapter);
diff --git a/src/Microsoft.Graph/Generated/Contacts/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contacts/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs
new file mode 100644
index 00000000000..2e1cac3e711
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Contacts/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs
@@ -0,0 +1,90 @@
+//
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Contacts.Item.RetryServiceProvisioning {
+ ///
+ /// Provides operations to call the retryServiceProvisioning method.
+ ///
+ public class RetryServiceProvisioningRequestBuilder : BaseRequestBuilder {
+ ///
+ /// Instantiates a new RetryServiceProvisioningRequestBuilder and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RetryServiceProvisioningRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts/{orgContact%2Did}/retryServiceProvisioning", pathParameters) {
+ }
+ ///
+ /// Instantiates a new RetryServiceProvisioningRequestBuilder and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RetryServiceProvisioningRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts/{orgContact%2Did}/retryServiceProvisioning", rawUrl) {
+ }
+ ///
+ /// Invoke action retryServiceProvisioning
+ ///
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
+#nullable restore
+#else
+ public async Task PostAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) {
+#endif
+ var requestInfo = ToPostRequestInformation(requestConfiguration);
+ var errorMapping = new Dictionary> {
+ {"4XX", ODataError.CreateFromDiscriminatorValue},
+ {"5XX", ODataError.CreateFromDiscriminatorValue},
+ };
+ await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
+ }
+ ///
+ /// Invoke action retryServiceProvisioning
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public RequestInformation ToPostRequestInformation(Action? requestConfiguration = default) {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(Action requestConfiguration = default) {
+#endif
+ var requestInfo = new RequestInformation {
+ HttpMethod = Method.POST,
+ UrlTemplate = UrlTemplate,
+ PathParameters = PathParameters,
+ };
+ if (requestConfiguration != null) {
+ var requestConfig = new RetryServiceProvisioningRequestBuilderPostRequestConfiguration();
+ requestConfiguration.Invoke(requestConfig);
+ requestInfo.AddRequestOptions(requestConfig.Options);
+ requestInfo.AddHeaders(requestConfig.Headers);
+ }
+ return requestInfo;
+ }
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ ///
+ public class RetryServiceProvisioningRequestBuilderPostRequestConfiguration {
+ /// Request headers
+ public RequestHeaders Headers { get; set; }
+ /// Request options
+ public IList Options { get; set; }
+ ///
+ /// Instantiates a new retryServiceProvisioningRequestBuilderPostRequestConfiguration and sets the default values.
+ ///
+ public RetryServiceProvisioningRequestBuilderPostRequestConfiguration() {
+ Options = new List();
+ Headers = new RequestHeaders();
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.Graph/Generated/Contracts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contracts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 4d77d627517..1c257e17535 100644
--- a/src/Microsoft.Graph/Generated/Contracts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contracts/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contracts/{contract%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
index 2787c6a9c06..2cb4ea078bc 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
@@ -105,7 +105,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
}
///
/// Read properties and relationships of the deviceAppManagement object.
- /// Find more info here
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -125,7 +125,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
}
///
/// Update the properties of a deviceAppManagement object.
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs
index 755e0d92444..4c9e9bdd9ca 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs
@@ -53,8 +53,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the targetedManagedAppProtection object.
- /// Find more info here
+ /// Read properties and relationships of the managedAppPolicy object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -118,7 +118,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the targetedManagedAppProtection object.
+ /// Read properties and relationships of the managedAppPolicy object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -188,7 +188,7 @@ public ManagedAppPolicyItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the targetedManagedAppProtection object.
+ /// Read properties and relationships of the managedAppPolicy object.
///
public class ManagedAppPolicyItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
index 383998cde6e..730fbd71187 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
@@ -29,7 +29,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Not yet documented
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
index dbf72eb3123..6efb2e18b00 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
@@ -42,8 +42,8 @@ public ManagedAppPoliciesRequestBuilder(Dictionary pathParameter
public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppPolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the targetedManagedAppProtection objects.
- /// Find more info here
+ /// List properties and relationships of the managedAppProtection objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -83,7 +83,7 @@ public async Task PostAsync(ManagedAppPolicy body, Action(requestInfo, ManagedAppPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the targetedManagedAppProtection objects.
+ /// List properties and relationships of the managedAppProtection objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -137,7 +137,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppPolicy body, Action
return requestInfo;
}
///
- /// List properties and relationships of the targetedManagedAppProtection objects.
+ /// List properties and relationships of the managedAppProtection objects.
///
public class ManagedAppPoliciesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
index c050f421176..f7cd37343fc 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
@@ -29,7 +29,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Not yet documented
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
index ea7264e68c0..38a8cf00e24 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
@@ -29,7 +29,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Not yet documented
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
index 9bb3f0c8432..a3522bc2440 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
@@ -63,8 +63,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the iosManagedAppRegistration object.
- /// Find more info here
+ /// Read properties and relationships of the managedAppRegistration object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -128,7 +128,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosManagedAppRegistration object.
+ /// Read properties and relationships of the managedAppRegistration object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -198,7 +198,7 @@ public ManagedAppRegistrationItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the iosManagedAppRegistration object.
+ /// Read properties and relationships of the managedAppRegistration object.
///
public class ManagedAppRegistrationItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
index 323fd325137..aaf3378a693 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
@@ -48,8 +48,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the managedAppStatus object.
- /// Find more info here
+ /// Read properties and relationships of the managedAppStatusRaw object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -113,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the managedAppStatus object.
+ /// Read properties and relationships of the managedAppStatusRaw object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -183,7 +183,7 @@ public ManagedAppStatusItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the managedAppStatus object.
+ /// Read properties and relationships of the managedAppStatusRaw object.
///
public class ManagedAppStatusItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs
index 53c350f4f65..aba034e1c0a 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs
@@ -42,8 +42,8 @@ public ManagedAppStatusesRequestBuilder(Dictionary pathParameter
public ManagedAppStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the managedAppStatus objects.
- /// Find more info here
+ /// List properties and relationships of the managedAppStatusRaw objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -83,7 +83,7 @@ public async Task PostAsync(ManagedAppStatus body, Action(requestInfo, ManagedAppStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the managedAppStatus objects.
+ /// List properties and relationships of the managedAppStatusRaw objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -137,7 +137,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppStatus body, Action
return requestInfo;
}
///
- /// List properties and relationships of the managedAppStatus objects.
+ /// List properties and relationships of the managedAppStatusRaw objects.
///
public class ManagedAppStatusesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs
index a5d26dd746c..0dca4dae32d 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs
@@ -42,8 +42,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq
public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the managedEBookAssignment objects.
- /// Find more info here
+ /// List properties and relationships of the iosVppEBookAssignment objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -62,8 +62,8 @@ public async Task GetAsync(Action(requestInfo, ManagedEBookAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new iosVppEBookAssignment object.
- /// Find more info here
+ /// Create a new managedEBookAssignment object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -84,7 +84,7 @@ public async Task PostAsync(ManagedEBookAssignment body,
return await RequestAdapter.SendAsync(requestInfo, ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the managedEBookAssignment objects.
+ /// List properties and relationships of the iosVppEBookAssignment objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -110,7 +110,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new iosVppEBookAssignment object.
+ /// Create a new managedEBookAssignment object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -138,7 +138,7 @@ public RequestInformation ToPostRequestInformation(ManagedEBookAssignment body,
return requestInfo;
}
///
- /// List properties and relationships of the managedEBookAssignment objects.
+ /// List properties and relationships of the iosVppEBookAssignment objects.
///
public class AssignmentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs
index 879a23a4379..c0137115ecf 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs
@@ -49,8 +49,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the iosVppEBookAssignment object.
- /// Find more info here
+ /// Read properties and relationships of the managedEBookAssignment object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -69,8 +69,8 @@ public async Task GetAsync(Action(requestInfo, ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the properties of a iosVppEBookAssignment object.
- /// Find more info here
+ /// Update the properties of a managedEBookAssignment object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosVppEBookAssignment object.
+ /// Read properties and relationships of the managedEBookAssignment object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a iosVppEBookAssignment object.
+ /// Update the properties of a managedEBookAssignment object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -185,7 +185,7 @@ public ManagedEBookAssignmentItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the iosVppEBookAssignment object.
+ /// Read properties and relationships of the managedEBookAssignment object.
///
public class ManagedEBookAssignmentItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs
index 17b3b661ec8..0157e849364 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs
@@ -74,8 +74,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the iosVppEBook object.
- /// Find more info here
+ /// Read properties and relationships of the managedEBook object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -140,7 +140,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosVppEBook object.
+ /// Read properties and relationships of the managedEBook object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -210,7 +210,7 @@ public ManagedEBookItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the iosVppEBook object.
+ /// Read properties and relationships of the managedEBook object.
///
public class ManagedEBookItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
index 66a369780f1..18be6424125 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
@@ -79,8 +79,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the iosMobileAppConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -145,7 +145,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosMobileAppConfiguration object.
+ /// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -215,7 +215,7 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilderDeleteRequestConfigu
}
}
///
- /// Read properties and relationships of the iosMobileAppConfiguration object.
+ /// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
///
public class ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs
index c70120809ed..de7724dcb4a 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs
@@ -42,8 +42,8 @@ public MobileAppConfigurationsRequestBuilder(Dictionary pathPara
public MobileAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the managedDeviceMobileAppConfiguration objects.
- /// Find more info here
+ /// List properties and relationships of the iosMobileAppConfiguration objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -84,7 +84,7 @@ public async Task PostAsync(ManagedDeviceMo
return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the managedDeviceMobileAppConfiguration objects.
+ /// List properties and relationships of the iosMobileAppConfiguration objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -138,7 +138,7 @@ public RequestInformation ToPostRequestInformation(ManagedDeviceMobileAppConfigu
return requestInfo;
}
///
- /// List properties and relationships of the managedDeviceMobileAppConfiguration objects.
+ /// List properties and relationships of the iosMobileAppConfiguration objects.
///
public class MobileAppConfigurationsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
index 74d9da0b7b8..f7e2daecfa9 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
@@ -54,8 +54,8 @@ public MobileAppItemRequestBuilder(Dictionary pathParameters, IR
public MobileAppItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24select,%24expand}", rawUrl) {
}
///
- /// Deletes a macOSLobApp.
- /// Find more info here
+ /// Deletes a managedAndroidStoreApp.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -74,8 +74,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the macOSMicrosoftEdgeApp object.
- /// Find more info here
+ /// Read properties and relationships of the androidLobApp object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -94,8 +94,8 @@ public async Task GetAsync(Action(requestInfo, MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the properties of a windowsMobileMSI object.
- /// Find more info here
+ /// Update the properties of a iosLobApp object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -116,7 +116,7 @@ public async Task PatchAsync(MobileApp body, Action(requestInfo, MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Deletes a macOSLobApp.
+ /// Deletes a managedAndroidStoreApp.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -140,7 +140,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the macOSMicrosoftEdgeApp object.
+ /// Read properties and relationships of the androidLobApp object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -166,7 +166,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a windowsMobileMSI object.
+ /// Update the properties of a iosLobApp object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -210,7 +210,7 @@ public MobileAppItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the macOSMicrosoftEdgeApp object.
+ /// Read properties and relationships of the androidLobApp object.
///
public class MobileAppItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs
index 9f804b3f78f..2421e8978c1 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs
@@ -52,8 +52,8 @@ public MobileAppsRequestBuilder(Dictionary pathParameters, IRequ
public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the androidLobApp objects.
- /// Find more info here
+ /// List properties and relationships of the windowsMobileMSI objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -72,8 +72,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new windowsUniversalAppX object.
- /// Find more info here
+ /// Create a new win32LobApp object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -94,7 +94,7 @@ public async Task PostAsync(MobileApp body, Action(requestInfo, MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the androidLobApp objects.
+ /// List properties and relationships of the windowsMobileMSI objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -120,7 +120,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new windowsUniversalAppX object.
+ /// Create a new win32LobApp object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -148,7 +148,7 @@ public RequestInformation ToPostRequestInformation(MobileApp body, Action
- /// List properties and relationships of the androidLobApp objects.
+ /// List properties and relationships of the windowsMobileMSI objects.
///
public class MobileAppsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
index fa0227737bc..176c613c5dd 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
@@ -42,8 +42,8 @@ public DeviceCompliancePoliciesRequestBuilder(Dictionary pathPar
public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the macOSCompliancePolicy objects.
- /// Find more info here
+ /// List properties and relationships of the windows81CompliancePolicy objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -84,7 +84,7 @@ public async Task PostAsync(DeviceCompliancePolicy body,
return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the macOSCompliancePolicy objects.
+ /// List properties and relationships of the windows81CompliancePolicy objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -138,7 +138,7 @@ public RequestInformation ToPostRequestInformation(DeviceCompliancePolicy body,
return requestInfo;
}
///
- /// List properties and relationships of the macOSCompliancePolicy objects.
+ /// List properties and relationships of the windows81CompliancePolicy objects.
///
public class DeviceCompliancePoliciesRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
index 43464cd26f2..632edc71c0c 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
@@ -74,8 +74,8 @@ public DeviceCompliancePolicyItemRequestBuilder(Dictionary pathP
public DeviceCompliancePolicyItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}{?%24select,%24expand}", rawUrl) {
}
///
- /// Deletes a macOSCompliancePolicy.
- /// Find more info here
+ /// Deletes a iosCompliancePolicy.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -94,8 +94,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the windows10CompliancePolicy object.
- /// Find more info here
+ /// Read properties and relationships of the iosCompliancePolicy object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -136,7 +136,7 @@ public async Task PatchAsync(DeviceCompliancePolicy body
return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Deletes a macOSCompliancePolicy.
+ /// Deletes a iosCompliancePolicy.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -160,7 +160,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the windows10CompliancePolicy object.
+ /// Read properties and relationships of the iosCompliancePolicy object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -230,7 +230,7 @@ public DeviceCompliancePolicyItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the windows10CompliancePolicy object.
+ /// Read properties and relationships of the iosCompliancePolicy object.
///
public class DeviceCompliancePolicyItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs
index f38fcd6726e..bc291fa944a 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs
@@ -42,8 +42,8 @@ public DeviceConfigurationsRequestBuilder(Dictionary pathParamet
public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the androidCustomConfiguration objects.
- /// Find more info here
+ /// List properties and relationships of the windows10GeneralConfiguration objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -84,7 +84,7 @@ public async Task PostAsync(DeviceConfiguration body, Actio
return await RequestAdapter.SendAsync(requestInfo, DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the androidCustomConfiguration objects.
+ /// List properties and relationships of the windows10GeneralConfiguration objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -138,7 +138,7 @@ public RequestInformation ToPostRequestInformation(DeviceConfiguration body, Act
return requestInfo;
}
///
- /// List properties and relationships of the androidCustomConfiguration objects.
+ /// List properties and relationships of the windows10GeneralConfiguration objects.
///
public class DeviceConfigurationsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs
index d585a55821c..46eadc022bf 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs
@@ -65,8 +65,8 @@ public DeviceConfigurationItemRequestBuilder(Dictionary pathPara
public DeviceConfigurationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}{?%24select,%24expand}", rawUrl) {
}
///
- /// Deletes a windowsUpdateForBusinessConfiguration.
- /// Find more info here
+ /// Deletes a iosUpdateConfiguration.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -85,8 +85,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the iosCustomConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -113,8 +113,8 @@ public GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder GetOm
return new GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder(PathParameters, RequestAdapter, secretReferenceValueId);
}
///
- /// Update the properties of a macOSGeneralDeviceConfiguration object.
- /// Find more info here
+ /// Update the properties of a iosUpdateConfiguration object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -135,7 +135,7 @@ public async Task PatchAsync(DeviceConfiguration body, Acti
return await RequestAdapter.SendAsync(requestInfo, DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Deletes a windowsUpdateForBusinessConfiguration.
+ /// Deletes a iosUpdateConfiguration.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -159,7 +159,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosCustomConfiguration object.
+ /// Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -185,7 +185,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a macOSGeneralDeviceConfiguration object.
+ /// Update the properties of a iosUpdateConfiguration object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -229,7 +229,7 @@ public DeviceConfigurationItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the iosCustomConfiguration object.
+ /// Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration object.
///
public class DeviceConfigurationItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
index feda3ef938f..01e1da861ef 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
@@ -42,8 +42,8 @@ public DeviceEnrollmentConfigurationsRequestBuilder(Dictionary p
public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the deviceEnrollmentConfiguration objects.
- /// Find more info here
+ /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -62,8 +62,8 @@ public async Task GetAsync(Acti
return await RequestAdapter.SendAsync(requestInfo, DeviceEnrollmentConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
- /// Find more info here
+ /// Create a new deviceEnrollmentLimitConfiguration object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -84,7 +84,7 @@ public async Task PostAsync(DeviceEnrollmentConfi
return await RequestAdapter.SendAsync(requestInfo, DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the deviceEnrollmentConfiguration objects.
+ /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -110,7 +110,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ /// Create a new deviceEnrollmentLimitConfiguration object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -138,7 +138,7 @@ public RequestInformation ToPostRequestInformation(DeviceEnrollmentConfiguration
return requestInfo;
}
///
- /// List properties and relationships of the deviceEnrollmentConfiguration objects.
+ /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
///
public class DeviceEnrollmentConfigurationsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
index 698c6db808c..822092db1ce 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
@@ -44,8 +44,8 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(Dictionary
- /// Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
- /// Find more info here
+ /// Deletes a deviceEnrollmentLimitConfiguration.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -84,8 +84,8 @@ public async Task GetAsync(Action(requestInfo, DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the properties of a deviceEnrollmentLimitConfiguration object.
- /// Find more info here
+ /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -106,7 +106,7 @@ public async Task PatchAsync(DeviceEnrollmentConf
return await RequestAdapter.SendAsync(requestInfo, DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
+ /// Deletes a deviceEnrollmentLimitConfiguration.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -156,7 +156,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a deviceEnrollmentLimitConfiguration object.
+ /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs
index 662c035d507..2a540d7bef6 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs
@@ -317,7 +317,7 @@ public DeviceManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdap
}
///
/// Read properties and relationships of the deviceManagement object.
- /// Find more info here
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -345,7 +345,7 @@ public GetEffectivePermissionsWithScopeRequestBuilder GetEffectivePermissionsWit
}
///
/// Update the properties of a deviceManagement object.
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
index 874d9cee476..c62d19329a7 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
@@ -34,8 +34,8 @@ public RoleDefinitionItemRequestBuilder(Dictionary pathParameter
public RoleDefinitionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}{?%24select,%24expand}", rawUrl) {
}
///
- /// Deletes a deviceAndAppManagementRoleDefinition.
- /// Find more info here
+ /// Deletes a roleDefinition.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -54,8 +54,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the roleDefinition object.
- /// Find more info here
+ /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -96,7 +96,7 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Deletes a deviceAndAppManagementRoleDefinition.
+ /// Deletes a roleDefinition.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -120,7 +120,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the roleDefinition object.
+ /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -190,7 +190,7 @@ public RoleDefinitionItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Read properties and relationships of the roleDefinition object.
+ /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
///
public class RoleDefinitionItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs
index 306a45e72a6..0214eac1905 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs
@@ -42,8 +42,8 @@ public RoleDefinitionsRequestBuilder(Dictionary pathParameters,
public RoleDefinitionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// List properties and relationships of the roleDefinition objects.
- /// Find more info here
+ /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -84,7 +84,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// List properties and relationships of the roleDefinition objects.
+ /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -138,7 +138,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.RoleDe
return requestInfo;
}
///
- /// List properties and relationships of the roleDefinition objects.
+ /// List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
///
public class RoleDefinitionsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Devices/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Devices/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 0d49abe94cb..20b3e7f699d 100644
--- a/src/Microsoft.Graph/Generated/Devices/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Devices/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/devices/{device%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 537d1e49b4b..799e82f0003 100644
--- a/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/directory/deletedItems/{directoryObject%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/DirectoryNamespace/DirectoryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryNamespace/DirectoryRequestBuilder.cs
index bc5b724fe08..f6bc3c1e103 100644
--- a/src/Microsoft.Graph/Generated/DirectoryNamespace/DirectoryRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryNamespace/DirectoryRequestBuilder.cs
@@ -65,17 +65,17 @@ public DirectoryRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
- public async Task GetAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
+ public async Task GetAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
#nullable restore
#else
- public async Task GetAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) {
+ public async Task GetAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) {
#endif
var requestInfo = ToGetRequestInformation(requestConfiguration);
var errorMapping = new Dictionary> {
{"4XX", ODataError.CreateFromDiscriminatorValue},
{"5XX", ODataError.CreateFromDiscriminatorValue},
};
- return await RequestAdapter.SendAsync(requestInfo, DirectoryObject.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
+ return await RequestAdapter.SendAsync(requestInfo, DirectoryObject1.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
/// Update directory
@@ -85,10 +85,10 @@ public async Task GetAsync(ActionConfiguration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
- public async Task PatchAsync(DirectoryObject body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
+ public async Task PatchAsync(DirectoryObject1 body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
#nullable restore
#else
- public async Task PatchAsync(DirectoryObject body, Action requestConfiguration = default, CancellationToken cancellationToken = default) {
+ public async Task PatchAsync(DirectoryObject1 body, Action requestConfiguration = default, CancellationToken cancellationToken = default) {
#endif
_ = body ?? throw new ArgumentNullException(nameof(body));
var requestInfo = ToPatchRequestInformation(body, requestConfiguration);
@@ -96,7 +96,7 @@ public async Task PatchAsync(DirectoryObject body, Action(requestInfo, DirectoryObject.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
+ return await RequestAdapter.SendAsync(requestInfo, DirectoryObject1.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
/// Get directory
@@ -131,10 +131,10 @@ public RequestInformation ToGetRequestInformation(ActionConfiguration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
- public RequestInformation ToPatchRequestInformation(DirectoryObject body, Action? requestConfiguration = default) {
+ public RequestInformation ToPatchRequestInformation(DirectoryObject1 body, Action? requestConfiguration = default) {
#nullable restore
#else
- public RequestInformation ToPatchRequestInformation(DirectoryObject body, Action requestConfiguration = default) {
+ public RequestInformation ToPatchRequestInformation(DirectoryObject1 body, Action requestConfiguration = default) {
#endif
_ = body ?? throw new ArgumentNullException(nameof(body));
var requestInfo = new RequestInformation {
diff --git a/src/Microsoft.Graph/Generated/DirectoryObjects/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryObjects/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index dabbbaaa4cd..60a40f0428e 100644
--- a/src/Microsoft.Graph/Generated/DirectoryObjects/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryObjects/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/directoryObjects/{directoryObject%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 520ecbc447b..8ebacd7ceae 100644
--- a/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/directoryRoleTemplates/{directoryRoleTemplate%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/DirectoryRoles/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryRoles/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index fb6dc7bdcd7..65bbdd5b8c9 100644
--- a/src/Microsoft.Graph/Generated/DirectoryRoles/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryRoles/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/directoryRoles/{directoryRole%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs
index d999872366d..74b24a26213 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs
@@ -29,8 +29,8 @@ public RangeRequestBuilder(Dictionary pathParameters, IRequestAd
public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/names/{workbookNamedItem%2Did}/range()", rawUrl) {
}
///
- /// Retrieve the properties and relationships of range object.
- /// Find more info here
+ /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -49,7 +49,7 @@ public async Task GetAsync(Action(requestInfo, WorkbookRange.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the properties and relationships of range object.
+ /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs
index 6e3928c1da5..48828064721 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/ChartsRequestBuilder.cs
@@ -50,7 +50,7 @@ public ChartsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
}
///
/// Retrieve a list of chart objects.
- /// Find more info here
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs
index 394c3b23cab..ad7f037f4f8 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs
@@ -44,7 +44,7 @@ public SeriesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
}
///
/// Retrieve a list of chartseries objects.
- /// Find more info here
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs
index 6f284f43f4a..bdd1ca2a7c0 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs
@@ -29,8 +29,8 @@ public RangeRequestBuilder(Dictionary pathParameters, IRequestAd
public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/names/{workbookNamedItem%2Did}/range()", rawUrl) {
}
///
- /// Retrieve the properties and relationships of range object.
- /// Find more info here
+ /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -49,7 +49,7 @@ public async Task GetAsync(Action(requestInfo, WorkbookRange.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve the properties and relationships of range object.
+ /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs
index 01d1fe5536d..8b9039ad160 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs
@@ -48,7 +48,7 @@ public WorksheetsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Retrieve a list of worksheet objects.
- /// Find more info here
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs
index fdf387d82c9..4eeba925e0e 100644
--- a/src/Microsoft.Graph/Generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Education/Classes/Item/AssignmentSettings/AssignmentSettingsRequestBuilder.cs
@@ -67,7 +67,7 @@ public async Task GetAsync(Action(requestInfo, EducationAssignmentSettings.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the properties of an educationAssignmentSettings object. Only Teachers can update these settings.
+ /// Update the properties of an educationAssignmentSettings object. Only teachers can update these settings.
/// Find more info here
///
/// The request body
@@ -139,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of an educationAssignmentSettings object. Only Teachers can update these settings.
+ /// Update the properties of an educationAssignmentSettings object. Only teachers can update these settings.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/GroupSettingTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/GroupSettingTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 20fb31fa7f6..467bc06e58e 100644
--- a/src/Microsoft.Graph/Generated/GroupSettingTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/GroupSettingTemplates/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groupSettingTemplates/{groupSettingTemplate%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs
index a46701a3c67..2780f1c01c9 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs
@@ -62,8 +62,8 @@ public async Task GetAsync(Action(requestInfo, ConversationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Use reply thread or reply post to further post to that conversation.
- /// Find more info here
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -110,7 +110,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Use reply thread or reply post to further post to that conversation.
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs
index 2dd740ceba5..20c3f7b3a07 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs
@@ -28,8 +28,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd
public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/reply", rawUrl) {
}
///
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
- /// Find more info here
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +50,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs
index bffac2ce65e..5e4f4c23344 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs
@@ -28,8 +28,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd
public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/reply", rawUrl) {
}
///
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
- /// Find more info here
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +50,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/PostsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/PostsRequestBuilder.cs
index be6ed09d05f..ec431db66b3 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/PostsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/PostsRequestBuilder.cs
@@ -42,8 +42,8 @@ public PostsRequestBuilder(Dictionary pathParameters, IRequestAd
public PostsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts{?%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
- /// Find more info here
+ /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -62,7 +62,7 @@ public async Task GetAsync(Action(requestInfo, PostCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -88,7 +88,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
///
public class PostsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 5f3a8fcf556..3031f5e0799 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/GroupItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/GroupItemRequestBuilder.cs
index a1436300b04..58678835d2b 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/GroupItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/GroupItemRequestBuilder.cs
@@ -31,6 +31,7 @@
using Microsoft.Graph.Groups.Item.Renew;
using Microsoft.Graph.Groups.Item.ResetUnseenCount;
using Microsoft.Graph.Groups.Item.Restore;
+using Microsoft.Graph.Groups.Item.RetryServiceProvisioning;
using Microsoft.Graph.Groups.Item.Settings;
using Microsoft.Graph.Groups.Item.Sites;
using Microsoft.Graph.Groups.Item.SubscribeByMail;
@@ -183,6 +184,10 @@ public class GroupItemRequestBuilder : BaseRequestBuilder {
public RestoreRequestBuilder Restore { get =>
new RestoreRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the retryServiceProvisioning method.
+ public RetryServiceProvisioningRequestBuilder RetryServiceProvisioning { get =>
+ new RetryServiceProvisioningRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the settings property of the microsoft.graph.group entity.
public SettingsRequestBuilder Settings { get =>
new SettingsRequestBuilder(PathParameters, RequestAdapter);
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index b4c1d00ddd4..8d26b8a791f 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/permissionGrants/{resourceSpecificPermissionGrant%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs
new file mode 100644
index 00000000000..dc336fe9f7d
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs
@@ -0,0 +1,90 @@
+//
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Groups.Item.RetryServiceProvisioning {
+ ///
+ /// Provides operations to call the retryServiceProvisioning method.
+ ///
+ public class RetryServiceProvisioningRequestBuilder : BaseRequestBuilder {
+ ///
+ /// Instantiates a new RetryServiceProvisioningRequestBuilder and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RetryServiceProvisioningRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/retryServiceProvisioning", pathParameters) {
+ }
+ ///
+ /// Instantiates a new RetryServiceProvisioningRequestBuilder and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RetryServiceProvisioningRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/retryServiceProvisioning", rawUrl) {
+ }
+ ///
+ /// Invoke action retryServiceProvisioning
+ ///
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
+#nullable restore
+#else
+ public async Task PostAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) {
+#endif
+ var requestInfo = ToPostRequestInformation(requestConfiguration);
+ var errorMapping = new Dictionary> {
+ {"4XX", ODataError.CreateFromDiscriminatorValue},
+ {"5XX", ODataError.CreateFromDiscriminatorValue},
+ };
+ await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
+ }
+ ///
+ /// Invoke action retryServiceProvisioning
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public RequestInformation ToPostRequestInformation(Action? requestConfiguration = default) {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(Action requestConfiguration = default) {
+#endif
+ var requestInfo = new RequestInformation {
+ HttpMethod = Method.POST,
+ UrlTemplate = UrlTemplate,
+ PathParameters = PathParameters,
+ };
+ if (requestConfiguration != null) {
+ var requestConfig = new RetryServiceProvisioningRequestBuilderPostRequestConfiguration();
+ requestConfiguration.Invoke(requestConfig);
+ requestInfo.AddRequestOptions(requestConfig.Options);
+ requestInfo.AddHeaders(requestConfig.Headers);
+ }
+ return requestInfo;
+ }
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ ///
+ public class RetryServiceProvisioningRequestBuilderPostRequestConfiguration {
+ /// Request headers
+ public RequestHeaders Headers { get; set; }
+ /// Request options
+ public IList Options { get; set; }
+ ///
+ /// Instantiates a new retryServiceProvisioningRequestBuilderPostRequestConfiguration and sets the default values.
+ ///
+ public RetryServiceProvisioningRequestBuilderPostRequestConfiguration() {
+ Options = new List();
+ Headers = new RequestHeaders();
+ }
+ }
+ }
+}
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
index dba813a3878..0d228825dba 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -69,8 +69,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
- /// Find more info here
+ /// Update the role of a conversationMember in a team or channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Update the role of a conversationMember in a team or channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs
index de55006fd72..1ec2a2b5d83 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add a conversationMember to a channel.
- /// Find more info here
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add a conversationMember to a channel.
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs
index 3069653ecc1..291e5726c5b 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Send a new chatMessage in the specified channel or a chat.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified channel or a chat.
+ /// Send a new chatMessage in the specified channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index b3326fefe05..9deb6fa1ff0 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/permissionGrants/{resourceSpecificPermissionGrant%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs
index c4fd77eca42..fa4e349ed1c 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -69,8 +69,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
- /// Find more info here
+ /// Update the role of a conversationMember in a team or channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Update the role of a conversationMember in a team or channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs
index e3858d63774..694fee6ba0b 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add a conversationMember to a channel.
- /// Find more info here
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add a conversationMember to a channel.
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs
index 1210f9e96fc..82da0640b5b 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Send a new chatMessage in the specified channel or a chat.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified channel or a chat.
+ /// Send a new chatMessage in the specified channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
index c228f46d45d..fccd269bd9f 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
@@ -59,8 +59,8 @@ public async Task DeleteAsync(Action
- /// Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
- /// Find more info here
+ /// Get a thread object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -125,7 +125,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Get a thread object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -195,7 +195,7 @@ public ConversationThreadItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Get a thread object.
///
public class ConversationThreadItemRequestBuilderGetQueryParameters {
/// Select properties to be returned
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs
index 81d87d5afd6..a4bd4f6fe32 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs
@@ -28,8 +28,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd
public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/reply", rawUrl) {
}
///
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
- /// Find more info here
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +50,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs
index 4ebe7270786..d5746aaa537 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs
@@ -28,8 +28,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd
public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/reply", rawUrl) {
}
///
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
- /// Find more info here
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +50,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action
- /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs
index 7b6d275557b..6f2c93413d9 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs
@@ -42,8 +42,8 @@ public PostsRequestBuilder(Dictionary pathParameters, IRequestAd
public PostsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts{?%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
- /// Find more info here
+ /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -62,7 +62,7 @@ public async Task GetAsync(Action(requestInfo, PostCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -88,7 +88,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
///
public class PostsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs
index c295f9d74ea..23910f56b7c 100644
--- a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs
@@ -84,8 +84,8 @@ public async Task DeleteAsync(Action
- /// Retrieve the properties and relationships of an accessPackage object.
- /// Find more info here
+ /// Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -150,7 +150,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve the properties and relationships of an accessPackage object.
+ /// Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -220,7 +220,7 @@ public AccessPackageItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Retrieve the properties and relationships of an accessPackage object.
+ /// Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
///
public class AccessPackageItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/IdentityProtection/RiskyUsers/Item/History/HistoryRequestBuilder.cs b/src/Microsoft.Graph/Generated/IdentityProtection/RiskyUsers/Item/History/HistoryRequestBuilder.cs
index 53c6c8c3444..0054b2343ae 100644
--- a/src/Microsoft.Graph/Generated/IdentityProtection/RiskyUsers/Item/History/HistoryRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/IdentityProtection/RiskyUsers/Item/History/HistoryRequestBuilder.cs
@@ -42,8 +42,8 @@ public HistoryRequestBuilder(Dictionary pathParameters, IRequest
public HistoryRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/identityProtection/riskyUsers/{riskyUser%2Did}/history{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Read the properties and relationships of a riskyUserHistoryItem object.
- /// Find more info here
+ /// Get the riskyUserHistoryItems from the history navigation property.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -83,7 +83,7 @@ public async Task PostAsync(RiskyUserHistoryItem body, Act
return await RequestAdapter.SendAsync(requestInfo, RiskyUserHistoryItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Read the properties and relationships of a riskyUserHistoryItem object.
+ /// Get the riskyUserHistoryItems from the history navigation property.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -137,7 +137,7 @@ public RequestInformation ToPostRequestInformation(RiskyUserHistoryItem body, Ac
return requestInfo;
}
///
- /// Read the properties and relationships of a riskyUserHistoryItem object.
+ /// Get the riskyUserHistoryItems from the history navigation property.
///
public class HistoryRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Me/Activities/Item/HistoryItems/Item/ActivityHistoryItemItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Activities/Item/HistoryItems/Item/ActivityHistoryItemItemRequestBuilder.cs
index 5bd1688f5d6..c693bef964e 100644
--- a/src/Microsoft.Graph/Generated/Me/Activities/Item/HistoryItems/Item/ActivityHistoryItemItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Activities/Item/HistoryItems/Item/ActivityHistoryItemItemRequestBuilder.cs
@@ -72,8 +72,8 @@ public async Task GetAsync(Action(requestInfo, ActivityHistoryItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create a new or replace an existing history item for an existing user activity.
- /// Find more info here
+ /// Delete an existing history item for an existing user activity.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -144,7 +144,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new or replace an existing history item for an existing user activity.
+ /// Delete an existing history item for an existing user activity.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
index 4e8fdb91cb0..31fe7943748 100644
--- a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -49,8 +49,8 @@ public async Task DeleteAsync(Action
- /// Retrieve a conversationMember from a chat.
- /// Find more info here
+ /// Retrieve a conversationMember from a chat or channel.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -114,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve a conversationMember from a chat.
+ /// Retrieve a conversationMember from a chat or channel.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -184,7 +184,7 @@ public ConversationMemberItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Retrieve a conversationMember from a chat.
+ /// Retrieve a conversationMember from a chat or channel.
///
public class ConversationMemberItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs
index e4b0cdf6fa7..94a8f790b62 100644
--- a/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel or a chat.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ /// Send a new chatMessage in the specified channel or a chat.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index f14c7d1b9e7..7eff83f4c58 100644
--- a/src/Microsoft.Graph/Generated/Me/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/chats/{chat%2Did}/permissionGrants/{resourceSpecificPermissionGrant%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/Events/EventsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Events/EventsRequestBuilder.cs
index 20a2217bd88..faba7b04ff2 100644
--- a/src/Microsoft.Graph/Generated/Me/Events/EventsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Events/EventsRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, EventCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Create one or more multi-value extended properties in a new or existing instance of a resource. The following user resources are supported: As well as the following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties.
- /// Find more info here
+ /// Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: As well as the following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create one or more multi-value extended properties in a new or existing instance of a resource. The following user resources are supported: As well as the following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties.
+ /// Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: As well as the following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index 61e3fa50473..08e2846f646 100644
--- a/src/Microsoft.Graph/Generated/Me/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
index f54ee6ead95..e38558ccdbb 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -69,8 +69,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
- /// Find more info here
+ /// Update the role of a conversationMember in a team or channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Update the role of a conversationMember in a team or channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs
index d2a12455fa9..f12dba29b88 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add a conversationMember to a channel.
- /// Find more info here
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add a conversationMember to a channel.
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs
index 4e3022803ea..5a6a121f1f7 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Send a new chatMessage in the specified channel or a chat.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified channel or a chat.
+ /// Send a new chatMessage in the specified channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
index addfffa798b..e15884e221a 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PermissionGrants/Item/GetMemberGroups/GetMemberGroupsRequestBuilder.cs
@@ -28,7 +28,7 @@ public GetMemberGroupsRequestBuilder(Dictionary pathParameters,
public GetMemberGroupsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/joinedTeams/{team%2Did}/permissionGrants/{resourceSpecificPermissionGrant%2Did}/getMemberGroups", rawUrl) {
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
/// Find more info here
///
/// The request body
@@ -50,7 +50,7 @@ public async Task PostAsync(GetMemberGroupsPostRequestB
return await RequestAdapter.SendAsync(requestInfo, GetMemberGroupsResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive.
+ /// Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the Directory_ResultSizeLimitExceeded error code. As a workaround, use the List group transitive memberOf API.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs
index ce7fef7b836..25967ccfb68 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -69,8 +69,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
- /// Find more info here
+ /// Update the role of a conversationMember in a team or channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Update the role of a conversationMember in a team or channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs
index 57e8c8d8944..4f92687d79f 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Add a conversationMember to a channel.
- /// Find more info here
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add a conversationMember to a channel.
+ /// Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs
index db34be45d58..0fcbd2a52f6 100644
--- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs
@@ -67,8 +67,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Send a new chatMessage in the specified channel or a chat.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -115,7 +115,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified channel or a chat.
+ /// Send a new chatMessage in the specified channel.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
index 5f7f5ed5294..779c96a73bd 100644
--- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
@@ -47,8 +47,8 @@ public AttachmentsRequestBuilder(Dictionary pathParameters, IReq
public AttachmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messages/{message%2Did}/attachments{?%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve a list of attachment objects attached to a message.
- /// Find more info here
+ /// Retrieve a list of attachment objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -89,7 +89,7 @@ public async Task PostAsync(Attachment body, Action(requestInfo, Attachment.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve a list of attachment objects attached to a message.
+ /// Retrieve a list of attachment objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -143,7 +143,7 @@ public RequestInformation ToPostRequestInformation(Attachment body, Action
- /// Retrieve a list of attachment objects attached to a message.
+ /// Retrieve a list of attachment objects.
///
public class AttachmentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs
index 759f7d6656f..27bfaca837a 100644
--- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/MailFolderItemRequestBuilder.cs
@@ -94,8 +94,8 @@ public async Task GetAsync(Action(requestInfo, MailFolder.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the writable properties of a mailSearchFolder object.
- /// Find more info here
+ /// Update the properties of mailfolder object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -166,7 +166,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the writable properties of a mailSearchFolder object.
+ /// Update the properties of mailfolder object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
index f1ce9e36d88..a549dd0aa3d 100644
--- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
@@ -47,8 +47,8 @@ public AttachmentsRequestBuilder(Dictionary pathParameters, IReq
public AttachmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/messages/{message%2Did}/attachments{?%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve a list of attachment objects attached to a message.
- /// Find more info here
+ /// Retrieve a list of attachment objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -89,7 +89,7 @@ public async Task PostAsync(Attachment body, Action(requestInfo, Attachment.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve a list of attachment objects attached to a message.
+ /// Retrieve a list of attachment objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -143,7 +143,7 @@ public RequestInformation ToPostRequestInformation(Attachment body, Action
- /// Retrieve a list of attachment objects attached to a message.
+ /// Retrieve a list of attachment objects.
///
public class AttachmentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs
index bec155a1d9b..7052cd7362f 100644
--- a/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs
@@ -60,6 +60,7 @@
using Microsoft.Graph.Me.RemoveAllDevicesFromManagement;
using Microsoft.Graph.Me.ReprocessLicenseAssignment;
using Microsoft.Graph.Me.Restore;
+using Microsoft.Graph.Me.RetryServiceProvisioning;
using Microsoft.Graph.Me.RevokeSignInSessions;
using Microsoft.Graph.Me.ScopedRoleMemberOf;
using Microsoft.Graph.Me.SendMail;
@@ -320,6 +321,10 @@ public class MeRequestBuilder : BaseRequestBuilder {
public RestoreRequestBuilder Restore { get =>
new RestoreRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the retryServiceProvisioning method.
+ public RetryServiceProvisioningRequestBuilder RetryServiceProvisioning { get =>
+ new RetryServiceProvisioningRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to call the revokeSignInSessions method.
public RevokeSignInSessionsRequestBuilder RevokeSignInSessions { get =>
new RevokeSignInSessionsRequestBuilder(PathParameters, RequestAdapter);
@@ -381,8 +386,8 @@ public ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder ExportDevic
return new ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder(PathParameters, RequestAdapter, skip, top);
}
///
- /// Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node.
- /// Find more info here
+ /// Retrieve the properties and relationships of user object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -433,7 +438,7 @@ public ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder ReminderViewWi
return new ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder(PathParameters, RequestAdapter, endDateTime, startDateTime);
}
///
- /// Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node.
+ /// Retrieve the properties and relationships of user object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -487,7 +492,7 @@ public RequestInformation ToPatchRequestInformation(Microsoft.Graph.Models.User
return requestInfo;
}
///
- /// Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node.
+ /// Retrieve the properties and relationships of user object.
///
public class MeRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
index bb9acfc4bf1..dfadd3e9b56 100644
--- a/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs
@@ -47,8 +47,8 @@ public AttachmentsRequestBuilder(Dictionary pathParameters, IReq
public AttachmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/messages/{message%2Did}/attachments{?%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Retrieve a list of attachment objects attached to a message.
- /// Find more info here
+ /// Retrieve a list of attachment objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -89,7 +89,7 @@ public async Task PostAsync(Attachment body, Action(requestInfo, Attachment.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Retrieve a list of attachment objects attached to a message.
+ /// Retrieve a list of attachment objects.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -143,7 +143,7 @@ public RequestInformation ToPostRequestInformation(Attachment body, Action
- /// Retrieve a list of attachment objects attached to a message.
+ /// Retrieve a list of attachment objects.
///
public class AttachmentsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs
index b9747a13155..efe208b199e 100644
--- a/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs
@@ -89,8 +89,8 @@ public MessageItemRequestBuilder(Dictionary pathParameters, IReq
public MessageItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/messages/{message%2Did}{?includeHiddenMessages*,%24select,%24expand}", rawUrl) {
}
///
- /// Delete a message in the specified user's mailbox, or delete a relationship of the message.
- /// Find more info here
+ /// Delete eventMessage.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -110,7 +110,7 @@ public async Task DeleteAsync(Action
/// The messages in a mailbox or folder. Read-only. Nullable.
- /// Find more info here
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -129,8 +129,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.Message.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update the properties of an eventMessage object.
- /// Find more info here
+ /// Update the properties of a message object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -151,7 +151,7 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.Message.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Delete a message in the specified user's mailbox, or delete a relationship of the message.
+ /// Delete eventMessage.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -201,7 +201,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of an eventMessage object.
+ /// Update the properties of a message object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Me/OwnedObjects/Item/DirectoryObjectItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/OwnedObjects/Item/DirectoryObjectItemRequestBuilder.cs
index 280e4461396..6b5c1f45a0c 100644
--- a/src/Microsoft.Graph/Generated/Me/OwnedObjects/Item/DirectoryObjectItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/OwnedObjects/Item/DirectoryObjectItemRequestBuilder.cs
@@ -44,7 +44,7 @@ public DirectoryObjectItemRequestBuilder(Dictionary pathParamete
public DirectoryObjectItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/ownedObjects/{directoryObject%2Did}{?%24select,%24expand}", rawUrl) {
}
///
- /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand.
+ /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -63,7 +63,7 @@ public async Task GetAsync(Action(requestInfo, DirectoryObject.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand.
+ /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -89,7 +89,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand.
+ /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
///
public class DirectoryObjectItemRequestBuilderGetQueryParameters {
/// Expand related entities
diff --git a/src/Microsoft.Graph/Generated/Me/OwnedObjects/OwnedObjectsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/OwnedObjects/OwnedObjectsRequestBuilder.cs
index 50b8fae3467..e6542f996d4 100644
--- a/src/Microsoft.Graph/Generated/Me/OwnedObjects/OwnedObjectsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/OwnedObjects/OwnedObjectsRequestBuilder.cs
@@ -57,7 +57,7 @@ public OwnedObjectsRequestBuilder(Dictionary pathParameters, IRe
public OwnedObjectsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/ownedObjects{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
///
- /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand.
+ /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
/// Find more info here
///
/// Cancellation token to use when cancelling requests
@@ -77,7 +77,7 @@ public async Task GetAsync(Action(requestInfo, DirectoryObjectCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand.
+ /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -103,7 +103,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand.
+ /// Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
///
public class OwnedObjectsRequestBuilderGetQueryParameters {
/// Include count of items
diff --git a/src/Microsoft.Graph/Generated/Me/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs
new file mode 100644
index 00000000000..34064c3f885
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/RetryServiceProvisioning/RetryServiceProvisioningRequestBuilder.cs
@@ -0,0 +1,90 @@
+//
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Me.RetryServiceProvisioning {
+ ///
+ /// Provides operations to call the retryServiceProvisioning method.
+ ///
+ public class RetryServiceProvisioningRequestBuilder : BaseRequestBuilder {
+ ///
+ /// Instantiates a new RetryServiceProvisioningRequestBuilder and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RetryServiceProvisioningRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/retryServiceProvisioning", pathParameters) {
+ }
+ ///
+ /// Instantiates a new RetryServiceProvisioningRequestBuilder and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RetryServiceProvisioningRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/retryServiceProvisioning", rawUrl) {
+ }
+ ///
+ /// Invoke action retryServiceProvisioning
+ ///
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) {
+#nullable restore
+#else
+ public async Task PostAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) {
+#endif
+ var requestInfo = ToPostRequestInformation(requestConfiguration);
+ var errorMapping = new Dictionary