diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs
index 5a334bbff6e..703cea8b144 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/MembersRequestBuilder.cs
@@ -3,6 +3,7 @@
using Microsoft.Graph.Chats.Item.Members.Add;
using Microsoft.Graph.Chats.Item.Members.Count;
using Microsoft.Graph.Chats.Item.Members.Item;
+using Microsoft.Graph.Chats.Item.Members.Remove;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
using Microsoft.Kiota.Abstractions.Extensions;
@@ -31,6 +32,11 @@ public partial class MembersRequestBuilder : BaseRequestBuilder
{
get => new global::Microsoft.Graph.Chats.Item.Members.Count.CountRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the remove method.
+ public global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveRequestBuilder Remove
+ {
+ get => new global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the members property of the microsoft.graph.chat entity.
/// The unique identifier of conversationMember
/// A
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemovePostRequestBody.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemovePostRequestBody.cs
new file mode 100644
index 00000000000..b3fe8db9b00
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemovePostRequestBody.cs
@@ -0,0 +1,82 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Chats.Item.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable
+ #pragma warning restore CS1591
+ {
+ /// 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") ?? new Dictionary(); }
+ set { BackingStore.Set("AdditionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The values property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Values
+ {
+ get { return BackingStore?.Get?>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#nullable restore
+#else
+ public List Values
+ {
+ get { return BackingStore?.Get>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public RemovePostRequestBody()
+ {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "values", n => { Values = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ConversationMember.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public virtual void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteCollectionOfObjectValues("values", Values);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemovePostResponse.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemovePostResponse.cs
new file mode 100644
index 00000000000..88821af0b6f
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemovePostResponse.cs
@@ -0,0 +1,65 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Chats.Item.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostResponse : global::Microsoft.Graph.Models.BaseCollectionPaginationCountResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ /// The value property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Value
+ {
+ get { return BackingStore?.Get?>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#nullable restore
+#else
+ public List Value
+ {
+ get { return BackingStore?.Get>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#endif
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostResponse();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public override IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>(base.GetFieldDeserializers())
+ {
+ { "value", n => { Value = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ActionResultPart.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public override void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ base.Serialize(writer);
+ writer.WriteCollectionOfObjectValues("value", Value);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemoveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemoveRequestBuilder.cs
new file mode 100644
index 00000000000..0109a6fa037
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemoveRequestBuilder.cs
@@ -0,0 +1,130 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Chats.Item.Members.Remove
+{
+ ///
+ /// Provides operations to call the remove method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/members/remove", pathParameters)
+ {
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/{chat%2Did}/members/remove", rawUrl)
+ {
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+ [Obsolete("This method is obsolete. Use PostAsRemovePostResponseAsync instead.")]
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ ///
+ /// A
+ /// The request body
+ /// 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(global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ ///
+ /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ ///
+ /// A
+ /// The raw URL to use for the request builder.
+ public global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveRequestBuilder(rawUrl, RequestAdapter);
+ }
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ ///
+ [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemoveResponse.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemoveResponse.cs
new file mode 100644
index 00000000000..a607a4caa17
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Remove/RemoveResponse.cs
@@ -0,0 +1,28 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Chats.Item.Members.Remove
+{
+ [Obsolete("This class is obsolete. Use RemovePostResponse instead.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemoveResponse : global::Microsoft.Graph.Chats.Item.Members.Remove.RemovePostResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Chats.Item.Members.Remove.RemoveResponse();
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
index 3019f21f44b..c3696c46462 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
@@ -84,8 +84,8 @@ public MessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Send a new chatMessage in the specified channel or a chat.
- /// Find more info here
+ /// 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
///
/// A
/// The request body
@@ -129,7 +129,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified channel or a chat.
+ /// 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.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
index e56e27db2fc..7325c1ddbd1 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
@@ -126,7 +126,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
}
///
/// Read properties and relationships of the deviceAppManagement object.
- /// Find more info here
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -150,7 +150,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
}
///
/// Update the properties of a deviceAppManagement object.
- /// Find more info here
+ /// Find more info here
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
index 69696c786c1..c925a09da79 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
@@ -54,8 +54,8 @@ public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAd
{
}
///
- /// List properties and relationships of the targetedManagedAppProtection objects.
- /// Find more info here
+ /// List properties and relationships of the managedAppProtection objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -103,7 +103,7 @@ public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAd
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedAppPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the targetedManagedAppProtection objects.
+ /// List properties and relationships of the managedAppProtection objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -153,7 +153,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceAppManagement.ManagedAppPolicies.ManagedAppPoliciesRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the targetedManagedAppProtection objects.
+ /// List properties and relationships of the managedAppProtection objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppPoliciesRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
index e61314f6134..3ca3fc016b7 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
@@ -75,8 +75,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the androidManagedAppRegistration object.
- /// Find more info here
+ /// Read properties and relationships of the iosManagedAppRegistration object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -143,7 +143,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the androidManagedAppRegistration object.
+ /// Read properties and relationships of the iosManagedAppRegistration object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -201,7 +201,7 @@ public partial class ManagedAppRegistrationItemRequestBuilderDeleteRequestConfig
{
}
///
- /// Read properties and relationships of the androidManagedAppRegistration object.
+ /// Read properties and relationships of the iosManagedAppRegistration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppRegistrationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
index 895b67bd9e8..1157db7ad13 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
@@ -57,8 +57,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the managedAppStatusRaw object.
- /// Find more info here
+ /// Read properties and relationships of the managedAppStatus object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -125,7 +125,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the managedAppStatusRaw object.
+ /// Read properties and relationships of the managedAppStatus object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -183,7 +183,7 @@ public partial class ManagedAppStatusItemRequestBuilderDeleteRequestConfiguratio
{
}
///
- /// Read properties and relationships of the managedAppStatusRaw object.
+ /// Read properties and relationships of the managedAppStatus object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppStatusItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs
index c6e88a5f1d5..373b86368d7 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs
@@ -54,8 +54,8 @@ public ManagedAppStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAd
{
}
///
- /// List properties and relationships of the managedAppStatusRaw objects.
- /// Find more info here
+ /// List properties and relationships of the managedAppStatus objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -103,7 +103,7 @@ public ManagedAppStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAd
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedAppStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the managedAppStatusRaw objects.
+ /// List properties and relationships of the managedAppStatus objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -153,7 +153,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceAppManagement.ManagedAppStatuses.ManagedAppStatusesRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the managedAppStatusRaw objects.
+ /// List properties and relationships of the managedAppStatus objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppStatusesRequestBuilderGetQueryParameters
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 60dd6571bb0..f16e11a0cdf 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs
@@ -54,8 +54,8 @@ public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)
{
}
///
- /// List properties and relationships of the iosVppEBookAssignment objects.
- /// Find more info here
+ /// List properties and relationships of the managedEBookAssignment objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -78,8 +78,8 @@ public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedEBookAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new iosVppEBookAssignment object.
- /// Find more info here
+ /// Create a new managedEBookAssignment object.
+ /// Find more info here
///
/// A
/// The request body
@@ -104,7 +104,7 @@ public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the iosVppEBookAssignment objects.
+ /// List properties and relationships of the managedEBookAssignment objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new iosVppEBookAssignment object.
+ /// Create a new managedEBookAssignment object.
///
/// A
/// The request body
@@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceAppManagement.ManagedEBooks.Item.Assignments.AssignmentsRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the iosVppEBookAssignment objects.
+ /// List properties and relationships of the managedEBookAssignment objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class AssignmentsRequestBuilderGetQueryParameters
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 5d92308132f..5528a522158 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
@@ -58,8 +58,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
///
/// A
/// Cancellation token to use when cancelling requests
@@ -127,7 +127,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosVppEBookAssignment object.
+ /// Read properties and relationships of the managedEBookAssignment object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -185,7 +185,7 @@ public partial class ManagedEBookAssignmentItemRequestBuilderDeleteRequestConfig
{
}
///
- /// Read properties and relationships of the iosVppEBookAssignment object.
+ /// Read properties and relationships of the managedEBookAssignment object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedEBookAssignmentItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
index 82bb6bccc65..e1062f6f1d2 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
@@ -94,8 +94,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
///
/// A
/// Cancellation token to use when cancelling requests
@@ -163,7 +163,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the iosMobileAppConfiguration object.
+ /// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -221,7 +221,7 @@ public partial class ManagedDeviceMobileAppConfigurationItemRequestBuilderDelete
{
}
///
- /// Read properties and relationships of the iosMobileAppConfiguration object.
+ /// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs
index 1ba9b0ffa86..b4abbbe9e48 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs
@@ -54,8 +54,8 @@ public MobileAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requ
{
}
///
- /// List properties and relationships of the iosMobileAppConfiguration objects.
- /// Find more info here
+ /// List properties and relationships of the managedDeviceMobileAppConfiguration objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -104,7 +104,7 @@ public MobileAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requ
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedDeviceMobileAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the iosMobileAppConfiguration objects.
+ /// List properties and relationships of the managedDeviceMobileAppConfiguration objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceAppManagement.MobileAppConfigurations.MobileAppConfigurationsRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the iosMobileAppConfiguration objects.
+ /// List properties and relationships of the managedDeviceMobileAppConfiguration objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class MobileAppConfigurationsRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
index 0514f3c0da2..63a524fc462 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
@@ -149,8 +149,8 @@ public MobileAppItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter
{
}
///
- /// Deletes a iosStoreApp.
- /// Find more info here
+ /// Deletes a microsoftStoreForBusinessApp.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -172,8 +172,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the windowsWebApp object.
- /// Find more info here
+ /// Read properties and relationships of the iosStoreApp object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -196,8 +196,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of a androidLobApp object.
- /// Find more info here
+ /// Update the properties of a webApp object.
+ /// Find more info here
///
/// A
/// The request body
@@ -222,7 +222,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes a iosStoreApp.
+ /// Deletes a microsoftStoreForBusinessApp.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -241,7 +241,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the windowsWebApp object.
+ /// Read properties and relationships of the iosStoreApp object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -260,7 +260,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a androidLobApp object.
+ /// Update the properties of a webApp object.
///
/// A
/// The request body
@@ -299,7 +299,7 @@ public partial class MobileAppItemRequestBuilderDeleteRequestConfiguration : Req
{
}
///
- /// Read properties and relationships of the windowsWebApp object.
+ /// Read properties and relationships of the iosStoreApp object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class MobileAppItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs
index 88f79877cba..47915039bac 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs
@@ -150,8 +150,8 @@ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
{
}
///
- /// List properties and relationships of the webApp objects.
- /// Find more info here
+ /// List properties and relationships of the androidLobApp objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -174,8 +174,8 @@ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.MobileAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new macOSOfficeSuiteApp object.
- /// Find more info here
+ /// Create a new microsoftStoreForBusinessApp object.
+ /// Find more info here
///
/// A
/// The request body
@@ -200,7 +200,7 @@ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the webApp objects.
+ /// List properties and relationships of the androidLobApp objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -219,7 +219,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new macOSOfficeSuiteApp object.
+ /// Create a new microsoftStoreForBusinessApp object.
///
/// A
/// The request body
@@ -250,7 +250,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceAppManagement.MobileApps.MobileAppsRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the webApp objects.
+ /// List properties and relationships of the androidLobApp objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class MobileAppsRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
index 2d2671e64ec..376b5fdb633 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
@@ -78,8 +78,8 @@ public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter req
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new androidCompliancePolicy object.
- /// Find more info here
+ /// Create a new windows10CompliancePolicy object.
+ /// Find more info here
///
/// A
/// The request body
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new androidCompliancePolicy object.
+ /// Create a new windows10CompliancePolicy object.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
index 679cd18c3b3..0e7e8a2a367 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
@@ -89,8 +89,8 @@ public DeviceCompliancePolicyItemRequestBuilder(string rawUrl, IRequestAdapter r
{
}
///
- /// Deletes a windows10MobileCompliancePolicy.
- /// 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.
@@ -112,8 +112,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the windowsPhone81CompliancePolicy object.
- /// Find more info here
+ /// Read properties and relationships of the deviceCompliancePolicy object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -136,8 +136,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of a windows10CompliancePolicy object.
- /// Find more info here
+ /// Update the properties of a windows81CompliancePolicy object.
+ /// Find more info here
///
/// A
/// The request body
@@ -162,7 +162,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes a windows10MobileCompliancePolicy.
+ /// Deletes a iosCompliancePolicy.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -181,7 +181,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the windowsPhone81CompliancePolicy object.
+ /// Read properties and relationships of the deviceCompliancePolicy object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -200,7 +200,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a windows10CompliancePolicy object.
+ /// Update the properties of a windows81CompliancePolicy object.
///
/// A
/// The request body
@@ -239,7 +239,7 @@ public partial class DeviceCompliancePolicyItemRequestBuilderDeleteRequestConfig
{
}
///
- /// Read properties and relationships of the windowsPhone81CompliancePolicy object.
+ /// Read properties and relationships of the deviceCompliancePolicy object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceCompliancePolicyItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs
index edf38fdeb5c..5361f6070e3 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs
@@ -54,8 +54,8 @@ public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter request
{
}
///
- /// List properties and relationships of the androidGeneralDeviceConfiguration objects.
- /// Find more info here
+ /// List properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -78,8 +78,8 @@ public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter request
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new windows81GeneralConfiguration object.
- /// Find more info here
+ /// Create a new macOSDeviceFeaturesConfiguration object.
+ /// Find more info here
///
/// A
/// The request body
@@ -104,7 +104,7 @@ public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter request
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the androidGeneralDeviceConfiguration objects.
+ /// List properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new windows81GeneralConfiguration object.
+ /// Create a new macOSDeviceFeaturesConfiguration object.
///
/// A
/// The request body
@@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceManagement.DeviceConfigurations.DeviceConfigurationsRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the androidGeneralDeviceConfiguration objects.
+ /// List properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceConfigurationsRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs
index 844295a9417..c434319d482 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs
@@ -78,8 +78,8 @@ public DeviceConfigurationItemRequestBuilder(string rawUrl, IRequestAdapter requ
{
}
///
- /// Deletes a iosDeviceFeaturesConfiguration.
- /// 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.
@@ -101,8 +101,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the androidCustomConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the editionUpgradeConfiguration object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -135,8 +135,8 @@ public async Task DeleteAsync(Action
- /// Update the properties of a windows10SecureAssessmentConfiguration object.
- /// Find more info here
+ /// Update the properties of a editionUpgradeConfiguration object.
+ /// Find more info here
///
/// A
/// The request body
@@ -161,7 +161,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes a iosDeviceFeaturesConfiguration.
+ /// Deletes a iosUpdateConfiguration.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -180,7 +180,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the androidCustomConfiguration object.
+ /// Read properties and relationships of the editionUpgradeConfiguration object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -199,7 +199,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a windows10SecureAssessmentConfiguration object.
+ /// Update the properties of a editionUpgradeConfiguration object.
///
/// A
/// The request body
@@ -238,7 +238,7 @@ public partial class DeviceConfigurationItemRequestBuilderDeleteRequestConfigura
{
}
///
- /// Read properties and relationships of the androidCustomConfiguration object.
+ /// Read properties and relationships of the editionUpgradeConfiguration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceConfigurationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
index ce9a5f3a974..0cd5cb811f1 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
@@ -78,8 +78,8 @@ public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapt
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
- /// Find more info here
+ /// Create a new deviceEnrollmentLimitConfiguration object.
+ /// Find more info here
///
/// A
/// The request body
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ /// Create a new deviceEnrollmentLimitConfiguration object.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
index 8041893cb0c..a786eb1d074 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
@@ -53,8 +53,8 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(string rawUrl, IRequestAd
{
}
///
- /// Deletes a deviceEnrollmentLimitConfiguration.
- /// Find more info here
+ /// Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -76,8 +76,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the deviceEnrollmentConfiguration object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -100,8 +100,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of a deviceEnrollmentLimitConfiguration object.
- /// Find more info here
+ /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
+ /// Find more info here
///
/// A
/// The request body
@@ -126,7 +126,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes a deviceEnrollmentLimitConfiguration.
+ /// Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration.
///
/// A
/// 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 deviceEnrollmentLimitConfiguration object.
+ /// Read properties and relationships of the deviceEnrollmentConfiguration object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -164,7 +164,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a deviceEnrollmentLimitConfiguration object.
+ /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
///
/// A
/// The request body
@@ -203,7 +203,7 @@ public partial class DeviceEnrollmentConfigurationItemRequestBuilderDeleteReques
{
}
///
- /// Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
+ /// Read properties and relationships of the deviceEnrollmentConfiguration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceEnrollmentConfigurationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
index 6b47b3a2bb0..51097566aef 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
@@ -41,8 +41,8 @@ public RoleDefinitionItemRequestBuilder(string rawUrl, IRequestAdapter requestAd
{
}
///
- /// 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.
@@ -64,8 +64,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
///
/// A
/// Cancellation token to use when cancelling requests
@@ -88,8 +88,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of a roleDefinition object.
- /// Find more info here
+ /// Update the properties of a deviceAndAppManagementRoleDefinition object.
+ /// Find more info here
///
/// A
/// The request body
@@ -114,7 +114,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes a deviceAndAppManagementRoleDefinition.
+ /// Deletes a roleDefinition.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -133,7 +133,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the roleDefinition object.
+ /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -152,7 +152,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a roleDefinition object.
+ /// Update the properties of a deviceAndAppManagementRoleDefinition object.
///
/// A
/// The request body
@@ -191,7 +191,7 @@ public partial class RoleDefinitionItemRequestBuilderDeleteRequestConfiguration
{
}
///
- /// Read properties and relationships of the roleDefinition object.
+ /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class RoleDefinitionItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/RetentionLabel/RetentionLabelRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/RetentionLabel/RetentionLabelRequestBuilder.cs
index 8105210adb6..20b5cd67330 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/RetentionLabel/RetentionLabelRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/RetentionLabel/RetentionLabelRequestBuilder.cs
@@ -81,8 +81,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.ItemRetentionLabel.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.
- /// Find more info here
+ /// Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.
+ /// Find more info here
///
/// A
/// The request body
@@ -145,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.
+ /// Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.
///
/// A
/// The request body
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 726b8921fcc..71c308b355f 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
@@ -213,8 +213,8 @@ public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
{
}
///
- /// 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
///
/// A
/// Cancellation token to use when cancelling requests
@@ -301,7 +301,7 @@ public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
return new global::Microsoft.Graph.Drives.Item.Items.Item.Workbook.Names.Item.RangeNamespace.RowWithRow.RowWithRowRequestBuilder(PathParameters, RequestAdapter, row);
}
///
- /// 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.
///
/// A
/// 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 90ed8c416f3..8dbe5755a48 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
@@ -213,8 +213,8 @@ public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
{
}
///
- /// 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
///
/// A
/// Cancellation token to use when cancelling requests
@@ -301,7 +301,7 @@ public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
return new global::Microsoft.Graph.Drives.Item.Items.Item.Workbook.Worksheets.Item.Names.Item.RangeNamespace.RowWithRow.RowWithRowRequestBuilder(PathParameters, RequestAdapter, row);
}
///
- /// 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.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/GroupLifecyclePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/GroupLifecyclePoliciesRequestBuilder.cs
index 72b19af6489..a64924b4697 100644
--- a/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/GroupLifecyclePoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/GroupLifecyclePoliciesRequestBuilder.cs
@@ -78,7 +78,7 @@ public GroupLifecyclePoliciesRequestBuilder(string rawUrl, IRequestAdapter reque
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.GroupLifecyclePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Creates a new groupLifecyclePolicy.
+ /// Creates a new groupLifecyclePolicy. Only one policy exists in the tenant.
/// Find more info here
///
/// A
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Creates a new groupLifecyclePolicy.
+ /// Creates a new groupLifecyclePolicy. Only one policy exists in the tenant.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs b/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs
index 07845c19db0..56371b03a9c 100644
--- a/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs
@@ -34,7 +34,7 @@ public AddGroupRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
{
}
///
- /// Adds specific groups to a lifecycle policy. This action limits the group lifecycle policy to a set of groups only if the managedGroupTypes property of groupLifecyclePolicy is set to Selected.
+ /// Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected.
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public AddGroupRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.GroupLifecyclePolicies.Item.AddGroup.AddGroupPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Adds specific groups to a lifecycle policy. This action limits the group lifecycle policy to a set of groups only if the managedGroupTypes property of groupLifecyclePolicy is set to Selected.
+ /// Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected.
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public AddGroupRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.GroupLifecyclePolicies.Item.AddGroup.AddGroupResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Adds specific groups to a lifecycle policy. This action limits the group lifecycle policy to a set of groups only if the managedGroupTypes property of groupLifecyclePolicy is set to Selected.
+ /// Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs
index 5559ddb44ef..8e3c4a9200b 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs
@@ -42,7 +42,7 @@ public ConversationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdap
}
///
/// Delete conversation.
- /// 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.
@@ -64,8 +64,8 @@ public async Task DeleteAsync(Action
- /// The group's conversations.
- /// Find more info here
+ /// Retrieve the properties and relationships of conversation object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -107,7 +107,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// The group's conversations.
+ /// Retrieve the properties and relationships of conversation object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -143,7 +143,7 @@ public partial class ConversationItemRequestBuilderDeleteRequestConfiguration :
{
}
///
- /// The group's conversations.
+ /// Retrieve the properties and relationships of conversation object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ConversationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs
index ac9a473a4f2..d21cc22e3a0 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/GroupLifecyclePolicies/Item/AddGroup/AddGroupRequestBuilder.cs
@@ -34,7 +34,7 @@ public AddGroupRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
{
}
///
- /// Adds specific groups to a lifecycle policy. This action limits the group lifecycle policy to a set of groups only if the managedGroupTypes property of groupLifecyclePolicy is set to Selected.
+ /// Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected.
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public AddGroupRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.GroupLifecyclePolicies.Item.AddGroup.AddGroupPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Adds specific groups to a lifecycle policy. This action limits the group lifecycle policy to a set of groups only if the managedGroupTypes property of groupLifecyclePolicy is set to Selected.
+ /// Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected.
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public AddGroupRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.GroupLifecyclePolicies.Item.AddGroup.AddGroupResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Adds specific groups to a lifecycle policy. This action limits the group lifecycle policy to a set of groups only if the managedGroupTypes property of groupLifecyclePolicy is set to Selected.
+ /// Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected.
///
/// A
/// The request body
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 2e66c6d2b71..249dbad8e0d 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
@@ -3,6 +3,7 @@
using Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Add;
using Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Count;
using Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Item;
+using Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
using Microsoft.Kiota.Abstractions.Extensions;
@@ -31,6 +32,11 @@ public partial class MembersRequestBuilder : BaseRequestBuilder
{
get => new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Count.CountRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the remove method.
+ public global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveRequestBuilder Remove
+ {
+ get => new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the members property of the microsoft.graph.channel entity.
/// The unique identifier of conversationMember
/// A
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemovePostRequestBody.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemovePostRequestBody.cs
new file mode 100644
index 00000000000..05b3e7b1db0
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemovePostRequestBody.cs
@@ -0,0 +1,82 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable
+ #pragma warning restore CS1591
+ {
+ /// 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") ?? new Dictionary(); }
+ set { BackingStore.Set("AdditionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The values property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Values
+ {
+ get { return BackingStore?.Get?>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#nullable restore
+#else
+ public List Values
+ {
+ get { return BackingStore?.Get>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public RemovePostRequestBody()
+ {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "values", n => { Values = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ConversationMember.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public virtual void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteCollectionOfObjectValues("values", Values);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemovePostResponse.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemovePostResponse.cs
new file mode 100644
index 00000000000..2a8a98e7cfc
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemovePostResponse.cs
@@ -0,0 +1,65 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostResponse : global::Microsoft.Graph.Models.BaseCollectionPaginationCountResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ /// The value property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Value
+ {
+ get { return BackingStore?.Get?>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#nullable restore
+#else
+ public List Value
+ {
+ get { return BackingStore?.Get>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#endif
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostResponse();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public override IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>(base.GetFieldDeserializers())
+ {
+ { "value", n => { Value = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ActionResultPart.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public override void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ base.Serialize(writer);
+ writer.WriteCollectionOfObjectValues("value", Value);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemoveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemoveRequestBuilder.cs
new file mode 100644
index 00000000000..7b74edc9aaf
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemoveRequestBuilder.cs
@@ -0,0 +1,130 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove
+{
+ ///
+ /// Provides operations to call the remove method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/members/remove", pathParameters)
+ {
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/members/remove", rawUrl)
+ {
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+ [Obsolete("This method is obsolete. Use PostAsRemovePostResponseAsync instead.")]
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ ///
+ /// A
+ /// The request body
+ /// 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(global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ ///
+ /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ ///
+ /// A
+ /// The raw URL to use for the request builder.
+ public global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveRequestBuilder(rawUrl, RequestAdapter);
+ }
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ ///
+ [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemoveResponse.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemoveResponse.cs
new file mode 100644
index 00000000000..9b022c914e3
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Remove/RemoveResponse.cs
@@ -0,0 +1,28 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove
+{
+ [Obsolete("This class is obsolete. Use RemovePostResponse instead.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemoveResponse : global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemovePostResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.Channels.Item.Members.Remove.RemoveResponse();
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/MembersRequestBuilder.cs
index 7dc419eb1ed..c6da49c5ee6 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/MembersRequestBuilder.cs
@@ -3,6 +3,7 @@
using Microsoft.Graph.Groups.Item.Team.Members.Add;
using Microsoft.Graph.Groups.Item.Team.Members.Count;
using Microsoft.Graph.Groups.Item.Team.Members.Item;
+using Microsoft.Graph.Groups.Item.Team.Members.Remove;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
using Microsoft.Kiota.Abstractions.Extensions;
@@ -31,6 +32,11 @@ public partial class MembersRequestBuilder : BaseRequestBuilder
{
get => new global::Microsoft.Graph.Groups.Item.Team.Members.Count.CountRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the remove method.
+ public global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveRequestBuilder Remove
+ {
+ get => new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the members property of the microsoft.graph.team entity.
/// The unique identifier of conversationMember
/// A
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemovePostRequestBody.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemovePostRequestBody.cs
new file mode 100644
index 00000000000..32924be441e
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemovePostRequestBody.cs
@@ -0,0 +1,82 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable
+ #pragma warning restore CS1591
+ {
+ /// 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") ?? new Dictionary(); }
+ set { BackingStore.Set("AdditionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The values property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Values
+ {
+ get { return BackingStore?.Get?>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#nullable restore
+#else
+ public List Values
+ {
+ get { return BackingStore?.Get>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public RemovePostRequestBody()
+ {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "values", n => { Values = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ConversationMember.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public virtual void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteCollectionOfObjectValues("values", Values);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemovePostResponse.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemovePostResponse.cs
new file mode 100644
index 00000000000..10afb108c99
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemovePostResponse.cs
@@ -0,0 +1,65 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostResponse : global::Microsoft.Graph.Models.BaseCollectionPaginationCountResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ /// The value property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Value
+ {
+ get { return BackingStore?.Get?>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#nullable restore
+#else
+ public List Value
+ {
+ get { return BackingStore?.Get>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#endif
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostResponse();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public override IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>(base.GetFieldDeserializers())
+ {
+ { "value", n => { Value = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ActionResultPart.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public override void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ base.Serialize(writer);
+ writer.WriteCollectionOfObjectValues("value", Value);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemoveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemoveRequestBuilder.cs
new file mode 100644
index 00000000000..d56f7597f70
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemoveRequestBuilder.cs
@@ -0,0 +1,130 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Members.Remove
+{
+ ///
+ /// Provides operations to call the remove method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/members/remove", pathParameters)
+ {
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/members/remove", rawUrl)
+ {
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+ [Obsolete("This method is obsolete. Use PostAsRemovePostResponseAsync instead.")]
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ ///
+ /// A
+ /// The request body
+ /// 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(global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ ///
+ /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ ///
+ /// A
+ /// The raw URL to use for the request builder.
+ public global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveRequestBuilder(rawUrl, RequestAdapter);
+ }
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ ///
+ [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemoveResponse.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemoveResponse.cs
new file mode 100644
index 00000000000..28371b9b7d4
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Members/Remove/RemoveResponse.cs
@@ -0,0 +1,28 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.Members.Remove
+{
+ [Obsolete("This class is obsolete. Use RemovePostResponse instead.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemoveResponse : global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemovePostResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.Members.Remove.RemoveResponse();
+ }
+ }
+}
+#pragma warning restore CS0618
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 284f2708bd3..2310e1e0312 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
@@ -3,6 +3,7 @@
using Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Add;
using Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Count;
using Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Item;
+using Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
using Microsoft.Kiota.Abstractions.Extensions;
@@ -31,6 +32,11 @@ public partial class MembersRequestBuilder : BaseRequestBuilder
{
get => new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Count.CountRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the remove method.
+ public global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveRequestBuilder Remove
+ {
+ get => new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the members property of the microsoft.graph.channel entity.
/// The unique identifier of conversationMember
/// A
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemovePostRequestBody.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemovePostRequestBody.cs
new file mode 100644
index 00000000000..0b8162645da
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemovePostRequestBody.cs
@@ -0,0 +1,82 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable
+ #pragma warning restore CS1591
+ {
+ /// 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") ?? new Dictionary(); }
+ set { BackingStore.Set("AdditionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The values property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Values
+ {
+ get { return BackingStore?.Get?>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#nullable restore
+#else
+ public List Values
+ {
+ get { return BackingStore?.Get>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public RemovePostRequestBody()
+ {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "values", n => { Values = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ConversationMember.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public virtual void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteCollectionOfObjectValues("values", Values);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemovePostResponse.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemovePostResponse.cs
new file mode 100644
index 00000000000..0f0897b1f7e
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemovePostResponse.cs
@@ -0,0 +1,65 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostResponse : global::Microsoft.Graph.Models.BaseCollectionPaginationCountResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ /// The value property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Value
+ {
+ get { return BackingStore?.Get?>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#nullable restore
+#else
+ public List Value
+ {
+ get { return BackingStore?.Get>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#endif
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostResponse();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public override IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>(base.GetFieldDeserializers())
+ {
+ { "value", n => { Value = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ActionResultPart.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public override void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ base.Serialize(writer);
+ writer.WriteCollectionOfObjectValues("value", Value);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemoveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemoveRequestBuilder.cs
new file mode 100644
index 00000000000..2ef161a437c
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemoveRequestBuilder.cs
@@ -0,0 +1,130 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove
+{
+ ///
+ /// Provides operations to call the remove method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/members/remove", pathParameters)
+ {
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/members/remove", rawUrl)
+ {
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+ [Obsolete("This method is obsolete. Use PostAsRemovePostResponseAsync instead.")]
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ ///
+ /// A
+ /// The request body
+ /// 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(global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ ///
+ /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ ///
+ /// A
+ /// The raw URL to use for the request builder.
+ public global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveRequestBuilder(rawUrl, RequestAdapter);
+ }
+ ///
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ ///
+ [Obsolete("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemoveResponse.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemoveResponse.cs
new file mode 100644
index 00000000000..e7567c0753a
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Remove/RemoveResponse.cs
@@ -0,0 +1,28 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove
+{
+ [Obsolete("This class is obsolete. Use RemovePostResponse instead.")]
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemoveResponse : global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemovePostResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Groups.Item.Team.PrimaryChannel.Members.Remove.RemoveResponse();
+ }
+ }
+}
+#pragma warning restore CS0618
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 56c1c896e66..3a199b4e810 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
@@ -48,7 +48,7 @@ public ConversationThreadItemRequestBuilder(string rawUrl, IRequestAdapter reque
}
///
/// Delete conversationThread.
- /// 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/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs
index ac83f8441ba..9a5fe47ab29 100644
--- a/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs
@@ -58,8 +58,8 @@ public async Task DeleteAsync(Action
- /// Retrieve the properties and relationships of an ipNamedLocation object.
- /// Find more info here
+ /// Retrieve the properties and relationships of a countryNamedLocation object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -82,8 +82,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.NamedLocation.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of a countryNamedLocation object.
- /// Find more info here
+ /// Update the properties of an ipNamedLocation object.
+ /// Find more info here
///
/// A
/// The request body
@@ -127,7 +127,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve the properties and relationships of an ipNamedLocation object.
+ /// Retrieve the properties and relationships of a countryNamedLocation object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -146,7 +146,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a countryNamedLocation object.
+ /// Update the properties of an ipNamedLocation object.
///
/// A
/// The request body
@@ -185,7 +185,7 @@ public partial class NamedLocationItemRequestBuilderDeleteRequestConfiguration :
{
}
///
- /// Retrieve the properties and relationships of an ipNamedLocation object.
+ /// Retrieve the properties and relationships of a countryNamedLocation object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class NamedLocationItemRequestBuilderGetQueryParameters
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 a83372be3ae..947869285ba 100644
--- a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/AccessPackages/Item/AccessPackageItemRequestBuilder.cs
@@ -100,8 +100,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
///
/// A
/// Cancellation token to use when cancelling requests
@@ -169,7 +169,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.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -227,7 +227,7 @@ public partial class 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.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class AccessPackageItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs
index 94c7ad4eb10..c3573ad76e9 100644
--- a/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/IdentityGovernance/EntitlementManagement/Catalogs/Item/CustomWorkflowExtensions/Item/CustomCalloutExtensionItemRequestBuilder.cs
@@ -35,8 +35,8 @@ public CustomCalloutExtensionItemRequestBuilder(string rawUrl, IRequestAdapter r
{
}
///
- /// Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
- /// Find more info here
+ /// Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -58,8 +58,8 @@ public async Task DeleteAsync(Action
- /// Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
- /// Find more info here
+ /// Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -82,8 +82,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.CustomCalloutExtension.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.
- /// Find more info here
+ /// Update the properties of an accessPackageAssignmentWorkflowExtension object.
+ /// Find more info here
///
/// A
/// The request body
@@ -108,7 +108,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.CustomCalloutExtension.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
+ /// Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -127,7 +127,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ /// Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -146,7 +146,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.
+ /// Update the properties of an accessPackageAssignmentWorkflowExtension object.
///
/// A
/// The request body
@@ -185,7 +185,7 @@ public partial class CustomCalloutExtensionItemRequestBuilderDeleteRequestConfig
{
}
///
- /// Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ /// Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class CustomCalloutExtensionItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs
index e583dd92780..d71dc4fd232 100644
--- a/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/IdentityGovernance/TermsOfUse/Agreements/Item/AgreementItemRequestBuilder.cs
@@ -76,8 +76,8 @@ public async Task DeleteAsync(Action
- /// Retrieve the properties and relationships of an agreement object.
- /// Find more info here
+ /// Retrieve all files related to an agreement. This includes the default file and all localized files.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -145,7 +145,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve the properties and relationships of an agreement object.
+ /// Retrieve all files related to an agreement. This includes the default file and all localized files.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -203,7 +203,7 @@ public partial class AgreementItemRequestBuilderDeleteRequestConfiguration : Req
{
}
///
- /// Retrieve the properties and relationships of an agreement object.
+ /// Retrieve all files related to an agreement. This includes the default file and all localized files.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class AgreementItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/MembersRequestBuilder.cs
index e08d0cbf534..0fba7e4f47b 100644
--- a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/MembersRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/MembersRequestBuilder.cs
@@ -3,6 +3,7 @@
using Microsoft.Graph.Me.Chats.Item.Members.Add;
using Microsoft.Graph.Me.Chats.Item.Members.Count;
using Microsoft.Graph.Me.Chats.Item.Members.Item;
+using Microsoft.Graph.Me.Chats.Item.Members.Remove;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
using Microsoft.Kiota.Abstractions.Extensions;
@@ -31,6 +32,11 @@ public partial class MembersRequestBuilder : BaseRequestBuilder
{
get => new global::Microsoft.Graph.Me.Chats.Item.Members.Count.CountRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the remove method.
+ public global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemoveRequestBuilder Remove
+ {
+ get => new global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemoveRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the members property of the microsoft.graph.chat entity.
/// The unique identifier of conversationMember
/// A
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemovePostRequestBody.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemovePostRequestBody.cs
new file mode 100644
index 00000000000..a0520bbb13e
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemovePostRequestBody.cs
@@ -0,0 +1,82 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Me.Chats.Item.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable
+ #pragma warning restore CS1591
+ {
+ /// 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") ?? new Dictionary(); }
+ set { BackingStore.Set("AdditionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The values property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Values
+ {
+ get { return BackingStore?.Get?>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#nullable restore
+#else
+ public List Values
+ {
+ get { return BackingStore?.Get>("values"); }
+ set { BackingStore?.Set("values", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public RemovePostRequestBody()
+ {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "values", n => { Values = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ConversationMember.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public virtual void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ writer.WriteCollectionOfObjectValues("values", Values);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemovePostResponse.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemovePostResponse.cs
new file mode 100644
index 00000000000..0dab394ec7a
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemovePostResponse.cs
@@ -0,0 +1,65 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Me.Chats.Item.Members.Remove
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class RemovePostResponse : global::Microsoft.Graph.Models.BaseCollectionPaginationCountResponse, IParsable
+ #pragma warning restore CS1591
+ {
+ /// The value property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? Value
+ {
+ get { return BackingStore?.Get?>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#nullable restore
+#else
+ public List Value
+ {
+ get { return BackingStore?.Get>("value"); }
+ set { BackingStore?.Set("value", value); }
+ }
+#endif
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static new global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostResponse CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostResponse();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public override IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>(base.GetFieldDeserializers())
+ {
+ { "value", n => { Value = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.ActionResultPart.CreateFromDiscriminatorValue)?.AsList(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public override void Serialize(ISerializationWriter writer)
+ {
+ _ = writer ?? throw new ArgumentNullException(nameof(writer));
+ base.Serialize(writer);
+ writer.WriteCollectionOfObjectValues("value", Value);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemoveRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemoveRequestBuilder.cs
new file mode 100644
index 00000000000..97e47220e3a
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Members/Remove/RemoveRequestBuilder.cs
@@ -0,0 +1,130 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions;
+using System.Collections.Generic;
+using System.IO;
+using System.Threading.Tasks;
+using System.Threading;
+using System;
+namespace Microsoft.Graph.Me.Chats.Item.Members.Remove
+{
+ ///
+ /// Provides operations to call the remove method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class RemoveRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/chats/{chat%2Did}/members/remove", pathParameters)
+ {
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// The raw URL to use for the request builder.
+ /// The request adapter to use to execute the requests.
+ public RemoveRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/chats/{chat%2Did}/members/remove", rawUrl)
+ {
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsRemovePostResponseAsync(global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ /// Find more info here
+ ///
+ /// A
+ /// The request body
+ /// Cancellation token to use when cancelling requests
+ /// Configuration for the request such as headers, query parameters, and middleware options.
+ /// When receiving a 4XX or 5XX status code
+ [Obsolete("This method is obsolete. Use PostAsRemovePostResponseAsync instead.")]
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public async Task PostAsync(global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPostRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemoveResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed.
+ ///
+ /// A
+ /// The request body
+ /// 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(global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Me.Chats.Item.Members.Remove.RemovePostRequestBody body, Action> requestConfiguration = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = new RequestInformation(Method.POST, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ ///
+ /// Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ ///
+ /// A