diff --git a/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index e8d3aee9eb7..2af4519fa2f 100644
--- a/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Applications.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Applications.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs
index 656bbc502c8..4f7529377ed 100644
--- a/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Applications/Item/AddKey/AddKeyRequestBuilder.cs
@@ -35,7 +35,7 @@ public AddKeyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
{
}
///
- /// Add a key credential to an application. This method, along with removeKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don’t have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won’t be able to use this service action. You can use the Update application operation to perform an update instead.
+ /// Add a key credential to an application. This method, along with removeKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don't have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won't be able to use this service action. You can use the Update application operation to perform an update instead.
/// Find more info here
///
/// A
@@ -61,7 +61,7 @@ public AddKeyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.KeyCredential.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Add a key credential to an application. This method, along with removeKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don’t have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won’t be able to use this service action. You can use the Update application operation to perform an update instead.
+ /// Add a key credential to an application. This method, along with removeKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don't have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won't be able to use this service action. You can use the Update application operation to perform an update instead.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmCompromised/ConfirmCompromisedPostRequestBody.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmCompromised/ConfirmCompromisedPostRequestBody.cs
new file mode 100644
index 00000000000..1ffd82ec4db
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmCompromised/ConfirmCompromisedPostRequestBody.cs
@@ -0,0 +1,81 @@
+//
+#pragma warning disable CS0618
+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.AuditLogs.SignIns.ConfirmCompromised
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class ConfirmCompromisedPostRequestBody : 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 requestIds property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? RequestIds
+ {
+ get { return BackingStore?.Get?>("requestIds"); }
+ set { BackingStore?.Set("requestIds", value); }
+ }
+#nullable restore
+#else
+ public List RequestIds
+ {
+ get { return BackingStore?.Get>("requestIds"); }
+ set { BackingStore?.Set("requestIds", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public ConfirmCompromisedPostRequestBody()
+ {
+ 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.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedPostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedPostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "requestIds", n => { RequestIds = n.GetCollectionOfPrimitiveValues()?.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.WriteCollectionOfPrimitiveValues("requestIds", RequestIds);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmCompromised/ConfirmCompromisedRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmCompromised/ConfirmCompromisedRequestBuilder.cs
new file mode 100644
index 00000000000..f6a2e0e72a1
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmCompromised/ConfirmCompromisedRequestBuilder.cs
@@ -0,0 +1,102 @@
+//
+#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.AuditLogs.SignIns.ConfirmCompromised
+{
+ ///
+ /// Provides operations to call the confirmCompromised method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class ConfirmCompromisedRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public ConfirmCompromisedRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns/confirmCompromised", 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 ConfirmCompromisedRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns/confirmCompromised", rawUrl)
+ {
+ }
+ ///
+ /// Mark an event in the Microsoft Entra sign-in logs as risky. Events marked as risky by an admin are immediately flagged as high risk in Microsoft Entra ID Protection, overriding previous risk states. Admins can confirm that events flagged as risky by Microsoft Entra ID Protection are in fact risky. For details about investigating Identity Protection risks, see How to investigate risk.
+ /// Find more info here
+ ///
+ /// 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 PostAsync(global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedPostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedPostRequestBody 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 },
+ };
+ await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Mark an event in the Microsoft Entra sign-in logs as risky. Events marked as risky by an admin are immediately flagged as high risk in Microsoft Entra ID Protection, overriding previous risk states. Admins can confirm that events flagged as risky by Microsoft Entra ID Protection are in fact risky. For details about investigating Identity Protection risks, see How to investigate risk.
+ ///
+ /// 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.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedPostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedPostRequestBody 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.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedRequestBuilder(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 ConfirmCompromisedRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmSafe/ConfirmSafePostRequestBody.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmSafe/ConfirmSafePostRequestBody.cs
new file mode 100644
index 00000000000..1503abf181e
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmSafe/ConfirmSafePostRequestBody.cs
@@ -0,0 +1,81 @@
+//
+#pragma warning disable CS0618
+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.AuditLogs.SignIns.ConfirmSafe
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class ConfirmSafePostRequestBody : 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 requestIds property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? RequestIds
+ {
+ get { return BackingStore?.Get?>("requestIds"); }
+ set { BackingStore?.Set("requestIds", value); }
+ }
+#nullable restore
+#else
+ public List RequestIds
+ {
+ get { return BackingStore?.Get>("requestIds"); }
+ set { BackingStore?.Set("requestIds", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public ConfirmSafePostRequestBody()
+ {
+ 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.AuditLogs.SignIns.ConfirmSafe.ConfirmSafePostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafePostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "requestIds", n => { RequestIds = n.GetCollectionOfPrimitiveValues()?.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.WriteCollectionOfPrimitiveValues("requestIds", RequestIds);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmSafe/ConfirmSafeRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmSafe/ConfirmSafeRequestBuilder.cs
new file mode 100644
index 00000000000..932e8809e3c
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/ConfirmSafe/ConfirmSafeRequestBuilder.cs
@@ -0,0 +1,102 @@
+//
+#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.AuditLogs.SignIns.ConfirmSafe
+{
+ ///
+ /// Provides operations to call the confirmSafe method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class ConfirmSafeRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public ConfirmSafeRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns/confirmSafe", 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 ConfirmSafeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns/confirmSafe", rawUrl)
+ {
+ }
+ ///
+ /// Mark an event in Microsoft Entra sign-in logs as safe. Admins can either mark the events flagged as risky by Microsoft Entra ID Protection as safe, or they can mark unflagged events as safe. For details about investigating Identity Protection risks, see How to investigate risk.
+ /// Find more info here
+ ///
+ /// 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 PostAsync(global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafePostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafePostRequestBody 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 },
+ };
+ await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Mark an event in Microsoft Entra sign-in logs as safe. Admins can either mark the events flagged as risky by Microsoft Entra ID Protection as safe, or they can mark unflagged events as safe. For details about investigating Identity Protection risks, see How to investigate risk.
+ ///
+ /// 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.AuditLogs.SignIns.ConfirmSafe.ConfirmSafePostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafePostRequestBody 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.AuditLogs.SignIns.ConfirmSafe.ConfirmSafeRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafeRequestBuilder(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 ConfirmSafeRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/Dismiss/DismissPostRequestBody.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/Dismiss/DismissPostRequestBody.cs
new file mode 100644
index 00000000000..6c2722d88bd
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/Dismiss/DismissPostRequestBody.cs
@@ -0,0 +1,81 @@
+//
+#pragma warning disable CS0618
+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.AuditLogs.SignIns.Dismiss
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class DismissPostRequestBody : 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 requestIds property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public List? RequestIds
+ {
+ get { return BackingStore?.Get?>("requestIds"); }
+ set { BackingStore?.Set("requestIds", value); }
+ }
+#nullable restore
+#else
+ public List RequestIds
+ {
+ get { return BackingStore?.Get>("requestIds"); }
+ set { BackingStore?.Set("requestIds", value); }
+ }
+#endif
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public DismissPostRequestBody()
+ {
+ 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.AuditLogs.SignIns.Dismiss.DismissPostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissPostRequestBody();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "requestIds", n => { RequestIds = n.GetCollectionOfPrimitiveValues()?.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.WriteCollectionOfPrimitiveValues("requestIds", RequestIds);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/Dismiss/DismissRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/Dismiss/DismissRequestBuilder.cs
new file mode 100644
index 00000000000..72ba1164b38
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/Dismiss/DismissRequestBuilder.cs
@@ -0,0 +1,102 @@
+//
+#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.AuditLogs.SignIns.Dismiss
+{
+ ///
+ /// Provides operations to call the dismiss method.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class DismissRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public DismissRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns/dismiss", 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 DismissRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/auditLogs/signIns/dismiss", rawUrl)
+ {
+ }
+ ///
+ /// Mark an event in Microsoft Entra sign-in logs as dismissed. For details about investigating Identity Protection risks, see How to investigate risk.
+ /// Find more info here
+ ///
+ /// 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 PostAsync(global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissPostRequestBody body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissPostRequestBody 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 },
+ };
+ await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Mark an event in Microsoft Entra sign-in logs as dismissed. For details about investigating Identity Protection risks, see How to investigate risk.
+ ///
+ /// 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.AuditLogs.SignIns.Dismiss.DismissPostRequestBody body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissPostRequestBody 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.AuditLogs.SignIns.Dismiss.DismissRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissRequestBuilder(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 DismissRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs
index 21f86e3edee..cf813f27f2a 100644
--- a/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/AuditLogs/SignIns/SignInsRequestBuilder.cs
@@ -1,6 +1,9 @@
//
#pragma warning disable CS0618
+using Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised;
+using Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe;
using Microsoft.Graph.AuditLogs.SignIns.Count;
+using Microsoft.Graph.AuditLogs.SignIns.Dismiss;
using Microsoft.Graph.AuditLogs.SignIns.Item;
using Microsoft.Graph.Models.ODataErrors;
using Microsoft.Graph.Models;
@@ -20,11 +23,26 @@ namespace Microsoft.Graph.AuditLogs.SignIns
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class SignInsRequestBuilder : BaseRequestBuilder
{
+ /// Provides operations to call the confirmCompromised method.
+ public global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedRequestBuilder ConfirmCompromised
+ {
+ get => new global::Microsoft.Graph.AuditLogs.SignIns.ConfirmCompromised.ConfirmCompromisedRequestBuilder(PathParameters, RequestAdapter);
+ }
+ /// Provides operations to call the confirmSafe method.
+ public global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafeRequestBuilder ConfirmSafe
+ {
+ get => new global::Microsoft.Graph.AuditLogs.SignIns.ConfirmSafe.ConfirmSafeRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to count the resources in the collection.
public global::Microsoft.Graph.AuditLogs.SignIns.Count.CountRequestBuilder Count
{
get => new global::Microsoft.Graph.AuditLogs.SignIns.Count.CountRequestBuilder(PathParameters, RequestAdapter);
}
+ /// Provides operations to call the dismiss method.
+ public global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissRequestBuilder Dismiss
+ {
+ get => new global::Microsoft.Graph.AuditLogs.SignIns.Dismiss.DismissRequestBuilder(PathParameters, RequestAdapter);
+ }
/// Provides operations to manage the signIns property of the microsoft.graph.auditLogRoot entity.
/// The unique identifier of signIn
/// A
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs
index c3696c46462..3019f21f44b 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 chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel or a chat.
+ /// Find more info here
///
/// A
/// The request body
@@ -129,7 +129,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ /// Send a new chatMessage in the specified channel or a chat.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
index 697c85c2139..b6a053d60ca 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
@@ -44,6 +44,22 @@ public long? ChainId
get { return BackingStore?.Get("chainId"); }
set { BackingStore?.Set("chainId", value); }
}
+ /// The iconId property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? IconId
+ {
+ get { return BackingStore?.Get("iconId"); }
+ set { BackingStore?.Set("iconId", value); }
+ }
+#nullable restore
+#else
+ public string IconId
+ {
+ get { return BackingStore?.Get("iconId"); }
+ set { BackingStore?.Set("iconId", value); }
+ }
+#endif
/// The previewText property
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -152,6 +168,7 @@ public virtual IDictionary> GetFieldDeserializers()
{
{ "activityType", n => { ActivityType = n.GetStringValue(); } },
{ "chainId", n => { ChainId = n.GetLongValue(); } },
+ { "iconId", n => { IconId = n.GetStringValue(); } },
{ "previewText", n => { PreviewText = n.GetObjectValue(global::Microsoft.Graph.Models.ItemBody.CreateFromDiscriminatorValue); } },
{ "recipient", n => { Recipient = n.GetObjectValue(global::Microsoft.Graph.Models.TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } },
{ "teamsAppId", n => { TeamsAppId = n.GetStringValue(); } },
@@ -168,6 +185,7 @@ public virtual void Serialize(ISerializationWriter writer)
_ = writer ?? throw new ArgumentNullException(nameof(writer));
writer.WriteStringValue("activityType", ActivityType);
writer.WriteLongValue("chainId", ChainId);
+ writer.WriteStringValue("iconId", IconId);
writer.WriteObjectValue("previewText", PreviewText);
writer.WriteObjectValue("recipient", Recipient);
writer.WriteStringValue("teamsAppId", TeamsAppId);
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
index f097afb10cf..0ca899a8e4c 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
@@ -35,8 +35,8 @@ public InviteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
{
}
///
- /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
- /// Find more info here
+ /// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ /// Find more info here
///
/// A
/// The request body
@@ -61,7 +61,7 @@ public InviteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.InviteParticipantsOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
+ /// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Contacts/ContactsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contacts/ContactsRequestBuilder.cs
index 16a5badf7c4..7b882babb0e 100644
--- a/src/Microsoft.Graph/Generated/Contacts/ContactsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contacts/ContactsRequestBuilder.cs
@@ -66,7 +66,7 @@ public partial class ContactsRequestBuilder : BaseRequestBuilder
///
/// Path parameters for the request
/// The request adapter to use to execute the requests.
- public ContactsRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters)
+ public ContactsRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24top}", pathParameters)
{
}
///
@@ -74,7 +74,7 @@ public ContactsRequestBuilder(Dictionary pathParameters, IReques
///
/// The raw URL to use for the request builder.
/// The request adapter to use to execute the requests.
- public ContactsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl)
+ public ContactsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24top}", rawUrl)
{
}
///
@@ -102,31 +102,6 @@ public ContactsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.OrgContactCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Add new entity to contacts
- ///
- /// 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 PostAsync(global::Microsoft.Graph.Models.OrgContact body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
- {
-#nullable restore
-#else
- public async Task PostAsync(global::Microsoft.Graph.Models.OrgContact 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.Models.OrgContact.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
- }
- ///
/// Get the list of organizational contacts for this organization.
///
/// A
@@ -146,28 +121,6 @@ public RequestInformation ToGetRequestInformation(Action
- /// Add new entity to contacts
- ///
- /// 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.Models.OrgContact body, Action>? requestConfiguration = default)
- {
-#nullable restore
-#else
- public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Models.OrgContact 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
@@ -235,9 +188,6 @@ public partial class ContactsRequestBuilderGetQueryParameters
[QueryParameter("%24select")]
public string[] Select { get; set; }
#endif
- /// Skip the first n items
- [QueryParameter("%24skip")]
- public int? Skip { get; set; }
/// Show only the first n items
[QueryParameter("%24top")]
public int? Top { get; set; }
@@ -250,14 +200,6 @@ public partial class ContactsRequestBuilderGetQueryParameters
public partial class ContactsRequestBuilderGetRequestConfiguration : RequestConfiguration
{
}
- ///
- /// 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 ContactsRequestBuilderPostRequestConfiguration : RequestConfiguration
- {
- }
}
}
#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Contacts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contacts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index f2656a080c1..244f48d5761 100644
--- a/src/Microsoft.Graph/Generated/Contacts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contacts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Contacts.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Contacts.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs
index 745217cc7b1..0bee8983392 100644
--- a/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contacts/Item/OrgContactItemRequestBuilder.cs
@@ -101,28 +101,6 @@ public OrgContactItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapte
{
}
///
- /// Delete entity from contacts
- ///
- /// 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 DeleteAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
- {
-#nullable restore
-#else
- public async Task DeleteAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default)
- {
-#endif
- var requestInfo = ToDeleteRequestInformation(requestConfiguration);
- var errorMapping = new Dictionary>
- {
- { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
- };
- await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
- }
- ///
/// Get the properties and relationships of an organizational contact.
/// Find more info here
///
@@ -147,50 +125,6 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.OrgContact.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update entity in contacts
- ///
- /// 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 PatchAsync(global::Microsoft.Graph.Models.OrgContact body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
- {
-#nullable restore
-#else
- public async Task PatchAsync(global::Microsoft.Graph.Models.OrgContact body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
- {
-#endif
- _ = body ?? throw new ArgumentNullException(nameof(body));
- var requestInfo = ToPatchRequestInformation(body, requestConfiguration);
- var errorMapping = new Dictionary>
- {
- { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
- };
- return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.OrgContact.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
- }
- ///
- /// Delete entity from contacts
- ///
- /// A
- /// 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 ToDeleteRequestInformation(Action>? requestConfiguration = default)
- {
-#nullable restore
-#else
- public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default)
- {
-#endif
- var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters);
- requestInfo.Configure(requestConfiguration);
- requestInfo.Headers.TryAdd("Accept", "application/json");
- return requestInfo;
- }
- ///
/// Get the properties and relationships of an organizational contact.
///
/// A
@@ -210,28 +144,6 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update entity in contacts
- ///
- /// 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 ToPatchRequestInformation(global::Microsoft.Graph.Models.OrgContact body, Action>? requestConfiguration = default)
- {
-#nullable restore
-#else
- public RequestInformation ToPatchRequestInformation(global::Microsoft.Graph.Models.OrgContact body, Action> requestConfiguration = default)
- {
-#endif
- _ = body ?? throw new ArgumentNullException(nameof(body));
- var requestInfo = new RequestInformation(Method.PATCH, 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
@@ -241,14 +153,6 @@ public RequestInformation ToPatchRequestInformation(global::Microsoft.Graph.Mode
return new global::Microsoft.Graph.Contacts.Item.OrgContactItemRequestBuilder(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 OrgContactItemRequestBuilderDeleteRequestConfiguration : RequestConfiguration
- {
- }
- ///
/// Get the properties and relationships of an organizational contact.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
@@ -283,14 +187,6 @@ public partial class OrgContactItemRequestBuilderGetQueryParameters
public partial class OrgContactItemRequestBuilderGetRequestConfiguration : RequestConfiguration
{
}
- ///
- /// 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 OrgContactItemRequestBuilderPatchRequestConfiguration : RequestConfiguration
- {
- }
}
}
#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Contracts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Contracts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index 16357ce2928..d15899b5204 100644
--- a/src/Microsoft.Graph/Generated/Contracts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Contracts/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Contracts.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Contracts.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
index 986b929bccc..099d5152962 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/Item/ManagedAppPolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs
index 1d709a789d2..21976de7648 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs
@@ -63,8 +63,8 @@ public async Task DeleteAsync(Action
- /// Read properties and relationships of the windowsInformationProtection object.
- /// Find more info here
+ /// Read properties and relationships of the managedAppConfiguration object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -131,7 +131,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Read properties and relationships of the windowsInformationProtection object.
+ /// Read properties and relationships of the managedAppConfiguration object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -189,7 +189,7 @@ public partial class ManagedAppPolicyItemRequestBuilderDeleteRequestConfiguratio
{
}
///
- /// Read properties and relationships of the windowsInformationProtection object.
+ /// Read properties and relationships of the managedAppConfiguration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppPolicyItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
index 5c5d3b67748..69f12423afd 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
@@ -35,7 +35,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Not yet documented
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs
index f8c1e3db894..66de324c1f0 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 windowsInformationProtection objects.
- /// Find more info here
+ /// List properties and relationships of the managedAppConfiguration 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 windowsInformationProtection objects.
+ /// List properties and relationships of the managedAppConfiguration 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 windowsInformationProtection objects.
+ /// List properties and relationships of the managedAppConfiguration objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppPoliciesRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
index f5abb3f982b..81eab1d45e6 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
@@ -35,7 +35,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Not yet documented
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
index e71e0944982..6ac4acfd073 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/IntendedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs
@@ -35,7 +35,7 @@ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
}
///
/// Not yet documented
- /// Find more info here
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs
index c878d34d973..e61314f6134 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 managedAppRegistration object.
- /// Find more info here
+ /// Read properties and relationships of the androidManagedAppRegistration 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 managedAppRegistration object.
+ /// Read properties and relationships of the androidManagedAppRegistration 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 managedAppRegistration object.
+ /// Read properties and relationships of the androidManagedAppRegistration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppRegistrationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs
index ddc4c6e32de..a22129d7dd6 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs
@@ -60,8 +60,8 @@ public ManagedAppRegistrationsRequestBuilder(string rawUrl, IRequestAdapter requ
{
}
///
- /// List properties and relationships of the iosManagedAppRegistration objects.
- /// Find more info here
+ /// List properties and relationships of the androidManagedAppRegistration objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -110,7 +110,7 @@ public ManagedAppRegistrationsRequestBuilder(string rawUrl, IRequestAdapter requ
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedAppRegistration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the iosManagedAppRegistration objects.
+ /// List properties and relationships of the androidManagedAppRegistration objects.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -160,7 +160,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceAppManagement.ManagedAppRegistrations.ManagedAppRegistrationsRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the iosManagedAppRegistration objects.
+ /// List properties and relationships of the androidManagedAppRegistration objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedAppRegistrationsRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs
index 1157db7ad13..895b67bd9e8 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 managedAppStatus object.
- /// Find more info here
+ /// Read properties and relationships of the managedAppStatusRaw 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 managedAppStatus object.
+ /// Read properties and relationships of the managedAppStatusRaw 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 managedAppStatus object.
+ /// Read properties and relationships of the managedAppStatusRaw 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 373b86368d7..c6e88a5f1d5 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 managedAppStatus objects.
- /// Find more info here
+ /// List properties and relationships of the managedAppStatusRaw 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 managedAppStatus objects.
+ /// List properties and relationships of the managedAppStatusRaw 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 managedAppStatus objects.
+ /// List properties and relationships of the managedAppStatusRaw 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/Item/ManagedEBookAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs
index 5d92308132f..59c29474e3e 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
@@ -82,8 +82,8 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Update the properties of a iosVppEBookAssignment object.
- /// Find more info here
+ /// Update the properties of a managedEBookAssignment object.
+ /// Find more info here
///
/// A
/// The request body
@@ -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.
@@ -146,7 +146,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update the properties of a iosVppEBookAssignment object.
+ /// Update the properties of a managedEBookAssignment object.
///
/// A
/// The request body
@@ -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/ManagedEBooks/ManagedEBooksRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs
index bbc1c18d815..e93b6ff31d0 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs
@@ -54,8 +54,8 @@ public ManagedEBooksRequestBuilder(string rawUrl, IRequestAdapter requestAdapter
{
}
///
- /// List properties and relationships of the managedEBook objects.
- /// Find more info here
+ /// List properties and relationships of the iosVppEBook objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -104,7 +104,7 @@ public ManagedEBooksRequestBuilder(string rawUrl, IRequestAdapter requestAdapter
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ManagedEBook.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the managedEBook objects.
+ /// List properties and relationships of the iosVppEBook 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.ManagedEBooks.ManagedEBooksRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the managedEBook objects.
+ /// List properties and relationships of the iosVppEBook objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedEBooksRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs
index e1062f6f1d2..82bb6bccc65 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 managedDeviceMobileAppConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the iosMobileAppConfiguration 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 managedDeviceMobileAppConfiguration object.
+ /// Read properties and relationships of the iosMobileAppConfiguration 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 managedDeviceMobileAppConfiguration object.
+ /// Read properties and relationships of the iosMobileAppConfiguration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs
index 7e35093fafe..d19eecfe7c4 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 managedIOSStoreApp.
- /// Find more info here
+ /// Deletes a iosiPadOSWebClip.
+ /// 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 windowsMobileMSI object.
- /// Find more info here
+ /// Read properties and relationships of the iosLobApp 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 windowsWebApp object.
- /// Find more info here
+ /// Update the properties of a iosVppApp 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 managedIOSStoreApp.
+ /// Deletes a iosiPadOSWebClip.
///
/// 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 windowsMobileMSI object.
+ /// Read properties and relationships of the iosLobApp 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 windowsWebApp object.
+ /// Update the properties of a iosVppApp object.
///
/// A
/// The request body
@@ -299,7 +299,7 @@ public partial class MobileAppItemRequestBuilderDeleteRequestConfiguration : Req
{
}
///
- /// Read properties and relationships of the windowsMobileMSI object.
+ /// Read properties and relationships of the iosLobApp 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 45eeaa60562..252da953825 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 managedAndroidStoreApp objects.
- /// Find more info here
+ /// List properties and relationships of the macOSLobApp 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 managedAndroidLobApp object.
- /// Find more info here
+ /// Create a new macOSLobApp 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 managedAndroidStoreApp objects.
+ /// List properties and relationships of the macOSLobApp 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 managedAndroidLobApp object.
+ /// Create a new macOSLobApp 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 managedAndroidStoreApp objects.
+ /// List properties and relationships of the macOSLobApp 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 980ecbe0be3..22e9d7ef332 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs
@@ -54,8 +54,8 @@ public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter req
{
}
///
- /// List properties and relationships of the androidWorkProfileCompliancePolicy objects.
- /// Find more info here
+ /// List properties and relationships of the macOSCompliancePolicy objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -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 windows81CompliancePolicy object.
- /// Find more info here
+ /// Create a new androidCompliancePolicy object.
+ /// Find more info here
///
/// A
/// The request body
@@ -104,7 +104,7 @@ public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter req
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the androidWorkProfileCompliancePolicy objects.
+ /// List properties and relationships of the macOSCompliancePolicy 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 windows81CompliancePolicy object.
+ /// Create a new androidCompliancePolicy object.
///
/// A
/// The request body
@@ -154,7 +154,7 @@ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Model
return new global::Microsoft.Graph.DeviceManagement.DeviceCompliancePolicies.DeviceCompliancePoliciesRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the androidWorkProfileCompliancePolicy objects.
+ /// List properties and relationships of the macOSCompliancePolicy objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceCompliancePoliciesRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs
index 0e7e8a2a367..ebed8cfab73 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 iosCompliancePolicy.
- /// Find more info here
+ /// Deletes a androidWorkProfileCompliancePolicy.
+ /// 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 deviceCompliancePolicy object.
- /// Find more info here
+ /// Read properties and relationships of the windows81CompliancePolicy object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -162,7 +162,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes a iosCompliancePolicy.
+ /// Deletes a androidWorkProfileCompliancePolicy.
///
/// 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 deviceCompliancePolicy object.
+ /// Read properties and relationships of the windows81CompliancePolicy object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -239,7 +239,7 @@ public partial class DeviceCompliancePolicyItemRequestBuilderDeleteRequestConfig
{
}
///
- /// Read properties and relationships of the deviceCompliancePolicy object.
+ /// Read properties and relationships of the windows81CompliancePolicy 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 2e1fde964ae..b070544013e 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 windows10GeneralConfiguration 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 windowsPhone81CustomConfiguration object.
- /// Find more info here
+ /// Create a new macOSGeneralDeviceConfiguration 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 windows10GeneralConfiguration 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 windowsPhone81CustomConfiguration object.
+ /// Create a new macOSGeneralDeviceConfiguration 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 windows10GeneralConfiguration 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 345e2c106e1..7495a40ac32 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 windows10GeneralConfiguration.
- /// Find more info here
+ /// Deletes a windows10CustomConfiguration.
+ /// 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 iosCustomConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration 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 windows10GeneralConfiguration object.
- /// Find more info here
+ /// Update the properties of a macOSCustomConfiguration 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 windows10GeneralConfiguration.
+ /// Deletes a windows10CustomConfiguration.
///
/// 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 iosCustomConfiguration object.
+ /// Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration 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 windows10GeneralConfiguration object.
+ /// Update the properties of a macOSCustomConfiguration object.
///
/// A
/// The request body
@@ -238,7 +238,7 @@ public partial class DeviceConfigurationItemRequestBuilderDeleteRequestConfigura
{
}
///
- /// Read properties and relationships of the iosCustomConfiguration object.
+ /// Read properties and relationships of the windows10EnterpriseModernAppManagementConfiguration 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 cccca78f8c7..713c0e93b90 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs
@@ -54,8 +54,8 @@ public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapt
{
}
///
- /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
- /// Find more info here
+ /// List properties and relationships of the deviceEnrollmentConfiguration objects.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -104,7 +104,7 @@ public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapt
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ /// List properties and relationships of the deviceEnrollmentConfiguration 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.DeviceManagement.DeviceEnrollmentConfigurations.DeviceEnrollmentConfigurationsRequestBuilder(rawUrl, RequestAdapter);
}
///
- /// List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ /// List properties and relationships of the deviceEnrollmentConfiguration objects.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceEnrollmentConfigurationsRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs
index 8810aad0f9e..19a61247984 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 deviceEnrollmentPlatformRestrictionsConfiguration.
- /// 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 deviceEnrollmentWindowsHelloForBusinessConfiguration object.
- /// Find more info here
+ /// Read properties and relationships of the deviceEnrollmentLimitConfiguration 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 deviceEnrollmentPlatformRestrictionsConfiguration object.
- /// Find more info here
+ /// Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration 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 deviceEnrollmentPlatformRestrictionsConfiguration.
+ /// 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 deviceEnrollmentWindowsHelloForBusinessConfiguration object.
+ /// Read properties and relationships of the deviceEnrollmentLimitConfiguration 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 deviceEnrollmentPlatformRestrictionsConfiguration object.
+ /// Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object.
///
/// A
/// The request body
@@ -203,7 +203,7 @@ public partial class DeviceEnrollmentConfigurationItemRequestBuilderDeleteReques
{
}
///
- /// Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object.
+ /// Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DeviceEnrollmentConfigurationItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs
index 13894264c68..4ffa30b4a0a 100644
--- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs
@@ -392,7 +392,7 @@ public DeviceManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdap
}
///
/// Read properties and relationships of the deviceManagement object.
- /// Find more info here
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -426,7 +426,7 @@ public DeviceManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdap
}
///
/// Update the properties of a deviceManagement object.
- /// Find more info here
+ /// Find more info here
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs
index 84555d3c630..3f7aaf0dd54 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 deviceAndAppManagementRoleDefinition object.
- /// Find more info here
+ /// Read properties and relationships of the roleDefinition 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 deviceAndAppManagementRoleDefinition object.
- /// Find more info here
+ /// Update the properties of a roleDefinition 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 deviceAndAppManagementRoleDefinition object.
+ /// Read properties and relationships of the roleDefinition 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 deviceAndAppManagementRoleDefinition object.
+ /// Update the properties of a roleDefinition object.
///
/// A
/// The request body
@@ -191,7 +191,7 @@ public partial class RoleDefinitionItemRequestBuilderDeleteRequestConfiguration
{
}
///
- /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
+ /// Read properties and relationships of the roleDefinition object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class RoleDefinitionItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/Devices/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Devices/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index eb48980a6a0..9ccdc4de713 100644
--- a/src/Microsoft.Graph/Generated/Devices/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Devices/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Devices.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Devices.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index 0ed51cfc482..ae263ca5442 100644
--- a/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryNamespace/DeletedItems/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryNamespace.DeletedItems.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryNamespace.DeletedItems.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DirectoryObjects/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryObjects/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index 30349b2641a..42ce3214beb 100644
--- a/src/Microsoft.Graph/Generated/DirectoryObjects/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryObjects/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryObjects.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryObjects.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index f56ea563f40..9ce38431c43 100644
--- a/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryRoleTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryRoleTemplates.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryRoleTemplates.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/DirectoryRoles/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DirectoryRoles/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index 31e53d09bbd..255bbede131 100644
--- a/src/Microsoft.Graph/Generated/DirectoryRoles/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DirectoryRoles/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryRoles.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.DirectoryRoles.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Domains/Item/Verify/VerifyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Domains/Item/Verify/VerifyRequestBuilder.cs
index 5c4c2319b68..8e4876e6bf0 100644
--- a/src/Microsoft.Graph/Generated/Domains/Item/Verify/VerifyRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Domains/Item/Verify/VerifyRequestBuilder.cs
@@ -35,7 +35,7 @@ public VerifyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
{
}
///
- /// Validates the ownership of the domain.
+ /// Validate the ownership of a domain. This operation only applies to an unverified domain. For an unverified domain, the isVerified property is false.
/// Find more info here
///
/// A
@@ -59,7 +59,7 @@ public VerifyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Domain.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Validates the ownership of the domain.
+ /// Validate the ownership of a domain. This operation only applies to an unverified domain. For an unverified domain, the isVerified property is false.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/CreateLink/CreateLinkRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/CreateLink/CreateLinkRequestBuilder.cs
index 9ed945786c7..47303026d51 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/CreateLink/CreateLinkRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/CreateLink/CreateLinkRequestBuilder.cs
@@ -35,7 +35,7 @@ public CreateLinkRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
{
}
///
- /// You can use createLink action to share a DriveItem via a sharing link. The createLink action will create a new sharing link if the specified link type doesn't already exist for the calling application.If a sharing link of the specified type already exists for the app, the existing sharing link will be returned. DriveItem resources inherit sharing permissions from their ancestors.
+ /// Create a link to share a driveItem driveItem. The createLink action creates a new sharing link if the specified link type doesn't already exist for the calling application.If a sharing link of the specified type already exists for the app, the existing sharing link is returned. DriveItem resources inherit sharing permissions from their ancestors.
/// Find more info here
///
/// A
@@ -61,7 +61,7 @@ public CreateLinkRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) :
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.Permission.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// You can use createLink action to share a DriveItem via a sharing link. The createLink action will create a new sharing link if the specified link type doesn't already exist for the calling application.If a sharing link of the specified type already exists for the app, the existing sharing link will be returned. DriveItem resources inherit sharing permissions from their ancestors.
+ /// Create a link to share a driveItem driveItem. The createLink action creates a new sharing link if the specified link type doesn't already exist for the calling application.If a sharing link of the specified type already exists for the app, the existing sharing link is returned. DriveItem resources inherit sharing permissions from their ancestors.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Restore/RestoreRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Restore/RestoreRequestBuilder.cs
index d520dfca972..3abbbec50b6 100644
--- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Restore/RestoreRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Restore/RestoreRequestBuilder.cs
@@ -35,7 +35,7 @@ public RestoreRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba
{
}
///
- /// Restore a driveItem that has been deleted and is currently in the recycle bin. NOTE: This functionality is currently only available for OneDrive Personal.
+ /// Restore a driveItem that has been deleted and is currently in the recycle bin.
/// Find more info here
///
/// A
@@ -61,7 +61,7 @@ public RestoreRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.DriveItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Restore a driveItem that has been deleted and is currently in the recycle bin. NOTE: This functionality is currently only available for OneDrive Personal.
+ /// Restore a driveItem that has been deleted and is currently in the recycle bin.
///
/// A
/// The request body
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 20b5cd67330..8105210adb6 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);
}
///
- /// 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
+ /// 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
///
/// A
/// The request body
@@ -145,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// 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.
+ /// 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.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/GroupSettingTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/GroupSettingTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index 896cb31e06b..11841eb686b 100644
--- a/src/Microsoft.Graph/Generated/GroupSettingTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/GroupSettingTemplates/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.GroupSettingTemplates.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.GroupSettingTemplates.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/GroupSettings/GroupSettingsRequestBuilder.cs b/src/Microsoft.Graph/Generated/GroupSettings/GroupSettingsRequestBuilder.cs
index 4ac48b86095..4fc8bd9b6af 100644
--- a/src/Microsoft.Graph/Generated/GroupSettings/GroupSettingsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/GroupSettings/GroupSettingsRequestBuilder.cs
@@ -78,7 +78,7 @@ public GroupSettingsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.GroupSettingCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
+ /// Create a new group setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
/// Find more info here
///
/// A
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
+ /// Create a new group setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Groups/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
index a732c7aee6c..d237fbe1b33 100644
--- a/src/Microsoft.Graph/Generated/Groups/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/GetAvailableExtensionProperties/GetAvailableExtensionPropertiesRequestBuilder.cs
@@ -34,7 +34,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
{
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -60,7 +60,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
/// Find more info here
///
/// A
@@ -87,7 +87,7 @@ public GetAvailableExtensionPropertiesRequestBuilder(string rawUrl, IRequestAdap
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Groups.GetAvailableExtensionProperties.GetAvailableExtensionPropertiesResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Return all directory extension definitions that have been registered in a directory, including through multi-tenant apps. The following entities support extension properties:
+ /// Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties:
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs
index 3d0ba1f2ac2..1ef4baf386d 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/ConversationsRequestBuilder.cs
@@ -78,8 +78,8 @@ public ConversationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ConversationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Use reply thread or reply post to further post to that conversation.
- /// Find more info here
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ /// Find more info here
///
/// A
/// The request body
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Use reply thread or reply post to further post to that conversation.
+ /// Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
///
/// 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 e65d4c4c07a..5559ddb44ef 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.
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Settings/SettingsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Settings/SettingsRequestBuilder.cs
index c60a0a42bc8..186d46e8da6 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Settings/SettingsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Settings/SettingsRequestBuilder.cs
@@ -78,7 +78,7 @@ public SettingsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.GroupSettingCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
+ /// Create a new group setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
/// Find more info here
///
/// A
@@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
+ /// Create a new group setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings.
///
/// A
/// The request body
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
index 62c5edf52f9..2d4299a25ce 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
@@ -44,6 +44,22 @@ public long? ChainId
get { return BackingStore?.Get("chainId"); }
set { BackingStore?.Set("chainId", value); }
}
+ /// The iconId property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? IconId
+ {
+ get { return BackingStore?.Get("iconId"); }
+ set { BackingStore?.Set("iconId", value); }
+ }
+#nullable restore
+#else
+ public string IconId
+ {
+ get { return BackingStore?.Get("iconId"); }
+ set { BackingStore?.Set("iconId", value); }
+ }
+#endif
/// The previewText property
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -152,6 +168,7 @@ public virtual IDictionary> GetFieldDeserializers()
{
{ "activityType", n => { ActivityType = n.GetStringValue(); } },
{ "chainId", n => { ChainId = n.GetLongValue(); } },
+ { "iconId", n => { IconId = n.GetStringValue(); } },
{ "previewText", n => { PreviewText = n.GetObjectValue(global::Microsoft.Graph.Models.ItemBody.CreateFromDiscriminatorValue); } },
{ "recipient", n => { Recipient = n.GetObjectValue(global::Microsoft.Graph.Models.TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } },
{ "teamsAppId", n => { TeamsAppId = n.GetStringValue(); } },
@@ -168,6 +185,7 @@ public virtual void Serialize(ISerializationWriter writer)
_ = writer ?? throw new ArgumentNullException(nameof(writer));
writer.WriteStringValue("activityType", ActivityType);
writer.WriteLongValue("chainId", ChainId);
+ writer.WriteStringValue("iconId", IconId);
writer.WriteObjectValue("previewText", PreviewText);
writer.WriteObjectValue("recipient", Recipient);
writer.WriteStringValue("teamsAppId", TeamsAppId);
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 0c4e4a358aa..3a199b4e810 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs
@@ -70,8 +70,8 @@ public async Task DeleteAsync(Action
- /// Get a thread object.
- /// Find more info here
+ /// Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -139,7 +139,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Get a thread object.
+ /// Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -197,7 +197,7 @@ public partial class ConversationThreadItemRequestBuilderDeleteRequestConfigurat
{
}
///
- /// Get a thread object.
+ /// Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class ConversationThreadItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs
index 74c419b5efd..ee06d8bf9d1 100644
--- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/PostsRequestBuilder.cs
@@ -54,8 +54,8 @@ public PostsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
{
}
///
- /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
- /// Find more info here
+ /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -78,7 +78,7 @@ public PostsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.PostCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
+ /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -106,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance.
+ /// Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,you can specify the thread without referencing the parent conversation.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class PostsRequestBuilderGetQueryParameters
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 1bf1fb45a3e..8ff00f1b707 100644
--- a/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs
@@ -35,8 +35,8 @@ public NamedLocationItemRequestBuilder(string rawUrl, IRequestAdapter requestAda
{
}
///
- /// Delete a namedLocation object.
- /// Find more info here
+ /// Delete an ipNamedLocation object.
+ /// 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
- /// Retrieve the properties and relationships of a countryNamedLocation object.
- /// Find more info here
+ /// Retrieve the properties and relationships of an ipNamedLocation 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
@@ -108,7 +108,7 @@ public async Task DeleteAsync(Action(requestInfo, global::Microsoft.Graph.Models.NamedLocation.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
///
- /// Delete a namedLocation object.
+ /// Delete an ipNamedLocation object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -127,7 +127,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve the properties and relationships of a countryNamedLocation object.
+ /// Retrieve the properties and relationships of an ipNamedLocation 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 a countryNamedLocation object.
+ /// Retrieve the properties and relationships of an ipNamedLocation 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 947869285ba..a83372be3ae 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 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
+ /// Retrieve the properties and relationships of an accessPackage object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -169,7 +169,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// 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.
+ /// Retrieve the properties and relationships of an accessPackage object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -227,7 +227,7 @@ public partial class AccessPackageItemRequestBuilderDeleteRequestConfiguration :
{
}
///
- /// 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.
+ /// Retrieve the properties and relationships of an accessPackage object.
///
[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 a34e2b1270b..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
@@ -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.
@@ -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 d71dc4fd232..e583dd92780 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 all files related to an agreement. This includes the default file and all localized files.
- /// Find more info here
+ /// Retrieve the properties and relationships of an agreement object.
+ /// Find more info here
///
/// A
/// Cancellation token to use when cancelling requests
@@ -145,7 +145,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve all files related to an agreement. This includes the default file and all localized files.
+ /// Retrieve the properties and relationships of an agreement object.
///
/// A
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -203,7 +203,7 @@ public partial class AgreementItemRequestBuilderDeleteRequestConfiguration : Req
{
}
///
- /// Retrieve all files related to an agreement. This includes the default file and all localized files.
+ /// Retrieve the properties and relationships of an agreement object.
///
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class AgreementItemRequestBuilderGetQueryParameters
diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
index 07d1e7cb1f8..3f4c0201d05 100644
--- a/src/Microsoft.Graph/Generated/Me/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
+++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/SendActivityNotification/SendActivityNotificationPostRequestBody.cs
@@ -44,6 +44,22 @@ public long? ChainId
get { return BackingStore?.Get("chainId"); }
set { BackingStore?.Set("chainId", value); }
}
+ /// The iconId property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? IconId
+ {
+ get { return BackingStore?.Get("iconId"); }
+ set { BackingStore?.Set("iconId", value); }
+ }
+#nullable restore
+#else
+ public string IconId
+ {
+ get { return BackingStore?.Get("iconId"); }
+ set { BackingStore?.Set("iconId", value); }
+ }
+#endif
/// The previewText property
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -152,6 +168,7 @@ public virtual IDictionary> GetFieldDeserializers()
{
{ "activityType", n => { ActivityType = n.GetStringValue(); } },
{ "chainId", n => { ChainId = n.GetLongValue(); } },
+ { "iconId", n => { IconId = n.GetStringValue(); } },
{ "previewText", n => { PreviewText = n.GetObjectValue(global::Microsoft.Graph.Models.ItemBody.CreateFromDiscriminatorValue); } },
{ "recipient", n => { Recipient = n.GetObjectValue(global::Microsoft.Graph.Models.TeamworkNotificationRecipient.CreateFromDiscriminatorValue); } },
{ "teamsAppId", n => { TeamsAppId = n.GetStringValue(); } },
@@ -168,6 +185,7 @@ public virtual void Serialize(ISerializationWriter writer)
_ = writer ?? throw new ArgumentNullException(nameof(writer));
writer.WriteStringValue("activityType", ActivityType);
writer.WriteLongValue("chainId", ChainId);
+ writer.WriteStringValue("iconId", IconId);
writer.WriteObjectValue("previewText", PreviewText);
writer.WriteObjectValue("recipient", Recipient);
writer.WriteStringValue("teamsAppId", TeamsAppId);
diff --git a/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ActivitiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ActivitiesRequestBuilder.cs
new file mode 100644
index 00000000000..cbb11136060
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ActivitiesRequestBuilder.cs
@@ -0,0 +1,235 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities;
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Graph.Models;
+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.DataSecurityAndGovernance.Activities
+{
+ ///
+ /// Provides operations to manage the activities property of the microsoft.graph.userDataSecurityAndGovernance entity.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class ActivitiesRequestBuilder : BaseRequestBuilder
+ {
+ /// Provides operations to manage the contentActivities property of the microsoft.graph.activitiesContainer entity.
+ public global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.ContentActivitiesRequestBuilder ContentActivities
+ {
+ get => new global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.ContentActivitiesRequestBuilder(PathParameters, RequestAdapter);
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public ActivitiesRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/dataSecurityAndGovernance/activities{?%24expand,%24select}", 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 ActivitiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/dataSecurityAndGovernance/activities{?%24expand,%24select}", rawUrl)
+ {
+ }
+ ///
+ /// Delete navigation property activities for me
+ ///
+ /// 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 DeleteAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task DeleteAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ var requestInfo = ToDeleteRequestInformation(requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Container for activity logs (content processing and audit) related to this user. ContainsTarget: true.
+ ///
+ /// A
+ /// 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 GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ var requestInfo = ToGetRequestInformation(requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ActivitiesContainer.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Update the navigation property activities in me
+ ///
+ /// 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 PatchAsync(global::Microsoft.Graph.Models.ActivitiesContainer body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PatchAsync(global::Microsoft.Graph.Models.ActivitiesContainer body, Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = ToPatchRequestInformation(body, requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ActivitiesContainer.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Delete navigation property activities for me
+ ///
+ /// A
+ /// 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 ToDeleteRequestInformation(Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToDeleteRequestInformation(Action> requestConfiguration = default)
+ {
+#endif
+ var requestInfo = new RequestInformation(Method.DELETE, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ ///
+ /// Container for activity logs (content processing and audit) related to this user. ContainsTarget: true.
+ ///
+ /// A
+ /// 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 ToGetRequestInformation(Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default)
+ {
+#endif
+ var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ ///
+ /// Update the navigation property activities in me
+ ///
+ /// 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 ToPatchRequestInformation(global::Microsoft.Graph.Models.ActivitiesContainer body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPatchRequestInformation(global::Microsoft.Graph.Models.ActivitiesContainer body, Action> requestConfiguration = default)
+ {
+#endif
+ _ = body ?? throw new ArgumentNullException(nameof(body));
+ var requestInfo = new RequestInformation(Method.PATCH, 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.Me.DataSecurityAndGovernance.Activities.ActivitiesRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ActivitiesRequestBuilder(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 ActivitiesRequestBuilderDeleteRequestConfiguration : RequestConfiguration
+ {
+ }
+ ///
+ /// Container for activity logs (content processing and audit) related to this user. ContainsTarget: true.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class ActivitiesRequestBuilderGetQueryParameters
+ {
+ /// Expand related entities
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24expand")]
+ public string[]? Expand { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24expand")]
+ public string[] Expand { get; set; }
+#endif
+ /// Select properties to be returned
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24select")]
+ public string[]? Select { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24select")]
+ public string[] Select { get; set; }
+#endif
+ }
+ ///
+ /// 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 ActivitiesRequestBuilderGetRequestConfiguration : RequestConfiguration
+ {
+ }
+ ///
+ /// 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 ActivitiesRequestBuilderPatchRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ContentActivities/ContentActivitiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ContentActivities/ContentActivitiesRequestBuilder.cs
new file mode 100644
index 00000000000..cca55324410
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ContentActivities/ContentActivitiesRequestBuilder.cs
@@ -0,0 +1,239 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.Count;
+using Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.Item;
+using Microsoft.Graph.Models.ODataErrors;
+using Microsoft.Graph.Models;
+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.DataSecurityAndGovernance.Activities.ContentActivities
+{
+ ///
+ /// Provides operations to manage the contentActivities property of the microsoft.graph.activitiesContainer entity.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class ContentActivitiesRequestBuilder : BaseRequestBuilder
+ {
+ /// Provides operations to count the resources in the collection.
+ public global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.Count.CountRequestBuilder Count
+ {
+ get => new global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.Count.CountRequestBuilder(PathParameters, RequestAdapter);
+ }
+ /// Provides operations to manage the contentActivities property of the microsoft.graph.activitiesContainer entity.
+ /// The unique identifier of contentActivity
+ /// A
+ public global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.Item.ContentActivityItemRequestBuilder this[string position]
+ {
+ get
+ {
+ var urlTplParams = new Dictionary(PathParameters);
+ urlTplParams.Add("contentActivity%2Did", position);
+ return new global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.Item.ContentActivityItemRequestBuilder(urlTplParams, RequestAdapter);
+ }
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public ContentActivitiesRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/dataSecurityAndGovernance/activities/contentActivities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", 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 ContentActivitiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/dataSecurityAndGovernance/activities/contentActivities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl)
+ {
+ }
+ ///
+ /// Collection of activity logs related to content processing.
+ ///
+ /// A
+ /// 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 GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task GetAsync(Action> requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#endif
+ var requestInfo = ToGetRequestInformation(requestConfiguration);
+ var errorMapping = new Dictionary>
+ {
+ { "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
+ };
+ return await RequestAdapter.SendAsync(requestInfo, global::Microsoft.Graph.Models.ContentActivityCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Create a content activity for the signed-in user.
+ /// 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 PostAsync(global::Microsoft.Graph.Models.ContentActivity body, Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task PostAsync(global::Microsoft.Graph.Models.ContentActivity 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.Models.ContentActivity.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
+ }
+ ///
+ /// Collection of activity logs related to content processing.
+ ///
+ /// A
+ /// 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 ToGetRequestInformation(Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToGetRequestInformation(Action> requestConfiguration = default)
+ {
+#endif
+ var requestInfo = new RequestInformation(Method.GET, UrlTemplate, PathParameters);
+ requestInfo.Configure(requestConfiguration);
+ requestInfo.Headers.TryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ ///
+ /// Create a content activity for the signed-in user.
+ ///
+ /// 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.Models.ContentActivity body, Action>? requestConfiguration = default)
+ {
+#nullable restore
+#else
+ public RequestInformation ToPostRequestInformation(global::Microsoft.Graph.Models.ContentActivity 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.Me.DataSecurityAndGovernance.Activities.ContentActivities.ContentActivitiesRequestBuilder WithUrl(string rawUrl)
+ {
+ return new global::Microsoft.Graph.Me.DataSecurityAndGovernance.Activities.ContentActivities.ContentActivitiesRequestBuilder(rawUrl, RequestAdapter);
+ }
+ ///
+ /// Collection of activity logs related to content processing.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class ContentActivitiesRequestBuilderGetQueryParameters
+ {
+ /// Include count of items
+ [QueryParameter("%24count")]
+ public bool? Count { get; set; }
+ /// Expand related entities
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24expand")]
+ public string[]? Expand { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24expand")]
+ public string[] Expand { get; set; }
+#endif
+ /// Filter items by property values
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24filter")]
+ public string? Filter { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24filter")]
+ public string Filter { get; set; }
+#endif
+ /// Order items by property values
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24orderby")]
+ public string[]? Orderby { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24orderby")]
+ public string[] Orderby { get; set; }
+#endif
+ /// Search items by search phrases
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24search")]
+ public string? Search { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24search")]
+ public string Search { get; set; }
+#endif
+ /// Select properties to be returned
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ [QueryParameter("%24select")]
+ public string[]? Select { get; set; }
+#nullable restore
+#else
+ [QueryParameter("%24select")]
+ public string[] Select { get; set; }
+#endif
+ /// Skip the first n items
+ [QueryParameter("%24skip")]
+ public int? Skip { get; set; }
+ /// Show only the first n items
+ [QueryParameter("%24top")]
+ public int? Top { get; set; }
+ }
+ ///
+ /// 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 ContentActivitiesRequestBuilderGetRequestConfiguration : RequestConfiguration
+ {
+ }
+ ///
+ /// 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 ContentActivitiesRequestBuilderPostRequestConfiguration : RequestConfiguration
+ {
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ContentActivities/Count/CountRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ContentActivities/Count/CountRequestBuilder.cs
new file mode 100644
index 00000000000..b467d4ffa43
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Me/DataSecurityAndGovernance/Activities/ContentActivities/Count/CountRequestBuilder.cs
@@ -0,0 +1,124 @@
+//
+#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.DataSecurityAndGovernance.Activities.ContentActivities.Count
+{
+ ///
+ /// Provides operations to count the resources in the collection.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ public partial class CountRequestBuilder : BaseRequestBuilder
+ {
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ /// Path parameters for the request
+ /// The request adapter to use to execute the requests.
+ public CountRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/dataSecurityAndGovernance/activities/contentActivities/$count{?%24filter,%24search}", 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 CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/dataSecurityAndGovernance/activities/contentActivities/$count{?%24filter,%24search}", rawUrl)
+ {
+ }
+ ///
+ /// Get the number of the resource
+ ///
+ /// A
+ /// 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 GetAsync(Action>? requestConfiguration = default, CancellationToken cancellationToken = default)
+ {
+#nullable restore
+#else
+ public async Task GetAsync(Action