diff --git a/CHANGELOG.md b/CHANGELOG.md index 624c900b11b..b2841e13d79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v ## [Unreleased] +## [5.20.0] - 2023-07-26 + +- Fixes/removes incorrect `Localizations` entitySet/path/request builder in the GraphServiceClient +- Latest metadata updates from 25th July 2023. + ## [5.19.0] - 2023-07-19 - Latest metadata updates from 18th July 2023. diff --git a/src/Microsoft.Graph/Generated/BaseGraphServiceClient.cs b/src/Microsoft.Graph/Generated/BaseGraphServiceClient.cs index 74a9983892d..58f3d7f4c19 100644 --- a/src/Microsoft.Graph/Generated/BaseGraphServiceClient.cs +++ b/src/Microsoft.Graph/Generated/BaseGraphServiceClient.cs @@ -43,7 +43,6 @@ using Microsoft.Graph.IdentityProviders; using Microsoft.Graph.InformationProtection; using Microsoft.Graph.Invitations; -using Microsoft.Graph.Localizations; using Microsoft.Graph.Me; using Microsoft.Graph.Oauth2PermissionGrants; using Microsoft.Graph.Organization; @@ -255,10 +254,6 @@ public class BaseGraphServiceClient : BaseRequestBuilder { public InvitationsRequestBuilder Invitations { get => new InvitationsRequestBuilder(PathParameters, RequestAdapter); } - /// Provides operations to manage the collection of organizationalBrandingLocalization entities. - public LocalizationsRequestBuilder Localizations { get => - new LocalizationsRequestBuilder(PathParameters, RequestAdapter); - } /// Provides operations to manage the user singleton. public MeRequestBuilder Me { get => new MeRequestBuilder(PathParameters, RequestAdapter); diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index 2a100a57b67..7a42f5bd1c2 100644 --- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs index 0bb1445adca..ebb8e2f76bf 100644 --- a/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Chats/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified 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 /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/AndroidManagedAppProtectionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/AndroidManagedAppProtectionsRequestBuilder.cs index cc7b8a7d41f..d34925c7cd3 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/AndroidManagedAppProtectionsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/AndroidManagedAppProtectionsRequestBuilder.cs @@ -40,7 +40,8 @@ public AndroidManagedAppProtectionsRequestBuilder(Dictionary pat public AndroidManagedAppProtectionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/androidManagedAppProtections{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Android managed app policies. + /// List properties and relationships of the androidManagedAppProtection objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action return await RequestAdapter.SendAsync(requestInfo, AndroidManagedAppProtectionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to androidManagedAppProtections for deviceAppManagement + /// Create a new androidManagedAppProtection object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(AndroidManagedAppProtec return await RequestAdapter.SendAsync(requestInfo, AndroidManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Android managed app policies. + /// List properties and relationships of the androidManagedAppProtection objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to androidManagedAppProtections for deviceAppManagement + /// Create a new androidManagedAppProtection object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(AndroidManagedAppProtection b return requestInfo; } /// - /// Android managed app policies. + /// List properties and relationships of the androidManagedAppProtection objects. /// public class AndroidManagedAppProtectionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/Item/AndroidManagedAppProtectionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/Item/AndroidManagedAppProtectionItemRequestBuilder.cs index e27ee5b0a2f..b8400d60a6c 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/Item/AndroidManagedAppProtectionItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/AndroidManagedAppProtections/Item/AndroidManagedAppProtectionItemRequestBuilder.cs @@ -43,7 +43,8 @@ public AndroidManagedAppProtectionItemRequestBuilder(Dictionary public AndroidManagedAppProtectionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property androidManagedAppProtections for deviceAppManagement + /// Deletes a androidManagedAppProtection. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -62,7 +63,8 @@ public async Task DeleteAsync(Action - /// Android managed app policies. + /// Read properties and relationships of the androidManagedAppProtection object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -81,7 +83,8 @@ public async Task GetAsync(Action(requestInfo, AndroidManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property androidManagedAppProtections in deviceAppManagement + /// Update the properties of a androidManagedAppProtection object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -102,7 +105,7 @@ public async Task PatchAsync(AndroidManagedAppProte return await RequestAdapter.SendAsync(requestInfo, AndroidManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property androidManagedAppProtections for deviceAppManagement + /// Deletes a androidManagedAppProtection. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -126,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Android managed app policies. + /// Read properties and relationships of the androidManagedAppProtection object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -152,7 +155,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property androidManagedAppProtections in deviceAppManagement + /// Update the properties of a androidManagedAppProtection object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -196,7 +199,7 @@ public AndroidManagedAppProtectionItemRequestBuilderDeleteRequestConfiguration() } } /// - /// Android managed app policies. + /// Read properties and relationships of the androidManagedAppProtection object. /// public class AndroidManagedAppProtectionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/DefaultManagedAppProtectionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/DefaultManagedAppProtectionsRequestBuilder.cs index f30b0bdc03e..04531e85816 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/DefaultManagedAppProtectionsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/DefaultManagedAppProtectionsRequestBuilder.cs @@ -40,7 +40,8 @@ public DefaultManagedAppProtectionsRequestBuilder(Dictionary pat public DefaultManagedAppProtectionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/defaultManagedAppProtections{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Default managed app policies. + /// List properties and relationships of the defaultManagedAppProtection objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action return await RequestAdapter.SendAsync(requestInfo, DefaultManagedAppProtectionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to defaultManagedAppProtections for deviceAppManagement + /// Create a new defaultManagedAppProtection object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DefaultManagedAppProtec return await RequestAdapter.SendAsync(requestInfo, DefaultManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Default managed app policies. + /// List properties and relationships of the defaultManagedAppProtection objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to defaultManagedAppProtections for deviceAppManagement + /// Create a new defaultManagedAppProtection object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DefaultManagedAppProtection b return requestInfo; } /// - /// Default managed app policies. + /// List properties and relationships of the defaultManagedAppProtection objects. /// public class DefaultManagedAppProtectionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/Item/DefaultManagedAppProtectionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/Item/DefaultManagedAppProtectionItemRequestBuilder.cs index 6c9372f39dc..34f57bf3b63 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/Item/DefaultManagedAppProtectionItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DefaultManagedAppProtections/Item/DefaultManagedAppProtectionItemRequestBuilder.cs @@ -38,7 +38,8 @@ public DefaultManagedAppProtectionItemRequestBuilder(Dictionary public DefaultManagedAppProtectionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property defaultManagedAppProtections for deviceAppManagement + /// Deletes a defaultManagedAppProtection. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -57,7 +58,8 @@ public async Task DeleteAsync(Action - /// Default managed app policies. + /// Read properties and relationships of the defaultManagedAppProtection object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -76,7 +78,8 @@ public async Task GetAsync(Action(requestInfo, DefaultManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property defaultManagedAppProtections in deviceAppManagement + /// Update the properties of a defaultManagedAppProtection object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -97,7 +100,7 @@ public async Task PatchAsync(DefaultManagedAppProte return await RequestAdapter.SendAsync(requestInfo, DefaultManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property defaultManagedAppProtections for deviceAppManagement + /// Deletes a defaultManagedAppProtection. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -121,7 +124,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Default managed app policies. + /// Read properties and relationships of the defaultManagedAppProtection object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -147,7 +150,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property defaultManagedAppProtections in deviceAppManagement + /// Update the properties of a defaultManagedAppProtection object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -191,7 +194,7 @@ public DefaultManagedAppProtectionItemRequestBuilderDeleteRequestConfiguration() } } /// - /// Default managed app policies. + /// Read properties and relationships of the defaultManagedAppProtection object. /// public class DefaultManagedAppProtectionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs index 4aaf2b33abc..a33e4641ee8 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs @@ -104,7 +104,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA } /// /// Read properties and relationships of the deviceAppManagement object. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/IosManagedAppProtectionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/IosManagedAppProtectionsRequestBuilder.cs index e96b9296306..10d0e4224b1 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/IosManagedAppProtectionsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/IosManagedAppProtectionsRequestBuilder.cs @@ -40,7 +40,8 @@ public IosManagedAppProtectionsRequestBuilder(Dictionary pathPar public IosManagedAppProtectionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// iOS managed app policies. + /// List properties and relationships of the iosManagedAppProtection objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, IosManagedAppProtectionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to iosManagedAppProtections for deviceAppManagement + /// Create a new iosManagedAppProtection object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(IosManagedAppProtection bod return await RequestAdapter.SendAsync(requestInfo, IosManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// iOS managed app policies. + /// List properties and relationships of the iosManagedAppProtection objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to iosManagedAppProtections for deviceAppManagement + /// Create a new iosManagedAppProtection object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(IosManagedAppProtection body, return requestInfo; } /// - /// iOS managed app policies. + /// List properties and relationships of the iosManagedAppProtection objects. /// public class IosManagedAppProtectionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/AppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/AppsRequestBuilder.cs index e5913f2c3fd..5e5dd813a9f 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/AppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/AppsRequestBuilder.cs @@ -40,7 +40,8 @@ public AppsRequestBuilder(Dictionary pathParameters, IRequestAda public AppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection%2Did}/apps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of apps to which the policy is deployed. + /// List properties and relationships of the managedMobileApp objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, ManagedMobileAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to apps for deviceAppManagement + /// Create a new managedMobileApp object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ManagedMobileApp body, Action(requestInfo, ManagedMobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of apps to which the policy is deployed. + /// List properties and relationships of the managedMobileApp objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to apps for deviceAppManagement + /// Create a new managedMobileApp object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedMobileApp body, Action return requestInfo; } /// - /// List of apps to which the policy is deployed. + /// List properties and relationships of the managedMobileApp objects. /// public class AppsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/Item/ManagedMobileAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/Item/ManagedMobileAppItemRequestBuilder.cs index a43249fed0e..84add4e7060 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/Item/ManagedMobileAppItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/Apps/Item/ManagedMobileAppItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ManagedMobileAppItemRequestBuilder(Dictionary pathParamet public ManagedMobileAppItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection%2Did}/apps/{managedMobileApp%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property apps for deviceAppManagement + /// Deletes a managedMobileApp. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// List of apps to which the policy is deployed. + /// Read properties and relationships of the managedMobileApp object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, ManagedMobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property apps in deviceAppManagement + /// Update the properties of a managedMobileApp object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(ManagedMobileApp body, Action(requestInfo, ManagedMobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property apps for deviceAppManagement + /// Deletes a managedMobileApp. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of apps to which the policy is deployed. + /// Read properties and relationships of the managedMobileApp object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property apps in deviceAppManagement + /// Update the properties of a managedMobileApp object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ManagedMobileAppItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// List of apps to which the policy is deployed. + /// Read properties and relationships of the managedMobileApp object. /// public class ManagedMobileAppItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/DeploymentSummary/DeploymentSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/DeploymentSummary/DeploymentSummaryRequestBuilder.cs index b0394137dbe..592e779ca77 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/DeploymentSummary/DeploymentSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/DeploymentSummary/DeploymentSummaryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Navigation property to deployment summary of the configuration. + /// Read properties and relationships of the managedAppPolicyDeploymentSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, ManagedAppPolicyDeploymentSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deploymentSummary in deviceAppManagement + /// Update the properties of a managedAppPolicyDeploymentSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Navigation property to deployment summary of the configuration. + /// Read properties and relationships of the managedAppPolicyDeploymentSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deploymentSummary in deviceAppManagement + /// Update the properties of a managedAppPolicyDeploymentSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeploymentSummaryRequestBuilderDeleteRequestConfiguration() { } } /// - /// Navigation property to deployment summary of the configuration. + /// Read properties and relationships of the managedAppPolicyDeploymentSummary object. /// public class DeploymentSummaryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/IosManagedAppProtectionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/IosManagedAppProtectionItemRequestBuilder.cs index de803c0733e..bdb4384d0f4 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/IosManagedAppProtectionItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/IosManagedAppProtections/Item/IosManagedAppProtectionItemRequestBuilder.cs @@ -43,7 +43,8 @@ public IosManagedAppProtectionItemRequestBuilder(Dictionary path public IosManagedAppProtectionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property iosManagedAppProtections for deviceAppManagement + /// Deletes a iosManagedAppProtection. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -62,7 +63,8 @@ public async Task DeleteAsync(Action - /// iOS managed app policies. + /// Read properties and relationships of the iosManagedAppProtection object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -81,7 +83,8 @@ public async Task GetAsync(Action(requestInfo, IosManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property iosManagedAppProtections in deviceAppManagement + /// Update the properties of a iosManagedAppProtection object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -102,7 +105,7 @@ public async Task PatchAsync(IosManagedAppProtection bo return await RequestAdapter.SendAsync(requestInfo, IosManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property iosManagedAppProtections for deviceAppManagement + /// Deletes a iosManagedAppProtection. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -126,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// iOS managed app policies. + /// Read properties and relationships of the iosManagedAppProtection object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -152,7 +155,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property iosManagedAppProtections in deviceAppManagement + /// Update the properties of a iosManagedAppProtection object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -196,7 +199,7 @@ public IosManagedAppProtectionItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// iOS managed app policies. + /// Read properties and relationships of the iosManagedAppProtection object. /// public class IosManagedAppProtectionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs index 2b56b94ccba..5d9b1ef1bee 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/ManagedAppPolicyItemRequestBuilder.cs @@ -52,7 +52,8 @@ public async Task DeleteAsync(Action - /// Managed app policies. + /// Read properties and relationships of the managedAppPolicy object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -116,7 +117,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Managed app policies. + /// Read properties and relationships of the managedAppPolicy object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -186,7 +187,7 @@ public ManagedAppPolicyItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Managed app policies. + /// Read properties and relationships of the managedAppPolicy object. /// public class ManagedAppPolicyItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index ff4207dec67..deaf4ede369 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -27,7 +27,8 @@ public TargetAppsRequestBuilder(Dictionary pathParameters, IRequ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppPolicies/{managedAppPolicy%2Did}/targetApps", rawUrl) { } /// - /// Invoke action targetApps + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(TargetAppsPostRequestBody body, Action - /// Invoke action targetApps + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs index 837bd9af62a..2665d1f34ca 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppPolicies/ManagedAppPoliciesRequestBuilder.cs @@ -40,7 +40,8 @@ public ManagedAppPoliciesRequestBuilder(Dictionary pathParameter public ManagedAppPoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppPolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Managed app policies. + /// List properties and relationships of the targetedManagedAppProtection objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -80,7 +81,7 @@ public async Task PostAsync(ManagedAppPolicy body, Action(requestInfo, ManagedAppPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Managed app policies. + /// List properties and relationships of the targetedManagedAppProtection objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -134,7 +135,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppPolicy body, Action return requestInfo; } /// - /// Managed app policies. + /// List properties and relationships of the targetedManagedAppProtection objects. /// public class ManagedAppPoliciesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/AppliedPolicies/Item/TargetApps/TargetAppsRequestBuilder.cs index e985eb91bde..6191c6c2489 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 @@ -27,7 +27,8 @@ public TargetAppsRequestBuilder(Dictionary pathParameters, IRequ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/{managedAppRegistration%2Did}/appliedPolicies/{managedAppPolicy%2Did}/targetApps", rawUrl) { } /// - /// Invoke action targetApps + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(TargetAppsPostRequestBody body, Action - /// Invoke action targetApps + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. 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 2a177976787..d7f9a420060 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 @@ -27,7 +27,8 @@ public TargetAppsRequestBuilder(Dictionary pathParameters, IRequ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/{managedAppRegistration%2Did}/intendedPolicies/{managedAppPolicy%2Did}/targetApps", rawUrl) { } /// - /// Invoke action targetApps + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(TargetAppsPostRequestBody body, Action - /// Invoke action targetApps + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs index a6857626df1..2fdc4923960 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/ManagedAppRegistrationItemRequestBuilder.cs @@ -62,7 +62,8 @@ public async Task DeleteAsync(Action - /// The managed app registrations. + /// Read properties and relationships of the androidManagedAppRegistration object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -126,7 +127,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The managed app registrations. + /// Read properties and relationships of the androidManagedAppRegistration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -196,7 +197,7 @@ public ManagedAppRegistrationItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The managed app registrations. + /// Read properties and relationships of the androidManagedAppRegistration object. /// public class ManagedAppRegistrationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/Item/ManagedAppOperationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/Item/ManagedAppOperationItemRequestBuilder.cs index 46a32fbba2c..af971410401 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/Item/ManagedAppOperationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/Item/ManagedAppOperationItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ManagedAppOperationItemRequestBuilder(Dictionary pathPara public ManagedAppOperationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/{managedAppRegistration%2Did}/operations/{managedAppOperation%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property operations for deviceAppManagement + /// Deletes a managedAppOperation. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Zero or more long running operations triggered on the app registration. + /// Read properties and relationships of the managedAppOperation object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, ManagedAppOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property operations in deviceAppManagement + /// Update the properties of a managedAppOperation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(ManagedAppOperation body, Acti return await RequestAdapter.SendAsync(requestInfo, ManagedAppOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property operations for deviceAppManagement + /// Deletes a managedAppOperation. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Zero or more long running operations triggered on the app registration. + /// Read properties and relationships of the managedAppOperation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property operations in deviceAppManagement + /// Update the properties of a managedAppOperation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ManagedAppOperationItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Zero or more long running operations triggered on the app registration. + /// Read properties and relationships of the managedAppOperation object. /// public class ManagedAppOperationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/OperationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/OperationsRequestBuilder.cs index 88a928a2548..aa6e5632cc5 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/OperationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/Item/Operations/OperationsRequestBuilder.cs @@ -40,7 +40,8 @@ public OperationsRequestBuilder(Dictionary pathParameters, IRequ public OperationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/{managedAppRegistration%2Did}/operations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Zero or more long running operations triggered on the app registration. + /// List properties and relationships of the managedAppOperation objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, ManagedAppOperationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to operations for deviceAppManagement + /// Create a new managedAppOperation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ManagedAppOperation body, Actio return await RequestAdapter.SendAsync(requestInfo, ManagedAppOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Zero or more long running operations triggered on the app registration. + /// List properties and relationships of the managedAppOperation objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to operations for deviceAppManagement + /// Create a new managedAppOperation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppOperation body, Act return requestInfo; } /// - /// Zero or more long running operations triggered on the app registration. + /// List properties and relationships of the managedAppOperation objects. /// public class OperationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs index af4f406efe1..d8da8b0dcb3 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppRegistrations/ManagedAppRegistrationsRequestBuilder.cs @@ -45,7 +45,8 @@ public ManagedAppRegistrationsRequestBuilder(Dictionary pathPara public ManagedAppRegistrationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The managed app registrations. + /// List properties and relationships of the iosManagedAppRegistration objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -64,7 +65,8 @@ public async Task GetAsync(Action(requestInfo, ManagedAppRegistrationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to managedAppRegistrations for deviceAppManagement + /// Create a new androidManagedAppRegistration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -85,7 +87,7 @@ public async Task PostAsync(ManagedAppRegistration body, return await RequestAdapter.SendAsync(requestInfo, ManagedAppRegistration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The managed app registrations. + /// List properties and relationships of the iosManagedAppRegistration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to managedAppRegistrations for deviceAppManagement + /// Create a new androidManagedAppRegistration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -139,7 +141,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppRegistration body, return requestInfo; } /// - /// The managed app registrations. + /// List properties and relationships of the iosManagedAppRegistration objects. /// public class ManagedAppRegistrationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs index 2241427f2ed..0fe82dd9ffc 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/Item/ManagedAppStatusItemRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// The managed app statuses. + /// Read properties and relationships of the managedAppStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -111,7 +112,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The managed app statuses. + /// Read properties and relationships of the managedAppStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -181,7 +182,7 @@ public ManagedAppStatusItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The managed app statuses. + /// Read properties and relationships of the managedAppStatus object. /// public class ManagedAppStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs index 196e867e5f0..948b8930779 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedAppStatuses/ManagedAppStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public ManagedAppStatusesRequestBuilder(Dictionary pathParameter public ManagedAppStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The managed app statuses. + /// List properties and relationships of the managedAppStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -80,7 +81,7 @@ public async Task PostAsync(ManagedAppStatus body, Action(requestInfo, ManagedAppStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The managed app statuses. + /// List properties and relationships of the managedAppStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -134,7 +135,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppStatus body, Action return requestInfo; } /// - /// The managed app statuses. + /// List properties and relationships of the managedAppStatus objects. /// public class ManagedAppStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assign/AssignRequestBuilder.cs index f32f889958b..defb59763d3 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs index e2a8c564760..4ed202c6adb 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of assignments for this eBook. + /// List properties and relationships of the iosVppEBookAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, ManagedEBookAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceAppManagement + /// Create a new managedEBookAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ManagedEBookAssignment body, return await RequestAdapter.SendAsync(requestInfo, ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of assignments for this eBook. + /// List properties and relationships of the iosVppEBookAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceAppManagement + /// Create a new managedEBookAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedEBookAssignment body, return requestInfo; } /// - /// The list of assignments for this eBook. + /// List properties and relationships of the iosVppEBookAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/Assignments/Item/ManagedEBookAssignmentItemRequestBuilder.cs index acf62ed8ceb..33fec5dc429 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 @@ -28,7 +28,8 @@ public ManagedEBookAssignmentItemRequestBuilder(Dictionary pathP public ManagedEBookAssignmentItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments/{managedEBookAssignment%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property assignments for deviceAppManagement + /// Deletes a iosVppEBookAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of assignments for this eBook. + /// Read properties and relationships of the iosVppEBookAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceAppManagement + /// Update the properties of a iosVppEBookAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(ManagedEBookAssignment body return await RequestAdapter.SendAsync(requestInfo, ManagedEBookAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceAppManagement + /// Deletes a iosVppEBookAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of assignments for this eBook. + /// Read properties and relationships of the iosVppEBookAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceAppManagement + /// Update the properties of a iosVppEBookAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ManagedEBookAssignmentItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of assignments for this eBook. + /// Read properties and relationships of the iosVppEBookAssignment object. /// public class ManagedEBookAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/DeviceStatesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/DeviceStatesRequestBuilder.cs index e9ca66e0fcb..d74b8d3ee1b 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/DeviceStatesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/DeviceStatesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceStatesRequestBuilder(Dictionary pathParameters, IRe public DeviceStatesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/deviceStates{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of installation states for this eBook. + /// List properties and relationships of the deviceInstallState objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DeviceInstallStateCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceStates for deviceAppManagement + /// Create a new deviceInstallState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceInstallState body, Action< return await RequestAdapter.SendAsync(requestInfo, DeviceInstallState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of installation states for this eBook. + /// List properties and relationships of the deviceInstallState objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceStates for deviceAppManagement + /// Create a new deviceInstallState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceInstallState body, Acti return requestInfo; } /// - /// The list of installation states for this eBook. + /// List properties and relationships of the deviceInstallState objects. /// public class DeviceStatesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/Item/DeviceInstallStateItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/Item/DeviceInstallStateItemRequestBuilder.cs index 902826cf5b9..6316c0dbbb1 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/Item/DeviceInstallStateItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/DeviceStates/Item/DeviceInstallStateItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceInstallStateItemRequestBuilder(Dictionary pathParam public DeviceInstallStateItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/deviceStates/{deviceInstallState%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceStates for deviceAppManagement + /// Deletes a deviceInstallState. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of installation states for this eBook. + /// Read properties and relationships of the deviceInstallState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceInstallState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStates in deviceAppManagement + /// Update the properties of a deviceInstallState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceInstallState body, Action return await RequestAdapter.SendAsync(requestInfo, DeviceInstallState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceStates for deviceAppManagement + /// Deletes a deviceInstallState. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of installation states for this eBook. + /// Read properties and relationships of the deviceInstallState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStates in deviceAppManagement + /// Update the properties of a deviceInstallState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceInstallStateItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of installation states for this eBook. + /// Read properties and relationships of the deviceInstallState object. /// public class DeviceInstallStateItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/InstallSummary/InstallSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/InstallSummary/InstallSummaryRequestBuilder.cs index d735c38bd31..bd8c7b6499d 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/InstallSummary/InstallSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/InstallSummary/InstallSummaryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Mobile App Install Summary. + /// Read properties and relationships of the eBookInstallSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, EBookInstallSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property installSummary in deviceAppManagement + /// Update the properties of a eBookInstallSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Mobile App Install Summary. + /// Read properties and relationships of the eBookInstallSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property installSummary in deviceAppManagement + /// Update the properties of a eBookInstallSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public InstallSummaryRequestBuilderDeleteRequestConfiguration() { } } /// - /// Mobile App Install Summary. + /// Read properties and relationships of the eBookInstallSummary object. /// public class InstallSummaryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs index 9a17917eda4..c4f231ba128 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/ManagedEBookItemRequestBuilder.cs @@ -53,7 +53,8 @@ public ManagedEBookItemRequestBuilder(Dictionary pathParameters, public ManagedEBookItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property managedEBooks for deviceAppManagement + /// Deletes a iosVppEBook. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -72,7 +73,8 @@ public async Task DeleteAsync(Action - /// The Managed eBook. + /// Read properties and relationships of the iosVppEBook object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -91,7 +93,8 @@ public async Task GetAsync(Action(requestInfo, ManagedEBook.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property managedEBooks in deviceAppManagement + /// Update the properties of a iosVppEBook object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -112,7 +115,7 @@ public async Task PatchAsync(ManagedEBook body, Action(requestInfo, ManagedEBook.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property managedEBooks for deviceAppManagement + /// Deletes a iosVppEBook. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -136,7 +139,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Managed eBook. + /// Read properties and relationships of the iosVppEBook object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +165,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property managedEBooks in deviceAppManagement + /// Update the properties of a iosVppEBook object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -206,7 +209,7 @@ public ManagedEBookItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The Managed eBook. + /// Read properties and relationships of the iosVppEBook object. /// public class ManagedEBookItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/Item/UserInstallStateSummaryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/Item/UserInstallStateSummaryItemRequestBuilder.cs index bbfe694396b..66a1b5fc01c 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/Item/UserInstallStateSummaryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/Item/UserInstallStateSummaryItemRequestBuilder.cs @@ -33,7 +33,8 @@ public UserInstallStateSummaryItemRequestBuilder(Dictionary path public UserInstallStateSummaryItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/userStateSummary/{userInstallStateSummary%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property userStateSummary for deviceAppManagement + /// Deletes a userInstallStateSummary. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of installation states for this eBook. + /// Read properties and relationships of the userInstallStateSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, UserInstallStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStateSummary in deviceAppManagement + /// Update the properties of a userInstallStateSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(UserInstallStateSummary bo return await RequestAdapter.SendAsync(requestInfo, UserInstallStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property userStateSummary for deviceAppManagement + /// Deletes a userInstallStateSummary. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of installation states for this eBook. + /// Read properties and relationships of the userInstallStateSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStateSummary in deviceAppManagement + /// Update the properties of a userInstallStateSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public UserInstallStateSummaryItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of installation states for this eBook. + /// Read properties and relationships of the userInstallStateSummary object. /// public class UserInstallStateSummaryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/UserStateSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/UserStateSummaryRequestBuilder.cs index 840ea274907..b3bbce645ab 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/UserStateSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/Item/UserStateSummary/UserStateSummaryRequestBuilder.cs @@ -40,7 +40,8 @@ public UserStateSummaryRequestBuilder(Dictionary pathParameters, public UserStateSummaryRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/userStateSummary{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of installation states for this eBook. + /// List properties and relationships of the userInstallStateSummary objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, UserInstallStateSummaryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to userStateSummary for deviceAppManagement + /// Create a new userInstallStateSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(UserInstallStateSummary bod return await RequestAdapter.SendAsync(requestInfo, UserInstallStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of installation states for this eBook. + /// List properties and relationships of the userInstallStateSummary objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to userStateSummary for deviceAppManagement + /// Create a new userInstallStateSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(UserInstallStateSummary body, return requestInfo; } /// - /// The list of installation states for this eBook. + /// List properties and relationships of the userInstallStateSummary objects. /// public class UserStateSummaryRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs index 4ac3abd2770..cead093ec60 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/ManagedEBooks/ManagedEBooksRequestBuilder.cs @@ -40,7 +40,8 @@ public ManagedEBooksRequestBuilder(Dictionary pathParameters, IR public ManagedEBooksRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Managed eBook. + /// List properties and relationships of the managedEBook objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, ManagedEBookCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to managedEBooks for deviceAppManagement + /// Create a new iosVppEBook object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ManagedEBook body, Action(requestInfo, ManagedEBook.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Managed eBook. + /// List properties and relationships of the managedEBook objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to managedEBooks for deviceAppManagement + /// Create a new iosVppEBook object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedEBook body, Action - /// The Managed eBook. + /// List properties and relationships of the managedEBook objects. /// public class ManagedEBooksRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/Item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/Item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.cs index 4728d7569c6..e298c133057 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/Item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/Item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.cs @@ -43,7 +43,8 @@ public MdmWindowsInformationProtectionPolicyItemRequestBuilder(Dictionary - /// Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement + /// Deletes a mdmWindowsInformationProtectionPolicy. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -62,7 +63,8 @@ public async Task DeleteAsync(Action - /// Windows information protection for apps running on devices which are MDM enrolled. + /// Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -81,7 +83,8 @@ public async Task GetAsync(Action(requestInfo, MdmWindowsInformationProtectionPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement + /// Update the properties of a mdmWindowsInformationProtectionPolicy object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -102,7 +105,7 @@ public async Task PatchAsync(MdmWindowsIn return await RequestAdapter.SendAsync(requestInfo, MdmWindowsInformationProtectionPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement + /// Deletes a mdmWindowsInformationProtectionPolicy. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -126,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Windows information protection for apps running on devices which are MDM enrolled. + /// Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -152,7 +155,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement + /// Update the properties of a mdmWindowsInformationProtectionPolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -196,7 +199,7 @@ public MdmWindowsInformationProtectionPolicyItemRequestBuilderDeleteRequestConfi } } /// - /// Windows information protection for apps running on devices which are MDM enrolled. + /// Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. /// public class MdmWindowsInformationProtectionPolicyItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.cs index 99f4e5ffc89..ccc7779b590 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MdmWindowsInformationProtectionPolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.cs @@ -40,7 +40,8 @@ public MdmWindowsInformationProtectionPoliciesRequestBuilder(Dictionary - /// Windows information protection for apps running on devices which are MDM enrolled. + /// List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAs return await RequestAdapter.SendAsync(requestInfo, MdmWindowsInformationProtectionPolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement + /// Create a new mdmWindowsInformationProtectionPolicy object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(MdmWindowsInf return await RequestAdapter.SendAsync(requestInfo, MdmWindowsInformationProtectionPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Windows information protection for apps running on devices which are MDM enrolled. + /// List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement + /// Create a new mdmWindowsInformationProtectionPolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(MdmWindowsInformationProtecti return requestInfo; } /// - /// Windows information protection for apps running on devices which are MDM enrolled. + /// List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. /// public class MdmWindowsInformationProtectionPoliciesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/Item/MobileAppCategoryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/Item/MobileAppCategoryItemRequestBuilder.cs index fb932b04988..1abc29b9429 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/Item/MobileAppCategoryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/Item/MobileAppCategoryItemRequestBuilder.cs @@ -28,7 +28,8 @@ public MobileAppCategoryItemRequestBuilder(Dictionary pathParame public MobileAppCategoryItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppCategories/{mobileAppCategory%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property mobileAppCategories for deviceAppManagement + /// Deletes a mobileAppCategory. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The mobile app categories. + /// Read properties and relationships of the mobileAppCategory object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property mobileAppCategories in deviceAppManagement + /// Update the properties of a mobileAppCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(MobileAppCategory body, Action(requestInfo, MobileAppCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property mobileAppCategories for deviceAppManagement + /// Deletes a mobileAppCategory. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The mobile app categories. + /// Read properties and relationships of the mobileAppCategory object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property mobileAppCategories in deviceAppManagement + /// Update the properties of a mobileAppCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public MobileAppCategoryItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The mobile app categories. + /// Read properties and relationships of the mobileAppCategory object. /// public class MobileAppCategoryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/MobileAppCategoriesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/MobileAppCategoriesRequestBuilder.cs index 1577c5ad291..78ca2eeedbb 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/MobileAppCategoriesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppCategories/MobileAppCategoriesRequestBuilder.cs @@ -40,7 +40,8 @@ public MobileAppCategoriesRequestBuilder(Dictionary pathParamete public MobileAppCategoriesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppCategories{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The mobile app categories. + /// List properties and relationships of the mobileAppCategory objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppCategoryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to mobileAppCategories for deviceAppManagement + /// Create a new mobileAppCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(MobileAppCategory body, Action(requestInfo, MobileAppCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The mobile app categories. + /// List properties and relationships of the mobileAppCategory objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to mobileAppCategories for deviceAppManagement + /// Create a new mobileAppCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(MobileAppCategory body, Actio return requestInfo; } /// - /// The mobile app categories. + /// List properties and relationships of the mobileAppCategory objects. /// public class MobileAppCategoriesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assign/AssignRequestBuilder.cs index 4fe30f62cb6..3ca2c7ac981 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs index 4f17864d4e7..4d09bc3a258 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of group assignemenets for app configration. + /// List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task(requestInfo, ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceAppManagement + /// Create a new managedDeviceMobileAppConfigurationAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(Manag return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of group assignemenets for app configration. + /// List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceAppManagement + /// Create a new managedDeviceMobileAppConfigurationAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedDeviceMobileAppConfigu return requestInfo; } /// - /// The list of group assignemenets for app configration. + /// List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/Item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/Item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.cs index 812e6dfa735..737470b6eba 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/Item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/Assignments/Item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder(Dictionar public ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/assignments/{managedDeviceMobileAppConfigurationAssignment%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property assignments for deviceAppManagement + /// Deletes a managedDeviceMobileAppConfigurationAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of group assignemenets for app configration. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(Mana return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceAppManagement + /// Deletes a managedDeviceMobileAppConfigurationAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of group assignemenets for app configration. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilderDeleteRequ } } /// - /// The list of group assignemenets for app configration. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. /// public class ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatusSummary/DeviceStatusSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatusSummary/DeviceStatusSummaryRequestBuilder.cs index 44babedc157..cd2d0fc8d41 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatusSummary/DeviceStatusSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatusSummary/DeviceStatusSummaryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// App configuration device status summary. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Act return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationDeviceSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStatusSummary in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// App configuration device status summary. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStatusSummary in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceStatusSummaryRequestBuilderDeleteRequestConfiguration() { } } /// - /// App configuration device status summary. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. /// public class DeviceStatusSummaryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs index cbe5ad1eee6..bc772e08548 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceStatusesRequestBuilder(Dictionary pathParameters, I public DeviceStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/deviceStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of ManagedDeviceMobileAppConfigurationDeviceStatus. + /// List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task(requestInfo, ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceStatuses for deviceAppManagement + /// Create a new managedDeviceMobileAppConfigurationDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(Man return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of ManagedDeviceMobileAppConfigurationDeviceStatus. + /// List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceStatuses for deviceAppManagement + /// Create a new managedDeviceMobileAppConfigurationDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedDeviceMobileAppConfigu return requestInfo; } /// - /// List of ManagedDeviceMobileAppConfigurationDeviceStatus. + /// List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. /// public class DeviceStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/Item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/Item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.cs index ac31efeffd2..688315389b7 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/Item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/DeviceStatuses/Item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder(Diction public ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceStatuses for deviceAppManagement + /// Deletes a managedDeviceMobileAppConfigurationDeviceStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// List of ManagedDeviceMobileAppConfigurationDeviceStatus. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Acti return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStatuses in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(Ma return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceStatuses for deviceAppManagement + /// Deletes a managedDeviceMobileAppConfigurationDeviceStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of ManagedDeviceMobileAppConfigurationDeviceStatus. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStatuses in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilderDeleteRe } } /// - /// List of ManagedDeviceMobileAppConfigurationDeviceStatus. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. /// public class ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs index 66ff1c38718..4d863f7dc23 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.cs @@ -58,7 +58,8 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilder(Dictionary - /// Delete navigation property mobileAppConfigurations for deviceAppManagement + /// Deletes a iosMobileAppConfiguration. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -77,7 +78,8 @@ public async Task DeleteAsync(Action - /// The Managed Device Mobile Application Configurations. + /// Read properties and relationships of the iosMobileAppConfiguration object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -96,7 +98,8 @@ public async Task GetAsync(Action(requestInfo, ManagedDeviceMobileAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property mobileAppConfigurations in deviceAppManagement + /// Update the properties of a iosMobileAppConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -117,7 +120,7 @@ public async Task PatchAsync(ManagedDeviceM return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property mobileAppConfigurations for deviceAppManagement + /// Deletes a iosMobileAppConfiguration. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -141,7 +144,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Managed Device Mobile Application Configurations. + /// Read properties and relationships of the iosMobileAppConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -167,7 +170,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property mobileAppConfigurations in deviceAppManagement + /// Update the properties of a iosMobileAppConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -211,7 +214,7 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilderDeleteRequestConfigu } } /// - /// The Managed Device Mobile Application Configurations. + /// Read properties and relationships of the iosMobileAppConfiguration object. /// public class ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatusSummary/UserStatusSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatusSummary/UserStatusSummaryRequestBuilder.cs index 1c67d03c21b..7b02cedcffb 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatusSummary/UserStatusSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatusSummary/UserStatusSummaryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// App configuration user status summary. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationUserSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStatusSummary in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationUserSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// App configuration user status summary. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStatusSummary in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationUserSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public UserStatusSummaryRequestBuilderDeleteRequestConfiguration() { } } /// - /// App configuration user status summary. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. /// public class UserStatusSummaryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/Item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/Item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.cs index ef43ce77318..fbf8995e865 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/Item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/Item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder(Dictionar public ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property userStatuses for deviceAppManagement + /// Deletes a managedDeviceMobileAppConfigurationUserStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// List of ManagedDeviceMobileAppConfigurationUserStatus. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStatuses in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationUserStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(Mana return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property userStatuses for deviceAppManagement + /// Deletes a managedDeviceMobileAppConfigurationUserStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of ManagedDeviceMobileAppConfigurationUserStatus. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStatuses in deviceAppManagement + /// Update the properties of a managedDeviceMobileAppConfigurationUserStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilderDeleteRequ } } /// - /// List of ManagedDeviceMobileAppConfigurationUserStatus. + /// Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. /// public class ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs index e88a19bda2a..2f82c5b2050 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public UserStatusesRequestBuilder(Dictionary pathParameters, IRe public UserStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/userStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of ManagedDeviceMobileAppConfigurationUserStatus. + /// List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task(requestInfo, ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to userStatuses for deviceAppManagement + /// Create a new managedDeviceMobileAppConfigurationUserStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(Manag return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of ManagedDeviceMobileAppConfigurationUserStatus. + /// List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to userStatuses for deviceAppManagement + /// Create a new managedDeviceMobileAppConfigurationUserStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedDeviceMobileAppConfigu return requestInfo; } /// - /// List of ManagedDeviceMobileAppConfigurationUserStatus. + /// List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. /// public class UserStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs index 43aa4c163be..59045b6c353 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileAppConfigurations/MobileAppConfigurationsRequestBuilder.cs @@ -40,7 +40,8 @@ public MobileAppConfigurationsRequestBuilder(Dictionary pathPara public MobileAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Managed Device Mobile Application Configurations. + /// List properties and relationships of the managedDeviceMobileAppConfiguration objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsyn return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to mobileAppConfigurations for deviceAppManagement + /// Create a new iosMobileAppConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ManagedDeviceMo return await RequestAdapter.SendAsync(requestInfo, ManagedDeviceMobileAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Managed Device Mobile Application Configurations. + /// List properties and relationships of the managedDeviceMobileAppConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to mobileAppConfigurations for deviceAppManagement + /// Create a new iosMobileAppConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedDeviceMobileAppConfigu return requestInfo; } /// - /// The Managed Device Mobile Application Configurations. + /// List properties and relationships of the managedDeviceMobileAppConfiguration objects. /// public class MobileAppConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assign/AssignRequestBuilder.cs index 7c5049d95a3..8960d45f8c4 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/AssignmentsRequestBuilder.cs index 5aa0fd32db4..6c0c4f2fe64 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of group assignments for this mobile app. + /// List properties and relationships of the mobileAppAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceAppManagement + /// Create a new mobileAppAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(MobileAppAssignment body, Actio return await RequestAdapter.SendAsync(requestInfo, MobileAppAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of group assignments for this mobile app. + /// List properties and relationships of the mobileAppAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceAppManagement + /// Create a new mobileAppAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(MobileAppAssignment body, Act return requestInfo; } /// - /// The list of group assignments for this mobile app. + /// List properties and relationships of the mobileAppAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/Item/MobileAppAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/Item/MobileAppAssignmentItemRequestBuilder.cs index 00c409ec883..e636d409576 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/Item/MobileAppAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/Assignments/Item/MobileAppAssignmentItemRequestBuilder.cs @@ -28,7 +28,8 @@ public MobileAppAssignmentItemRequestBuilder(Dictionary pathPara public MobileAppAssignmentItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/assignments/{mobileAppAssignment%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property assignments for deviceAppManagement + /// Deletes a mobileAppAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of group assignments for this mobile app. + /// Read properties and relationships of the mobileAppAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceAppManagement + /// Update the properties of a mobileAppAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(MobileAppAssignment body, Acti return await RequestAdapter.SendAsync(requestInfo, MobileAppAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceAppManagement + /// Deletes a mobileAppAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of group assignments for this mobile app. + /// Read properties and relationships of the mobileAppAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceAppManagement + /// Update the properties of a mobileAppAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public MobileAppAssignmentItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of group assignments for this mobile app. + /// Read properties and relationships of the mobileAppAssignment object. /// public class MobileAppAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs index f41713d9992..b81dc4d1dec 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/Item/MobileAppItemRequestBuilder.cs @@ -53,7 +53,8 @@ public MobileAppItemRequestBuilder(Dictionary pathParameters, IR public MobileAppItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property mobileApps for deviceAppManagement + /// Deletes a androidStoreApp. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -72,7 +73,8 @@ public async Task DeleteAsync(Action - /// The mobile apps. + /// Read properties and relationships of the iosLobApp object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -91,7 +93,8 @@ public async Task GetAsync(Action(requestInfo, MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property mobileApps in deviceAppManagement + /// Update the properties of a managedIOSLobApp object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -112,7 +115,7 @@ public async Task PatchAsync(MobileApp body, Action(requestInfo, MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property mobileApps for deviceAppManagement + /// Deletes a androidStoreApp. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -136,7 +139,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The mobile apps. + /// Read properties and relationships of the iosLobApp object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +165,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property mobileApps in deviceAppManagement + /// Update the properties of a managedIOSLobApp object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -206,7 +209,7 @@ public MobileAppItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The mobile apps. + /// Read properties and relationships of the iosLobApp object. /// public class MobileAppItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs index ecbf8180eed..016d1ccc10d 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/MobileApps/MobileAppsRequestBuilder.cs @@ -50,7 +50,8 @@ public MobileAppsRequestBuilder(Dictionary pathParameters, IRequ public MobileAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The mobile apps. + /// List properties and relationships of the managedMobileLobApp objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -69,7 +70,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to mobileApps for deviceAppManagement + /// Create a new iosLobApp object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -90,7 +92,7 @@ public async Task PostAsync(MobileApp body, Action(requestInfo, MobileApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The mobile apps. + /// List properties and relationships of the managedMobileLobApp objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +118,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to mobileApps for deviceAppManagement + /// Create a new iosLobApp object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -144,7 +146,7 @@ public RequestInformation ToPostRequestInformation(MobileApp body, Action - /// The mobile apps. + /// List properties and relationships of the managedMobileLobApp objects. /// public class MobileAppsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/SyncMicrosoftStoreForBusinessApps/SyncMicrosoftStoreForBusinessAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/SyncMicrosoftStoreForBusinessApps/SyncMicrosoftStoreForBusinessAppsRequestBuilder.cs index b6da50344db..d32a9b506ee 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/SyncMicrosoftStoreForBusinessApps/SyncMicrosoftStoreForBusinessAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/SyncMicrosoftStoreForBusinessApps/SyncMicrosoftStoreForBusinessAppsRequestBuilder.cs @@ -28,6 +28,7 @@ public SyncMicrosoftStoreForBusinessAppsRequestBuilder(string rawUrl, IRequestAd } /// /// Syncs Intune account with Microsoft Store For Business + /// 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/DeviceAppManagement/TargetedManagedAppConfigurations/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/Assign/AssignRequestBuilder.cs index 2a0ddf9ee14..c8c60dbfa56 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetApps/TargetAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetApps/TargetAppsRequestBuilder.cs index 679872c8f8b..e3723d4f05e 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetApps/TargetAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetApps/TargetAppsRequestBuilder.cs @@ -27,7 +27,8 @@ public TargetAppsRequestBuilder(Dictionary pathParameters, IRequ public TargetAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration%2Did}/targetApps", rawUrl) { } /// - /// Invoke action targetApps + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(TargetAppsPostRequestBody body, Action - /// Invoke action targetApps + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetedManagedAppConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetedManagedAppConfigurationItemRequestBuilder.cs index c11a7377c1c..1a96748eff1 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetedManagedAppConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/Item/TargetedManagedAppConfigurationItemRequestBuilder.cs @@ -53,7 +53,8 @@ public TargetedManagedAppConfigurationItemRequestBuilder(Dictionary - /// Delete navigation property targetedManagedAppConfigurations for deviceAppManagement + /// Deletes a targetedManagedAppConfiguration. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -72,7 +73,8 @@ public async Task DeleteAsync(Action - /// Targeted managed app configurations. + /// Read properties and relationships of the targetedManagedAppConfiguration object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -91,7 +93,8 @@ public async Task GetAsync(Action(requestInfo, TargetedManagedAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property targetedManagedAppConfigurations in deviceAppManagement + /// Update the properties of a targetedManagedAppConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -112,7 +115,7 @@ public async Task PatchAsync(TargetedManagedApp return await RequestAdapter.SendAsync(requestInfo, TargetedManagedAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property targetedManagedAppConfigurations for deviceAppManagement + /// Deletes a targetedManagedAppConfiguration. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -136,7 +139,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Targeted managed app configurations. + /// Read properties and relationships of the targetedManagedAppConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -162,7 +165,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property targetedManagedAppConfigurations in deviceAppManagement + /// Update the properties of a targetedManagedAppConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -206,7 +209,7 @@ public TargetedManagedAppConfigurationItemRequestBuilderDeleteRequestConfigurati } } /// - /// Targeted managed app configurations. + /// Read properties and relationships of the targetedManagedAppConfiguration object. /// public class TargetedManagedAppConfigurationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/TargetedManagedAppConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/TargetedManagedAppConfigurationsRequestBuilder.cs index 48f9953bf62..483dc0d7286 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/TargetedManagedAppConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/TargetedManagedAppConfigurations/TargetedManagedAppConfigurationsRequestBuilder.cs @@ -40,7 +40,8 @@ public TargetedManagedAppConfigurationsRequestBuilder(Dictionary public TargetedManagedAppConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/targetedManagedAppConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Targeted managed app configurations. + /// List properties and relationships of the targetedManagedAppConfiguration objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Ac return await RequestAdapter.SendAsync(requestInfo, TargetedManagedAppConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement + /// Create a new targetedManagedAppConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(TargetedManagedAppC return await RequestAdapter.SendAsync(requestInfo, TargetedManagedAppConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Targeted managed app configurations. + /// List properties and relationships of the targetedManagedAppConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement + /// Create a new targetedManagedAppConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(TargetedManagedAppConfigurati return requestInfo; } /// - /// Targeted managed app configurations. + /// List properties and relationships of the targetedManagedAppConfiguration objects. /// public class TargetedManagedAppConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/SyncLicenses/SyncLicensesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/SyncLicenses/SyncLicensesRequestBuilder.cs index b8894fe46c9..ac9cc505324 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/SyncLicenses/SyncLicensesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/SyncLicenses/SyncLicensesRequestBuilder.cs @@ -29,6 +29,7 @@ public SyncLicensesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) } /// /// Syncs licenses associated with a specific appleVolumePurchaseProgramToken + /// 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/DeviceAppManagement/VppTokens/Item/VppTokenItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/VppTokenItemRequestBuilder.cs index 0b0f03d1755..06a3b971947 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/VppTokenItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/Item/VppTokenItemRequestBuilder.cs @@ -33,7 +33,8 @@ public VppTokenItemRequestBuilder(Dictionary pathParameters, IRe public VppTokenItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/vppTokens/{vppToken%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property vppTokens for deviceAppManagement + /// Deletes a vppToken. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// List of Vpp tokens for this organization. + /// Read properties and relationships of the vppToken object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, VppToken.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property vppTokens in deviceAppManagement + /// Update the properties of a vppToken object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(VppToken body, Action(requestInfo, VppToken.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property vppTokens for deviceAppManagement + /// Deletes a vppToken. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of Vpp tokens for this organization. + /// Read properties and relationships of the vppToken object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property vppTokens in deviceAppManagement + /// Update the properties of a vppToken object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public VppTokenItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// List of Vpp tokens for this organization. + /// Read properties and relationships of the vppToken object. /// public class VppTokenItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/VppTokensRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/VppTokensRequestBuilder.cs index e7f68f4b763..279c248704c 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/VppTokensRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/VppTokens/VppTokensRequestBuilder.cs @@ -40,7 +40,8 @@ public VppTokensRequestBuilder(Dictionary pathParameters, IReque public VppTokensRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/vppTokens{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of Vpp tokens for this organization. + /// List properties and relationships of the vppToken objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, VppTokenCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to vppTokens for deviceAppManagement + /// Create a new vppToken object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(VppToken body, Action(requestInfo, VppToken.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of Vpp tokens for this organization. + /// List properties and relationships of the vppToken objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to vppTokens for deviceAppManagement + /// Create a new vppToken object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(VppToken body, Action - /// List of Vpp tokens for this organization. + /// List properties and relationships of the vppToken objects. /// public class VppTokensRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/Item/WindowsInformationProtectionPolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/Item/WindowsInformationProtectionPolicyItemRequestBuilder.cs index ee761112835..89c66f01804 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/Item/WindowsInformationProtectionPolicyItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/Item/WindowsInformationProtectionPolicyItemRequestBuilder.cs @@ -43,7 +43,8 @@ public WindowsInformationProtectionPolicyItemRequestBuilder(Dictionary - /// Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement + /// Deletes a windowsInformationProtectionPolicy. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -62,7 +63,8 @@ public async Task DeleteAsync(Action - /// Windows information protection for apps running on devices which are not MDM enrolled. + /// Read properties and relationships of the windowsInformationProtectionPolicy object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -81,7 +83,8 @@ public async Task GetAsync(Action(requestInfo, WindowsInformationProtectionPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement + /// Update the properties of a windowsInformationProtectionPolicy object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -102,7 +105,7 @@ public async Task PatchAsync(WindowsInformat return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement + /// Deletes a windowsInformationProtectionPolicy. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -126,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Windows information protection for apps running on devices which are not MDM enrolled. + /// Read properties and relationships of the windowsInformationProtectionPolicy object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -152,7 +155,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement + /// Update the properties of a windowsInformationProtectionPolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -196,7 +199,7 @@ public WindowsInformationProtectionPolicyItemRequestBuilderDeleteRequestConfigur } } /// - /// Windows information protection for apps running on devices which are not MDM enrolled. + /// Read properties and relationships of the windowsInformationProtectionPolicy object. /// public class WindowsInformationProtectionPolicyItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/WindowsInformationProtectionPoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/WindowsInformationProtectionPoliciesRequestBuilder.cs index 4184ab32370..eac5222574d 100644 --- a/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/WindowsInformationProtectionPoliciesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/WindowsInformationProtectionPolicies/WindowsInformationProtectionPoliciesRequestBuilder.cs @@ -40,7 +40,8 @@ public WindowsInformationProtectionPoliciesRequestBuilder(Dictionary - /// Windows information protection for apps running on devices which are not MDM enrolled. + /// List properties and relationships of the windowsInformationProtectionPolicy objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionPolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement + /// Create a new windowsInformationProtectionPolicy object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(WindowsInformati return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionPolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Windows information protection for apps running on devices which are not MDM enrolled. + /// List properties and relationships of the windowsInformationProtectionPolicy objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement + /// Create a new windowsInformationProtectionPolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsInformationProtectionP return requestInfo; } /// - /// Windows information protection for apps running on devices which are not MDM enrolled. + /// List properties and relationships of the windowsInformationProtectionPolicy objects. /// public class WindowsInformationProtectionPoliciesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ApplePushNotificationCertificate/ApplePushNotificationCertificateRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ApplePushNotificationCertificate/ApplePushNotificationCertificateRequestBuilder.cs index 014e9c092bc..e0d4d383ef2 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ApplePushNotificationCertificate/ApplePushNotificationCertificateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ApplePushNotificationCertificate/ApplePushNotificationCertificateRequestBuilder.cs @@ -52,7 +52,8 @@ public async Task DeleteAsync(Action - /// Apple push notification certificate. + /// Read properties and relationships of the applePushNotificationCertificate object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +72,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.ApplePushNotificationCertificate.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property applePushNotificationCertificate in deviceManagement + /// Update the properties of a applePushNotificationCertificate object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -116,7 +118,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Apple push notification certificate. + /// Read properties and relationships of the applePushNotificationCertificate object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +144,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property applePushNotificationCertificate in deviceManagement + /// Update the properties of a applePushNotificationCertificate object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +188,7 @@ public ApplePushNotificationCertificateRequestBuilderDeleteRequestConfiguration( } } /// - /// Apple push notification certificate. + /// Read properties and relationships of the applePushNotificationCertificate object. /// public class ApplePushNotificationCertificateRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/AuditEventsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/AuditEventsRequestBuilder.cs index 48bc67c5d62..257574607ea 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/AuditEventsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/AuditEventsRequestBuilder.cs @@ -46,7 +46,8 @@ public AuditEventsRequestBuilder(Dictionary pathParameters, IReq public AuditEventsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/auditEvents{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Audit Events + /// List properties and relationships of the auditEvent objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -73,7 +74,8 @@ public GetAuditActivityTypesWithCategoryRequestBuilder GetAuditActivityTypesWith return new GetAuditActivityTypesWithCategoryRequestBuilder(PathParameters, RequestAdapter, category); } /// - /// Create new navigation property to auditEvents for deviceManagement + /// Create a new auditEvent object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -94,7 +96,7 @@ public async Task PostAsync(AuditEvent body, Action(requestInfo, AuditEvent.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Audit Events + /// List properties and relationships of the auditEvent objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -120,7 +122,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to auditEvents for deviceManagement + /// Create a new auditEvent object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -148,7 +150,7 @@ public RequestInformation ToPostRequestInformation(AuditEvent body, Action - /// The Audit Events + /// List properties and relationships of the auditEvent objects. /// public class AuditEventsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/Item/AuditEventItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/Item/AuditEventItemRequestBuilder.cs index 3d52b069734..4b71bf0e682 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/Item/AuditEventItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/AuditEvents/Item/AuditEventItemRequestBuilder.cs @@ -28,7 +28,8 @@ public AuditEventItemRequestBuilder(Dictionary pathParameters, I public AuditEventItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/auditEvents/{auditEvent%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property auditEvents for deviceManagement + /// Deletes a auditEvent. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The Audit Events + /// Read properties and relationships of the auditEvent object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, AuditEvent.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property auditEvents in deviceManagement + /// Update the properties of a auditEvent object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(AuditEvent body, Action(requestInfo, AuditEvent.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property auditEvents for deviceManagement + /// Deletes a auditEvent. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Audit Events + /// Read properties and relationships of the auditEvent object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property auditEvents in deviceManagement + /// Update the properties of a auditEvent object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public AuditEventItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The Audit Events + /// Read properties and relationships of the auditEvent object. /// public class AuditEventItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/ComplianceManagementPartnersRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/ComplianceManagementPartnersRequestBuilder.cs index 0a1ea969be8..e9fa0ed0ef5 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/ComplianceManagementPartnersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/ComplianceManagementPartnersRequestBuilder.cs @@ -40,7 +40,8 @@ public ComplianceManagementPartnersRequestBuilder(Dictionary pat public ComplianceManagementPartnersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/complianceManagementPartners{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of Compliance Management Partners configured by the tenant. + /// List properties and relationships of the complianceManagementPartner objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action return await RequestAdapter.SendAsync(requestInfo, ComplianceManagementPartnerCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to complianceManagementPartners for deviceManagement + /// Create a new complianceManagementPartner object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ComplianceManagementPar return await RequestAdapter.SendAsync(requestInfo, ComplianceManagementPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of Compliance Management Partners configured by the tenant. + /// List properties and relationships of the complianceManagementPartner objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to complianceManagementPartners for deviceManagement + /// Create a new complianceManagementPartner object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ComplianceManagementPartner b return requestInfo; } /// - /// The list of Compliance Management Partners configured by the tenant. + /// List properties and relationships of the complianceManagementPartner objects. /// public class ComplianceManagementPartnersRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/Item/ComplianceManagementPartnerItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/Item/ComplianceManagementPartnerItemRequestBuilder.cs index cef256e7806..24a9553f574 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/Item/ComplianceManagementPartnerItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ComplianceManagementPartners/Item/ComplianceManagementPartnerItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ComplianceManagementPartnerItemRequestBuilder(Dictionary public ComplianceManagementPartnerItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/complianceManagementPartners/{complianceManagementPartner%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property complianceManagementPartners for deviceManagement + /// Deletes a complianceManagementPartner. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of Compliance Management Partners configured by the tenant. + /// Read properties and relationships of the complianceManagementPartner object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, ComplianceManagementPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property complianceManagementPartners in deviceManagement + /// Update the properties of a complianceManagementPartner object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(ComplianceManagementPa return await RequestAdapter.SendAsync(requestInfo, ComplianceManagementPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property complianceManagementPartners for deviceManagement + /// Deletes a complianceManagementPartner. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of Compliance Management Partners configured by the tenant. + /// Read properties and relationships of the complianceManagementPartner object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property complianceManagementPartners in deviceManagement + /// Update the properties of a complianceManagementPartner object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ComplianceManagementPartnerItemRequestBuilderDeleteRequestConfiguration() } } /// - /// The list of Compliance Management Partners configured by the tenant. + /// Read properties and relationships of the complianceManagementPartner object. /// public class ComplianceManagementPartnerItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ConditionalAccessSettings/ConditionalAccessSettingsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ConditionalAccessSettings/ConditionalAccessSettingsRequestBuilder.cs index 5a39b03f79f..166372ecd4d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ConditionalAccessSettings/ConditionalAccessSettingsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ConditionalAccessSettings/ConditionalAccessSettingsRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access + /// Read properties and relationships of the onPremisesConditionalAccessSettings object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, OnPremisesConditionalAccessSettings.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property conditionalAccessSettings in deviceManagement + /// Update the properties of a onPremisesConditionalAccessSettings object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access + /// Read properties and relationships of the onPremisesConditionalAccessSettings object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property conditionalAccessSettings in deviceManagement + /// Update the properties of a onPremisesConditionalAccessSettings object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public ConditionalAccessSettingsRequestBuilderDeleteRequestConfiguration() { } } /// - /// The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access + /// Read properties and relationships of the onPremisesConditionalAccessSettings object. /// public class ConditionalAccessSettingsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/DetectedAppsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/DetectedAppsRequestBuilder.cs index 5e6dd22c90c..448cbe614ae 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/DetectedAppsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/DetectedAppsRequestBuilder.cs @@ -40,7 +40,8 @@ public DetectedAppsRequestBuilder(Dictionary pathParameters, IRe public DetectedAppsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/detectedApps{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of detected apps associated with a device. + /// List properties and relationships of the detectedApp objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DetectedAppCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to detectedApps for deviceManagement + /// Create a new detectedApp object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DetectedApp body, Action(requestInfo, DetectedApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of detected apps associated with a device. + /// List properties and relationships of the detectedApp objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to detectedApps for deviceManagement + /// Create a new detectedApp object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DetectedApp body, Action - /// The list of detected apps associated with a device. + /// List properties and relationships of the detectedApp objects. /// public class DetectedAppsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/Item/DetectedAppItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/Item/DetectedAppItemRequestBuilder.cs index 7b7dfa65b7f..2a5475037ec 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/Item/DetectedAppItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DetectedApps/Item/DetectedAppItemRequestBuilder.cs @@ -33,7 +33,8 @@ public DetectedAppItemRequestBuilder(Dictionary pathParameters, public DetectedAppItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/detectedApps/{detectedApp%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property detectedApps for deviceManagement + /// Deletes a detectedApp. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of detected apps associated with a device. + /// Read properties and relationships of the detectedApp object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, DetectedApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property detectedApps in deviceManagement + /// Update the properties of a detectedApp object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(DetectedApp body, Action(requestInfo, DetectedApp.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property detectedApps for deviceManagement + /// Deletes a detectedApp. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of detected apps associated with a device. + /// Read properties and relationships of the detectedApp object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property detectedApps in deviceManagement + /// Update the properties of a detectedApp object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public DetectedAppItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of detected apps associated with a device. + /// Read properties and relationships of the detectedApp object. /// public class DetectedAppItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/DeviceCategoriesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/DeviceCategoriesRequestBuilder.cs index 40dc8b5b376..35af456e024 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/DeviceCategoriesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/DeviceCategoriesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceCategoriesRequestBuilder(Dictionary pathParameters, public DeviceCategoriesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCategories{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of device categories with the tenant. + /// List properties and relationships of the deviceCategory objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DeviceCategoryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceCategories for deviceManagement + /// Create a new deviceCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of device categories with the tenant. + /// List properties and relationships of the deviceCategory objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceCategories for deviceManagement + /// Create a new deviceCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.Device return requestInfo; } /// - /// The list of device categories with the tenant. + /// List properties and relationships of the deviceCategory objects. /// public class DeviceCategoriesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/Item/DeviceCategoryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/Item/DeviceCategoryItemRequestBuilder.cs index 219c166853d..075305b3744 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/Item/DeviceCategoryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCategories/Item/DeviceCategoryItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceCategoryItemRequestBuilder(Dictionary pathParameter public DeviceCategoryItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCategories/{deviceCategory%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceCategories for deviceManagement + /// Deletes a deviceCategory. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of device categories with the tenant. + /// Read properties and relationships of the deviceCategory object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCategories in deviceManagement + /// Update the properties of a deviceCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceCategories for deviceManagement + /// Deletes a deviceCategory. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of device categories with the tenant. + /// Read properties and relationships of the deviceCategory object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCategories in deviceManagement + /// Update the properties of a deviceCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceCategoryItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of device categories with the tenant. + /// Read properties and relationships of the deviceCategory object. /// public class DeviceCategoryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs index 25d80849da6..0f8172defc7 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/DeviceCompliancePoliciesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceCompliancePoliciesRequestBuilder(Dictionary pathPar public DeviceCompliancePoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The device compliance policies. + /// List properties and relationships of the windowsPhone81CompliancePolicy objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DeviceCompliancePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceCompliancePolicies for deviceManagement + /// Create a new windows10CompliancePolicy object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceCompliancePolicy body, return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The device compliance policies. + /// List properties and relationships of the windowsPhone81CompliancePolicy objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceCompliancePolicies for deviceManagement + /// Create a new windows10CompliancePolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceCompliancePolicy body, return requestInfo; } /// - /// The device compliance policies. + /// List properties and relationships of the windowsPhone81CompliancePolicy objects. /// public class DeviceCompliancePoliciesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assign/AssignRequestBuilder.cs index 4d53ea4a103..8ff24abf42f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action(requestInfo, AssignResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/AssignmentsRequestBuilder.cs index f2b74848135..0dcbdf74317 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The collection of assignments for this compliance policy. + /// List properties and relationships of the deviceCompliancePolicyAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(A return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicyAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceManagement + /// Create a new deviceCompliancePolicyAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceCompliancePo return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicyAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The collection of assignments for this compliance policy. + /// List properties and relationships of the deviceCompliancePolicyAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceManagement + /// Create a new deviceCompliancePolicyAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceCompliancePolicyAssignm return requestInfo; } /// - /// The collection of assignments for this compliance policy. + /// List properties and relationships of the deviceCompliancePolicyAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/Item/DeviceCompliancePolicyAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/Item/DeviceCompliancePolicyAssignmentItemRequestBuilder.cs index ec8f7e2321b..3670deaf29a 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/Item/DeviceCompliancePolicyAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/Assignments/Item/DeviceCompliancePolicyAssignmentItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceCompliancePolicyAssignmentItemRequestBuilder(Dictionary - /// Delete navigation property assignments for deviceManagement + /// Deletes a deviceCompliancePolicyAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The collection of assignments for this compliance policy. + /// Read properties and relationships of the deviceCompliancePolicyAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceCompliancePolicyAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a deviceCompliancePolicyAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceComplianceP return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicyAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceManagement + /// Deletes a deviceCompliancePolicyAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The collection of assignments for this compliance policy. + /// Read properties and relationships of the deviceCompliancePolicyAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a deviceCompliancePolicyAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceCompliancePolicyAssignmentItemRequestBuilderDeleteRequestConfigurat } } /// - /// The collection of assignments for this compliance policy. + /// Read properties and relationships of the deviceCompliancePolicyAssignment object. /// public class DeviceCompliancePolicyAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs index e2dfafe3dc1..9132022ecc4 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceCompliancePolicyItemRequestBuilder.cs @@ -73,7 +73,8 @@ public DeviceCompliancePolicyItemRequestBuilder(Dictionary pathP public DeviceCompliancePolicyItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceCompliancePolicies for deviceManagement + /// Deletes a windowsPhone81CompliancePolicy. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -92,7 +93,8 @@ public async Task DeleteAsync(Action - /// The device compliance policies. + /// Read properties and relationships of the macOSCompliancePolicy object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -111,7 +113,8 @@ public async Task GetAsync(Action(requestInfo, DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCompliancePolicies in deviceManagement + /// Update the properties of a macOSCompliancePolicy object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -132,7 +135,7 @@ public async Task PatchAsync(DeviceCompliancePolicy body return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicy.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceCompliancePolicies for deviceManagement + /// Deletes a windowsPhone81CompliancePolicy. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -156,7 +159,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device compliance policies. + /// Read properties and relationships of the macOSCompliancePolicy object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -182,7 +185,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCompliancePolicies in deviceManagement + /// Update the properties of a macOSCompliancePolicy object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -226,7 +229,7 @@ public DeviceCompliancePolicyItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The device compliance policies. + /// Read properties and relationships of the macOSCompliancePolicy object. /// public class DeviceCompliancePolicyItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs index 51e7a69169a..dda2604ad68 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device compliance devices status overview + /// Read properties and relationships of the deviceComplianceDeviceOverview object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceDeviceOverview.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStatusOverview in deviceManagement + /// Update the properties of a deviceComplianceDeviceOverview object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device compliance devices status overview + /// Read properties and relationships of the deviceComplianceDeviceOverview object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStatusOverview in deviceManagement + /// Update the properties of a deviceComplianceDeviceOverview object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceStatusOverviewRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device compliance devices status overview + /// Read properties and relationships of the deviceComplianceDeviceOverview object. /// public class DeviceStatusOverviewRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs index f923776e58f..542df8adfa2 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceStatusesRequestBuilder(Dictionary pathParameters, I public DeviceStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/deviceStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of DeviceComplianceDeviceStatus. + /// List properties and relationships of the deviceComplianceDeviceStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceDeviceStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceStatuses for deviceManagement + /// Create a new deviceComplianceDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceComplianceDevice return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of DeviceComplianceDeviceStatus. + /// List properties and relationships of the deviceComplianceDeviceStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceStatuses for deviceManagement + /// Create a new deviceComplianceDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceComplianceDeviceStatus return requestInfo; } /// - /// List of DeviceComplianceDeviceStatus. + /// List properties and relationships of the deviceComplianceDeviceStatus objects. /// public class DeviceStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/Item/DeviceComplianceDeviceStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/Item/DeviceComplianceDeviceStatusItemRequestBuilder.cs index c172ebb14db..ff2ce477d12 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/Item/DeviceComplianceDeviceStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/DeviceStatuses/Item/DeviceComplianceDeviceStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceComplianceDeviceStatusItemRequestBuilder(Dictionary public DeviceComplianceDeviceStatusItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/deviceStatuses/{deviceComplianceDeviceStatus%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceStatuses for deviceManagement + /// Deletes a deviceComplianceDeviceStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// List of DeviceComplianceDeviceStatus. + /// Read properties and relationships of the deviceComplianceDeviceStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStatuses in deviceManagement + /// Update the properties of a deviceComplianceDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceComplianceDevic return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceStatuses for deviceManagement + /// Deletes a deviceComplianceDeviceStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of DeviceComplianceDeviceStatus. + /// Read properties and relationships of the deviceComplianceDeviceStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStatuses in deviceManagement + /// Update the properties of a deviceComplianceDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceComplianceDeviceStatusItemRequestBuilderDeleteRequestConfiguration( } } /// - /// List of DeviceComplianceDeviceStatus. + /// Read properties and relationships of the deviceComplianceDeviceStatus object. /// public class DeviceComplianceDeviceStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduleActionsForRules/ScheduleActionsForRulesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduleActionsForRules/ScheduleActionsForRulesRequestBuilder.cs index 1c075b32f69..26a87a463e7 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduleActionsForRules/ScheduleActionsForRulesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduleActionsForRules/ScheduleActionsForRulesRequestBuilder.cs @@ -27,7 +27,8 @@ public ScheduleActionsForRulesRequestBuilder(Dictionary pathPara public ScheduleActionsForRulesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduleActionsForRules", rawUrl) { } /// - /// Invoke action scheduleActionsForRules + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(ScheduleActionsForRulesPostRequestBody body, Action< await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action scheduleActionsForRules + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.cs index 52b7a9d26ff..b052d3a7f30 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.cs @@ -33,7 +33,8 @@ public DeviceComplianceScheduledActionForRuleItemRequestBuilder(Dictionary - /// Delete navigation property scheduledActionsForRule for deviceManagement + /// Deletes a deviceComplianceScheduledActionForRule. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. + /// Read properties and relationships of the deviceComplianceScheduledActionForRule object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceScheduledActionForRule.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property scheduledActionsForRule in deviceManagement + /// Update the properties of a deviceComplianceScheduledActionForRule object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(DeviceCompl return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceScheduledActionForRule.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property scheduledActionsForRule for deviceManagement + /// Deletes a deviceComplianceScheduledActionForRule. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. + /// Read properties and relationships of the deviceComplianceScheduledActionForRule object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property scheduledActionsForRule in deviceManagement + /// Update the properties of a deviceComplianceScheduledActionForRule object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public DeviceComplianceScheduledActionForRuleItemRequestBuilderDeleteRequestConf } } /// - /// The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. + /// Read properties and relationships of the deviceComplianceScheduledActionForRule object. /// public class DeviceComplianceScheduledActionForRuleItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/Item/DeviceComplianceActionItemItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/Item/DeviceComplianceActionItemItemRequestBuilder.cs index cc25f7c9f59..25ac72460a3 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/Item/DeviceComplianceActionItemItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/Item/DeviceComplianceActionItemItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceComplianceActionItemItemRequestBuilder(Dictionary p public DeviceComplianceActionItemItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}/scheduledActionConfigurations/{deviceComplianceActionItem%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property scheduledActionConfigurations for deviceManagement + /// Deletes a deviceComplianceActionItem. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. + /// Read properties and relationships of the deviceComplianceActionItem object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceActionItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property scheduledActionConfigurations in deviceManagement + /// Update the properties of a deviceComplianceActionItem object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceComplianceActionI return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceActionItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property scheduledActionConfigurations for deviceManagement + /// Deletes a deviceComplianceActionItem. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. + /// Read properties and relationships of the deviceComplianceActionItem object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property scheduledActionConfigurations in deviceManagement + /// Update the properties of a deviceComplianceActionItem object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceComplianceActionItemItemRequestBuilderDeleteRequestConfiguration() } } /// - /// The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. + /// Read properties and relationships of the deviceComplianceActionItem object. /// public class DeviceComplianceActionItemItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/ScheduledActionConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/ScheduledActionConfigurationsRequestBuilder.cs index 7cc28d4871b..1bae8a25df4 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/ScheduledActionConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/Item/ScheduledActionConfigurations/ScheduledActionConfigurationsRequestBuilder.cs @@ -40,7 +40,8 @@ public ScheduledActionConfigurationsRequestBuilder(Dictionary pa public ScheduledActionConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}/scheduledActionConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. + /// List properties and relationships of the deviceComplianceActionItem objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action< return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceActionItemCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to scheduledActionConfigurations for deviceManagement + /// Create a new deviceComplianceActionItem object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceComplianceActionIt return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceActionItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. + /// List properties and relationships of the deviceComplianceActionItem objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to scheduledActionConfigurations for deviceManagement + /// Create a new deviceComplianceActionItem object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceComplianceActionItem bo return requestInfo; } /// - /// The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. + /// List properties and relationships of the deviceComplianceActionItem objects. /// public class ScheduledActionConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/ScheduledActionsForRuleRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/ScheduledActionsForRuleRequestBuilder.cs index 8b9f3d0eaf2..e406d2e6e27 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/ScheduledActionsForRuleRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/ScheduledActionsForRule/ScheduledActionsForRuleRequestBuilder.cs @@ -40,7 +40,8 @@ public ScheduledActionsForRuleRequestBuilder(Dictionary pathPara public ScheduledActionsForRuleRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. + /// List properties and relationships of the deviceComplianceScheduledActionForRule objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetA return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceScheduledActionForRuleCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to scheduledActionsForRule for deviceManagement + /// Create a new deviceComplianceScheduledActionForRule object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceCompli return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceScheduledActionForRule.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. + /// List properties and relationships of the deviceComplianceScheduledActionForRule objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to scheduledActionsForRule for deviceManagement + /// Create a new deviceComplianceScheduledActionForRule object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceComplianceScheduledActi return requestInfo; } /// - /// The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. + /// List properties and relationships of the deviceComplianceScheduledActionForRule objects. /// public class ScheduledActionsForRuleRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs index 48db6e88200..6d4db451f22 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device compliance users status overview + /// Read properties and relationships of the deviceComplianceUserOverview object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceUserOverview.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStatusOverview in deviceManagement + /// Update the properties of a deviceComplianceUserOverview object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device compliance users status overview + /// Read properties and relationships of the deviceComplianceUserOverview object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStatusOverview in deviceManagement + /// Update the properties of a deviceComplianceUserOverview object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public UserStatusOverviewRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device compliance users status overview + /// Read properties and relationships of the deviceComplianceUserOverview object. /// public class UserStatusOverviewRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/Item/DeviceComplianceUserStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/Item/DeviceComplianceUserStatusItemRequestBuilder.cs index 52de6c3f578..87249cac6dc 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/Item/DeviceComplianceUserStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/Item/DeviceComplianceUserStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceComplianceUserStatusItemRequestBuilder(Dictionary p public DeviceComplianceUserStatusItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/userStatuses/{deviceComplianceUserStatus%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property userStatuses for deviceManagement + /// Deletes a deviceComplianceUserStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// List of DeviceComplianceUserStatus. + /// Read properties and relationships of the deviceComplianceUserStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStatuses in deviceManagement + /// Update the properties of a deviceComplianceUserStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceComplianceUserSta return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property userStatuses for deviceManagement + /// Deletes a deviceComplianceUserStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of DeviceComplianceUserStatus. + /// Read properties and relationships of the deviceComplianceUserStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStatuses in deviceManagement + /// Update the properties of a deviceComplianceUserStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceComplianceUserStatusItemRequestBuilderDeleteRequestConfiguration() } } /// - /// List of DeviceComplianceUserStatus. + /// Read properties and relationships of the deviceComplianceUserStatus object. /// public class DeviceComplianceUserStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/UserStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/UserStatusesRequestBuilder.cs index 84e85367dac..62bd547ac53 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/UserStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicies/Item/UserStatuses/UserStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public UserStatusesRequestBuilder(Dictionary pathParameters, IRe public UserStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/userStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of DeviceComplianceUserStatus. + /// List properties and relationships of the deviceComplianceUserStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action< return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceUserStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to userStatuses for deviceManagement + /// Create a new deviceComplianceUserStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceComplianceUserStat return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of DeviceComplianceUserStatus. + /// List properties and relationships of the deviceComplianceUserStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to userStatuses for deviceManagement + /// Create a new deviceComplianceUserStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceComplianceUserStatus bo return requestInfo; } /// - /// List of DeviceComplianceUserStatus. + /// List properties and relationships of the deviceComplianceUserStatus objects. /// public class UserStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicyDeviceStateSummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicyDeviceStateSummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.cs index e4710b1ba75..4da89442e28 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicyDeviceStateSummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicyDeviceStateSummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// The device compliance state summary for this account. + /// Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCompliancePolicyDeviceStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement + /// Update the properties of a deviceCompliancePolicyDeviceStateSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device compliance state summary for this account. + /// Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement + /// Update the properties of a deviceCompliancePolicyDeviceStateSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceCompliancePolicyDeviceStateSummaryRequestBuilderDeleteRequestConfig } } /// - /// The device compliance state summary for this account. + /// Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. /// public class DeviceCompliancePolicyDeviceStateSummaryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.cs index b29db0c0032..46fca5f834c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceCompliancePolicySettingStateSummariesRequestBuilder(Dictionary - /// The summary states of compliance policy settings for this account. + /// List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task G return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicySettingStateSummaryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement + /// Create a new deviceCompliancePolicySettingStateSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceCom return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicySettingStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The summary states of compliance policy settings for this account. + /// List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement + /// Create a new deviceCompliancePolicySettingStateSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceCompliancePolicySetting return requestInfo; } /// - /// The summary states of compliance policy settings for this account. + /// List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. /// public class DeviceCompliancePolicySettingStateSummariesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.cs index 5b44c0d53ea..58d20ca1814 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.cs @@ -33,7 +33,8 @@ public DeviceCompliancePolicySettingStateSummaryItemRequestBuilder(Dictionary - /// Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement + /// Deletes a deviceCompliancePolicySettingStateSummary. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The summary states of compliance policy settings for this account. + /// Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, DeviceCompliancePolicySettingStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement + /// Update the properties of a deviceCompliancePolicySettingStateSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(DeviceCo return await RequestAdapter.SendAsync(requestInfo, DeviceCompliancePolicySettingStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement + /// Deletes a deviceCompliancePolicySettingStateSummary. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The summary states of compliance policy settings for this account. + /// Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement + /// Update the properties of a deviceCompliancePolicySettingStateSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public DeviceCompliancePolicySettingStateSummaryItemRequestBuilderDeleteRequestC } } /// - /// The summary states of compliance policy settings for this account. + /// Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. /// public class DeviceCompliancePolicySettingStateSummaryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/DeviceComplianceSettingStatesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/DeviceComplianceSettingStatesRequestBuilder.cs index 72e82011901..8c60807e676 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/DeviceComplianceSettingStatesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/DeviceComplianceSettingStatesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceComplianceSettingStatesRequestBuilder(Dictionary pa public DeviceComplianceSettingStatesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary%2Did}/deviceComplianceSettingStates{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Not yet documented + /// List properties and relationships of the deviceComplianceSettingState objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceSettingStateCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceComplianceSettingStates for deviceManagement + /// Create a new deviceComplianceSettingState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceComplianceSettin return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceSettingState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Not yet documented + /// List properties and relationships of the deviceComplianceSettingState objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceComplianceSettingStates for deviceManagement + /// Create a new deviceComplianceSettingState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceComplianceSettingState return requestInfo; } /// - /// Not yet documented + /// List properties and relationships of the deviceComplianceSettingState objects. /// public class DeviceComplianceSettingStatesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/Item/DeviceComplianceSettingStateItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/Item/DeviceComplianceSettingStateItemRequestBuilder.cs index 44c19be6b5f..1a21c976106 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/Item/DeviceComplianceSettingStateItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceCompliancePolicySettingStateSummaries/Item/DeviceComplianceSettingStates/Item/DeviceComplianceSettingStateItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceComplianceSettingStateItemRequestBuilder(Dictionary public DeviceComplianceSettingStateItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary%2Did}/deviceComplianceSettingStates/{deviceComplianceSettingState%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceComplianceSettingStates for deviceManagement + /// Deletes a deviceComplianceSettingState. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Not yet documented + /// Read properties and relationships of the deviceComplianceSettingState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceComplianceSettingState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceComplianceSettingStates in deviceManagement + /// Update the properties of a deviceComplianceSettingState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceComplianceSetti return await RequestAdapter.SendAsync(requestInfo, DeviceComplianceSettingState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceComplianceSettingStates for deviceManagement + /// Deletes a deviceComplianceSettingState. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Not yet documented + /// Read properties and relationships of the deviceComplianceSettingState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceComplianceSettingStates in deviceManagement + /// Update the properties of a deviceComplianceSettingState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceComplianceSettingStateItemRequestBuilderDeleteRequestConfiguration( } } /// - /// Not yet documented + /// Read properties and relationships of the deviceComplianceSettingState object. /// public class DeviceComplianceSettingStateItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurationDeviceStateSummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurationDeviceStateSummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.cs index 344243c2392..50f056fcda7 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurationDeviceStateSummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurationDeviceStateSummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// The device configuration device state summary for this account. + /// Read properties and relationships of the deviceConfigurationDeviceStateSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationDeviceStateSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement + /// Update the properties of a deviceConfigurationDeviceStateSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device configuration device state summary for this account. + /// Read properties and relationships of the deviceConfigurationDeviceStateSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement + /// Update the properties of a deviceConfigurationDeviceStateSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceConfigurationDeviceStateSummariesRequestBuilderDeleteRequestConfigu } } /// - /// The device configuration device state summary for this account. + /// Read properties and relationships of the deviceConfigurationDeviceStateSummary object. /// public class DeviceConfigurationDeviceStateSummariesRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs index c75733f062b..ce2e1a2c00c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/DeviceConfigurationsRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceConfigurationsRequestBuilder(Dictionary pathParamet public DeviceConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The device configurations. + /// List properties and relationships of the androidWorkProfileGeneralDeviceConfiguration objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceConfigurations for deviceManagement + /// Create a new windowsUpdateForBusinessConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceConfiguration body, Actio return await RequestAdapter.SendAsync(requestInfo, DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The device configurations. + /// List properties and relationships of the androidWorkProfileGeneralDeviceConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceConfigurations for deviceManagement + /// Create a new windowsUpdateForBusinessConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceConfiguration body, Act return requestInfo; } /// - /// The device configurations. + /// List properties and relationships of the androidWorkProfileGeneralDeviceConfiguration objects. /// public class DeviceConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assign/AssignRequestBuilder.cs index a28f2ff4abf..793f79f4c69 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action(requestInfo, AssignResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs index 3056b348d12..f32905d546f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of assignments for the device configuration profile. + /// List properties and relationships of the deviceConfigurationAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Acti return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceManagement + /// Create a new deviceConfigurationAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceConfigurationAs return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of assignments for the device configuration profile. + /// List properties and relationships of the deviceConfigurationAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceManagement + /// Create a new deviceConfigurationAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceConfigurationAssignment return requestInfo; } /// - /// The list of assignments for the device configuration profile. + /// List properties and relationships of the deviceConfigurationAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/Item/DeviceConfigurationAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/Item/DeviceConfigurationAssignmentItemRequestBuilder.cs index fdbdb9c454e..5cd6c41e065 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/Item/DeviceConfigurationAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/Assignments/Item/DeviceConfigurationAssignmentItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceConfigurationAssignmentItemRequestBuilder(Dictionary - /// Delete navigation property assignments for deviceManagement + /// Deletes a deviceConfigurationAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of assignments for the device configuration profile. + /// Read properties and relationships of the deviceConfigurationAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a deviceConfigurationAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceConfigurationA return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceManagement + /// Deletes a deviceConfigurationAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of assignments for the device configuration profile. + /// Read properties and relationships of the deviceConfigurationAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a deviceConfigurationAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceConfigurationAssignmentItemRequestBuilderDeleteRequestConfiguration } } /// - /// The list of assignments for the device configuration profile. + /// Read properties and relationships of the deviceConfigurationAssignment object. /// public class DeviceConfigurationAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs index d8f201eb8e6..1b239343e59 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceConfigurationItemRequestBuilder.cs @@ -64,7 +64,8 @@ public DeviceConfigurationItemRequestBuilder(Dictionary pathPara public DeviceConfigurationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceConfigurations for deviceManagement + /// Deletes a iosCustomConfiguration. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -83,7 +84,8 @@ public async Task DeleteAsync(Action - /// The device configurations. + /// Read properties and relationships of the macOSGeneralDeviceConfiguration object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -110,7 +112,8 @@ public GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder GetOm return new GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder(PathParameters, RequestAdapter, secretReferenceValueId); } /// - /// Update the navigation property deviceConfigurations in deviceManagement + /// Update the properties of a macOSCustomConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -131,7 +134,7 @@ public async Task PatchAsync(DeviceConfiguration body, Acti return await RequestAdapter.SendAsync(requestInfo, DeviceConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceConfigurations for deviceManagement + /// Deletes a iosCustomConfiguration. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -155,7 +158,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device configurations. + /// Read properties and relationships of the macOSGeneralDeviceConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -181,7 +184,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceConfigurations in deviceManagement + /// Update the properties of a macOSCustomConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -225,7 +228,7 @@ public DeviceConfigurationItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The device configurations. + /// Read properties and relationships of the macOSGeneralDeviceConfiguration object. /// public class DeviceConfigurationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/DeviceSettingStateSummariesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/DeviceSettingStateSummariesRequestBuilder.cs index fd9007c73cc..2e2b6865953 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/DeviceSettingStateSummariesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/DeviceSettingStateSummariesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceSettingStateSummariesRequestBuilder(Dictionary path public DeviceSettingStateSummariesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceSettingStateSummaries{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Device Configuration Setting State Device Summary + /// List properties and relationships of the settingStateDeviceSummary objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, SettingStateDeviceSummaryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceSettingStateSummaries for deviceManagement + /// Create a new settingStateDeviceSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(SettingStateDeviceSummary return await RequestAdapter.SendAsync(requestInfo, SettingStateDeviceSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device Configuration Setting State Device Summary + /// List properties and relationships of the settingStateDeviceSummary objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceSettingStateSummaries for deviceManagement + /// Create a new settingStateDeviceSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(SettingStateDeviceSummary bod return requestInfo; } /// - /// Device Configuration Setting State Device Summary + /// List properties and relationships of the settingStateDeviceSummary objects. /// public class DeviceSettingStateSummariesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/Item/SettingStateDeviceSummaryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/Item/SettingStateDeviceSummaryItemRequestBuilder.cs index 1e3055907f7..cbb4095e709 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/Item/SettingStateDeviceSummaryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceSettingStateSummaries/Item/SettingStateDeviceSummaryItemRequestBuilder.cs @@ -28,7 +28,8 @@ public SettingStateDeviceSummaryItemRequestBuilder(Dictionary pa public SettingStateDeviceSummaryItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceSettingStateSummaries/{settingStateDeviceSummary%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceSettingStateSummaries for deviceManagement + /// Deletes a settingStateDeviceSummary. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Device Configuration Setting State Device Summary + /// Read properties and relationships of the settingStateDeviceSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, SettingStateDeviceSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceSettingStateSummaries in deviceManagement + /// Update the properties of a settingStateDeviceSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(SettingStateDeviceSummar return await RequestAdapter.SendAsync(requestInfo, SettingStateDeviceSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceSettingStateSummaries for deviceManagement + /// Deletes a settingStateDeviceSummary. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device Configuration Setting State Device Summary + /// Read properties and relationships of the settingStateDeviceSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceSettingStateSummaries in deviceManagement + /// Update the properties of a settingStateDeviceSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public SettingStateDeviceSummaryItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device Configuration Setting State Device Summary + /// Read properties and relationships of the settingStateDeviceSummary object. /// public class SettingStateDeviceSummaryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs index 850389eedf8..621577e797c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatusOverview/DeviceStatusOverviewRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device Configuration devices status overview + /// Read properties and relationships of the deviceConfigurationDeviceOverview object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationDeviceOverview.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStatusOverview in deviceManagement + /// Update the properties of a deviceConfigurationDeviceOverview object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device Configuration devices status overview + /// Read properties and relationships of the deviceConfigurationDeviceOverview object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStatusOverview in deviceManagement + /// Update the properties of a deviceConfigurationDeviceOverview object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceStatusOverviewRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device Configuration devices status overview + /// Read properties and relationships of the deviceConfigurationDeviceOverview object. /// public class DeviceStatusOverviewRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs index cd3d1a6828e..47a90280fa7 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/DeviceStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceStatusesRequestBuilder(Dictionary pathParameters, I public DeviceStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Device configuration installation status by device. + /// List properties and relationships of the deviceConfigurationDeviceStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Ac return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationDeviceStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceStatuses for deviceManagement + /// Create a new deviceConfigurationDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceConfiguration return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device configuration installation status by device. + /// List properties and relationships of the deviceConfigurationDeviceStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceStatuses for deviceManagement + /// Create a new deviceConfigurationDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceConfigurationDeviceStat return requestInfo; } /// - /// Device configuration installation status by device. + /// List properties and relationships of the deviceConfigurationDeviceStatus objects. /// public class DeviceStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/Item/DeviceConfigurationDeviceStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/Item/DeviceConfigurationDeviceStatusItemRequestBuilder.cs index 1fcf0412098..cb01d8cff3f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/Item/DeviceConfigurationDeviceStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/DeviceStatuses/Item/DeviceConfigurationDeviceStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceConfigurationDeviceStatusItemRequestBuilder(Dictionary - /// Delete navigation property deviceStatuses for deviceManagement + /// Deletes a deviceConfigurationDeviceStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Device configuration installation status by device. + /// Read properties and relationships of the deviceConfigurationDeviceStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceStatuses in deviceManagement + /// Update the properties of a deviceConfigurationDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceConfiguratio return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceStatuses for deviceManagement + /// Deletes a deviceConfigurationDeviceStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device configuration installation status by device. + /// Read properties and relationships of the deviceConfigurationDeviceStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceStatuses in deviceManagement + /// Update the properties of a deviceConfigurationDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceConfigurationDeviceStatusItemRequestBuilderDeleteRequestConfigurati } } /// - /// Device configuration installation status by device. + /// Read properties and relationships of the deviceConfigurationDeviceStatus object. /// public class DeviceConfigurationDeviceStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs index c9c395136c4..e76be4c82f9 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatusOverview/UserStatusOverviewRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device Configuration users status overview + /// Read properties and relationships of the deviceConfigurationUserOverview object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationUserOverview.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStatusOverview in deviceManagement + /// Update the properties of a deviceConfigurationUserOverview object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device Configuration users status overview + /// Read properties and relationships of the deviceConfigurationUserOverview object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStatusOverview in deviceManagement + /// Update the properties of a deviceConfigurationUserOverview object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public UserStatusOverviewRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device Configuration users status overview + /// Read properties and relationships of the deviceConfigurationUserOverview object. /// public class UserStatusOverviewRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/Item/DeviceConfigurationUserStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/Item/DeviceConfigurationUserStatusItemRequestBuilder.cs index 3ea0247509a..fbeb761accf 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/Item/DeviceConfigurationUserStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/Item/DeviceConfigurationUserStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceConfigurationUserStatusItemRequestBuilder(Dictionary - /// Delete navigation property userStatuses for deviceManagement + /// Deletes a deviceConfigurationUserStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Device configuration installation status by user. + /// Read properties and relationships of the deviceConfigurationUserStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceConfigurationUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property userStatuses in deviceManagement + /// Update the properties of a deviceConfigurationUserStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceConfigurationU return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property userStatuses for deviceManagement + /// Deletes a deviceConfigurationUserStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device configuration installation status by user. + /// Read properties and relationships of the deviceConfigurationUserStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property userStatuses in deviceManagement + /// Update the properties of a deviceConfigurationUserStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceConfigurationUserStatusItemRequestBuilderDeleteRequestConfiguration } } /// - /// Device configuration installation status by user. + /// Read properties and relationships of the deviceConfigurationUserStatus object. /// public class DeviceConfigurationUserStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs index 3414ee9e202..26a942753d7 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceConfigurations/Item/UserStatuses/UserStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public UserStatusesRequestBuilder(Dictionary pathParameters, IRe public UserStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/userStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Device configuration installation status by user. + /// List properties and relationships of the deviceConfigurationUserStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Acti return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationUserStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to userStatuses for deviceManagement + /// Create a new deviceConfigurationUserStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceConfigurationUs return await RequestAdapter.SendAsync(requestInfo, DeviceConfigurationUserStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device configuration installation status by user. + /// List properties and relationships of the deviceConfigurationUserStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to userStatuses for deviceManagement + /// Create a new deviceConfigurationUserStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceConfigurationUserStatus return requestInfo; } /// - /// Device configuration installation status by user. + /// List properties and relationships of the deviceConfigurationUserStatus objects. /// public class UserStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs index 3d96154af5f..bd7d950a8b1 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/DeviceEnrollmentConfigurationsRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceEnrollmentConfigurationsRequestBuilder(Dictionary p public DeviceEnrollmentConfigurationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of device enrollment configurations + /// List properties and relationships of the deviceEnrollmentConfiguration objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Acti return await RequestAdapter.SendAsync(requestInfo, DeviceEnrollmentConfigurationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceEnrollmentConfigurations for deviceManagement + /// Create a new deviceEnrollmentLimitConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceEnrollmentConfi return await RequestAdapter.SendAsync(requestInfo, DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of device enrollment configurations + /// List properties and relationships of the deviceEnrollmentConfiguration objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceEnrollmentConfigurations for deviceManagement + /// Create a new deviceEnrollmentLimitConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceEnrollmentConfiguration return requestInfo; } /// - /// The list of device enrollment configurations + /// List properties and relationships of the deviceEnrollmentConfiguration objects. /// public class DeviceEnrollmentConfigurationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assign/AssignRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assign/AssignRequestBuilder.cs index 905825e7db8..0ba839c0d10 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assign/AssignRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assign/AssignRequestBuilder.cs @@ -27,7 +27,8 @@ public AssignRequestBuilder(Dictionary pathParameters, IRequestA public AssignRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}/assign", rawUrl) { } /// - /// Invoke action assign + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(AssignPostRequestBody body, Action - /// Invoke action assign + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs index 22112dc6c34..33cd320122e 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of group assignments for the device configuration profile + /// List properties and relationships of the enrollmentConfigurationAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync( return await RequestAdapter.SendAsync(requestInfo, EnrollmentConfigurationAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceManagement + /// Create a new enrollmentConfigurationAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(EnrollmentConfigu return await RequestAdapter.SendAsync(requestInfo, EnrollmentConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of group assignments for the device configuration profile + /// List properties and relationships of the enrollmentConfigurationAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceManagement + /// Create a new enrollmentConfigurationAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(EnrollmentConfigurationAssign return requestInfo; } /// - /// The list of group assignments for the device configuration profile + /// List properties and relationships of the enrollmentConfigurationAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/Item/EnrollmentConfigurationAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/Item/EnrollmentConfigurationAssignmentItemRequestBuilder.cs index 7d28edc8412..0eb85546d99 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/Item/EnrollmentConfigurationAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/Assignments/Item/EnrollmentConfigurationAssignmentItemRequestBuilder.cs @@ -28,7 +28,8 @@ public EnrollmentConfigurationAssignmentItemRequestBuilder(Dictionary - /// Delete navigation property assignments for deviceManagement + /// Deletes a enrollmentConfigurationAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of group assignments for the device configuration profile + /// Read properties and relationships of the enrollmentConfigurationAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, EnrollmentConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a enrollmentConfigurationAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(EnrollmentConfig return await RequestAdapter.SendAsync(requestInfo, EnrollmentConfigurationAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceManagement + /// Deletes a enrollmentConfigurationAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of group assignments for the device configuration profile + /// Read properties and relationships of the enrollmentConfigurationAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a enrollmentConfigurationAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public EnrollmentConfigurationAssignmentItemRequestBuilderDeleteRequestConfigura } } /// - /// The list of group assignments for the device configuration profile + /// Read properties and relationships of the enrollmentConfigurationAssignment object. /// public class EnrollmentConfigurationAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs index ef82e96f3dc..6ea2dba7d11 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/DeviceEnrollmentConfigurationItemRequestBuilder.cs @@ -43,7 +43,8 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(Dictionary - /// Delete navigation property deviceEnrollmentConfigurations for deviceManagement + /// Deletes a deviceEnrollmentLimitConfiguration. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -62,7 +63,8 @@ public async Task DeleteAsync(Action - /// The list of device enrollment configurations + /// Read properties and relationships of the deviceEnrollmentConfiguration object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -81,7 +83,8 @@ public async Task GetAsync(Action(requestInfo, DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceEnrollmentConfigurations in deviceManagement + /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -102,7 +105,7 @@ public async Task PatchAsync(DeviceEnrollmentConf return await RequestAdapter.SendAsync(requestInfo, DeviceEnrollmentConfiguration.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceEnrollmentConfigurations for deviceManagement + /// Deletes a deviceEnrollmentLimitConfiguration. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -126,7 +129,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of device enrollment configurations + /// Read properties and relationships of the deviceEnrollmentConfiguration object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -152,7 +155,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceEnrollmentConfigurations in deviceManagement + /// Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -196,7 +199,7 @@ public DeviceEnrollmentConfigurationItemRequestBuilderDeleteRequestConfiguration } } /// - /// The list of device enrollment configurations + /// Read properties and relationships of the deviceEnrollmentConfiguration object. /// public class DeviceEnrollmentConfigurationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/SetPriority/SetPriorityRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/SetPriority/SetPriorityRequestBuilder.cs index 94efaeb0aaf..196edb9a6ed 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/SetPriority/SetPriorityRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceEnrollmentConfigurations/Item/SetPriority/SetPriorityRequestBuilder.cs @@ -27,7 +27,8 @@ public SetPriorityRequestBuilder(Dictionary pathParameters, IReq public SetPriorityRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}/setPriority", rawUrl) { } /// - /// Invoke action setPriority + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(SetPriorityPostRequestBody body, Action - /// Invoke action setPriority + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/DeviceManagementPartnersRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/DeviceManagementPartnersRequestBuilder.cs index 893618945ea..331104df19d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/DeviceManagementPartnersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/DeviceManagementPartnersRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceManagementPartnersRequestBuilder(Dictionary pathPar public DeviceManagementPartnersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceManagementPartners{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of Device Management Partners configured by the tenant. + /// List properties and relationships of the deviceManagementPartner objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DeviceManagementPartnerCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceManagementPartners for deviceManagement + /// Create a new deviceManagementPartner object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceManagementPartner bod return await RequestAdapter.SendAsync(requestInfo, DeviceManagementPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of Device Management Partners configured by the tenant. + /// List properties and relationships of the deviceManagementPartner objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceManagementPartners for deviceManagement + /// Create a new deviceManagementPartner object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceManagementPartner body, return requestInfo; } /// - /// The list of Device Management Partners configured by the tenant. + /// List properties and relationships of the deviceManagementPartner objects. /// public class DeviceManagementPartnersRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/DeviceManagementPartnerItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/DeviceManagementPartnerItemRequestBuilder.cs index a35cf97948c..fde723c7bf5 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/DeviceManagementPartnerItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/DeviceManagementPartnerItemRequestBuilder.cs @@ -33,7 +33,8 @@ public DeviceManagementPartnerItemRequestBuilder(Dictionary path public DeviceManagementPartnerItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceManagementPartners/{deviceManagementPartner%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceManagementPartners for deviceManagement + /// Deletes a deviceManagementPartner. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of Device Management Partners configured by the tenant. + /// Read properties and relationships of the deviceManagementPartner object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, DeviceManagementPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceManagementPartners in deviceManagement + /// Update the properties of a deviceManagementPartner object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(DeviceManagementPartner bo return await RequestAdapter.SendAsync(requestInfo, DeviceManagementPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceManagementPartners for deviceManagement + /// Deletes a deviceManagementPartner. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of Device Management Partners configured by the tenant. + /// Read properties and relationships of the deviceManagementPartner object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceManagementPartners in deviceManagement + /// Update the properties of a deviceManagementPartner object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public DeviceManagementPartnerItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of Device Management Partners configured by the tenant. + /// Read properties and relationships of the deviceManagementPartner object. /// public class DeviceManagementPartnerItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/Terminate/TerminateRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/Terminate/TerminateRequestBuilder.cs index 6ffb297adb8..c8766c9bbe5 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/Terminate/TerminateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementPartners/Item/Terminate/TerminateRequestBuilder.cs @@ -27,7 +27,8 @@ public TerminateRequestBuilder(Dictionary pathParameters, IReque public TerminateRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/deviceManagementPartners/{deviceManagementPartner%2Did}/terminate", rawUrl) { } /// - /// Invoke action terminate + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action terminate + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs index 4de2b4c3d51..885da632cde 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/DeviceManagementRequestBuilder.cs @@ -316,7 +316,7 @@ public DeviceManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdap } /// /// Read properties and relationships of the deviceManagement object. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -344,7 +344,7 @@ public GetEffectivePermissionsWithScopeRequestBuilder GetEffectivePermissionsWit } /// /// Update the properties of a deviceManagement object. - /// Find more info here + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/ExchangeConnectorsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/ExchangeConnectorsRequestBuilder.cs index 09d0b150555..e5a3dbd88c0 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/ExchangeConnectorsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/ExchangeConnectorsRequestBuilder.cs @@ -40,7 +40,8 @@ public ExchangeConnectorsRequestBuilder(Dictionary pathParameter public ExchangeConnectorsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/exchangeConnectors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of Exchange Connectors configured by the tenant. + /// List properties and relationships of the deviceManagementExchangeConnector objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync( return await RequestAdapter.SendAsync(requestInfo, DeviceManagementExchangeConnectorCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to exchangeConnectors for deviceManagement + /// Create a new deviceManagementExchangeConnector object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceManagementE return await RequestAdapter.SendAsync(requestInfo, DeviceManagementExchangeConnector.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of Exchange Connectors configured by the tenant. + /// List properties and relationships of the deviceManagementExchangeConnector objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to exchangeConnectors for deviceManagement + /// Create a new deviceManagementExchangeConnector object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceManagementExchangeConne return requestInfo; } /// - /// The list of Exchange Connectors configured by the tenant. + /// List properties and relationships of the deviceManagementExchangeConnector objects. /// public class ExchangeConnectorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/DeviceManagementExchangeConnectorItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/DeviceManagementExchangeConnectorItemRequestBuilder.cs index a43a4c375df..1b251860791 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/DeviceManagementExchangeConnectorItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/DeviceManagementExchangeConnectorItemRequestBuilder.cs @@ -33,7 +33,8 @@ public DeviceManagementExchangeConnectorItemRequestBuilder(Dictionary - /// Delete navigation property exchangeConnectors for deviceManagement + /// Deletes a deviceManagementExchangeConnector. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of Exchange Connectors configured by the tenant. + /// Read properties and relationships of the deviceManagementExchangeConnector object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, DeviceManagementExchangeConnector.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property exchangeConnectors in deviceManagement + /// Update the properties of a deviceManagementExchangeConnector object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(DeviceManagement return await RequestAdapter.SendAsync(requestInfo, DeviceManagementExchangeConnector.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property exchangeConnectors for deviceManagement + /// Deletes a deviceManagementExchangeConnector. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of Exchange Connectors configured by the tenant. + /// Read properties and relationships of the deviceManagementExchangeConnector object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property exchangeConnectors in deviceManagement + /// Update the properties of a deviceManagementExchangeConnector object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public DeviceManagementExchangeConnectorItemRequestBuilderDeleteRequestConfigura } } /// - /// The list of Exchange Connectors configured by the tenant. + /// Read properties and relationships of the deviceManagementExchangeConnector object. /// public class DeviceManagementExchangeConnectorItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/Sync/SyncRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/Sync/SyncRequestBuilder.cs index 0dba2f9ca60..1792ef463fe 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/Sync/SyncRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ExchangeConnectors/Item/Sync/SyncRequestBuilder.cs @@ -27,7 +27,8 @@ public SyncRequestBuilder(Dictionary pathParameters, IRequestAda public SyncRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector%2Did}/sync", rawUrl) { } /// - /// Invoke action sync + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(SyncPostRequestBody body, Action - /// Invoke action sync + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Import/ImportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Import/ImportRequestBuilder.cs index 290f039426c..b127e0c2b73 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Import/ImportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Import/ImportRequestBuilder.cs @@ -27,7 +27,8 @@ public ImportRequestBuilder(Dictionary pathParameters, IRequestA public ImportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", rawUrl) { } /// - /// Invoke action import + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(ImportPostRequestBody body, Action(requestInfo, ImportResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Invoke action import + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.cs index 390291b178d..15d13186437 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.cs @@ -45,7 +45,8 @@ public ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder(Dictionary - /// Collection of imported Windows autopilot devices. + /// List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -64,7 +65,8 @@ public async Task GetA return await RequestAdapter.SendAsync(requestInfo, ImportedWindowsAutopilotDeviceIdentityCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement + /// Create a new importedWindowsAutopilotDeviceIdentity object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -85,7 +87,7 @@ public async Task PostAsync(ImportedWind return await RequestAdapter.SendAsync(requestInfo, ImportedWindowsAutopilotDeviceIdentity.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Collection of imported Windows autopilot devices. + /// List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement + /// Create a new importedWindowsAutopilotDeviceIdentity object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -139,7 +141,7 @@ public RequestInformation ToPostRequestInformation(ImportedWindowsAutopilotDevic return requestInfo; } /// - /// Collection of imported Windows autopilot devices. + /// List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. /// public class ImportedWindowsAutopilotDeviceIdentitiesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.cs index e174ca79023..74541986c53 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ImportedWindowsAutopilotDeviceIdentities/Item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder(Dictionary - /// Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement + /// Deletes a importedWindowsAutopilotDeviceIdentity. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Collection of imported Windows autopilot devices. + /// Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -87,7 +89,7 @@ public async Task PatchAsync(ImportedWin return await RequestAdapter.SendAsync(requestInfo, ImportedWindowsAutopilotDeviceIdentity.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement + /// Deletes a importedWindowsAutopilotDeviceIdentity. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Collection of imported Windows autopilot devices. + /// Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -181,7 +183,7 @@ public ImportedWindowsAutopilotDeviceIdentityItemRequestBuilderDeleteRequestConf } } /// - /// Collection of imported Windows autopilot devices. + /// Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. /// public class ImportedWindowsAutopilotDeviceIdentityItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/IosUpdateStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/IosUpdateStatusesRequestBuilder.cs index a588b140e28..f8a6437a431 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/IosUpdateStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/IosUpdateStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public IosUpdateStatusesRequestBuilder(Dictionary pathParameters public IosUpdateStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/iosUpdateStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The IOS software update installation statuses for this account. + /// List properties and relationships of the iosUpdateDeviceStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, IosUpdateDeviceStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to iosUpdateStatuses for deviceManagement + /// Create a new iosUpdateDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(IosUpdateDeviceStatus body, A return await RequestAdapter.SendAsync(requestInfo, IosUpdateDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The IOS software update installation statuses for this account. + /// List properties and relationships of the iosUpdateDeviceStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to iosUpdateStatuses for deviceManagement + /// Create a new iosUpdateDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(IosUpdateDeviceStatus body, A return requestInfo; } /// - /// The IOS software update installation statuses for this account. + /// List properties and relationships of the iosUpdateDeviceStatus objects. /// public class IosUpdateStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/Item/IosUpdateDeviceStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/Item/IosUpdateDeviceStatusItemRequestBuilder.cs index 62f1295c90f..5874bf88ee7 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/Item/IosUpdateDeviceStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/IosUpdateStatuses/Item/IosUpdateDeviceStatusItemRequestBuilder.cs @@ -28,7 +28,8 @@ public IosUpdateDeviceStatusItemRequestBuilder(Dictionary pathPa public IosUpdateDeviceStatusItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property iosUpdateStatuses for deviceManagement + /// Deletes a iosUpdateDeviceStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The IOS software update installation statuses for this account. + /// Read properties and relationships of the iosUpdateDeviceStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, IosUpdateDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property iosUpdateStatuses in deviceManagement + /// Update the properties of a iosUpdateDeviceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(IosUpdateDeviceStatus body, return await RequestAdapter.SendAsync(requestInfo, IosUpdateDeviceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property iosUpdateStatuses for deviceManagement + /// Deletes a iosUpdateDeviceStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The IOS software update installation statuses for this account. + /// Read properties and relationships of the iosUpdateDeviceStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property iosUpdateStatuses in deviceManagement + /// Update the properties of a iosUpdateDeviceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public IosUpdateDeviceStatusItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The IOS software update installation statuses for this account. + /// Read properties and relationships of the iosUpdateDeviceStatus object. /// public class IosUpdateDeviceStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDeviceOverview/ManagedDeviceOverviewRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDeviceOverview/ManagedDeviceOverviewRequestBuilder.cs index 9ea9dd4d3cd..1fb88378e10 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDeviceOverview/ManagedDeviceOverviewRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDeviceOverview/ManagedDeviceOverviewRequestBuilder.cs @@ -28,7 +28,8 @@ public ManagedDeviceOverviewRequestBuilder(Dictionary pathParame public ManagedDeviceOverviewRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDeviceOverview{?%24select,%24expand}", rawUrl) { } /// - /// Device overview + /// Read properties and relationships of the managedDeviceOverview object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,7 @@ public ManagedDeviceOverviewRequestBuilder(string rawUrl, IRequestAdapter reques return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.ManagedDeviceOverview.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device overview + /// Read properties and relationships of the managedDeviceOverview object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -73,7 +74,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Device overview + /// Read properties and relationships of the managedDeviceOverview object. /// public class ManagedDeviceOverviewRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs index 08f055eaeca..cb877938f9d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs @@ -28,6 +28,7 @@ public BypassActivationLockRequestBuilder(string rawUrl, IRequestAdapter request } /// /// Bypass activation lock + /// 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/DeviceManagement/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs index 288f544f8e4..0af0bec5c25 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public CleanWindowsDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAd } /// /// Clean Windows device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs index a5ff86e2459..cbcac6ca24b 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public DeleteUserFromSharedAppleDeviceRequestBuilder(string rawUrl, IRequestAdap } /// /// Delete user from shared Apple device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs index 566ae79925f..9bbe1b5b1a5 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device category + /// Read properties and relationships of the deviceCategory object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCategory in deviceManagement + /// Update the properties of a deviceCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device category + /// Read properties and relationships of the deviceCategory object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCategory in deviceManagement + /// Update the properties of a deviceCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceCategoryRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device category + /// Read properties and relationships of the deviceCategory object. /// public class DeviceCategoryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs index 5a91387ae3f..ed54a1f5c4b 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs @@ -28,6 +28,7 @@ public DisableLostModeRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Disable lost mode + /// 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/DeviceManagement/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs index 3712ae78721..dcea287329a 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public LocateDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) } /// /// Locate a device + /// 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/DeviceManagement/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs index 64d90408f0e..4b29d3f7e4a 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs @@ -28,6 +28,7 @@ public LogoutSharedAppleDeviceActiveUserRequestBuilder(string rawUrl, IRequestAd } /// /// Logout shared Apple device active user + /// 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/DeviceManagement/ManagedDevices/Item/ManagedDeviceItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ManagedDeviceItemRequestBuilder.cs index ea0e0974a9a..ad5e2c11e47 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ManagedDeviceItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ManagedDeviceItemRequestBuilder.cs @@ -148,7 +148,8 @@ public ManagedDeviceItemRequestBuilder(Dictionary pathParameters public ManagedDeviceItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property managedDevices for deviceManagement + /// Deletes a managedDevice. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -167,7 +168,8 @@ public async Task DeleteAsync(Action - /// The list of managed devices. + /// Read properties and relationships of the managedDevice object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +188,8 @@ public async Task GetAsync(Action(requestInfo, ManagedDevice.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property managedDevices in deviceManagement + /// Update the properties of a managedDevice object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -207,7 +210,7 @@ public async Task PatchAsync(ManagedDevice body, Action(requestInfo, ManagedDevice.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property managedDevices for deviceManagement + /// Deletes a managedDevice. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -231,7 +234,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of managed devices. + /// Read properties and relationships of the managedDevice object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -257,7 +260,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property managedDevices in deviceManagement + /// Update the properties of a managedDevice object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -301,7 +304,7 @@ public ManagedDeviceItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of managed devices. + /// Read properties and relationships of the managedDevice object. /// public class ManagedDeviceItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs index b96267e35dc..bd33046e240 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs @@ -28,6 +28,7 @@ public RebootNowRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Reboot device + /// 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/DeviceManagement/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs index 6c154fd4b9e..5480dcf57af 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs @@ -28,6 +28,7 @@ public RecoverPasscodeRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Recover passcode + /// 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/DeviceManagement/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs index 3a29f863e27..529013cf86d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs @@ -28,6 +28,7 @@ public RemoteLockRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Remote lock + /// 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/DeviceManagement/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs index 408412f5841..195e83fe4d8 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs @@ -28,6 +28,7 @@ public RequestRemoteAssistanceRequestBuilder(string rawUrl, IRequestAdapter requ } /// /// Request remote assistance + /// 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/DeviceManagement/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs index db675b39009..1e0d2eb7d05 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs @@ -28,6 +28,7 @@ public ResetPasscodeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter } /// /// Reset passcode + /// 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/DeviceManagement/ManagedDevices/Item/Retire/RetireRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Retire/RetireRequestBuilder.cs index 4d8f2fd604a..279ee00f5b9 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Retire/RetireRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Retire/RetireRequestBuilder.cs @@ -28,6 +28,7 @@ public RetireRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas } /// /// Retire a device + /// 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/DeviceManagement/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs index ee04ad64484..fd8102f20c0 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs @@ -28,6 +28,7 @@ public ShutDownRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b } /// /// Shut down device + /// 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/DeviceManagement/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs index 6fbf030d5ca..b596a708191 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs @@ -27,7 +27,8 @@ public SyncDeviceRequestBuilder(Dictionary pathParameters, IRequ public SyncDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/syncDevice", rawUrl) { } /// - /// Invoke action syncDevice + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action syncDevice + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs index b47f3ba708d..b78f99f2c9d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs @@ -27,7 +27,8 @@ public UpdateWindowsDeviceAccountRequestBuilder(Dictionary pathP public UpdateWindowsDeviceAccountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/updateWindowsDeviceAccount", rawUrl) { } /// - /// Invoke action updateWindowsDeviceAccount + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(UpdateWindowsDeviceAccountPostRequestBody body, Acti await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action updateWindowsDeviceAccount + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Users/UsersRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Users/UsersRequestBuilder.cs index 8f1652abdc9..82568d1c0dd 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Users/UsersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Users/UsersRequestBuilder.cs @@ -28,7 +28,8 @@ public UsersRequestBuilder(Dictionary pathParameters, IRequestAd public UsersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/users{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,7 @@ public async Task GetAsync(Action(requestInfo, UserCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -73,7 +74,7 @@ public RequestInformation ToGetRequestInformation(Action - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. /// public class UsersRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs index 93ef9875955..ef75d8dcf0c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs @@ -27,7 +27,8 @@ public WindowsDefenderScanRequestBuilder(Dictionary pathParamete public WindowsDefenderScanRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/windowsDefenderScan", rawUrl) { } /// - /// Invoke action windowsDefenderScan + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(WindowsDefenderScanPostRequestBody body, Action - /// Invoke action windowsDefenderScan + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs index 3e0a01a10e9..738ea320752 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs @@ -27,7 +27,8 @@ public WindowsDefenderUpdateSignaturesRequestBuilder(Dictionary public WindowsDefenderUpdateSignaturesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/windowsDefenderUpdateSignatures", rawUrl) { } /// - /// Invoke action windowsDefenderUpdateSignatures + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action windowsDefenderUpdateSignatures + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs index d1c85497e8b..21b576327dc 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs @@ -40,7 +40,8 @@ public DetectedMalwareStateRequestBuilder(Dictionary pathParamet public DetectedMalwareStateRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, WindowsDeviceMalwareStateCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to detectedMalwareState for deviceManagement + /// Create a new windowsDeviceMalwareState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(WindowsDeviceMalwareState return await RequestAdapter.SendAsync(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to detectedMalwareState for deviceManagement + /// Create a new windowsDeviceMalwareState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsDeviceMalwareState bod return requestInfo; } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. /// public class DetectedMalwareStateRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs index 9c1bf47fd3f..f97e301ff27 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs @@ -28,7 +28,8 @@ public WindowsDeviceMalwareStateItemRequestBuilder(Dictionary pa public WindowsDeviceMalwareStateItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property detectedMalwareState for deviceManagement + /// Deletes a windowsDeviceMalwareState. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property detectedMalwareState in deviceManagement + /// Update the properties of a windowsDeviceMalwareState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(WindowsDeviceMalwareStat return await RequestAdapter.SendAsync(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property detectedMalwareState for deviceManagement + /// Deletes a windowsDeviceMalwareState. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property detectedMalwareState in deviceManagement + /// Update the properties of a windowsDeviceMalwareState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public WindowsDeviceMalwareStateItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. /// public class WindowsDeviceMalwareStateItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs index 1ed07ccccbe..860996c05a6 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs @@ -52,7 +52,8 @@ public async Task DeleteAsync(Action - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +72,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.WindowsProtectionState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsProtectionState in deviceManagement + /// Update the properties of a windowsProtectionState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -116,7 +118,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +144,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsProtectionState in deviceManagement + /// Update the properties of a windowsProtectionState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +188,7 @@ public WindowsProtectionStateRequestBuilderDeleteRequestConfiguration() { } } /// - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. /// public class WindowsProtectionStateRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs index 0602b699a13..40cbd3c4c78 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs @@ -28,6 +28,7 @@ public WipeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base( } /// /// Wipe a device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/ManagedDevicesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/ManagedDevicesRequestBuilder.cs index 435e2704317..aa1d6d8ba3e 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/ManagedDevicesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ManagedDevices/ManagedDevicesRequestBuilder.cs @@ -40,7 +40,8 @@ public ManagedDevicesRequestBuilder(Dictionary pathParameters, I public ManagedDevicesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/managedDevices{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of managed devices. + /// List properties and relationships of the managedDevice objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, ManagedDeviceCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to managedDevices for deviceManagement + /// Create a new managedDevice object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ManagedDevice body, Action(requestInfo, ManagedDevice.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of managed devices. + /// List properties and relationships of the managedDevice objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to managedDevices for deviceManagement + /// Create a new managedDevice object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ManagedDevice body, Action - /// The list of managed devices. + /// List properties and relationships of the managedDevice objects. /// public class ManagedDevicesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/AppLogCollectionRequestsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/AppLogCollectionRequestsRequestBuilder.cs index 7c0220d0027..6b88215aeb5 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/AppLogCollectionRequestsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/AppLogCollectionRequestsRequestBuilder.cs @@ -40,7 +40,8 @@ public AppLogCollectionRequestsRequestBuilder(Dictionary pathPar public AppLogCollectionRequestsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent%2Did}/appLogCollectionRequests{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Indicates collection of App Log Upload Request. + /// List properties and relationships of the appLogCollectionRequest objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, AppLogCollectionRequestCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to appLogCollectionRequests for deviceManagement + /// Create a new appLogCollectionRequest object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(AppLogCollectionRequest bod return await RequestAdapter.SendAsync(requestInfo, AppLogCollectionRequest.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Indicates collection of App Log Upload Request. + /// List properties and relationships of the appLogCollectionRequest objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to appLogCollectionRequests for deviceManagement + /// Create a new appLogCollectionRequest object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(AppLogCollectionRequest body, return requestInfo; } /// - /// Indicates collection of App Log Upload Request. + /// List properties and relationships of the appLogCollectionRequest objects. /// public class AppLogCollectionRequestsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/AppLogCollectionRequestItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/AppLogCollectionRequestItemRequestBuilder.cs index 471410b784a..962c83e1a6f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/AppLogCollectionRequestItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/AppLogCollectionRequestItemRequestBuilder.cs @@ -33,7 +33,8 @@ public AppLogCollectionRequestItemRequestBuilder(Dictionary path public AppLogCollectionRequestItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent%2Did}/appLogCollectionRequests/{appLogCollectionRequest%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property appLogCollectionRequests for deviceManagement + /// Deletes a appLogCollectionRequest. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// Indicates collection of App Log Upload Request. + /// Read properties and relationships of the appLogCollectionRequest object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, AppLogCollectionRequest.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property appLogCollectionRequests in deviceManagement + /// Update the properties of a appLogCollectionRequest object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(AppLogCollectionRequest bo return await RequestAdapter.SendAsync(requestInfo, AppLogCollectionRequest.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property appLogCollectionRequests for deviceManagement + /// Deletes a appLogCollectionRequest. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Indicates collection of App Log Upload Request. + /// Read properties and relationships of the appLogCollectionRequest object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property appLogCollectionRequests in deviceManagement + /// Update the properties of a appLogCollectionRequest object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public AppLogCollectionRequestItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Indicates collection of App Log Upload Request. + /// Read properties and relationships of the appLogCollectionRequest object. /// public class AppLogCollectionRequestItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/CreateDownloadUrl/CreateDownloadUrlRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/CreateDownloadUrl/CreateDownloadUrlRequestBuilder.cs index 117bd71e631..1970925c798 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/CreateDownloadUrl/CreateDownloadUrlRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/AppLogCollectionRequests/Item/CreateDownloadUrl/CreateDownloadUrlRequestBuilder.cs @@ -28,7 +28,8 @@ public CreateDownloadUrlRequestBuilder(Dictionary pathParameters public CreateDownloadUrlRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent%2Did}/appLogCollectionRequests/{appLogCollectionRequest%2Did}/createDownloadUrl", rawUrl) { } /// - /// Invoke action createDownloadUrl + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,7 @@ public async Task PostAsync(Action(requestInfo, AppLogCollectionDownloadDetails.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Invoke action createDownloadUrl + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/MobileAppTroubleshootingEventItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/MobileAppTroubleshootingEventItemRequestBuilder.cs index e4b53c1387c..d953bb1d011 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/MobileAppTroubleshootingEventItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/Item/MobileAppTroubleshootingEventItemRequestBuilder.cs @@ -33,7 +33,8 @@ public MobileAppTroubleshootingEventItemRequestBuilder(Dictionary - /// Delete navigation property mobileAppTroubleshootingEvents for deviceManagement + /// Deletes a mobileAppTroubleshootingEvent. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The collection property of MobileAppTroubleshootingEvent. + /// Read properties and relationships of the mobileAppTroubleshootingEvent object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, MobileAppTroubleshootingEvent.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property mobileAppTroubleshootingEvents in deviceManagement + /// Update the properties of a mobileAppTroubleshootingEvent object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(MobileAppTroubleshoo return await RequestAdapter.SendAsync(requestInfo, MobileAppTroubleshootingEvent.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property mobileAppTroubleshootingEvents for deviceManagement + /// Deletes a mobileAppTroubleshootingEvent. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The collection property of MobileAppTroubleshootingEvent. + /// Read properties and relationships of the mobileAppTroubleshootingEvent object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property mobileAppTroubleshootingEvents in deviceManagement + /// Update the properties of a mobileAppTroubleshootingEvent object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public MobileAppTroubleshootingEventItemRequestBuilderDeleteRequestConfiguration } } /// - /// The collection property of MobileAppTroubleshootingEvent. + /// Read properties and relationships of the mobileAppTroubleshootingEvent object. /// public class MobileAppTroubleshootingEventItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/MobileAppTroubleshootingEventsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/MobileAppTroubleshootingEventsRequestBuilder.cs index 0bb416e0dba..fb6c3c2a226 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/MobileAppTroubleshootingEventsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileAppTroubleshootingEvents/MobileAppTroubleshootingEventsRequestBuilder.cs @@ -40,7 +40,8 @@ public MobileAppTroubleshootingEventsRequestBuilder(Dictionary p public MobileAppTroubleshootingEventsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The collection property of MobileAppTroubleshootingEvent. + /// List properties and relationships of the mobileAppTroubleshootingEvent objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Acti return await RequestAdapter.SendAsync(requestInfo, MobileAppTroubleshootingEventCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement + /// Create a new mobileAppTroubleshootingEvent object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(MobileAppTroubleshoot return await RequestAdapter.SendAsync(requestInfo, MobileAppTroubleshootingEvent.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The collection property of MobileAppTroubleshootingEvent. + /// List properties and relationships of the mobileAppTroubleshootingEvent objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement + /// Create a new mobileAppTroubleshootingEvent object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(MobileAppTroubleshootingEvent return requestInfo; } /// - /// The collection property of MobileAppTroubleshootingEvent. + /// List properties and relationships of the mobileAppTroubleshootingEvent objects. /// public class MobileAppTroubleshootingEventsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/Item/MobileThreatDefenseConnectorItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/Item/MobileThreatDefenseConnectorItemRequestBuilder.cs index cb71229452a..e304ed77d4a 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/Item/MobileThreatDefenseConnectorItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/Item/MobileThreatDefenseConnectorItemRequestBuilder.cs @@ -28,7 +28,8 @@ public MobileThreatDefenseConnectorItemRequestBuilder(Dictionary public MobileThreatDefenseConnectorItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property mobileThreatDefenseConnectors for deviceManagement + /// Deletes a mobileThreatDefenseConnector. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of Mobile threat Defense connectors configured by the tenant. + /// Read properties and relationships of the mobileThreatDefenseConnector object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, MobileThreatDefenseConnector.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property mobileThreatDefenseConnectors in deviceManagement + /// Update the properties of a mobileThreatDefenseConnector object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(MobileThreatDefenseCo return await RequestAdapter.SendAsync(requestInfo, MobileThreatDefenseConnector.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property mobileThreatDefenseConnectors for deviceManagement + /// Deletes a mobileThreatDefenseConnector. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of Mobile threat Defense connectors configured by the tenant. + /// Read properties and relationships of the mobileThreatDefenseConnector object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property mobileThreatDefenseConnectors in deviceManagement + /// Update the properties of a mobileThreatDefenseConnector object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public MobileThreatDefenseConnectorItemRequestBuilderDeleteRequestConfiguration( } } /// - /// The list of Mobile threat Defense connectors configured by the tenant. + /// Read properties and relationships of the mobileThreatDefenseConnector object. /// public class MobileThreatDefenseConnectorItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/MobileThreatDefenseConnectorsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/MobileThreatDefenseConnectorsRequestBuilder.cs index 97cedd23031..7565b7a19bd 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/MobileThreatDefenseConnectorsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/MobileThreatDefenseConnectors/MobileThreatDefenseConnectorsRequestBuilder.cs @@ -40,7 +40,8 @@ public MobileThreatDefenseConnectorsRequestBuilder(Dictionary pa public MobileThreatDefenseConnectorsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/mobileThreatDefenseConnectors{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of Mobile threat Defense connectors configured by the tenant. + /// List properties and relationships of the mobileThreatDefenseConnector objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, MobileThreatDefenseConnectorCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to mobileThreatDefenseConnectors for deviceManagement + /// Create a new mobileThreatDefenseConnector object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(MobileThreatDefenseCon return await RequestAdapter.SendAsync(requestInfo, MobileThreatDefenseConnector.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of Mobile threat Defense connectors configured by the tenant. + /// List properties and relationships of the mobileThreatDefenseConnector objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to mobileThreatDefenseConnectors for deviceManagement + /// Create a new mobileThreatDefenseConnector object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(MobileThreatDefenseConnector return requestInfo; } /// - /// The list of Mobile threat Defense connectors configured by the tenant. + /// List properties and relationships of the mobileThreatDefenseConnector objects. /// public class MobileThreatDefenseConnectorsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/Item/LocalizedNotificationMessageItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/Item/LocalizedNotificationMessageItemRequestBuilder.cs index bd38bfae7d1..8a0776b2393 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/Item/LocalizedNotificationMessageItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/Item/LocalizedNotificationMessageItemRequestBuilder.cs @@ -28,7 +28,8 @@ public LocalizedNotificationMessageItemRequestBuilder(Dictionary public LocalizedNotificationMessageItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate%2Did}/localizedNotificationMessages/{localizedNotificationMessage%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property localizedNotificationMessages for deviceManagement + /// Deletes a localizedNotificationMessage. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of localized messages for this Notification Message Template. + /// Read properties and relationships of the localizedNotificationMessage object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, LocalizedNotificationMessage.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property localizedNotificationMessages in deviceManagement + /// Update the properties of a localizedNotificationMessage object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(LocalizedNotification return await RequestAdapter.SendAsync(requestInfo, LocalizedNotificationMessage.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property localizedNotificationMessages for deviceManagement + /// Deletes a localizedNotificationMessage. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of localized messages for this Notification Message Template. + /// Read properties and relationships of the localizedNotificationMessage object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property localizedNotificationMessages in deviceManagement + /// Update the properties of a localizedNotificationMessage object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public LocalizedNotificationMessageItemRequestBuilderDeleteRequestConfiguration( } } /// - /// The list of localized messages for this Notification Message Template. + /// Read properties and relationships of the localizedNotificationMessage object. /// public class LocalizedNotificationMessageItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/LocalizedNotificationMessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/LocalizedNotificationMessagesRequestBuilder.cs index 837bb7db1a4..d8581c3c03d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/LocalizedNotificationMessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/LocalizedNotificationMessages/LocalizedNotificationMessagesRequestBuilder.cs @@ -40,7 +40,8 @@ public LocalizedNotificationMessagesRequestBuilder(Dictionary pa public LocalizedNotificationMessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate%2Did}/localizedNotificationMessages{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of localized messages for this Notification Message Template. + /// List properties and relationships of the localizedNotificationMessage objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, LocalizedNotificationMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to localizedNotificationMessages for deviceManagement + /// Create a new localizedNotificationMessage object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(LocalizedNotificationM return await RequestAdapter.SendAsync(requestInfo, LocalizedNotificationMessage.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of localized messages for this Notification Message Template. + /// List properties and relationships of the localizedNotificationMessage objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to localizedNotificationMessages for deviceManagement + /// Create a new localizedNotificationMessage object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(LocalizedNotificationMessage return requestInfo; } /// - /// The list of localized messages for this Notification Message Template. + /// List properties and relationships of the localizedNotificationMessage objects. /// public class LocalizedNotificationMessagesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/NotificationMessageTemplateItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/NotificationMessageTemplateItemRequestBuilder.cs index 357926a95b8..2e72d5a0704 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/NotificationMessageTemplateItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/NotificationMessageTemplateItemRequestBuilder.cs @@ -38,7 +38,8 @@ public NotificationMessageTemplateItemRequestBuilder(Dictionary public NotificationMessageTemplateItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property notificationMessageTemplates for deviceManagement + /// Deletes a notificationMessageTemplate. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -57,7 +58,8 @@ public async Task DeleteAsync(Action - /// The Notification Message Templates. + /// Read properties and relationships of the notificationMessageTemplate object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -76,7 +78,8 @@ public async Task GetAsync(Action(requestInfo, NotificationMessageTemplate.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property notificationMessageTemplates in deviceManagement + /// Update the properties of a notificationMessageTemplate object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -97,7 +100,7 @@ public async Task PatchAsync(NotificationMessageTem return await RequestAdapter.SendAsync(requestInfo, NotificationMessageTemplate.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property notificationMessageTemplates for deviceManagement + /// Deletes a notificationMessageTemplate. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -121,7 +124,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Notification Message Templates. + /// Read properties and relationships of the notificationMessageTemplate object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -147,7 +150,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property notificationMessageTemplates in deviceManagement + /// Update the properties of a notificationMessageTemplate object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -191,7 +194,7 @@ public NotificationMessageTemplateItemRequestBuilderDeleteRequestConfiguration() } } /// - /// The Notification Message Templates. + /// Read properties and relationships of the notificationMessageTemplate object. /// public class NotificationMessageTemplateItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/SendTestMessage/SendTestMessageRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/SendTestMessage/SendTestMessageRequestBuilder.cs index 9ce9a0a3e67..15074803a88 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/SendTestMessage/SendTestMessageRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/Item/SendTestMessage/SendTestMessageRequestBuilder.cs @@ -28,6 +28,7 @@ public SendTestMessageRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Sends test message using the specified notificationMessageTemplate in the default locale + /// 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/DeviceManagement/NotificationMessageTemplates/NotificationMessageTemplatesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/NotificationMessageTemplatesRequestBuilder.cs index 27d8057f815..f0441bd1472 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/NotificationMessageTemplatesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/NotificationMessageTemplates/NotificationMessageTemplatesRequestBuilder.cs @@ -40,7 +40,8 @@ public NotificationMessageTemplatesRequestBuilder(Dictionary pat public NotificationMessageTemplatesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Notification Message Templates. + /// List properties and relationships of the notificationMessageTemplate objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action return await RequestAdapter.SendAsync(requestInfo, NotificationMessageTemplateCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to notificationMessageTemplates for deviceManagement + /// Create a new notificationMessageTemplate object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(NotificationMessageTemp return await RequestAdapter.SendAsync(requestInfo, NotificationMessageTemplate.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Notification Message Templates. + /// List properties and relationships of the notificationMessageTemplate objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to notificationMessageTemplates for deviceManagement + /// Create a new notificationMessageTemplate object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(NotificationMessageTemplate b return requestInfo; } /// - /// The Notification Message Templates. + /// List properties and relationships of the notificationMessageTemplate objects. /// public class NotificationMessageTemplatesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/ExportJobsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/ExportJobsRequestBuilder.cs index c02a755780d..eefd2ba6f21 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/ExportJobsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/ExportJobsRequestBuilder.cs @@ -40,7 +40,8 @@ public ExportJobsRequestBuilder(Dictionary pathParameters, IRequ public ExportJobsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/exportJobs{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Entity representing a job to export a report + /// List properties and relationships of the deviceManagementExportJob objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, DeviceManagementExportJobCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to exportJobs for deviceManagement + /// Create a new deviceManagementExportJob object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceManagementExportJob return await RequestAdapter.SendAsync(requestInfo, DeviceManagementExportJob.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Entity representing a job to export a report + /// List properties and relationships of the deviceManagementExportJob objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to exportJobs for deviceManagement + /// Create a new deviceManagementExportJob object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceManagementExportJob bod return requestInfo; } /// - /// Entity representing a job to export a report + /// List properties and relationships of the deviceManagementExportJob objects. /// public class ExportJobsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/Item/DeviceManagementExportJobItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/Item/DeviceManagementExportJobItemRequestBuilder.cs index ead322a7ffa..95296ff35ff 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/Item/DeviceManagementExportJobItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ExportJobs/Item/DeviceManagementExportJobItemRequestBuilder.cs @@ -28,7 +28,8 @@ public DeviceManagementExportJobItemRequestBuilder(Dictionary pa public DeviceManagementExportJobItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/exportJobs/{deviceManagementExportJob%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property exportJobs for deviceManagement + /// Deletes a deviceManagementExportJob. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Entity representing a job to export a report + /// Read properties and relationships of the deviceManagementExportJob object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, DeviceManagementExportJob.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property exportJobs in deviceManagement + /// Update the properties of a deviceManagementExportJob object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(DeviceManagementExportJo return await RequestAdapter.SendAsync(requestInfo, DeviceManagementExportJob.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property exportJobs for deviceManagement + /// Deletes a deviceManagementExportJob. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Entity representing a job to export a report + /// Read properties and relationships of the deviceManagementExportJob object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property exportJobs in deviceManagement + /// Update the properties of a deviceManagementExportJob object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public DeviceManagementExportJobItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Entity representing a job to export a report + /// Read properties and relationships of the deviceManagementExportJob object. /// public class DeviceManagementExportJobItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCachedReport/GetCachedReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCachedReport/GetCachedReportRequestBuilder.cs index 7f25b68f771..c15d7500267 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCachedReport/GetCachedReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCachedReport/GetCachedReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetCachedReportRequestBuilder(Dictionary pathParameters, public GetCachedReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getCachedReport", rawUrl) { } /// - /// Invoke action getCachedReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetCachedReportPostRequestBody body, Action< return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getCachedReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceReport/GetCompliancePolicyNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceReport/GetCompliancePolicyNonComplianceReportRequestBuilder.cs index cb92d18d3f7..f6a9c5c70ea 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceReport/GetCompliancePolicyNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceReport/GetCompliancePolicyNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetCompliancePolicyNonComplianceReportRequestBuilder(Dictionary - /// Invoke action getCompliancePolicyNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetCompliancePolicyNonComplianceReportPostRe return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getCompliancePolicyNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceSummaryReport/GetCompliancePolicyNonComplianceSummaryReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceSummaryReport/GetCompliancePolicyNonComplianceSummaryReportRequestBuilder.cs index 7241e916236..217daf1af81 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceSummaryReport/GetCompliancePolicyNonComplianceSummaryReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetCompliancePolicyNonComplianceSummaryReport/GetCompliancePolicyNonComplianceSummaryReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetCompliancePolicyNonComplianceSummaryReportRequestBuilder(Dictionary - /// Invoke action getCompliancePolicyNonComplianceSummaryReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetCompliancePolicyNonComplianceSummaryRepor return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getCompliancePolicyNonComplianceSummaryReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetComplianceSettingNonComplianceReport/GetComplianceSettingNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetComplianceSettingNonComplianceReport/GetComplianceSettingNonComplianceReportRequestBuilder.cs index 965aa6d27d3..a535a3e9d25 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetComplianceSettingNonComplianceReport/GetComplianceSettingNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetComplianceSettingNonComplianceReport/GetComplianceSettingNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetComplianceSettingNonComplianceReportRequestBuilder(Dictionary - /// Invoke action getComplianceSettingNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetComplianceSettingNonComplianceReportPostR return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getComplianceSettingNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceReport/GetConfigurationPolicyNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceReport/GetConfigurationPolicyNonComplianceReportRequestBuilder.cs index 4f8e5358d38..7a5cb7a13a0 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceReport/GetConfigurationPolicyNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceReport/GetConfigurationPolicyNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetConfigurationPolicyNonComplianceReportRequestBuilder(Dictionary - /// Invoke action getConfigurationPolicyNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetConfigurationPolicyNonComplianceReportPos return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getConfigurationPolicyNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceSummaryReport/GetConfigurationPolicyNonComplianceSummaryReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceSummaryReport/GetConfigurationPolicyNonComplianceSummaryReportRequestBuilder.cs index a662a2320b8..8bdad860b40 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceSummaryReport/GetConfigurationPolicyNonComplianceSummaryReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationPolicyNonComplianceSummaryReport/GetConfigurationPolicyNonComplianceSummaryReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetConfigurationPolicyNonComplianceSummaryReportRequestBuilder(Dictionary public GetConfigurationPolicyNonComplianceSummaryReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", rawUrl) { } /// - /// Invoke action getConfigurationPolicyNonComplianceSummaryReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetConfigurationPolicyNonComplianceSummaryRe return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getConfigurationPolicyNonComplianceSummaryReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationSettingNonComplianceReport/GetConfigurationSettingNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationSettingNonComplianceReport/GetConfigurationSettingNonComplianceReportRequestBuilder.cs index 2ae43985872..081b5596d7d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationSettingNonComplianceReport/GetConfigurationSettingNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetConfigurationSettingNonComplianceReport/GetConfigurationSettingNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetConfigurationSettingNonComplianceReportRequestBuilder(Dictionary - /// Invoke action getConfigurationSettingNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetConfigurationSettingNonComplianceReportPo return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getConfigurationSettingNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentPerSettingContributingProfiles/GetDeviceManagementIntentPerSettingContributingProfilesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentPerSettingContributingProfiles/GetDeviceManagementIntentPerSettingContributingProfilesRequestBuilder.cs index 2a773fe6d53..c21dd7ad853 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentPerSettingContributingProfiles/GetDeviceManagementIntentPerSettingContributingProfilesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentPerSettingContributingProfiles/GetDeviceManagementIntentPerSettingContributingProfilesRequestBuilder.cs @@ -27,7 +27,8 @@ public GetDeviceManagementIntentPerSettingContributingProfilesRequestBuilder(Dic public GetDeviceManagementIntentPerSettingContributingProfilesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles", rawUrl) { } /// - /// Invoke action getDeviceManagementIntentPerSettingContributingProfiles + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetDeviceManagementIntentPerSettingContribut return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getDeviceManagementIntentPerSettingContributingProfiles + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentSettingsReport/GetDeviceManagementIntentSettingsReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentSettingsReport/GetDeviceManagementIntentSettingsReportRequestBuilder.cs index 80ee85ff061..b1a53dd6ce4 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentSettingsReport/GetDeviceManagementIntentSettingsReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceManagementIntentSettingsReport/GetDeviceManagementIntentSettingsReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetDeviceManagementIntentSettingsReportRequestBuilder(Dictionary - /// Invoke action getDeviceManagementIntentSettingsReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetDeviceManagementIntentSettingsReportPostR return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getDeviceManagementIntentSettingsReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceNonComplianceReport/GetDeviceNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceNonComplianceReport/GetDeviceNonComplianceReportRequestBuilder.cs index 586bf04b12f..fb5d34d1c63 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceNonComplianceReport/GetDeviceNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDeviceNonComplianceReport/GetDeviceNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetDeviceNonComplianceReportRequestBuilder(Dictionary pat public GetDeviceNonComplianceReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getDeviceNonComplianceReport", rawUrl) { } /// - /// Invoke action getDeviceNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetDeviceNonComplianceReportPostRequestBody return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getDeviceNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDevicesWithoutCompliancePolicyReport/GetDevicesWithoutCompliancePolicyReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDevicesWithoutCompliancePolicyReport/GetDevicesWithoutCompliancePolicyReportRequestBuilder.cs index 4fadc826fad..f047a83554d 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDevicesWithoutCompliancePolicyReport/GetDevicesWithoutCompliancePolicyReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetDevicesWithoutCompliancePolicyReport/GetDevicesWithoutCompliancePolicyReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetDevicesWithoutCompliancePolicyReportRequestBuilder(Dictionary - /// Invoke action getDevicesWithoutCompliancePolicyReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetDevicesWithoutCompliancePolicyReportPostR return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getDevicesWithoutCompliancePolicyReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetHistoricalReport/GetHistoricalReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetHistoricalReport/GetHistoricalReportRequestBuilder.cs index 8409859db11..5e2a155a546 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetHistoricalReport/GetHistoricalReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetHistoricalReport/GetHistoricalReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetHistoricalReportRequestBuilder(Dictionary pathParamete public GetHistoricalReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getHistoricalReport", rawUrl) { } /// - /// Invoke action getHistoricalReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetHistoricalReportPostRequestBody body, Act return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getHistoricalReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetNoncompliantDevicesAndSettingsReport/GetNoncompliantDevicesAndSettingsReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetNoncompliantDevicesAndSettingsReport/GetNoncompliantDevicesAndSettingsReportRequestBuilder.cs index c26f7305cf5..05517f8678b 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetNoncompliantDevicesAndSettingsReport/GetNoncompliantDevicesAndSettingsReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetNoncompliantDevicesAndSettingsReport/GetNoncompliantDevicesAndSettingsReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetNoncompliantDevicesAndSettingsReportRequestBuilder(Dictionary - /// Invoke action getNoncompliantDevicesAndSettingsReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetNoncompliantDevicesAndSettingsReportPostR return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getNoncompliantDevicesAndSettingsReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceMetadata/GetPolicyNonComplianceMetadataRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceMetadata/GetPolicyNonComplianceMetadataRequestBuilder.cs index 84f00df7654..1cb53192b1a 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceMetadata/GetPolicyNonComplianceMetadataRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceMetadata/GetPolicyNonComplianceMetadataRequestBuilder.cs @@ -27,7 +27,8 @@ public GetPolicyNonComplianceMetadataRequestBuilder(Dictionary p public GetPolicyNonComplianceMetadataRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getPolicyNonComplianceMetadata", rawUrl) { } /// - /// Invoke action getPolicyNonComplianceMetadata + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetPolicyNonComplianceMetadataPostRequestBod return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getPolicyNonComplianceMetadata + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceReport/GetPolicyNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceReport/GetPolicyNonComplianceReportRequestBuilder.cs index 4d90e0d0999..612873580dd 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceReport/GetPolicyNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceReport/GetPolicyNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetPolicyNonComplianceReportRequestBuilder(Dictionary pat public GetPolicyNonComplianceReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getPolicyNonComplianceReport", rawUrl) { } /// - /// Invoke action getPolicyNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetPolicyNonComplianceReportPostRequestBody return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getPolicyNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceSummaryReport/GetPolicyNonComplianceSummaryReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceSummaryReport/GetPolicyNonComplianceSummaryReportRequestBuilder.cs index b26827ebd06..bfcd46596db 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceSummaryReport/GetPolicyNonComplianceSummaryReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetPolicyNonComplianceSummaryReport/GetPolicyNonComplianceSummaryReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetPolicyNonComplianceSummaryReportRequestBuilder(Dictionary - /// Invoke action getPolicyNonComplianceSummaryReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetPolicyNonComplianceSummaryReportPostReque return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getPolicyNonComplianceSummaryReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetReportFilters/GetReportFiltersRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetReportFilters/GetReportFiltersRequestBuilder.cs index 0cd08a69abf..f8f947e788c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetReportFilters/GetReportFiltersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetReportFilters/GetReportFiltersRequestBuilder.cs @@ -27,7 +27,8 @@ public GetReportFiltersRequestBuilder(Dictionary pathParameters, public GetReportFiltersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getReportFilters", rawUrl) { } /// - /// Invoke action getReportFilters + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetReportFiltersPostRequestBody body, Action return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getReportFilters + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetSettingNonComplianceReport/GetSettingNonComplianceReportRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetSettingNonComplianceReport/GetSettingNonComplianceReportRequestBuilder.cs index 1e90ae4da0e..5df41b30b0b 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetSettingNonComplianceReport/GetSettingNonComplianceReportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/GetSettingNonComplianceReport/GetSettingNonComplianceReportRequestBuilder.cs @@ -27,7 +27,8 @@ public GetSettingNonComplianceReportRequestBuilder(Dictionary pa public GetSettingNonComplianceReportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/reports/getSettingNonComplianceReport", rawUrl) { } /// - /// Invoke action getSettingNonComplianceReport + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(GetSettingNonComplianceReportPostRequestBody return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action getSettingNonComplianceReport + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ReportsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ReportsRequestBuilder.cs index a138d24886e..a2303185c6f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ReportsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/Reports/ReportsRequestBuilder.cs @@ -142,7 +142,8 @@ public async Task DeleteAsync(Action - /// Reports singleton + /// Read properties and relationships of the deviceManagementReports object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -161,7 +162,8 @@ public async Task GetAsync(Action(requestInfo, DeviceManagementReports.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property reports in deviceManagement + /// Update the properties of a deviceManagementReports object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -206,7 +208,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Reports singleton + /// Read properties and relationships of the deviceManagementReports object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -232,7 +234,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property reports in deviceManagement + /// Update the properties of a deviceManagementReports object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -276,7 +278,7 @@ public ReportsRequestBuilderDeleteRequestConfiguration() { } } /// - /// Reports singleton + /// Read properties and relationships of the deviceManagementReports object. /// public class ReportsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/Item/ResourceOperationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/Item/ResourceOperationItemRequestBuilder.cs index 974907a600b..2e34fc8259f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/Item/ResourceOperationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/Item/ResourceOperationItemRequestBuilder.cs @@ -28,7 +28,8 @@ public ResourceOperationItemRequestBuilder(Dictionary pathParame public ResourceOperationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/resourceOperations/{resourceOperation%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property resourceOperations for deviceManagement + /// Deletes a resourceOperation. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The Resource Operations. + /// Read properties and relationships of the resourceOperation object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, ResourceOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property resourceOperations in deviceManagement + /// Update the properties of a resourceOperation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(ResourceOperation body, Action(requestInfo, ResourceOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property resourceOperations for deviceManagement + /// Deletes a resourceOperation. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Resource Operations. + /// Read properties and relationships of the resourceOperation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property resourceOperations in deviceManagement + /// Update the properties of a resourceOperation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public ResourceOperationItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The Resource Operations. + /// Read properties and relationships of the resourceOperation object. /// public class ResourceOperationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/ResourceOperationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/ResourceOperationsRequestBuilder.cs index 0f1b5666c74..e8fc1663072 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/ResourceOperationsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/ResourceOperations/ResourceOperationsRequestBuilder.cs @@ -40,7 +40,8 @@ public ResourceOperationsRequestBuilder(Dictionary pathParameter public ResourceOperationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/resourceOperations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Resource Operations. + /// List properties and relationships of the resourceOperation objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, ResourceOperationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to resourceOperations for deviceManagement + /// Create a new resourceOperation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(ResourceOperation body, Action(requestInfo, ResourceOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Resource Operations. + /// List properties and relationships of the resourceOperation objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to resourceOperations for deviceManagement + /// Create a new resourceOperation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(ResourceOperation body, Actio return requestInfo; } /// - /// The Resource Operations. + /// List properties and relationships of the resourceOperation objects. /// public class ResourceOperationsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/Item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/Item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.cs index 2fb61dc5f0d..b8434612b01 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/Item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/Item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.cs @@ -33,7 +33,8 @@ public DeviceAndAppManagementRoleAssignmentItemRequestBuilder(Dictionary - /// Delete navigation property roleAssignments for deviceManagement + /// Deletes a deviceAndAppManagementRoleAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The Role Assignments. + /// Read properties and relationships of the deviceAndAppManagementRoleAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, DeviceAndAppManagementRoleAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property roleAssignments in deviceManagement + /// Update the properties of a deviceAndAppManagementRoleAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(DeviceAndAppM return await RequestAdapter.SendAsync(requestInfo, DeviceAndAppManagementRoleAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property roleAssignments for deviceManagement + /// Deletes a deviceAndAppManagementRoleAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Role Assignments. + /// Read properties and relationships of the deviceAndAppManagementRoleAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property roleAssignments in deviceManagement + /// Update the properties of a deviceAndAppManagementRoleAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public DeviceAndAppManagementRoleAssignmentItemRequestBuilderDeleteRequestConfig } } /// - /// The Role Assignments. + /// Read properties and relationships of the deviceAndAppManagementRoleAssignment object. /// public class DeviceAndAppManagementRoleAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/RoleAssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/RoleAssignmentsRequestBuilder.cs index e97dc5d0ff4..e25daad9e27 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/RoleAssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleAssignments/RoleAssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public RoleAssignmentsRequestBuilder(Dictionary pathParameters, public RoleAssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleAssignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Role Assignments. + /// List properties and relationships of the deviceAndAppManagementRoleAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsy return await RequestAdapter.SendAsync(requestInfo, DeviceAndAppManagementRoleAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to roleAssignments for deviceManagement + /// Create a new deviceAndAppManagementRoleAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(DeviceAndAppMa return await RequestAdapter.SendAsync(requestInfo, DeviceAndAppManagementRoleAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Role Assignments. + /// List properties and relationships of the deviceAndAppManagementRoleAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to roleAssignments for deviceManagement + /// Create a new deviceAndAppManagementRoleAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(DeviceAndAppManagementRoleAss return requestInfo; } /// - /// The Role Assignments. + /// List properties and relationships of the deviceAndAppManagementRoleAssignment objects. /// public class RoleAssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/Item/RoleAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/Item/RoleAssignmentItemRequestBuilder.cs index 162d6d66311..76bd5fb1d30 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/Item/RoleAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/Item/RoleAssignmentItemRequestBuilder.cs @@ -33,7 +33,8 @@ public RoleAssignmentItemRequestBuilder(Dictionary pathParameter public RoleAssignmentItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}/roleAssignments/{roleAssignment%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property roleAssignments for deviceManagement + /// Deletes a roleAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// List of Role assignments for this role definition. + /// Read properties and relationships of the roleAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, RoleAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property roleAssignments in deviceManagement + /// Update the properties of a roleAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(RoleAssignment body, Action(requestInfo, RoleAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property roleAssignments for deviceManagement + /// Deletes a roleAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of Role assignments for this role definition. + /// Read properties and relationships of the roleAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property roleAssignments in deviceManagement + /// Update the properties of a roleAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public RoleAssignmentItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// List of Role assignments for this role definition. + /// Read properties and relationships of the roleAssignment object. /// public class RoleAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/RoleAssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/RoleAssignmentsRequestBuilder.cs index ec86812bda5..1abca952901 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/RoleAssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleAssignments/RoleAssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public RoleAssignmentsRequestBuilder(Dictionary pathParameters, public RoleAssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}/roleAssignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of Role assignments for this role definition. + /// List properties and relationships of the roleAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, RoleAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to roleAssignments for deviceManagement + /// Create a new roleAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(RoleAssignment body, Action(requestInfo, RoleAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of Role assignments for this role definition. + /// List properties and relationships of the roleAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to roleAssignments for deviceManagement + /// Create a new roleAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(RoleAssignment body, Action - /// List of Role assignments for this role definition. + /// List properties and relationships of the roleAssignment objects. /// public class RoleAssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs index 1fd06e15552..10f4def687c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/Item/RoleDefinitionItemRequestBuilder.cs @@ -33,7 +33,8 @@ public RoleDefinitionItemRequestBuilder(Dictionary pathParameter public RoleDefinitionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property roleDefinitions for deviceManagement + /// 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. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The Role Definitions. + /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property roleDefinitions in deviceManagement + /// Update the properties of a deviceAndAppManagementRoleDefinition object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property roleDefinitions for deviceManagement + /// Deletes a roleDefinition. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Role Definitions. + /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property roleDefinitions in deviceManagement + /// Update the properties of a deviceAndAppManagementRoleDefinition object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public RoleDefinitionItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The Role Definitions. + /// Read properties and relationships of the deviceAndAppManagementRoleDefinition object. /// public class RoleDefinitionItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs index 21509eeea95..e93750f5ba4 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/RoleDefinitions/RoleDefinitionsRequestBuilder.cs @@ -40,7 +40,8 @@ public RoleDefinitionsRequestBuilder(Dictionary pathParameters, public RoleDefinitionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Role Definitions. + /// List properties and relationships of the roleDefinition objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, RoleDefinitionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to roleDefinitions for deviceManagement + /// Create a new deviceAndAppManagementRoleDefinition object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.RoleDefinition.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Role Definitions. + /// List properties and relationships of the roleDefinition objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to roleDefinitions for deviceManagement + /// Create a new deviceAndAppManagementRoleDefinition object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.RoleDe return requestInfo; } /// - /// The Role Definitions. + /// List properties and relationships of the roleDefinition objects. /// public class RoleDefinitionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/SoftwareUpdateStatusSummary/SoftwareUpdateStatusSummaryRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/SoftwareUpdateStatusSummary/SoftwareUpdateStatusSummaryRequestBuilder.cs index dfa30f2b0f5..6344d19a3af 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/SoftwareUpdateStatusSummary/SoftwareUpdateStatusSummaryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/SoftwareUpdateStatusSummary/SoftwareUpdateStatusSummaryRequestBuilder.cs @@ -28,7 +28,8 @@ public SoftwareUpdateStatusSummaryRequestBuilder(Dictionary path public SoftwareUpdateStatusSummaryRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/softwareUpdateStatusSummary{?%24select,%24expand}", rawUrl) { } /// - /// The software update status summary. + /// Read properties and relationships of the softwareUpdateStatusSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,7 @@ public SoftwareUpdateStatusSummaryRequestBuilder(string rawUrl, IRequestAdapter return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.SoftwareUpdateStatusSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The software update status summary. + /// Read properties and relationships of the softwareUpdateStatusSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -73,7 +74,7 @@ public RequestInformation ToGetRequestInformation(Action - /// The software update status summary. + /// Read properties and relationships of the softwareUpdateStatusSummary object. /// public class SoftwareUpdateStatusSummaryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/AcceptanceStatusesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/AcceptanceStatusesRequestBuilder.cs index 476ab14adb5..06c92bb14bb 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/AcceptanceStatusesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/AcceptanceStatusesRequestBuilder.cs @@ -40,7 +40,8 @@ public AcceptanceStatusesRequestBuilder(Dictionary pathParameter public AcceptanceStatusesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/acceptanceStatuses{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of acceptance statuses for this T&C policy. + /// List properties and relationships of the termsAndConditionsAcceptanceStatus objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync return await RequestAdapter.SendAsync(requestInfo, TermsAndConditionsAcceptanceStatusCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to acceptanceStatuses for deviceManagement + /// Create a new termsAndConditionsAcceptanceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(TermsAndConditio return await RequestAdapter.SendAsync(requestInfo, TermsAndConditionsAcceptanceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of acceptance statuses for this T&C policy. + /// List properties and relationships of the termsAndConditionsAcceptanceStatus objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to acceptanceStatuses for deviceManagement + /// Create a new termsAndConditionsAcceptanceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(TermsAndConditionsAcceptanceS return requestInfo; } /// - /// The list of acceptance statuses for this T&C policy. + /// List properties and relationships of the termsAndConditionsAcceptanceStatus objects. /// public class AcceptanceStatusesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/Item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/Item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.cs index 8c2d6a5fc3d..0c2ba2ba3ed 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/Item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/AcceptanceStatuses/Item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.cs @@ -33,7 +33,8 @@ public TermsAndConditionsAcceptanceStatusItemRequestBuilder(Dictionary - /// Delete navigation property acceptanceStatuses for deviceManagement + /// Deletes a termsAndConditionsAcceptanceStatus. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of acceptance statuses for this T&C policy. + /// Read properties and relationships of the termsAndConditionsAcceptanceStatus object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task GetAsync(Action(requestInfo, TermsAndConditionsAcceptanceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property acceptanceStatuses in deviceManagement + /// Update the properties of a termsAndConditionsAcceptanceStatus object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task PatchAsync(TermsAndConditi return await RequestAdapter.SendAsync(requestInfo, TermsAndConditionsAcceptanceStatus.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property acceptanceStatuses for deviceManagement + /// Deletes a termsAndConditionsAcceptanceStatus. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of acceptance statuses for this T&C policy. + /// Read properties and relationships of the termsAndConditionsAcceptanceStatus object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property acceptanceStatuses in deviceManagement + /// Update the properties of a termsAndConditionsAcceptanceStatus object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public TermsAndConditionsAcceptanceStatusItemRequestBuilderDeleteRequestConfigur } } /// - /// The list of acceptance statuses for this T&C policy. + /// Read properties and relationships of the termsAndConditionsAcceptanceStatus object. /// public class TermsAndConditionsAcceptanceStatusItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/AssignmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/AssignmentsRequestBuilder.cs index 57f224b13bd..06f190bb080 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/AssignmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/AssignmentsRequestBuilder.cs @@ -40,7 +40,8 @@ public AssignmentsRequestBuilder(Dictionary pathParameters, IReq public AssignmentsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/assignments{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of assignments for this T&C policy. + /// List properties and relationships of the termsAndConditionsAssignment objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, TermsAndConditionsAssignmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to assignments for deviceManagement + /// Create a new termsAndConditionsAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(TermsAndConditionsAssi return await RequestAdapter.SendAsync(requestInfo, TermsAndConditionsAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of assignments for this T&C policy. + /// List properties and relationships of the termsAndConditionsAssignment objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to assignments for deviceManagement + /// Create a new termsAndConditionsAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(TermsAndConditionsAssignment return requestInfo; } /// - /// The list of assignments for this T&C policy. + /// List properties and relationships of the termsAndConditionsAssignment objects. /// public class AssignmentsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/Item/TermsAndConditionsAssignmentItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/Item/TermsAndConditionsAssignmentItemRequestBuilder.cs index 1461dfbc6e3..80728f6ad9c 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/Item/TermsAndConditionsAssignmentItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/Assignments/Item/TermsAndConditionsAssignmentItemRequestBuilder.cs @@ -28,7 +28,8 @@ public TermsAndConditionsAssignmentItemRequestBuilder(Dictionary public TermsAndConditionsAssignmentItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/assignments/{termsAndConditionsAssignment%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property assignments for deviceManagement + /// Deletes a termsAndConditionsAssignment. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The list of assignments for this T&C policy. + /// Read properties and relationships of the termsAndConditionsAssignment object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, TermsAndConditionsAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a termsAndConditionsAssignment object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(TermsAndConditionsAss return await RequestAdapter.SendAsync(requestInfo, TermsAndConditionsAssignment.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property assignments for deviceManagement + /// Deletes a termsAndConditionsAssignment. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of assignments for this T&C policy. + /// Read properties and relationships of the termsAndConditionsAssignment object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property assignments in deviceManagement + /// Update the properties of a termsAndConditionsAssignment object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public TermsAndConditionsAssignmentItemRequestBuilderDeleteRequestConfiguration( } } /// - /// The list of assignments for this T&C policy. + /// Read properties and relationships of the termsAndConditionsAssignment object. /// public class TermsAndConditionsAssignmentItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/TermsAndConditionsItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/TermsAndConditionsItemRequestBuilder.cs index 27940b6e572..8db640fe963 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/TermsAndConditionsItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/Item/TermsAndConditionsItemRequestBuilder.cs @@ -38,7 +38,8 @@ public TermsAndConditionsItemRequestBuilder(Dictionary pathParam public TermsAndConditionsItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property termsAndConditions for deviceManagement + /// Deletes a termsAndConditions. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -57,7 +58,8 @@ public async Task DeleteAsync(Action - /// The terms and conditions associated with device management of the company. + /// Read properties and relationships of the termsAndConditions object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -76,7 +78,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.TermsAndConditions.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property termsAndConditions in deviceManagement + /// Update the properties of a termsAndConditions object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -97,7 +100,7 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.TermsAndConditions.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property termsAndConditions for deviceManagement + /// Deletes a termsAndConditions. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -121,7 +124,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The terms and conditions associated with device management of the company. + /// Read properties and relationships of the termsAndConditions object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -147,7 +150,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property termsAndConditions in deviceManagement + /// Update the properties of a termsAndConditions object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -191,7 +194,7 @@ public TermsAndConditionsItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The terms and conditions associated with device management of the company. + /// Read properties and relationships of the termsAndConditions object. /// public class TermsAndConditionsItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/TermsAndConditionsRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/TermsAndConditionsRequestBuilder.cs index 6ee2590820f..c31e55c5e64 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/TermsAndConditionsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/TermsAndConditions/TermsAndConditionsRequestBuilder.cs @@ -40,7 +40,8 @@ public TermsAndConditionsRequestBuilder(Dictionary pathParameter public TermsAndConditionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The terms and conditions associated with device management of the company. + /// List properties and relationships of the termsAndConditions objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, TermsAndConditionsCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to termsAndConditions for deviceManagement + /// Create a new termsAndConditions object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.TermsAndConditions.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The terms and conditions associated with device management of the company. + /// List properties and relationships of the termsAndConditions objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to termsAndConditions for deviceManagement + /// Create a new termsAndConditions object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.TermsA return requestInfo; } /// - /// The terms and conditions associated with device management of the company. + /// List properties and relationships of the termsAndConditions objects. /// public class TermsAndConditionsRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/AssignUserToDevice/AssignUserToDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/AssignUserToDevice/AssignUserToDeviceRequestBuilder.cs index f8af14997d6..e5f9847c65f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/AssignUserToDevice/AssignUserToDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/AssignUserToDevice/AssignUserToDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public AssignUserToDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAd } /// /// Assigns user to Autopilot devices. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UnassignUserFromDevice/UnassignUserFromDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UnassignUserFromDevice/UnassignUserFromDeviceRequestBuilder.cs index a24938a863b..db10988a440 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UnassignUserFromDevice/UnassignUserFromDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UnassignUserFromDevice/UnassignUserFromDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public UnassignUserFromDeviceRequestBuilder(string rawUrl, IRequestAdapter reque } /// /// Unassigns the user from an Autopilot device. + /// 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/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UpdateDeviceProperties/UpdateDevicePropertiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UpdateDeviceProperties/UpdateDevicePropertiesRequestBuilder.cs index 388ce141260..10936285e55 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UpdateDeviceProperties/UpdateDevicePropertiesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/UpdateDeviceProperties/UpdateDevicePropertiesRequestBuilder.cs @@ -28,6 +28,7 @@ public UpdateDevicePropertiesRequestBuilder(string rawUrl, IRequestAdapter reque } /// /// Updates properties on Autopilot devices. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/WindowsAutopilotDeviceIdentityItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/WindowsAutopilotDeviceIdentityItemRequestBuilder.cs index baf6d32936f..5c02c36cb10 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/WindowsAutopilotDeviceIdentityItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/Item/WindowsAutopilotDeviceIdentityItemRequestBuilder.cs @@ -43,7 +43,8 @@ public WindowsAutopilotDeviceIdentityItemRequestBuilder(Dictionary - /// Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement + /// Deletes a windowsAutopilotDeviceIdentity. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -62,7 +63,8 @@ public async Task DeleteAsync(Action - /// The Windows autopilot device identities contained collection. + /// Read properties and relationships of the windowsAutopilotDeviceIdentity object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -102,7 +104,7 @@ public async Task PatchAsync(WindowsAutopilotDev return await RequestAdapter.SendAsync(requestInfo, WindowsAutopilotDeviceIdentity.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement + /// Deletes a windowsAutopilotDeviceIdentity. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -126,7 +128,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The Windows autopilot device identities contained collection. + /// Read properties and relationships of the windowsAutopilotDeviceIdentity object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -196,7 +198,7 @@ public WindowsAutopilotDeviceIdentityItemRequestBuilderDeleteRequestConfiguratio } } /// - /// The Windows autopilot device identities contained collection. + /// Read properties and relationships of the windowsAutopilotDeviceIdentity object. /// public class WindowsAutopilotDeviceIdentityItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.cs index fbe5f3efaf0..23fb6c2cbf8 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsAutopilotDeviceIdentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.cs @@ -40,7 +40,8 @@ public WindowsAutopilotDeviceIdentitiesRequestBuilder(Dictionary public WindowsAutopilotDeviceIdentitiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsAutopilotDeviceIdentities{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The Windows autopilot device identities contained collection. + /// List properties and relationships of the windowsAutopilotDeviceIdentity objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Act return await RequestAdapter.SendAsync(requestInfo, WindowsAutopilotDeviceIdentityCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement + /// Create a new windowsAutopilotDeviceIdentity object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(WindowsAutopilotDevi return await RequestAdapter.SendAsync(requestInfo, WindowsAutopilotDeviceIdentity.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The Windows autopilot device identities contained collection. + /// List properties and relationships of the windowsAutopilotDeviceIdentity objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement + /// Create a new windowsAutopilotDeviceIdentity object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsAutopilotDeviceIdentit return requestInfo; } /// - /// The Windows autopilot device identities contained collection. + /// List properties and relationships of the windowsAutopilotDeviceIdentity objects. /// public class WindowsAutopilotDeviceIdentitiesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/Item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/Item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.cs index c41b29d5905..5712ded7793 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/Item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/Item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.cs @@ -28,7 +28,8 @@ public WindowsInformationProtectionAppLearningSummaryItemRequestBuilder(Dictiona public WindowsInformationProtectionAppLearningSummaryItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement + /// Deletes a windowsInformationProtectionAppLearningSummary. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The windows information protection app learning summaries. + /// Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionAppLearningSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement + /// Update the properties of a windowsInformationProtectionAppLearningSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(Win return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionAppLearningSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement + /// Deletes a windowsInformationProtectionAppLearningSummary. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The windows information protection app learning summaries. + /// Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement + /// Update the properties of a windowsInformationProtectionAppLearningSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public WindowsInformationProtectionAppLearningSummaryItemRequestBuilderDeleteReq } } /// - /// The windows information protection app learning summaries. + /// Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. /// public class WindowsInformationProtectionAppLearningSummaryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.cs index c020353c534..0b8f180668f 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionAppLearningSummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.cs @@ -40,7 +40,8 @@ public WindowsInformationProtectionAppLearningSummariesRequestBuilder(Dictionary public WindowsInformationProtectionAppLearningSummariesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionAppLearningSummaries{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The windows information protection app learning summaries. + /// List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task(requestInfo, WindowsInformationProtectionAppLearningSummaryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement + /// Create a new windowsInformationProtectionAppLearningSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(Wind return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionAppLearningSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The windows information protection app learning summaries. + /// List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement + /// Create a new windowsInformationProtectionAppLearningSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsInformationProtectionA return requestInfo; } /// - /// The windows information protection app learning summaries. + /// List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. /// public class WindowsInformationProtectionAppLearningSummariesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/Item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/Item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.cs index ff633e59868..b1da9ed3009 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/Item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/Item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.cs @@ -28,7 +28,8 @@ public WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder(Dict public WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement + /// Deletes a windowsInformationProtectionNetworkLearningSummary. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// The windows information protection network learning summaries. + /// Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(A return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionNetworkLearningSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement + /// Update the properties of a windowsInformationProtectionNetworkLearningSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionNetworkLearningSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement + /// Deletes a windowsInformationProtectionNetworkLearningSummary. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The windows information protection network learning summaries. + /// Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement + /// Update the properties of a windowsInformationProtectionNetworkLearningSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilderDelet } } /// - /// The windows information protection network learning summaries. + /// Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. /// public class WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.cs index 59056824505..8f01711badb 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsInformationProtectionNetworkLearningSummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.cs @@ -40,7 +40,8 @@ public WindowsInformationProtectionNetworkLearningSummariesRequestBuilder(Dictio public WindowsInformationProtectionNetworkLearningSummariesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionNetworkLearningSummaries{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The windows information protection network learning summaries. + /// List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task(requestInfo, WindowsInformationProtectionNetworkLearningSummaryCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement + /// Create a new windowsInformationProtectionNetworkLearningSummary object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync( return await RequestAdapter.SendAsync(requestInfo, WindowsInformationProtectionNetworkLearningSummary.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The windows information protection network learning summaries. + /// List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement + /// Create a new windowsInformationProtectionNetworkLearningSummary object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsInformationProtectionN return requestInfo; } /// - /// The windows information protection network learning summaries. + /// List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. /// public class WindowsInformationProtectionNetworkLearningSummariesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/DeviceMalwareStatesRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/DeviceMalwareStatesRequestBuilder.cs index 0b22dbeb3bd..c9b7f31c636 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/DeviceMalwareStatesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/DeviceMalwareStatesRequestBuilder.cs @@ -40,7 +40,8 @@ public DeviceMalwareStatesRequestBuilder(Dictionary pathParamete public DeviceMalwareStatesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation%2Did}/deviceMalwareStates{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// List of devices affected by current malware with the malware state on each device + /// List properties and relationships of the malwareStateForWindowsDevice objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Actio return await RequestAdapter.SendAsync(requestInfo, MalwareStateForWindowsDeviceCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to deviceMalwareStates for deviceManagement + /// Create a new malwareStateForWindowsDevice object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(MalwareStateForWindows return await RequestAdapter.SendAsync(requestInfo, MalwareStateForWindowsDevice.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// List of devices affected by current malware with the malware state on each device + /// List properties and relationships of the malwareStateForWindowsDevice objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to deviceMalwareStates for deviceManagement + /// Create a new malwareStateForWindowsDevice object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(MalwareStateForWindowsDevice return requestInfo; } /// - /// List of devices affected by current malware with the malware state on each device + /// List properties and relationships of the malwareStateForWindowsDevice objects. /// public class DeviceMalwareStatesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/Item/MalwareStateForWindowsDeviceItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/Item/MalwareStateForWindowsDeviceItemRequestBuilder.cs index 4b95c5456ac..22c7ea0487e 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/Item/MalwareStateForWindowsDeviceItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/DeviceMalwareStates/Item/MalwareStateForWindowsDeviceItemRequestBuilder.cs @@ -28,7 +28,8 @@ public MalwareStateForWindowsDeviceItemRequestBuilder(Dictionary public MalwareStateForWindowsDeviceItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation%2Did}/deviceMalwareStates/{malwareStateForWindowsDevice%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property deviceMalwareStates for deviceManagement + /// Deletes a malwareStateForWindowsDevice. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// List of devices affected by current malware with the malware state on each device + /// Read properties and relationships of the malwareStateForWindowsDevice object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, MalwareStateForWindowsDevice.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceMalwareStates in deviceManagement + /// Update the properties of a malwareStateForWindowsDevice object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(MalwareStateForWindow return await RequestAdapter.SendAsync(requestInfo, MalwareStateForWindowsDevice.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property deviceMalwareStates for deviceManagement + /// Deletes a malwareStateForWindowsDevice. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// List of devices affected by current malware with the malware state on each device + /// Read properties and relationships of the malwareStateForWindowsDevice object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceMalwareStates in deviceManagement + /// Update the properties of a malwareStateForWindowsDevice object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public MalwareStateForWindowsDeviceItemRequestBuilderDeleteRequestConfiguration( } } /// - /// List of devices affected by current malware with the malware state on each device + /// Read properties and relationships of the malwareStateForWindowsDevice object. /// public class MalwareStateForWindowsDeviceItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/WindowsMalwareInformationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/WindowsMalwareInformationItemRequestBuilder.cs index 540ee3b3127..e447038b5ac 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/WindowsMalwareInformationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/Item/WindowsMalwareInformationItemRequestBuilder.cs @@ -33,7 +33,8 @@ public WindowsMalwareInformationItemRequestBuilder(Dictionary pa public WindowsMalwareInformationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property windowsMalwareInformation for deviceManagement + /// Deletes a windowsMalwareInformation. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -52,7 +53,8 @@ public async Task DeleteAsync(Action - /// The list of affected malware in the tenant. + /// Read properties and relationships of the windowsMalwareInformation object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +73,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.WindowsMalwareInformation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsMalwareInformation in deviceManagement + /// Update the properties of a windowsMalwareInformation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -92,7 +95,7 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.WindowsMalwareInformation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property windowsMalwareInformation for deviceManagement + /// Deletes a windowsMalwareInformation. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -116,7 +119,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The list of affected malware in the tenant. + /// Read properties and relationships of the windowsMalwareInformation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +145,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsMalwareInformation in deviceManagement + /// Update the properties of a windowsMalwareInformation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +189,7 @@ public WindowsMalwareInformationItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The list of affected malware in the tenant. + /// Read properties and relationships of the windowsMalwareInformation object. /// public class WindowsMalwareInformationItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/WindowsMalwareInformationRequestBuilder.cs b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/WindowsMalwareInformationRequestBuilder.cs index 38bed404305..e11d262fadf 100644 --- a/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/WindowsMalwareInformationRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/DeviceManagement/WindowsMalwareInformation/WindowsMalwareInformationRequestBuilder.cs @@ -40,7 +40,8 @@ public WindowsMalwareInformationRequestBuilder(Dictionary pathPa public WindowsMalwareInformationRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The list of affected malware in the tenant. + /// List properties and relationships of the windowsMalwareInformation objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, WindowsMalwareInformationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to windowsMalwareInformation for deviceManagement + /// Create a new windowsMalwareInformation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.WindowsMalwareInformation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The list of affected malware in the tenant. + /// List properties and relationships of the windowsMalwareInformation objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to windowsMalwareInformation for deviceManagement + /// Create a new windowsMalwareInformation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.Window return requestInfo; } /// - /// The list of affected malware in the tenant. + /// List properties and relationships of the windowsMalwareInformation objects. /// public class WindowsMalwareInformationRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs index c1817533c18..eec30d67a74 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/DriveItemItemRequestBuilder.cs @@ -225,8 +225,8 @@ public GetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithIntervalReques return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.DriveItem.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the metadata for a driveItem by ID or path. You can also use update to move an item to another parent by updating the item's **parentReference** property. - /// Find more info here + /// To move a DriveItem to a new parent item, your app requests to update the **parentReference** of the DriveItem to move. This is a special case of the Update method.Your app can combine moving an item to a new container and updating other properties of the item into a single request. Items cannot be moved between Drives using this request. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -305,7 +305,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the metadata for a driveItem by ID or path. You can also use update to move an item to another parent by updating the item's **parentReference** property. + /// To move a DriveItem to a new parent item, your app requests to update the **parentReference** of the DriveItem to move. This is a special case of the Update method.Your app can combine moving an item to a new container and updating other properties of the item into a single request. Items cannot be moved between Drives using this request. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs index 46f08e18b67..d0c94daf406 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Names/Item/RangeNamespace/RangeRequestBuilder.cs @@ -28,8 +28,8 @@ public RangeRequestBuilder(Dictionary pathParameters, IRequestAd public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/names/{workbookNamedItem%2Did}/range()", rawUrl) { } /// - /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. - /// Find more info here + /// Retrieve the properties and relationships of range object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -48,7 +48,7 @@ public async Task GetAsync(Action(requestInfo, WorkbookRange.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. + /// Retrieve the properties and relationships of range object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs index 4d4ed8349f9..444c4c72fb9 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/Item/Columns/ColumnsRequestBuilder.cs @@ -47,7 +47,7 @@ public ColumnsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba } /// /// Retrieve a list of tablecolumn objects. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/TablesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/TablesRequestBuilder.cs index 09bf716c6bd..da9fd8cc043 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/TablesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Tables/TablesRequestBuilder.cs @@ -47,7 +47,7 @@ public TablesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas } /// /// Retrieve a list of table objects. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs index 57613ca5c7b..da095281e07 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Charts/Item/Series/SeriesRequestBuilder.cs @@ -42,7 +42,7 @@ public SeriesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas } /// /// Retrieve a list of chartseries objects. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs index c57256d145a..e79554ef4ea 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Names/Item/RangeNamespace/RangeRequestBuilder.cs @@ -28,8 +28,8 @@ public RangeRequestBuilder(Dictionary pathParameters, IRequestAd public RangeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/names/{workbookNamedItem%2Did}/range()", rawUrl) { } /// - /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. - /// Find more info here + /// Retrieve the properties and relationships of range object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -48,7 +48,7 @@ public async Task GetAsync(Action(requestInfo, WorkbookRange.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range. + /// Retrieve the properties and relationships of range object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs index 72f30b1d2a5..63ebd5d2cc3 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/Item/Tables/Item/Columns/ColumnsRequestBuilder.cs @@ -47,7 +47,7 @@ public ColumnsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba } /// /// Retrieve a list of tablecolumn objects. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs index 3283f95bd3b..b6931e15191 100644 --- a/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Drives/Item/Items/Item/Workbook/Worksheets/WorksheetsRequestBuilder.cs @@ -46,7 +46,7 @@ public WorksheetsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Retrieve a list of worksheet objects. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index bee30c09546..6fa4de77270 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 00a7cf4fa9a..3201506fa76 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs index 5aaa5b5eb1c..fd0bc374f8b 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index fb0a4fa5243..b3450969346 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 3d7fdefd4e4..895fb0960a2 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 03d3ae9c8b8..e068f2a9769 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs index bfbc04d53c7..28c40bf4552 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/ConversationItemRequestBuilder.cs @@ -53,8 +53,8 @@ public async Task DeleteAsync(Action - /// The group's conversations. - /// Find more info here + /// Retrieve the properties and relationships of conversation object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -97,7 +97,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The group's conversations. + /// Retrieve the properties and relationships of conversation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -139,7 +139,7 @@ public ConversationItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// The group's conversations. + /// Retrieve the properties and relationships of conversation object. /// public class ConversationItemRequestBuilderGetQueryParameters { /// Select properties to be returned diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs index 36ead25c80d..37881603ccd 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs @@ -27,8 +27,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/reply", rawUrl) { } /// - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. - /// Find more info here + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -49,7 +49,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs index 00c1d3a29ee..51bc363209c 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs @@ -27,8 +27,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/reply", rawUrl) { } /// - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. - /// Find more info here + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -49,7 +49,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Reply/ReplyRequestBuilder.cs index cf0a6b0cfdc..7f95b27073f 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Reply/ReplyRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Conversations/Item/Threads/Item/Reply/ReplyRequestBuilder.cs @@ -27,8 +27,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/reply", rawUrl) { } /// - /// Add an attachment when creating a group post. This operation limits the size of the attachment you can add to under 3 MB. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. - /// Find more info here + /// Reply to a thread in a group conversation and add a new post to it. You can specify the parent conversation in the request, or, you can specify just the thread without the parent conversation. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -49,7 +49,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action - /// Add an attachment when creating a group post. This operation limits the size of the attachment you can add to under 3 MB. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Reply to a thread in a group conversation and add a new post to it. You can specify the parent conversation in the request, or, you can specify just the thread without the parent conversation. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs index 16294e986cd..a0f263e1a7c 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 3ff74b2cd95..8e0694eac3d 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 9c88eb24865..829c65de0ce 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs index 11fbeb624d6..8f4aa66be7f 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index 83d43dad462..f8be8f7f9bf 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs index e9e9ce473f2..ab8cf078c9d 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Channels/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/Photo/PhotoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/Photo/PhotoRequestBuilder.cs index a631d7db614..906a56f6a27 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/Photo/PhotoRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/Photo/PhotoRequestBuilder.cs @@ -33,25 +33,6 @@ public PhotoRequestBuilder(Dictionary pathParameters, IRequestAd public PhotoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/photo{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property photo for groups - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// Find more info here /// @@ -93,30 +74,6 @@ public async Task PatchAsync(ProfilePhoto body, Action(requestInfo, ProfilePhoto.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property photo for groups - /// - /// 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 { - HttpMethod = Method.DELETE, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new PhotoRequestBuilderDeleteRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// /// Configuration for the request such as headers, query parameters, and middleware options. @@ -171,22 +128,6 @@ public RequestInformation ToPatchRequestInformation(ProfilePhoto body, Action - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class PhotoRequestBuilderDeleteRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new photoRequestBuilderDeleteRequestConfiguration and sets the default values. - /// - public PhotoRequestBuilderDeleteRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// public class PhotoRequestBuilderGetQueryParameters { diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index 2dc50467071..e0f7807be29 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs index f610082d1b6..d2e495804bc 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs index d7a439251f3..a47cb584daa 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs index 285aab11558..dda6616e03e 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Team/PrimaryChannel/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs index add0483962a..ad5155b8114 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/ConversationThreadItemRequestBuilder.cs @@ -39,7 +39,7 @@ public ConversationThreadItemRequestBuilder(string rawUrl, IRequestAdapter reque } /// /// Delete conversationThread. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs index 4bf169eae6b..bdc997cc237 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/InReplyTo/Reply/ReplyRequestBuilder.cs @@ -27,8 +27,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/reply", rawUrl) { } /// - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. - /// Find more info here + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -49,7 +49,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs index ff306bd20ec..e16a82728d5 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Posts/Item/Reply/ReplyRequestBuilder.cs @@ -27,8 +27,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/reply", rawUrl) { } /// - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. - /// Find more info here + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -49,7 +49,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action - /// 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. See known limitations of open extensions for more information. The table in the Permissions section lists the resources that support open extensions. + /// Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Reply/ReplyRequestBuilder.cs b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Reply/ReplyRequestBuilder.cs index da835e6d18c..a5267d5eabf 100644 --- a/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Reply/ReplyRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Groups/Item/Threads/Item/Reply/ReplyRequestBuilder.cs @@ -27,8 +27,8 @@ public ReplyRequestBuilder(Dictionary pathParameters, IRequestAd public ReplyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/reply", rawUrl) { } /// - /// Add an attachment when creating a group post. This operation limits the size of the attachment you can add to under 3 MB. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. - /// Find more info here + /// Reply to a thread in a group conversation and add a new post to it. You can specify the parent conversation in the request, or, you can specify just the thread without the parent conversation. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -49,7 +49,7 @@ public async Task PostAsync(ReplyPostRequestBody body, Action - /// Add an attachment when creating a group post. This operation limits the size of the attachment you can add to under 3 MB. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Reply to a thread in a group conversation and add a new post to it. You can specify the parent conversation in the request, or, you can specify just the thread without the parent conversation. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs index 29b263eaf4b..ae2b6656d4c 100644 --- a/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Identity/ConditionalAccess/NamedLocations/Item/NamedLocationItemRequestBuilder.cs @@ -28,8 +28,8 @@ public NamedLocationItemRequestBuilder(Dictionary pathParameters public NamedLocationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/identity/conditionalAccess/namedLocations/{namedLocation%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete a countryNamedLocation 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. @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, NamedLocation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the properties of a countryNamedLocation object. - /// Find more info here + /// Update the properties of an ipNamedLocation object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -90,7 +90,7 @@ public async Task PatchAsync(NamedLocation body, Action(requestInfo, NamedLocation.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete a countryNamedLocation object. + /// Delete an ipNamedLocation object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a countryNamedLocation object. + /// Update the properties of an ipNamedLocation object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Localizations/Count/CountRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Count/CountRequestBuilder.cs deleted file mode 100644 index 277f1347c4b..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Count/CountRequestBuilder.cs +++ /dev/null @@ -1,118 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Count { - /// - /// Provides operations to count the resources in the collection. - /// - public class CountRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new CountRequestBuilder 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}/localizations/$count{?%24search,%24filter}", pathParameters) { - } - /// - /// Instantiates a new CountRequestBuilder 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}/localizations/$count{?%24search,%24filter}", rawUrl) { - } - /// - /// Get the number of the resource - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Get the number of the resource - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.Headers.Add("Accept", "text/plain"); - if (requestConfiguration != null) { - var requestConfig = new CountRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddQueryParameters(requestConfig.QueryParameters); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Get the number of the resource - /// - public class CountRequestBuilderGetQueryParameters { - /// 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 - /// 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 - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class CountRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// Request query parameters - public CountRequestBuilderGetQueryParameters QueryParameters { get; set; } = new CountRequestBuilderGetQueryParameters(); - /// - /// Instantiates a new CountRequestBuilderGetRequestConfiguration and sets the default values. - /// - public CountRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs deleted file mode 100644 index 91acf1461b7..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/BackgroundImage/BackgroundImageRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.BackgroundImage { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class BackgroundImageRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new BackgroundImageRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public BackgroundImageRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/backgroundImage", pathParameters) { - } - /// - /// Instantiates a new BackgroundImageRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public BackgroundImageRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/backgroundImage", rawUrl) { - } - /// - /// Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new BackgroundImageRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new BackgroundImageRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class BackgroundImageRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new backgroundImageRequestBuilderGetRequestConfiguration and sets the default values. - /// - public BackgroundImageRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class BackgroundImageRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new backgroundImageRequestBuilderPutRequestConfiguration and sets the default values. - /// - public BackgroundImageRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs deleted file mode 100644 index 1f3bc6fa95f..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/BannerLogo/BannerLogoRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.BannerLogo { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class BannerLogoRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new BannerLogoRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public BannerLogoRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/bannerLogo", pathParameters) { - } - /// - /// Instantiates a new BannerLogoRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public BannerLogoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/bannerLogo", rawUrl) { - } - /// - /// A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new BannerLogoRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new BannerLogoRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class BannerLogoRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new bannerLogoRequestBuilderGetRequestConfiguration and sets the default values. - /// - public BannerLogoRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class BannerLogoRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new bannerLogoRequestBuilderPutRequestConfiguration and sets the default values. - /// - public BannerLogoRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/CustomCSS/CustomCSSRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/CustomCSS/CustomCSSRequestBuilder.cs deleted file mode 100644 index 74dd6a3c15e..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/CustomCSS/CustomCSSRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.CustomCSS { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class CustomCSSRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new CustomCSSRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public CustomCSSRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/customCSS", pathParameters) { - } - /// - /// Instantiates a new CustomCSSRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public CustomCSSRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/customCSS", rawUrl) { - } - /// - /// Get customCSS for organizationalBrandingLocalization from localizations - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Update customCSS for organizationalBrandingLocalization in localizations - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Get customCSS for organizationalBrandingLocalization from localizations - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new CustomCSSRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Update customCSS for organizationalBrandingLocalization in localizations - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new CustomCSSRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class CustomCSSRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new customCSSRequestBuilderGetRequestConfiguration and sets the default values. - /// - public CustomCSSRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class CustomCSSRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new customCSSRequestBuilderPutRequestConfiguration and sets the default values. - /// - public CustomCSSRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/Favicon/FaviconRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/Favicon/FaviconRequestBuilder.cs deleted file mode 100644 index f7018a2b711..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/Favicon/FaviconRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.Favicon { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class FaviconRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new FaviconRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public FaviconRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/favicon", pathParameters) { - } - /// - /// Instantiates a new FaviconRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public FaviconRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/favicon", rawUrl) { - } - /// - /// Get favicon for organizationalBrandingLocalization from localizations - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Update favicon for organizationalBrandingLocalization in localizations - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Get favicon for organizationalBrandingLocalization from localizations - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new FaviconRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Update favicon for organizationalBrandingLocalization in localizations - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new FaviconRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class FaviconRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new faviconRequestBuilderGetRequestConfiguration and sets the default values. - /// - public FaviconRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class FaviconRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new faviconRequestBuilderPutRequestConfiguration and sets the default values. - /// - public FaviconRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/HeaderLogo/HeaderLogoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/HeaderLogo/HeaderLogoRequestBuilder.cs deleted file mode 100644 index cef0032c780..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/HeaderLogo/HeaderLogoRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.HeaderLogo { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class HeaderLogoRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new HeaderLogoRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public HeaderLogoRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/headerLogo", pathParameters) { - } - /// - /// Instantiates a new HeaderLogoRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public HeaderLogoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/headerLogo", rawUrl) { - } - /// - /// Get headerLogo for organizationalBrandingLocalization from localizations - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Update headerLogo for organizationalBrandingLocalization in localizations - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Get headerLogo for organizationalBrandingLocalization from localizations - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new HeaderLogoRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Update headerLogo for organizationalBrandingLocalization in localizations - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new HeaderLogoRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class HeaderLogoRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new headerLogoRequestBuilderGetRequestConfiguration and sets the default values. - /// - public HeaderLogoRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class HeaderLogoRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new headerLogoRequestBuilderPutRequestConfiguration and sets the default values. - /// - public HeaderLogoRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs deleted file mode 100644 index 5d7090c51ad..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/SquareLogo/SquareLogoRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.SquareLogo { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class SquareLogoRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new SquareLogoRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public SquareLogoRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/squareLogo", pathParameters) { - } - /// - /// Instantiates a new SquareLogoRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public SquareLogoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/squareLogo", rawUrl) { - } - /// - /// A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new SquareLogoRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new SquareLogoRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class SquareLogoRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new squareLogoRequestBuilderGetRequestConfiguration and sets the default values. - /// - public SquareLogoRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class SquareLogoRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new squareLogoRequestBuilderPutRequestConfiguration and sets the default values. - /// - public SquareLogoRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/SquareLogoDark/SquareLogoDarkRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/Item/SquareLogoDark/SquareLogoDarkRequestBuilder.cs deleted file mode 100644 index 93cc560a2c4..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/Item/SquareLogoDark/SquareLogoDarkRequestBuilder.cs +++ /dev/null @@ -1,153 +0,0 @@ -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations.Item.SquareLogoDark { - /// - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - /// - public class SquareLogoDarkRequestBuilder : BaseRequestBuilder { - /// - /// Instantiates a new SquareLogoDarkRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public SquareLogoDarkRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/squareLogoDark", pathParameters) { - } - /// - /// Instantiates a new SquareLogoDarkRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public SquareLogoDarkRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}/squareLogoDark", rawUrl) { - } - /// - /// Get squareLogoDark for organizationalBrandingLocalization from localizations - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Update squareLogoDark for organizationalBrandingLocalization in localizations - /// - /// Binary request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PutAsync(Stream body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PutAsync(Stream body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPutRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendPrimitiveAsync(requestInfo, errorMapping, cancellationToken); - } - /// - /// Get squareLogoDark for organizationalBrandingLocalization from localizations - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new SquareLogoDarkRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Update squareLogoDark for organizationalBrandingLocalization in localizations - /// - /// Binary 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 ToPutRequestInformation(Stream body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPutRequestInformation(Stream body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.PUT, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.SetStreamContent(body); - if (requestConfiguration != null) { - var requestConfig = new SquareLogoDarkRequestBuilderPutRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class SquareLogoDarkRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new squareLogoDarkRequestBuilderGetRequestConfiguration and sets the default values. - /// - public SquareLogoDarkRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class SquareLogoDarkRequestBuilderPutRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new squareLogoDarkRequestBuilderPutRequestConfiguration and sets the default values. - /// - public SquareLogoDarkRequestBuilderPutRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Localizations/LocalizationsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Localizations/LocalizationsRequestBuilder.cs deleted file mode 100644 index 8bafc8b2eba..00000000000 --- a/src/Microsoft.Graph/Generated/Localizations/LocalizationsRequestBuilder.cs +++ /dev/null @@ -1,235 +0,0 @@ -using Microsoft.Graph.Localizations.Count; -using Microsoft.Graph.Localizations.Item; -using Microsoft.Graph.Models.ODataErrors; -using Microsoft.Graph.Models; -using Microsoft.Kiota.Abstractions.Serialization; -using Microsoft.Kiota.Abstractions; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Threading; -using System; -namespace Microsoft.Graph.Localizations { - /// - /// Provides operations to manage the collection of organizationalBrandingLocalization entities. - /// - public class LocalizationsRequestBuilder : BaseRequestBuilder { - /// Provides operations to count the resources in the collection. - public CountRequestBuilder Count { get => - new CountRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the collection of organizationalBrandingLocalization entities. - public OrganizationalBrandingLocalizationItemRequestBuilder this[string position] { get { - var urlTplParams = new Dictionary(PathParameters); - if (!string.IsNullOrWhiteSpace(position)) urlTplParams.Add("organizationalBrandingLocalization%2Did", position); - return new OrganizationalBrandingLocalizationItemRequestBuilder(urlTplParams, RequestAdapter); - } } - /// - /// Instantiates a new LocalizationsRequestBuilder and sets the default values. - /// - /// Path parameters for the request - /// The request adapter to use to execute the requests. - public LocalizationsRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { - } - /// - /// Instantiates a new LocalizationsRequestBuilder and sets the default values. - /// - /// The raw URL to use for the request builder. - /// The request adapter to use to execute the requests. - public LocalizationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { - } - /// - /// Get entities from localizations - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendAsync(requestInfo, OrganizationalBrandingLocalizationCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); - } - /// - /// Add new entity to localizations - /// - /// The request body - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task PostAsync(OrganizationalBrandingLocalization body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { -#nullable restore -#else - public async Task PostAsync(OrganizationalBrandingLocalization body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = ToPostRequestInformation(body, requestConfiguration); - var errorMapping = new Dictionary> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - return await RequestAdapter.SendAsync(requestInfo, OrganizationalBrandingLocalization.CreateFromDiscriminatorValue, errorMapping, cancellationToken); - } - /// - /// Get entities from localizations - /// - /// 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 { - HttpMethod = Method.GET, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.Headers.Add("Accept", "application/json"); - if (requestConfiguration != null) { - var requestConfig = new LocalizationsRequestBuilderGetRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddQueryParameters(requestConfig.QueryParameters); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Add new entity to localizations - /// - /// 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(OrganizationalBrandingLocalization body, Action? requestConfiguration = default) { -#nullable restore -#else - public RequestInformation ToPostRequestInformation(OrganizationalBrandingLocalization body, Action requestConfiguration = default) { -#endif - _ = body ?? throw new ArgumentNullException(nameof(body)); - var requestInfo = new RequestInformation { - HttpMethod = Method.POST, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - requestInfo.Headers.Add("Accept", "application/json"); - requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body); - if (requestConfiguration != null) { - var requestConfig = new LocalizationsRequestBuilderPostRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// - /// Get entities from localizations - /// - public class LocalizationsRequestBuilderGetQueryParameters { - /// 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. - /// - public class LocalizationsRequestBuilderGetRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// Request query parameters - public LocalizationsRequestBuilderGetQueryParameters QueryParameters { get; set; } = new LocalizationsRequestBuilderGetQueryParameters(); - /// - /// Instantiates a new localizationsRequestBuilderGetRequestConfiguration and sets the default values. - /// - public LocalizationsRequestBuilderGetRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class LocalizationsRequestBuilderPostRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new localizationsRequestBuilderPostRequestConfiguration and sets the default values. - /// - public LocalizationsRequestBuilderPostRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - } -} diff --git a/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 3ad5acd1505..938e4807abd 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index f997ce9dc11..d041db6d856 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs index c73ba7d68ba..13ae6bd641f 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index ed8f2397acc..ce00ab4b99e 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index e8f16825a6a..3edcd2f8c3f 100644 --- a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 71d23f983f6..c365e24deff 100644 --- a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs index cc8bacd4311..66aa620ab42 100644 --- a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index ddad796b12e..0a1b155bb82 100644 --- a/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index b9acd3c5f9e..fb29926075f 100644 --- a/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 79299955a1f..463167bf071 100644 --- a/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 0e61972e648..f0fa64ea1c1 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 9b7d22b4564..f76bc6256b9 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs index d6ceb9a69cf..4d7955c51bb 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 9c2d39f2016..b92b6ec7525 100644 --- a/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index cdd9baf7324..0df958d0a00 100644 --- a/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs index 6ac50954884..25997044bb3 100644 --- a/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Chats/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified 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 /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Events/Item/Attachments/AttachmentsRequestBuilder.cs index c1bbe8df1bd..2104c1e2376 100644 --- a/src/Microsoft.Graph/Generated/Me/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 2e8845438e5..3e379df420e 100644 --- a/src/Microsoft.Graph/Generated/Me/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 56d86aab240..d982d37e6da 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs index 68cacc76271..a4e71b1e762 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index d75a604db71..622c20aac16 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs index 307fa64c935..4b5feeb2361 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs index 91cf8878747..a7e1f4809ad 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs @@ -33,25 +33,6 @@ public PhotoRequestBuilder(Dictionary pathParameters, IRequestAd public PhotoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/joinedTeams/{team%2Did}/photo{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property photo for me - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// Find more info here /// @@ -93,30 +74,6 @@ public async Task PatchAsync(ProfilePhoto body, Action(requestInfo, ProfilePhoto.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property photo for me - /// - /// 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 { - HttpMethod = Method.DELETE, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new PhotoRequestBuilderDeleteRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// /// Configuration for the request such as headers, query parameters, and middleware options. @@ -171,22 +128,6 @@ public RequestInformation ToPatchRequestInformation(ProfilePhoto body, Action - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class PhotoRequestBuilderDeleteRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new photoRequestBuilderDeleteRequestConfiguration and sets the default values. - /// - public PhotoRequestBuilderDeleteRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// public class PhotoRequestBuilderGetQueryParameters { diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index 18d83c98ce6..a0c1d564901 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs index 1f40f122671..4f4e167d65e 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs index 82e1d912a4b..e0aff4710c0 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs index e24b957b421..725a3b30c39 100644 --- a/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs index 9880f270c19..e2027727aa8 100644 --- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs @@ -35,17 +35,17 @@ public Microsoft.Graph.Me.MailFolders.Item.ChildFolders.Item.MailFolderItemReque /// /// Path parameters for the request /// The request adapter to use to execute the requests. - public ChildFoldersRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders{?%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { + public ChildFoldersRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders{?includeHiddenFolders*,%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { } /// /// Instantiates a new ChildFoldersRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. /// The request adapter to use to execute the requests. - public ChildFoldersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders{?%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { + public ChildFoldersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders{?includeHiddenFolders*,%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get the folder collection under the specified folder. You can use the `.../me/mailFolders` shortcut to get the top-level folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter _includeHiddenFolders_ to include them in the response. + /// The collection of child folders in the mailFolder. /// Find more info here /// /// Cancellation token to use when cancelling requests @@ -87,7 +87,7 @@ public async Task PostAsync(MailFolder body, Action(requestInfo, MailFolder.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Get the folder collection under the specified folder. You can use the `.../me/mailFolders` shortcut to get the top-level folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter _includeHiddenFolders_ to include them in the response. + /// The collection of child folders in the mailFolder. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -141,7 +141,7 @@ public RequestInformation ToPostRequestInformation(MailFolder body, Action - /// Get the folder collection under the specified folder. You can use the `.../me/mailFolders` shortcut to get the top-level folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter _includeHiddenFolders_ to include them in the response. + /// The collection of child folders in the mailFolder. /// public class ChildFoldersRequestBuilderGetQueryParameters { /// Include count of items @@ -166,6 +166,14 @@ public class ChildFoldersRequestBuilderGetQueryParameters { #else [QueryParameter("%24filter")] public string Filter { get; set; } +#endif + /// Include Hidden Folders +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? IncludeHiddenFolders { get; set; } +#nullable restore +#else + public string IncludeHiddenFolders { get; set; } #endif /// Order items by property values #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs index 14c7aae1c11..ba33ce4e799 100644 --- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs @@ -38,14 +38,14 @@ public class MailFolderItemRequestBuilder : BaseRequestBuilder { /// /// Path parameters for the request /// The request adapter to use to execute the requests. - public MailFolderItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?%24select,%24expand}", pathParameters) { + public MailFolderItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?includeHiddenFolders*,%24select,%24expand}", pathParameters) { } /// /// Instantiates a new MailFolderItemRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. /// The request adapter to use to execute the requests. - public MailFolderItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?%24select,%24expand}", rawUrl) { + public MailFolderItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?includeHiddenFolders*,%24select,%24expand}", rawUrl) { } /// /// Delete navigation property childFolders for me @@ -213,6 +213,14 @@ public class MailFolderItemRequestBuilderGetQueryParameters { #else [QueryParameter("%24expand")] public string[] Expand { get; set; } +#endif + /// Include Hidden Folders +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? IncludeHiddenFolders { get; set; } +#nullable restore +#else + public string IncludeHiddenFolders { get; set; } #endif /// Select properties to be returned #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index 50c06a40554..bffc5c47514 100644 --- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index 2ff66e7403d..04969f540fc 100644 --- a/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs index 5e4c015d8f2..e8ab719d590 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs @@ -28,6 +28,7 @@ public BypassActivationLockRequestBuilder(string rawUrl, IRequestAdapter request } /// /// Bypass activation lock + /// 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/Me/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs index 53b6b03d34f..04892d7a46c 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public CleanWindowsDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAd } /// /// Clean Windows device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs index cfbe4898222..5634077e2d8 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public DeleteUserFromSharedAppleDeviceRequestBuilder(string rawUrl, IRequestAdap } /// /// Delete user from shared Apple device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs index 4ef743ca102..a272be8f5e6 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device category + /// Read properties and relationships of the deviceCategory object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCategory in me + /// Update the properties of a deviceCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device category + /// Read properties and relationships of the deviceCategory object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCategory in me + /// Update the properties of a deviceCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceCategoryRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device category + /// Read properties and relationships of the deviceCategory object. /// public class DeviceCategoryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs index 4da2b982bdb..a5fe7777401 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs @@ -28,6 +28,7 @@ public DisableLostModeRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Disable lost mode + /// 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/Me/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs index b0fc7c3fd43..86d17480f86 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public LocateDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) } /// /// Locate a device + /// 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/Me/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs index d1d1784163b..b5d175c6f2b 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs @@ -28,6 +28,7 @@ public LogoutSharedAppleDeviceActiveUserRequestBuilder(string rawUrl, IRequestAd } /// /// Logout shared Apple device active user + /// 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/Me/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs index 5fdf0673d1e..378bc729205 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs @@ -28,6 +28,7 @@ public RebootNowRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Reboot device + /// 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/Me/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs index fe681571d81..5166da9bc70 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs @@ -28,6 +28,7 @@ public RecoverPasscodeRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Recover passcode + /// 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/Me/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs index ad425ece299..b8cb06841b7 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs @@ -28,6 +28,7 @@ public RemoteLockRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Remote lock + /// 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/Me/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs index 73ab7fdc42b..c2bb010ae8f 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs @@ -28,6 +28,7 @@ public RequestRemoteAssistanceRequestBuilder(string rawUrl, IRequestAdapter requ } /// /// Request remote assistance + /// 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/Me/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs index c04557bd8c6..9c8fd4aea34 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs @@ -28,6 +28,7 @@ public ResetPasscodeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter } /// /// Reset passcode + /// 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/Me/ManagedDevices/Item/Retire/RetireRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Retire/RetireRequestBuilder.cs index 39197db14cb..d37fe36e106 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Retire/RetireRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Retire/RetireRequestBuilder.cs @@ -28,6 +28,7 @@ public RetireRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas } /// /// Retire a device + /// 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/Me/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs index 9458b0fc8e4..810ad820796 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs @@ -28,6 +28,7 @@ public ShutDownRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b } /// /// Shut down device + /// 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/Me/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs index d9c0e531de5..1b8a2451e22 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs @@ -27,7 +27,8 @@ public SyncDeviceRequestBuilder(Dictionary pathParameters, IRequ public SyncDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/syncDevice", rawUrl) { } /// - /// Invoke action syncDevice + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action syncDevice + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs index cb43511253f..a4db139cc3e 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs @@ -27,7 +27,8 @@ public UpdateWindowsDeviceAccountRequestBuilder(Dictionary pathP public UpdateWindowsDeviceAccountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/updateWindowsDeviceAccount", rawUrl) { } /// - /// Invoke action updateWindowsDeviceAccount + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(UpdateWindowsDeviceAccountPostRequestBody body, Acti await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action updateWindowsDeviceAccount + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Users/UsersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Users/UsersRequestBuilder.cs index 739aeee7054..95daf9924e9 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Users/UsersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Users/UsersRequestBuilder.cs @@ -28,7 +28,8 @@ public UsersRequestBuilder(Dictionary pathParameters, IRequestAd public UsersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/users{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,7 @@ public async Task GetAsync(Action(requestInfo, UserCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -73,7 +74,7 @@ public RequestInformation ToGetRequestInformation(Action - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. /// public class UsersRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs index eb516db3f1c..a182baffb32 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs @@ -27,7 +27,8 @@ public WindowsDefenderScanRequestBuilder(Dictionary pathParamete public WindowsDefenderScanRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/windowsDefenderScan", rawUrl) { } /// - /// Invoke action windowsDefenderScan + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(WindowsDefenderScanPostRequestBody body, Action - /// Invoke action windowsDefenderScan + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs index 32e9852a183..7d71493a7d9 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs @@ -27,7 +27,8 @@ public WindowsDefenderUpdateSignaturesRequestBuilder(Dictionary public WindowsDefenderUpdateSignaturesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/windowsDefenderUpdateSignatures", rawUrl) { } /// - /// Invoke action windowsDefenderUpdateSignatures + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action windowsDefenderUpdateSignatures + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs index d75171cc728..346044c6546 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs @@ -40,7 +40,8 @@ public DetectedMalwareStateRequestBuilder(Dictionary pathParamet public DetectedMalwareStateRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, WindowsDeviceMalwareStateCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to detectedMalwareState for me + /// Create a new windowsDeviceMalwareState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(WindowsDeviceMalwareState return await RequestAdapter.SendAsync(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to detectedMalwareState for me + /// Create a new windowsDeviceMalwareState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsDeviceMalwareState bod return requestInfo; } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. /// public class DetectedMalwareStateRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs index 6e86c414c9f..ff193a914dd 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs @@ -28,7 +28,8 @@ public WindowsDeviceMalwareStateItemRequestBuilder(Dictionary pa public WindowsDeviceMalwareStateItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/me/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property detectedMalwareState for me + /// Deletes a windowsDeviceMalwareState. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property detectedMalwareState in me + /// Update the properties of a windowsDeviceMalwareState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(WindowsDeviceMalwareStat return await RequestAdapter.SendAsync(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property detectedMalwareState for me + /// Deletes a windowsDeviceMalwareState. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property detectedMalwareState in me + /// Update the properties of a windowsDeviceMalwareState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public WindowsDeviceMalwareStateItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. /// public class WindowsDeviceMalwareStateItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs index 08a9007d589..517d3539c41 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs @@ -52,7 +52,8 @@ public async Task DeleteAsync(Action - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +72,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.WindowsProtectionState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsProtectionState in me + /// Update the properties of a windowsProtectionState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -116,7 +118,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +144,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsProtectionState in me + /// Update the properties of a windowsProtectionState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +188,7 @@ public WindowsProtectionStateRequestBuilderDeleteRequestConfiguration() { } } /// - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. /// public class WindowsProtectionStateRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs index a11d9b4f9a6..0c367aae363 100644 --- a/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs @@ -28,6 +28,7 @@ public WipeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base( } /// /// Wipe a device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs index 46e1820d8c6..8ec9f668833 100644 --- a/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/MeRequestBuilder.cs @@ -380,8 +380,8 @@ public ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder ExportDevic return new ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder(PathParameters, RequestAdapter, skip, top); } /// - /// Retrieve the properties and relationships of user object. - /// Find more info here + /// Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -432,7 +432,7 @@ public ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder ReminderViewWi return new ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder(PathParameters, RequestAdapter, endDateTime, startDateTime); } /// - /// Retrieve the properties and relationships of user object. + /// Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -486,7 +486,7 @@ public RequestInformation ToPatchRequestInformation(Microsoft.Graph.Models.User return requestInfo; } /// - /// Retrieve the properties and relationships of user object. + /// Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. /// public class MeRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index d49ada906d3..9b87e26e054 100644 --- a/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs index a2ec5f9f862..afff145e06b 100644 --- a/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/Messages/Item/MessageItemRequestBuilder.cs @@ -109,7 +109,7 @@ public async Task DeleteAsync(Action /// The messages in a mailbox or folder. Read-only. Nullable. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -128,8 +128,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.Message.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the properties of an eventMessage object. - /// Find more info here + /// Update the properties of a message object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -200,7 +200,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of an eventMessage object. + /// Update the properties of a message object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Me/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs index 4c8ab97c607..6791a9cbf73 100644 --- a/src/Microsoft.Graph/Generated/Me/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs @@ -28,6 +28,7 @@ public RemoveAllDevicesFromManagementRequestBuilder(string rawUrl, IRequestAdapt } /// /// Retire all devices from management for this user + /// 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/Me/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs b/src/Microsoft.Graph/Generated/Me/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs index 23ec7748f03..4fe25cb6734 100644 --- a/src/Microsoft.Graph/Generated/Me/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Me/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs @@ -28,6 +28,7 @@ public WipeManagedAppRegistrationsByDeviceTagRequestBuilder(string rawUrl, IRequ } /// /// Issues a wipe operation on an app registration with specified device tag. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Models/ApiApplication.cs b/src/Microsoft.Graph/Generated/Models/ApiApplication.cs index f8f41a04e70..8cf724c50f3 100644 --- a/src/Microsoft.Graph/Generated/Models/ApiApplication.cs +++ b/src/Microsoft.Graph/Generated/Models/ApiApplication.cs @@ -74,7 +74,7 @@ public List PreAuthorizedApplications { set { BackingStore?.Set("preAuthorizedApplications", value); } } #endif - /// Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 + /// Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount or PersonalMicrosoftAccount, the value for this property must be 2. public int? RequestedAccessTokenVersion { get { return BackingStore?.Get("requestedAccessTokenVersion"); } set { BackingStore?.Set("requestedAccessTokenVersion", value); } diff --git a/src/Microsoft.Graph/Generated/Models/ConditionalAccessApplications.cs b/src/Microsoft.Graph/Generated/Models/ConditionalAccessApplications.cs index 70cebd339fd..aab44d2b64f 100644 --- a/src/Microsoft.Graph/Generated/Models/ConditionalAccessApplications.cs +++ b/src/Microsoft.Graph/Generated/Models/ConditionalAccessApplications.cs @@ -11,6 +11,20 @@ public IDictionary AdditionalData { get { return BackingStore?.Get>("additionalData"); } set { BackingStore?.Set("additionalData", value); } } + /// The applicationFilter property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public ConditionalAccessFilter? ApplicationFilter { + get { return BackingStore?.Get("applicationFilter"); } + set { BackingStore?.Set("applicationFilter", value); } + } +#nullable restore +#else + public ConditionalAccessFilter ApplicationFilter { + get { return BackingStore?.Get("applicationFilter"); } + set { BackingStore?.Set("applicationFilter", value); } + } +#endif /// Stores model information. public IBackingStore BackingStore { get; private set; } /// Can be one of the following: The list of client IDs (appId) explicitly excluded from the policy. Office365 - For the list of apps included in Office365, see Conditional Access target apps: Office 365 @@ -103,6 +117,7 @@ public static ConditionalAccessApplications CreateFromDiscriminatorValue(IParseN /// public IDictionary> GetFieldDeserializers() { return new Dictionary> { + {"applicationFilter", n => { ApplicationFilter = n.GetObjectValue(ConditionalAccessFilter.CreateFromDiscriminatorValue); } }, {"excludeApplications", n => { ExcludeApplications = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, {"includeApplications", n => { IncludeApplications = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, {"includeAuthenticationContextClassReferences", n => { IncludeAuthenticationContextClassReferences = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, @@ -116,6 +131,7 @@ public IDictionary> GetFieldDeserializers() { /// Serialization writer to use to serialize this model public void Serialize(ISerializationWriter writer) { _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteObjectValue("applicationFilter", ApplicationFilter); writer.WriteCollectionOfPrimitiveValues("excludeApplications", ExcludeApplications); writer.WriteCollectionOfPrimitiveValues("includeApplications", IncludeApplications); writer.WriteCollectionOfPrimitiveValues("includeAuthenticationContextClassReferences", IncludeAuthenticationContextClassReferences); diff --git a/src/Microsoft.Graph/Generated/Models/ConditionalAccessClientApplications.cs b/src/Microsoft.Graph/Generated/Models/ConditionalAccessClientApplications.cs index 9f64b7a0184..fc43e463248 100644 --- a/src/Microsoft.Graph/Generated/Models/ConditionalAccessClientApplications.cs +++ b/src/Microsoft.Graph/Generated/Models/ConditionalAccessClientApplications.cs @@ -54,6 +54,20 @@ public string OdataType { get { return BackingStore?.Get("@odata.type"); } set { BackingStore?.Set("@odata.type", value); } } +#endif + /// The servicePrincipalFilter property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public ConditionalAccessFilter? ServicePrincipalFilter { + get { return BackingStore?.Get("servicePrincipalFilter"); } + set { BackingStore?.Set("servicePrincipalFilter", value); } + } +#nullable restore +#else + public ConditionalAccessFilter ServicePrincipalFilter { + get { return BackingStore?.Get("servicePrincipalFilter"); } + set { BackingStore?.Set("servicePrincipalFilter", value); } + } #endif /// /// Instantiates a new conditionalAccessClientApplications and sets the default values. @@ -78,6 +92,7 @@ public IDictionary> GetFieldDeserializers() { {"excludeServicePrincipals", n => { ExcludeServicePrincipals = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, {"includeServicePrincipals", n => { IncludeServicePrincipals = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + {"servicePrincipalFilter", n => { ServicePrincipalFilter = n.GetObjectValue(ConditionalAccessFilter.CreateFromDiscriminatorValue); } }, }; } /// @@ -89,6 +104,7 @@ public void Serialize(ISerializationWriter writer) { writer.WriteCollectionOfPrimitiveValues("excludeServicePrincipals", ExcludeServicePrincipals); writer.WriteCollectionOfPrimitiveValues("includeServicePrincipals", IncludeServicePrincipals); writer.WriteStringValue("@odata.type", OdataType); + writer.WriteObjectValue("servicePrincipalFilter", ServicePrincipalFilter); writer.WriteAdditionalData(AdditionalData); } } diff --git a/src/Microsoft.Graph/Generated/Models/Entity.cs b/src/Microsoft.Graph/Generated/Models/Entity.cs index 51c621da9c9..a716b17dbb3 100644 --- a/src/Microsoft.Graph/Generated/Models/Entity.cs +++ b/src/Microsoft.Graph/Generated/Models/Entity.cs @@ -662,6 +662,7 @@ public static Entity CreateFromDiscriminatorValue(IParseNode parseNode) { "#microsoft.graph.teamsApp" => new TeamsApp(), "#microsoft.graph.teamsAppDefinition" => new TeamsAppDefinition(), "#microsoft.graph.teamsAppInstallation" => new TeamsAppInstallation(), + "#microsoft.graph.teamsAppSettings" => new TeamsAppSettings(), "#microsoft.graph.teamsAsyncOperation" => new TeamsAsyncOperation(), "#microsoft.graph.teamsTab" => new TeamsTab(), "#microsoft.graph.teamsTemplate" => new TeamsTemplate(), diff --git a/src/Microsoft.Graph/Generated/Models/LicenseUnitsDetail.cs b/src/Microsoft.Graph/Generated/Models/LicenseUnitsDetail.cs index 91058ee847d..5133acb17f1 100644 --- a/src/Microsoft.Graph/Generated/Models/LicenseUnitsDetail.cs +++ b/src/Microsoft.Graph/Generated/Models/LicenseUnitsDetail.cs @@ -18,7 +18,7 @@ public int? Enabled { get { return BackingStore?.Get("enabled"); } set { BackingStore?.Set("enabled", value); } } - /// The lockedOut property + /// The number of units that are locked out because the customer cancelled their subscription of the service SKU. public int? LockedOut { get { return BackingStore?.Get("lockedOut"); } set { BackingStore?.Set("lockedOut", value); } diff --git a/src/Microsoft.Graph/Generated/Models/Security/AlertEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/AlertEvidence.cs index d5c8d5bc839..39f7fc75fc8 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/AlertEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/AlertEvidence.cs @@ -116,11 +116,23 @@ public static AlertEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { "#microsoft.graph.security.amazonResourceEvidence" => new AmazonResourceEvidence(), "#microsoft.graph.security.analyzedMessageEvidence" => new AnalyzedMessageEvidence(), "#microsoft.graph.security.azureResourceEvidence" => new AzureResourceEvidence(), + "#microsoft.graph.security.blobContainerEvidence" => new BlobContainerEvidence(), + "#microsoft.graph.security.blobEvidence" => new BlobEvidence(), "#microsoft.graph.security.cloudApplicationEvidence" => new CloudApplicationEvidence(), + "#microsoft.graph.security.containerEvidence" => new ContainerEvidence(), + "#microsoft.graph.security.containerImageEvidence" => new ContainerImageEvidence(), + "#microsoft.graph.security.containerRegistryEvidence" => new ContainerRegistryEvidence(), "#microsoft.graph.security.deviceEvidence" => new DeviceEvidence(), "#microsoft.graph.security.fileEvidence" => new FileEvidence(), "#microsoft.graph.security.googleCloudResourceEvidence" => new GoogleCloudResourceEvidence(), "#microsoft.graph.security.ipEvidence" => new IpEvidence(), + "#microsoft.graph.security.kubernetesClusterEvidence" => new KubernetesClusterEvidence(), + "#microsoft.graph.security.kubernetesControllerEvidence" => new KubernetesControllerEvidence(), + "#microsoft.graph.security.kubernetesNamespaceEvidence" => new KubernetesNamespaceEvidence(), + "#microsoft.graph.security.kubernetesPodEvidence" => new KubernetesPodEvidence(), + "#microsoft.graph.security.kubernetesSecretEvidence" => new KubernetesSecretEvidence(), + "#microsoft.graph.security.kubernetesServiceAccountEvidence" => new KubernetesServiceAccountEvidence(), + "#microsoft.graph.security.kubernetesServiceEvidence" => new KubernetesServiceEvidence(), "#microsoft.graph.security.mailboxEvidence" => new MailboxEvidence(), "#microsoft.graph.security.mailClusterEvidence" => new MailClusterEvidence(), "#microsoft.graph.security.oauthApplicationEvidence" => new OauthApplicationEvidence(), diff --git a/src/Microsoft.Graph/Generated/Models/Security/AmazonResourceEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/AmazonResourceEvidence.cs index 9cd7c8eec17..b43f4f83222 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/AmazonResourceEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/AmazonResourceEvidence.cs @@ -61,6 +61,12 @@ public string ResourceType { set { BackingStore?.Set("resourceType", value); } } #endif + /// + /// Instantiates a new amazonResourceEvidence and sets the default values. + /// + public AmazonResourceEvidence() : base() { + OdataType = "#microsoft.graph.security.amazonResourceEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/AnalyzedMessageEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/AnalyzedMessageEvidence.cs index d23e5c7c09c..3f622e61a79 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/AnalyzedMessageEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/AnalyzedMessageEvidence.cs @@ -230,6 +230,12 @@ public string Urn { set { BackingStore?.Set("urn", value); } } #endif + /// + /// Instantiates a new analyzedMessageEvidence and sets the default values. + /// + public AnalyzedMessageEvidence() : base() { + OdataType = "#microsoft.graph.security.analyzedMessageEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/AzureResourceEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/AzureResourceEvidence.cs index e88e4f2c167..278ee89c1d6 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/AzureResourceEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/AzureResourceEvidence.cs @@ -47,6 +47,12 @@ public string ResourceType { set { BackingStore?.Set("resourceType", value); } } #endif + /// + /// Instantiates a new azureResourceEvidence and sets the default values. + /// + public AzureResourceEvidence() : base() { + OdataType = "#microsoft.graph.security.azureResourceEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/BlobContainerEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/BlobContainerEvidence.cs new file mode 100644 index 00000000000..55c329e4857 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/BlobContainerEvidence.cs @@ -0,0 +1,86 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class BlobContainerEvidence : AlertEvidence, IParsable { + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The storageResource property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AzureResourceEvidence? StorageResource { + get { return BackingStore?.Get("storageResource"); } + set { BackingStore?.Set("storageResource", value); } + } +#nullable restore +#else + public AzureResourceEvidence StorageResource { + get { return BackingStore?.Get("storageResource"); } + set { BackingStore?.Set("storageResource", value); } + } +#endif + /// The url property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Url { + get { return BackingStore?.Get("url"); } + set { BackingStore?.Set("url", value); } + } +#nullable restore +#else + public string Url { + get { return BackingStore?.Get("url"); } + set { BackingStore?.Set("url", value); } + } +#endif + /// + /// Instantiates a new blobContainerEvidence and sets the default values. + /// + public BlobContainerEvidence() : base() { + OdataType = "#microsoft.graph.security.blobContainerEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new BlobContainerEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new BlobContainerEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"name", n => { Name = n.GetStringValue(); } }, + {"storageResource", n => { StorageResource = n.GetObjectValue(AzureResourceEvidence.CreateFromDiscriminatorValue); } }, + {"url", n => { Url = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("storageResource", StorageResource); + writer.WriteStringValue("url", Url); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/BlobEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/BlobEvidence.cs new file mode 100644 index 00000000000..cbdd32d6325 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/BlobEvidence.cs @@ -0,0 +1,118 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class BlobEvidence : AlertEvidence, IParsable { + /// The blobContainer property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public BlobContainerEvidence? BlobContainer { + get { return BackingStore?.Get("blobContainer"); } + set { BackingStore?.Set("blobContainer", value); } + } +#nullable restore +#else + public BlobContainerEvidence BlobContainer { + get { return BackingStore?.Get("blobContainer"); } + set { BackingStore?.Set("blobContainer", value); } + } +#endif + /// The etag property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Etag { + get { return BackingStore?.Get("etag"); } + set { BackingStore?.Set("etag", value); } + } +#nullable restore +#else + public string Etag { + get { return BackingStore?.Get("etag"); } + set { BackingStore?.Set("etag", value); } + } +#endif + /// The fileHashes property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? FileHashes { + get { return BackingStore?.Get?>("fileHashes"); } + set { BackingStore?.Set("fileHashes", value); } + } +#nullable restore +#else + public List FileHashes { + get { return BackingStore?.Get>("fileHashes"); } + set { BackingStore?.Set("fileHashes", value); } + } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The url property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Url { + get { return BackingStore?.Get("url"); } + set { BackingStore?.Set("url", value); } + } +#nullable restore +#else + public string Url { + get { return BackingStore?.Get("url"); } + set { BackingStore?.Set("url", value); } + } +#endif + /// + /// Instantiates a new blobEvidence and sets the default values. + /// + public BlobEvidence() : base() { + OdataType = "#microsoft.graph.security.blobEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new BlobEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new BlobEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"blobContainer", n => { BlobContainer = n.GetObjectValue(BlobContainerEvidence.CreateFromDiscriminatorValue); } }, + {"etag", n => { Etag = n.GetStringValue(); } }, + {"fileHashes", n => { FileHashes = n.GetCollectionOfObjectValues(FileHash.CreateFromDiscriminatorValue)?.ToList(); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"url", n => { Url = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("blobContainer", BlobContainer); + writer.WriteStringValue("etag", Etag); + writer.WriteCollectionOfObjectValues("fileHashes", FileHashes); + writer.WriteStringValue("name", Name); + writer.WriteStringValue("url", Url); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/CloudApplicationEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/CloudApplicationEvidence.cs index b0b2bb55c19..b063be171a0 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/CloudApplicationEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/CloudApplicationEvidence.cs @@ -49,6 +49,12 @@ public long? SaasAppId { set { BackingStore?.Set("saasAppId", value); } } /// + /// Instantiates a new cloudApplicationEvidence and sets the default values. + /// + public CloudApplicationEvidence() : base() { + OdataType = "#microsoft.graph.security.cloudApplicationEvidence"; + } + /// /// Creates a new instance of the appropriate class based on discriminator value /// /// The parse node to use to read the discriminator value and create the object diff --git a/src/Microsoft.Graph/Generated/Models/Security/ContainerEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/ContainerEvidence.cs new file mode 100644 index 00000000000..a06af693478 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/ContainerEvidence.cs @@ -0,0 +1,141 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class ContainerEvidence : AlertEvidence, IParsable { + /// The args property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Args { + get { return BackingStore?.Get?>("args"); } + set { BackingStore?.Set("args", value); } + } +#nullable restore +#else + public List Args { + get { return BackingStore?.Get>("args"); } + set { BackingStore?.Set("args", value); } + } +#endif + /// The command property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Command { + get { return BackingStore?.Get?>("command"); } + set { BackingStore?.Set("command", value); } + } +#nullable restore +#else + public List Command { + get { return BackingStore?.Get>("command"); } + set { BackingStore?.Set("command", value); } + } +#endif + /// The containerId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? ContainerId { + get { return BackingStore?.Get("containerId"); } + set { BackingStore?.Set("containerId", value); } + } +#nullable restore +#else + public string ContainerId { + get { return BackingStore?.Get("containerId"); } + set { BackingStore?.Set("containerId", value); } + } +#endif + /// The image property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public ContainerImageEvidence? Image { + get { return BackingStore?.Get("image"); } + set { BackingStore?.Set("image", value); } + } +#nullable restore +#else + public ContainerImageEvidence Image { + get { return BackingStore?.Get("image"); } + set { BackingStore?.Set("image", value); } + } +#endif + /// The isPrivileged property + public bool? IsPrivileged { + get { return BackingStore?.Get("isPrivileged"); } + set { BackingStore?.Set("isPrivileged", value); } + } + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The pod property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesPodEvidence? Pod { + get { return BackingStore?.Get("pod"); } + set { BackingStore?.Set("pod", value); } + } +#nullable restore +#else + public KubernetesPodEvidence Pod { + get { return BackingStore?.Get("pod"); } + set { BackingStore?.Set("pod", value); } + } +#endif + /// + /// Instantiates a new containerEvidence and sets the default values. + /// + public ContainerEvidence() : base() { + OdataType = "#microsoft.graph.security.containerEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new ContainerEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new ContainerEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"args", n => { Args = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"command", n => { Command = n.GetCollectionOfPrimitiveValues()?.ToList(); } }, + {"containerId", n => { ContainerId = n.GetStringValue(); } }, + {"image", n => { Image = n.GetObjectValue(ContainerImageEvidence.CreateFromDiscriminatorValue); } }, + {"isPrivileged", n => { IsPrivileged = n.GetBoolValue(); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"pod", n => { Pod = n.GetObjectValue(KubernetesPodEvidence.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteCollectionOfPrimitiveValues("args", Args); + writer.WriteCollectionOfPrimitiveValues("command", Command); + writer.WriteStringValue("containerId", ContainerId); + writer.WriteObjectValue("image", Image); + writer.WriteBoolValue("isPrivileged", IsPrivileged); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("pod", Pod); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/ContainerImageEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/ContainerImageEvidence.cs new file mode 100644 index 00000000000..2d11998b0ea --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/ContainerImageEvidence.cs @@ -0,0 +1,86 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class ContainerImageEvidence : AlertEvidence, IParsable { + /// The digestImage property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public ContainerImageEvidence? DigestImage { + get { return BackingStore?.Get("digestImage"); } + set { BackingStore?.Set("digestImage", value); } + } +#nullable restore +#else + public ContainerImageEvidence DigestImage { + get { return BackingStore?.Get("digestImage"); } + set { BackingStore?.Set("digestImage", value); } + } +#endif + /// The imageId property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? ImageId { + get { return BackingStore?.Get("imageId"); } + set { BackingStore?.Set("imageId", value); } + } +#nullable restore +#else + public string ImageId { + get { return BackingStore?.Get("imageId"); } + set { BackingStore?.Set("imageId", value); } + } +#endif + /// The registry property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public ContainerRegistryEvidence? Registry { + get { return BackingStore?.Get("registry"); } + set { BackingStore?.Set("registry", value); } + } +#nullable restore +#else + public ContainerRegistryEvidence Registry { + get { return BackingStore?.Get("registry"); } + set { BackingStore?.Set("registry", value); } + } +#endif + /// + /// Instantiates a new containerImageEvidence and sets the default values. + /// + public ContainerImageEvidence() : base() { + OdataType = "#microsoft.graph.security.containerImageEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new ContainerImageEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new ContainerImageEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"digestImage", n => { DigestImage = n.GetObjectValue(ContainerImageEvidence.CreateFromDiscriminatorValue); } }, + {"imageId", n => { ImageId = n.GetStringValue(); } }, + {"registry", n => { Registry = n.GetObjectValue(ContainerRegistryEvidence.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("digestImage", DigestImage); + writer.WriteStringValue("imageId", ImageId); + writer.WriteObjectValue("registry", Registry); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/ContainerPortProtocol.cs b/src/Microsoft.Graph/Generated/Models/Security/ContainerPortProtocol.cs new file mode 100644 index 00000000000..4f88ceb533b --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/ContainerPortProtocol.cs @@ -0,0 +1,14 @@ +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security { + public enum ContainerPortProtocol { + [EnumMember(Value = "udp")] + Udp, + [EnumMember(Value = "tcp")] + Tcp, + [EnumMember(Value = "sctp")] + Sctp, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/ContainerRegistryEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/ContainerRegistryEvidence.cs new file mode 100644 index 00000000000..833561e78de --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/ContainerRegistryEvidence.cs @@ -0,0 +1,54 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class ContainerRegistryEvidence : AlertEvidence, IParsable { + /// The registry property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Registry { + get { return BackingStore?.Get("registry"); } + set { BackingStore?.Set("registry", value); } + } +#nullable restore +#else + public string Registry { + get { return BackingStore?.Get("registry"); } + set { BackingStore?.Set("registry", value); } + } +#endif + /// + /// Instantiates a new containerRegistryEvidence and sets the default values. + /// + public ContainerRegistryEvidence() : base() { + OdataType = "#microsoft.graph.security.containerRegistryEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new ContainerRegistryEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new ContainerRegistryEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"registry", n => { Registry = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("registry", Registry); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/DeviceEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/DeviceEvidence.cs index 80757902554..80c5f693663 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/DeviceEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/DeviceEvidence.cs @@ -166,6 +166,12 @@ public Microsoft.Graph.Models.Security.VmMetadata VmMetadata { set { BackingStore?.Set("vmMetadata", value); } } #endif + /// + /// Instantiates a new deviceEvidence and sets the default values. + /// + public DeviceEvidence() : base() { + OdataType = "#microsoft.graph.security.deviceEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/Dictionary.cs b/src/Microsoft.Graph/Generated/Models/Security/Dictionary.cs new file mode 100644 index 00000000000..440ae0c1d80 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/Dictionary.cs @@ -0,0 +1,63 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class Dictionary : IAdditionalDataHolder, IBackedModel, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { + get { return BackingStore?.Get>("additionalData"); } + set { BackingStore?.Set("additionalData", value); } + } + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// + /// Instantiates a new dictionary and sets the default values. + /// + public Dictionary() { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static Dictionary CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new Dictionary(); + } + /// + /// The deserialization information for the current model + /// + public IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/FileEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/FileEvidence.cs index b9f65186874..b1caac8cba9 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/FileEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/FileEvidence.cs @@ -38,6 +38,12 @@ public string MdeDeviceId { set { BackingStore?.Set("mdeDeviceId", value); } } #endif + /// + /// Instantiates a new fileEvidence and sets the default values. + /// + public FileEvidence() : base() { + OdataType = "#microsoft.graph.security.fileEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/FileHash.cs b/src/Microsoft.Graph/Generated/Models/Security/FileHash.cs new file mode 100644 index 00000000000..3806b42d7ec --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/FileHash.cs @@ -0,0 +1,86 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class FileHash : IAdditionalDataHolder, IBackedModel, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { + get { return BackingStore?.Get>("additionalData"); } + set { BackingStore?.Set("additionalData", value); } + } + /// The algorithm property + public FileHashAlgorithm? Algorithm { + get { return BackingStore?.Get("algorithm"); } + set { BackingStore?.Set("algorithm", value); } + } + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// The value property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Value { + get { return BackingStore?.Get("value"); } + set { BackingStore?.Set("value", value); } + } +#nullable restore +#else + public string Value { + get { return BackingStore?.Get("value"); } + set { BackingStore?.Set("value", value); } + } +#endif + /// + /// Instantiates a new fileHash and sets the default values. + /// + public FileHash() { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static FileHash CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new FileHash(); + } + /// + /// The deserialization information for the current model + /// + public IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"algorithm", n => { Algorithm = n.GetEnumValue(); } }, + {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + {"value", n => { Value = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteEnumValue("algorithm", Algorithm); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteStringValue("value", Value); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/FileHashAlgorithm.cs b/src/Microsoft.Graph/Generated/Models/Security/FileHashAlgorithm.cs new file mode 100644 index 00000000000..03c036caaa9 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/FileHashAlgorithm.cs @@ -0,0 +1,18 @@ +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security { + public enum FileHashAlgorithm { + [EnumMember(Value = "unknown")] + Unknown, + [EnumMember(Value = "md5")] + Md5, + [EnumMember(Value = "sha1")] + Sha1, + [EnumMember(Value = "sha256")] + Sha256, + [EnumMember(Value = "sha256ac")] + Sha256ac, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/GoogleCloudResourceEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/GoogleCloudResourceEvidence.cs index 5324311005f..fccb21c2833 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/GoogleCloudResourceEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/GoogleCloudResourceEvidence.cs @@ -71,6 +71,12 @@ public string ResourceType { set { BackingStore?.Set("resourceType", value); } } #endif + /// + /// Instantiates a new googleCloudResourceEvidence and sets the default values. + /// + public GoogleCloudResourceEvidence() : base() { + OdataType = "#microsoft.graph.security.googleCloudResourceEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/IpEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/IpEvidence.cs index 933885a4f8b..656051caf26 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/IpEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/IpEvidence.cs @@ -33,6 +33,12 @@ public string IpAddress { set { BackingStore?.Set("ipAddress", value); } } #endif + /// + /// Instantiates a new ipEvidence and sets the default values. + /// + public IpEvidence() : base() { + OdataType = "#microsoft.graph.security.ipEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesClusterEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesClusterEvidence.cs new file mode 100644 index 00000000000..36e7915b2e2 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesClusterEvidence.cs @@ -0,0 +1,109 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesClusterEvidence : AlertEvidence, IParsable { + /// The cloudResource property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public AlertEvidence? CloudResource { + get { return BackingStore?.Get("cloudResource"); } + set { BackingStore?.Set("cloudResource", value); } + } +#nullable restore +#else + public AlertEvidence CloudResource { + get { return BackingStore?.Get("cloudResource"); } + set { BackingStore?.Set("cloudResource", value); } + } +#endif + /// The distribution property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Distribution { + get { return BackingStore?.Get("distribution"); } + set { BackingStore?.Set("distribution", value); } + } +#nullable restore +#else + public string Distribution { + get { return BackingStore?.Get("distribution"); } + set { BackingStore?.Set("distribution", value); } + } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The platform property + public KubernetesPlatform? Platform { + get { return BackingStore?.Get("platform"); } + set { BackingStore?.Set("platform", value); } + } + /// The version property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Version { + get { return BackingStore?.Get("version"); } + set { BackingStore?.Set("version", value); } + } +#nullable restore +#else + public string Version { + get { return BackingStore?.Get("version"); } + set { BackingStore?.Set("version", value); } + } +#endif + /// + /// Instantiates a new kubernetesClusterEvidence and sets the default values. + /// + public KubernetesClusterEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesClusterEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesClusterEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesClusterEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"cloudResource", n => { CloudResource = n.GetObjectValue(AlertEvidence.CreateFromDiscriminatorValue); } }, + {"distribution", n => { Distribution = n.GetStringValue(); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"platform", n => { Platform = n.GetEnumValue(); } }, + {"version", n => { Version = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("cloudResource", CloudResource); + writer.WriteStringValue("distribution", Distribution); + writer.WriteStringValue("name", Name); + writer.WriteEnumValue("platform", Platform); + writer.WriteStringValue("version", Version); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesControllerEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesControllerEvidence.cs new file mode 100644 index 00000000000..dd188c7c2fd --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesControllerEvidence.cs @@ -0,0 +1,102 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesControllerEvidence : AlertEvidence, IParsable { + /// The labels property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public Dictionary? Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#nullable restore +#else + public Dictionary Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The namespace property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesNamespaceEvidence? Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#nullable restore +#else + public KubernetesNamespaceEvidence Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#endif + /// The type property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Type { + get { return BackingStore?.Get("type"); } + set { BackingStore?.Set("type", value); } + } +#nullable restore +#else + public string Type { + get { return BackingStore?.Get("type"); } + set { BackingStore?.Set("type", value); } + } +#endif + /// + /// Instantiates a new kubernetesControllerEvidence and sets the default values. + /// + public KubernetesControllerEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesControllerEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesControllerEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesControllerEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"labels", n => { Labels = n.GetObjectValue(Dictionary.CreateFromDiscriminatorValue); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"namespace", n => { Namespace = n.GetObjectValue(KubernetesNamespaceEvidence.CreateFromDiscriminatorValue); } }, + {"type", n => { Type = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("labels", Labels); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("namespace", Namespace); + writer.WriteStringValue("type", Type); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesNamespaceEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesNamespaceEvidence.cs new file mode 100644 index 00000000000..4cb1cad6853 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesNamespaceEvidence.cs @@ -0,0 +1,86 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesNamespaceEvidence : AlertEvidence, IParsable { + /// The cluster property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesClusterEvidence? Cluster { + get { return BackingStore?.Get("cluster"); } + set { BackingStore?.Set("cluster", value); } + } +#nullable restore +#else + public KubernetesClusterEvidence Cluster { + get { return BackingStore?.Get("cluster"); } + set { BackingStore?.Set("cluster", value); } + } +#endif + /// The labels property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public Dictionary? Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#nullable restore +#else + public Dictionary Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// + /// Instantiates a new kubernetesNamespaceEvidence and sets the default values. + /// + public KubernetesNamespaceEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesNamespaceEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesNamespaceEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesNamespaceEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"cluster", n => { Cluster = n.GetObjectValue(KubernetesClusterEvidence.CreateFromDiscriminatorValue); } }, + {"labels", n => { Labels = n.GetObjectValue(Dictionary.CreateFromDiscriminatorValue); } }, + {"name", n => { Name = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("cluster", Cluster); + writer.WriteObjectValue("labels", Labels); + writer.WriteStringValue("name", Name); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesPlatform.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesPlatform.cs new file mode 100644 index 00000000000..6de30647937 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesPlatform.cs @@ -0,0 +1,18 @@ +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security { + public enum KubernetesPlatform { + [EnumMember(Value = "unknown")] + Unknown, + [EnumMember(Value = "aks")] + Aks, + [EnumMember(Value = "eks")] + Eks, + [EnumMember(Value = "gke")] + Gke, + [EnumMember(Value = "arc")] + Arc, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesPodEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesPodEvidence.cs new file mode 100644 index 00000000000..45556c83c51 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesPodEvidence.cs @@ -0,0 +1,182 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesPodEvidence : AlertEvidence, IParsable { + /// The containers property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? Containers { + get { return BackingStore?.Get?>("containers"); } + set { BackingStore?.Set("containers", value); } + } +#nullable restore +#else + public List Containers { + get { return BackingStore?.Get>("containers"); } + set { BackingStore?.Set("containers", value); } + } +#endif + /// The controller property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesControllerEvidence? Controller { + get { return BackingStore?.Get("controller"); } + set { BackingStore?.Set("controller", value); } + } +#nullable restore +#else + public KubernetesControllerEvidence Controller { + get { return BackingStore?.Get("controller"); } + set { BackingStore?.Set("controller", value); } + } +#endif + /// The ephemeralContainers property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? EphemeralContainers { + get { return BackingStore?.Get?>("ephemeralContainers"); } + set { BackingStore?.Set("ephemeralContainers", value); } + } +#nullable restore +#else + public List EphemeralContainers { + get { return BackingStore?.Get>("ephemeralContainers"); } + set { BackingStore?.Set("ephemeralContainers", value); } + } +#endif + /// The initContainers property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? InitContainers { + get { return BackingStore?.Get?>("initContainers"); } + set { BackingStore?.Set("initContainers", value); } + } +#nullable restore +#else + public List InitContainers { + get { return BackingStore?.Get>("initContainers"); } + set { BackingStore?.Set("initContainers", value); } + } +#endif + /// The labels property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public Dictionary? Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#nullable restore +#else + public Dictionary Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The namespace property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesNamespaceEvidence? Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#nullable restore +#else + public KubernetesNamespaceEvidence Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#endif + /// The podIp property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public IpEvidence? PodIp { + get { return BackingStore?.Get("podIp"); } + set { BackingStore?.Set("podIp", value); } + } +#nullable restore +#else + public IpEvidence PodIp { + get { return BackingStore?.Get("podIp"); } + set { BackingStore?.Set("podIp", value); } + } +#endif + /// The serviceAccount property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesServiceAccountEvidence? ServiceAccount { + get { return BackingStore?.Get("serviceAccount"); } + set { BackingStore?.Set("serviceAccount", value); } + } +#nullable restore +#else + public KubernetesServiceAccountEvidence ServiceAccount { + get { return BackingStore?.Get("serviceAccount"); } + set { BackingStore?.Set("serviceAccount", value); } + } +#endif + /// + /// Instantiates a new kubernetesPodEvidence and sets the default values. + /// + public KubernetesPodEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesPodEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesPodEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesPodEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"containers", n => { Containers = n.GetCollectionOfObjectValues(ContainerEvidence.CreateFromDiscriminatorValue)?.ToList(); } }, + {"controller", n => { Controller = n.GetObjectValue(KubernetesControllerEvidence.CreateFromDiscriminatorValue); } }, + {"ephemeralContainers", n => { EphemeralContainers = n.GetCollectionOfObjectValues(ContainerEvidence.CreateFromDiscriminatorValue)?.ToList(); } }, + {"initContainers", n => { InitContainers = n.GetCollectionOfObjectValues(ContainerEvidence.CreateFromDiscriminatorValue)?.ToList(); } }, + {"labels", n => { Labels = n.GetObjectValue(Dictionary.CreateFromDiscriminatorValue); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"namespace", n => { Namespace = n.GetObjectValue(KubernetesNamespaceEvidence.CreateFromDiscriminatorValue); } }, + {"podIp", n => { PodIp = n.GetObjectValue(IpEvidence.CreateFromDiscriminatorValue); } }, + {"serviceAccount", n => { ServiceAccount = n.GetObjectValue(KubernetesServiceAccountEvidence.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteCollectionOfObjectValues("containers", Containers); + writer.WriteObjectValue("controller", Controller); + writer.WriteCollectionOfObjectValues("ephemeralContainers", EphemeralContainers); + writer.WriteCollectionOfObjectValues("initContainers", InitContainers); + writer.WriteObjectValue("labels", Labels); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("namespace", Namespace); + writer.WriteObjectValue("podIp", PodIp); + writer.WriteObjectValue("serviceAccount", ServiceAccount); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesSecretEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesSecretEvidence.cs new file mode 100644 index 00000000000..6a2e78dfec4 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesSecretEvidence.cs @@ -0,0 +1,86 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesSecretEvidence : AlertEvidence, IParsable { + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The namespace property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesNamespaceEvidence? Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#nullable restore +#else + public KubernetesNamespaceEvidence Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#endif + /// The secretType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? SecretType { + get { return BackingStore?.Get("secretType"); } + set { BackingStore?.Set("secretType", value); } + } +#nullable restore +#else + public string SecretType { + get { return BackingStore?.Get("secretType"); } + set { BackingStore?.Set("secretType", value); } + } +#endif + /// + /// Instantiates a new kubernetesSecretEvidence and sets the default values. + /// + public KubernetesSecretEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesSecretEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesSecretEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesSecretEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"name", n => { Name = n.GetStringValue(); } }, + {"namespace", n => { Namespace = n.GetObjectValue(KubernetesNamespaceEvidence.CreateFromDiscriminatorValue); } }, + {"secretType", n => { SecretType = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("namespace", Namespace); + writer.WriteStringValue("secretType", SecretType); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceAccountEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceAccountEvidence.cs new file mode 100644 index 00000000000..082c2041275 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceAccountEvidence.cs @@ -0,0 +1,70 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesServiceAccountEvidence : AlertEvidence, IParsable { + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The namespace property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesNamespaceEvidence? Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#nullable restore +#else + public KubernetesNamespaceEvidence Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#endif + /// + /// Instantiates a new kubernetesServiceAccountEvidence and sets the default values. + /// + public KubernetesServiceAccountEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesServiceAccountEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesServiceAccountEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesServiceAccountEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"name", n => { Name = n.GetStringValue(); } }, + {"namespace", n => { Namespace = n.GetObjectValue(KubernetesNamespaceEvidence.CreateFromDiscriminatorValue); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("namespace", Namespace); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceEvidence.cs new file mode 100644 index 00000000000..c111ef137c5 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceEvidence.cs @@ -0,0 +1,157 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesServiceEvidence : AlertEvidence, IParsable { + /// The clusterIP property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public IpEvidence? ClusterIP { + get { return BackingStore?.Get("clusterIP"); } + set { BackingStore?.Set("clusterIP", value); } + } +#nullable restore +#else + public IpEvidence ClusterIP { + get { return BackingStore?.Get("clusterIP"); } + set { BackingStore?.Set("clusterIP", value); } + } +#endif + /// The externalIPs property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? ExternalIPs { + get { return BackingStore?.Get?>("externalIPs"); } + set { BackingStore?.Set("externalIPs", value); } + } +#nullable restore +#else + public List ExternalIPs { + get { return BackingStore?.Get>("externalIPs"); } + set { BackingStore?.Set("externalIPs", value); } + } +#endif + /// The labels property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public Dictionary? Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#nullable restore +#else + public Dictionary Labels { + get { return BackingStore?.Get("labels"); } + set { BackingStore?.Set("labels", value); } + } +#endif + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The namespace property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public KubernetesNamespaceEvidence? Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#nullable restore +#else + public KubernetesNamespaceEvidence Namespace { + get { return BackingStore?.Get("namespace"); } + set { BackingStore?.Set("namespace", value); } + } +#endif + /// The selector property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public Dictionary? Selector { + get { return BackingStore?.Get("selector"); } + set { BackingStore?.Set("selector", value); } + } +#nullable restore +#else + public Dictionary Selector { + get { return BackingStore?.Get("selector"); } + set { BackingStore?.Set("selector", value); } + } +#endif + /// The servicePorts property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public List? ServicePorts { + get { return BackingStore?.Get?>("servicePorts"); } + set { BackingStore?.Set("servicePorts", value); } + } +#nullable restore +#else + public List ServicePorts { + get { return BackingStore?.Get>("servicePorts"); } + set { BackingStore?.Set("servicePorts", value); } + } +#endif + /// The serviceType property + public KubernetesServiceType? ServiceType { + get { return BackingStore?.Get("serviceType"); } + set { BackingStore?.Set("serviceType", value); } + } + /// + /// Instantiates a new kubernetesServiceEvidence and sets the default values. + /// + public KubernetesServiceEvidence() : base() { + OdataType = "#microsoft.graph.security.kubernetesServiceEvidence"; + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new KubernetesServiceEvidence CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesServiceEvidence(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"clusterIP", n => { ClusterIP = n.GetObjectValue(IpEvidence.CreateFromDiscriminatorValue); } }, + {"externalIPs", n => { ExternalIPs = n.GetCollectionOfObjectValues(IpEvidence.CreateFromDiscriminatorValue)?.ToList(); } }, + {"labels", n => { Labels = n.GetObjectValue(Dictionary.CreateFromDiscriminatorValue); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"namespace", n => { Namespace = n.GetObjectValue(KubernetesNamespaceEvidence.CreateFromDiscriminatorValue); } }, + {"selector", n => { Selector = n.GetObjectValue(Dictionary.CreateFromDiscriminatorValue); } }, + {"servicePorts", n => { ServicePorts = n.GetCollectionOfObjectValues(KubernetesServicePort.CreateFromDiscriminatorValue)?.ToList(); } }, + {"serviceType", n => { ServiceType = n.GetEnumValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteObjectValue("clusterIP", ClusterIP); + writer.WriteCollectionOfObjectValues("externalIPs", ExternalIPs); + writer.WriteObjectValue("labels", Labels); + writer.WriteStringValue("name", Name); + writer.WriteObjectValue("namespace", Namespace); + writer.WriteObjectValue("selector", Selector); + writer.WriteCollectionOfObjectValues("servicePorts", ServicePorts); + writer.WriteEnumValue("serviceType", ServiceType); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesServicePort.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServicePort.cs new file mode 100644 index 00000000000..fbffcef0a2e --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServicePort.cs @@ -0,0 +1,132 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using Microsoft.Kiota.Abstractions.Store; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models.Security { + public class KubernetesServicePort : IAdditionalDataHolder, IBackedModel, IParsable { + /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + public IDictionary AdditionalData { + get { return BackingStore?.Get>("additionalData"); } + set { BackingStore?.Set("additionalData", value); } + } + /// The appProtocol property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? AppProtocol { + get { return BackingStore?.Get("appProtocol"); } + set { BackingStore?.Set("appProtocol", value); } + } +#nullable restore +#else + public string AppProtocol { + get { return BackingStore?.Get("appProtocol"); } + set { BackingStore?.Set("appProtocol", value); } + } +#endif + /// Stores model information. + public IBackingStore BackingStore { get; private set; } + /// The name property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#nullable restore +#else + public string Name { + get { return BackingStore?.Get("name"); } + set { BackingStore?.Set("name", value); } + } +#endif + /// The nodePort property + public int? NodePort { + get { return BackingStore?.Get("nodePort"); } + set { BackingStore?.Set("nodePort", value); } + } + /// The OdataType property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? OdataType { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#nullable restore +#else + public string OdataType { + get { return BackingStore?.Get("@odata.type"); } + set { BackingStore?.Set("@odata.type", value); } + } +#endif + /// The port property + public int? Port { + get { return BackingStore?.Get("port"); } + set { BackingStore?.Set("port", value); } + } + /// The protocol property + public ContainerPortProtocol? Protocol { + get { return BackingStore?.Get("protocol"); } + set { BackingStore?.Set("protocol", value); } + } + /// The targetPort property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? TargetPort { + get { return BackingStore?.Get("targetPort"); } + set { BackingStore?.Set("targetPort", value); } + } +#nullable restore +#else + public string TargetPort { + get { return BackingStore?.Get("targetPort"); } + set { BackingStore?.Set("targetPort", value); } + } +#endif + /// + /// Instantiates a new kubernetesServicePort and sets the default values. + /// + public KubernetesServicePort() { + BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); + AdditionalData = new Dictionary(); + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static KubernetesServicePort CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new KubernetesServicePort(); + } + /// + /// The deserialization information for the current model + /// + public IDictionary> GetFieldDeserializers() { + return new Dictionary> { + {"appProtocol", n => { AppProtocol = n.GetStringValue(); } }, + {"name", n => { Name = n.GetStringValue(); } }, + {"nodePort", n => { NodePort = n.GetIntValue(); } }, + {"@odata.type", n => { OdataType = n.GetStringValue(); } }, + {"port", n => { Port = n.GetIntValue(); } }, + {"protocol", n => { Protocol = n.GetEnumValue(); } }, + {"targetPort", n => { TargetPort = n.GetStringValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + writer.WriteStringValue("appProtocol", AppProtocol); + writer.WriteStringValue("name", Name); + writer.WriteIntValue("nodePort", NodePort); + writer.WriteStringValue("@odata.type", OdataType); + writer.WriteIntValue("port", Port); + writer.WriteEnumValue("protocol", Protocol); + writer.WriteStringValue("targetPort", TargetPort); + writer.WriteAdditionalData(AdditionalData); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceType.cs b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceType.cs new file mode 100644 index 00000000000..86b70cb0c93 --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/Security/KubernetesServiceType.cs @@ -0,0 +1,18 @@ +using System.Runtime.Serialization; +using System; +namespace Microsoft.Graph.Models.Security { + public enum KubernetesServiceType { + [EnumMember(Value = "unknown")] + Unknown, + [EnumMember(Value = "clusterIP")] + ClusterIP, + [EnumMember(Value = "externalName")] + ExternalName, + [EnumMember(Value = "nodePort")] + NodePort, + [EnumMember(Value = "loadBalancer")] + LoadBalancer, + [EnumMember(Value = "unknownFutureValue")] + UnknownFutureValue, + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Security/MailClusterEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/MailClusterEvidence.cs index 68fc968d7c5..82f83825e13 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/MailClusterEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/MailClusterEvidence.cs @@ -80,6 +80,12 @@ public string Urn { set { BackingStore?.Set("urn", value); } } #endif + /// + /// Instantiates a new mailClusterEvidence and sets the default values. + /// + public MailClusterEvidence() : base() { + OdataType = "#microsoft.graph.security.mailClusterEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/MailboxEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/MailboxEvidence.cs index ba503452910..d642befafdf 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/MailboxEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/MailboxEvidence.cs @@ -47,6 +47,12 @@ public Microsoft.Graph.Models.Security.UserAccount UserAccount { set { BackingStore?.Set("userAccount", value); } } #endif + /// + /// Instantiates a new mailboxEvidence and sets the default values. + /// + public MailboxEvidence() : base() { + OdataType = "#microsoft.graph.security.mailboxEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/OauthApplicationEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/OauthApplicationEvidence.cs index 8a3e6a6e054..1d664dd91b9 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/OauthApplicationEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/OauthApplicationEvidence.cs @@ -61,6 +61,12 @@ public string Publisher { set { BackingStore?.Set("publisher", value); } } #endif + /// + /// Instantiates a new oauthApplicationEvidence and sets the default values. + /// + public OauthApplicationEvidence() : base() { + OdataType = "#microsoft.graph.security.oauthApplicationEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/ProcessEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/ProcessEvidence.cs index 60c25d4292a..f1432a5b5f5 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/ProcessEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/ProcessEvidence.cs @@ -100,6 +100,12 @@ public Microsoft.Graph.Models.Security.UserAccount UserAccount { set { BackingStore?.Set("userAccount", value); } } #endif + /// + /// Instantiates a new processEvidence and sets the default values. + /// + public ProcessEvidence() : base() { + OdataType = "#microsoft.graph.security.processEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/RegistryKeyEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/RegistryKeyEvidence.cs index f937a9d6a74..99ad8bde4fa 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/RegistryKeyEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/RegistryKeyEvidence.cs @@ -33,6 +33,12 @@ public string RegistryKey { set { BackingStore?.Set("registryKey", value); } } #endif + /// + /// Instantiates a new registryKeyEvidence and sets the default values. + /// + public RegistryKeyEvidence() : base() { + OdataType = "#microsoft.graph.security.registryKeyEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/RegistryValueEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/RegistryValueEvidence.cs index 02f4508a7cf..a90d5b9a0c7 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/RegistryValueEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/RegistryValueEvidence.cs @@ -89,6 +89,12 @@ public string RegistryValueType { set { BackingStore?.Set("registryValueType", value); } } #endif + /// + /// Instantiates a new registryValueEvidence and sets the default values. + /// + public RegistryValueEvidence() : base() { + OdataType = "#microsoft.graph.security.registryValueEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/SecurityGroupEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/SecurityGroupEvidence.cs index d9f17f2ac42..f72b7b29558 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/SecurityGroupEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/SecurityGroupEvidence.cs @@ -33,6 +33,12 @@ public string SecurityGroupId { set { BackingStore?.Set("securityGroupId", value); } } #endif + /// + /// Instantiates a new securityGroupEvidence and sets the default values. + /// + public SecurityGroupEvidence() : base() { + OdataType = "#microsoft.graph.security.securityGroupEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/UrlEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/UrlEvidence.cs index ec9f407e398..1794d74c9b6 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/UrlEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/UrlEvidence.cs @@ -19,6 +19,12 @@ public string Url { set { BackingStore?.Set("url", value); } } #endif + /// + /// Instantiates a new urlEvidence and sets the default values. + /// + public UrlEvidence() : base() { + OdataType = "#microsoft.graph.security.urlEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/Security/UserEvidence.cs b/src/Microsoft.Graph/Generated/Models/Security/UserEvidence.cs index 040474b3895..9acd2b23798 100644 --- a/src/Microsoft.Graph/Generated/Models/Security/UserEvidence.cs +++ b/src/Microsoft.Graph/Generated/Models/Security/UserEvidence.cs @@ -19,6 +19,12 @@ public Microsoft.Graph.Models.Security.UserAccount UserAccount { set { BackingStore?.Set("userAccount", value); } } #endif + /// + /// Instantiates a new userEvidence and sets the default values. + /// + public UserEvidence() : base() { + OdataType = "#microsoft.graph.security.userEvidence"; + } /// /// Creates a new instance of the appropriate class based on discriminator value /// diff --git a/src/Microsoft.Graph/Generated/Models/SubscribedSku.cs b/src/Microsoft.Graph/Generated/Models/SubscribedSku.cs index e3408d77396..827bf8a9b43 100644 --- a/src/Microsoft.Graph/Generated/Models/SubscribedSku.cs +++ b/src/Microsoft.Graph/Generated/Models/SubscribedSku.cs @@ -5,7 +5,7 @@ using System; namespace Microsoft.Graph.Models { public class SubscribedSku : Entity, IParsable { - /// The accountId property + /// The unique ID of the account this SKU belongs to. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? AccountId { @@ -19,7 +19,7 @@ public string AccountId { set { BackingStore?.Set("accountId", value); } } #endif - /// The accountName property + /// The name of the account this SKU belongs to. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? AccountName { @@ -33,7 +33,7 @@ public string AccountName { set { BackingStore?.Set("accountName", value); } } #endif - /// For example, 'User' or 'Company'. + /// The target class for this SKU. Only SKUs with target class User are assignable. Possible values are: 'User', 'Company'. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? AppliesTo { @@ -47,7 +47,7 @@ public string AppliesTo { set { BackingStore?.Set("appliesTo", value); } } #endif - /// Possible values are: Enabled, Warning, Suspended, Deleted, LockedOut. The capabilityStatus is Enabled if the prepaidUnits property has at least 1 unit that is enabled, and LockedOut if the customer cancelled their subscription. + /// Enabled indicates that the prepaidUnits property has at least one unit that is enabled. LockedOut indicates that the customer cancelled their subscription. Possible values are: Enabled, Warning, Suspended, Deleted, LockedOut. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public string? CapabilityStatus { @@ -80,7 +80,7 @@ public LicenseUnitsDetail PrepaidUnits { set { BackingStore?.Set("prepaidUnits", value); } } #endif - /// Information about the service plans that are available with the SKU. Not nullable + /// Information about the service plans that are available with the SKU. Not nullable. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable public List? ServicePlans { diff --git a/src/Microsoft.Graph/Generated/Models/TeamsAppSettings.cs b/src/Microsoft.Graph/Generated/Models/TeamsAppSettings.cs new file mode 100644 index 00000000000..ecc9f0f5d4a --- /dev/null +++ b/src/Microsoft.Graph/Generated/Models/TeamsAppSettings.cs @@ -0,0 +1,39 @@ +using Microsoft.Kiota.Abstractions.Serialization; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System; +namespace Microsoft.Graph.Models { + public class TeamsAppSettings : Entity, IParsable { + /// The allowUserRequestsForAppAccess property + public bool? AllowUserRequestsForAppAccess { + get { return BackingStore?.Get("allowUserRequestsForAppAccess"); } + set { BackingStore?.Set("allowUserRequestsForAppAccess", value); } + } + /// + /// Creates a new instance of the appropriate class based on discriminator value + /// + /// The parse node to use to read the discriminator value and create the object + public static new TeamsAppSettings CreateFromDiscriminatorValue(IParseNode parseNode) { + _ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); + return new TeamsAppSettings(); + } + /// + /// The deserialization information for the current model + /// + public new IDictionary> GetFieldDeserializers() { + return new Dictionary>(base.GetFieldDeserializers()) { + {"allowUserRequestsForAppAccess", n => { AllowUserRequestsForAppAccess = n.GetBoolValue(); } }, + }; + } + /// + /// Serializes information the current object + /// + /// Serialization writer to use to serialize this model + public new void Serialize(ISerializationWriter writer) { + _ = writer ?? throw new ArgumentNullException(nameof(writer)); + base.Serialize(writer); + writer.WriteBoolValue("allowUserRequestsForAppAccess", AllowUserRequestsForAppAccess); + } + } +} diff --git a/src/Microsoft.Graph/Generated/Models/Teamwork.cs b/src/Microsoft.Graph/Generated/Models/Teamwork.cs index 50c7c33cb48..248c71a1957 100644 --- a/src/Microsoft.Graph/Generated/Models/Teamwork.cs +++ b/src/Microsoft.Graph/Generated/Models/Teamwork.cs @@ -18,6 +18,20 @@ public List DeletedTeams { get { return BackingStore?.Get>("deletedTeams"); } set { BackingStore?.Set("deletedTeams", value); } } +#endif + /// The teamsAppSettings property +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public Microsoft.Graph.Models.TeamsAppSettings? TeamsAppSettings { + get { return BackingStore?.Get("teamsAppSettings"); } + set { BackingStore?.Set("teamsAppSettings", value); } + } +#nullable restore +#else + public Microsoft.Graph.Models.TeamsAppSettings TeamsAppSettings { + get { return BackingStore?.Get("teamsAppSettings"); } + set { BackingStore?.Set("teamsAppSettings", value); } + } #endif /// The workforceIntegrations property #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -47,6 +61,7 @@ public List WorkforceIntegrations { public new IDictionary> GetFieldDeserializers() { return new Dictionary>(base.GetFieldDeserializers()) { {"deletedTeams", n => { DeletedTeams = n.GetCollectionOfObjectValues(DeletedTeam.CreateFromDiscriminatorValue)?.ToList(); } }, + {"teamsAppSettings", n => { TeamsAppSettings = n.GetObjectValue(Microsoft.Graph.Models.TeamsAppSettings.CreateFromDiscriminatorValue); } }, {"workforceIntegrations", n => { WorkforceIntegrations = n.GetCollectionOfObjectValues(WorkforceIntegration.CreateFromDiscriminatorValue)?.ToList(); } }, }; } @@ -58,6 +73,7 @@ public List WorkforceIntegrations { _ = writer ?? throw new ArgumentNullException(nameof(writer)); base.Serialize(writer); writer.WriteCollectionOfObjectValues("deletedTeams", DeletedTeams); + writer.WriteObjectValue("teamsAppSettings", TeamsAppSettings); writer.WriteCollectionOfObjectValues("workforceIntegrations", WorkforceIntegrations); } } diff --git a/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs index 7273a09800c..34b800e32b9 100644 --- a/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Organization/Item/OrganizationItemRequestBuilder.cs @@ -112,8 +112,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.Organization.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the properties of the currently authenticated organization. In this case, `organization` is defined as a collection of exactly one record, and so its **ID** must be specified in the request. The **ID** is also known as the **tenantId** of the organization. - /// Find more info here + /// Update the properties of a organization object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -184,7 +184,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of the currently authenticated organization. In this case, `organization` is defined as a collection of exactly one record, and so its **ID** must be specified in the request. The **ID** is also known as the **tenantId** of the organization. + /// Update the properties of a organization object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Organization/Item/SetMobileDeviceManagementAuthority/SetMobileDeviceManagementAuthorityRequestBuilder.cs b/src/Microsoft.Graph/Generated/Organization/Item/SetMobileDeviceManagementAuthority/SetMobileDeviceManagementAuthorityRequestBuilder.cs index 7f4fcb08c6f..4d8f0615f41 100644 --- a/src/Microsoft.Graph/Generated/Organization/Item/SetMobileDeviceManagementAuthority/SetMobileDeviceManagementAuthorityRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Organization/Item/SetMobileDeviceManagementAuthority/SetMobileDeviceManagementAuthorityRequestBuilder.cs @@ -28,6 +28,7 @@ public SetMobileDeviceManagementAuthorityRequestBuilder(string rawUrl, IRequestA } /// /// Set mobile device management authority + /// 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/Organization/OrganizationRequestBuilder.cs b/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs index 7c3f2e18826..f0cc08d48c2 100644 --- a/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Organization/OrganizationRequestBuilder.cs @@ -60,8 +60,8 @@ public OrganizationRequestBuilder(Dictionary pathParameters, IRe public OrganizationRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/organization{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Retrieve a list of organization objects. - /// Find more info here + /// List properties and relationships of the organization objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -101,7 +101,7 @@ public async Task GetAsync(Action(requestInfo, Microsoft.Graph.Models.Organization.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Retrieve a list of organization objects. + /// List properties and relationships of the organization objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -155,7 +155,7 @@ public RequestInformation ToPostRequestInformation(Microsoft.Graph.Models.Organi return requestInfo; } /// - /// Retrieve a list of organization objects. + /// List properties and relationships of the organization objects. /// public class OrganizationRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs b/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs index 3cbc446072f..cf8cba19301 100644 --- a/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Policies/CrossTenantAccessPolicy/Partners/Item/IdentitySynchronization/IdentitySynchronizationRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, CrossTenantIdentitySyncPolicyPartner.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the user synchronization policy of a partner-specific configuration. - /// Find more info here + /// Create a cross-tenant user synchronization policy for a partner-specific configuration. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the user synchronization policy of a partner-specific configuration. + /// Create a cross-tenant user synchronization policy for a partner-specific configuration. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Reports/ReportsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Reports/ReportsRequestBuilder.cs index 7174a63d9ed..b67eeb684e9 100644 --- a/src/Microsoft.Graph/Generated/Reports/ReportsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Reports/ReportsRequestBuilder.cs @@ -187,7 +187,8 @@ public ReportsRequestBuilder(Dictionary pathParameters, IRequest public ReportsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/reports{?%24select,%24expand}", rawUrl) { } /// - /// Get reports + /// Read properties and relationships of the reportRoot object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -976,7 +977,8 @@ public ManagedDeviceEnrollmentTopFailuresWithPeriodRequestBuilder ManagedDeviceE return new ManagedDeviceEnrollmentTopFailuresWithPeriodRequestBuilder(PathParameters, RequestAdapter, period); } /// - /// Update reports + /// Update the properties of a reportRoot object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -997,7 +999,7 @@ public async Task PatchAsync(ReportRoot body, Action(requestInfo, ReportRoot.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Get reports + /// Read properties and relationships of the reportRoot object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -1023,7 +1025,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update reports + /// Update the properties of a reportRoot object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -1051,7 +1053,7 @@ public RequestInformation ToPatchRequestInformation(ReportRoot body, Action - /// Get reports + /// Read properties and relationships of the reportRoot object. /// public class ReportsRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/ReviewSets/Item/Queries/Item/MicrosoftGraphSecurityExport/MicrosoftGraphSecurityExportRequestBuilder.cs b/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/ReviewSets/Item/Queries/Item/MicrosoftGraphSecurityExport/MicrosoftGraphSecurityExportRequestBuilder.cs index 0821ea33a2f..58066376b97 100644 --- a/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/ReviewSets/Item/Queries/Item/MicrosoftGraphSecurityExport/MicrosoftGraphSecurityExportRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Security/Cases/EdiscoveryCases/Item/ReviewSets/Item/Queries/Item/MicrosoftGraphSecurityExport/MicrosoftGraphSecurityExportRequestBuilder.cs @@ -27,7 +27,7 @@ public MicrosoftGraphSecurityExportRequestBuilder(Dictionary pat public MicrosoftGraphSecurityExportRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/reviewSets/{ediscoveryReviewSet%2Did}/queries/{ediscoveryReviewSetQuery%2Did}/microsoft.graph.security.export", rawUrl) { } /// - /// Initiate an export from a microsoft.graph.security.ediscoveryReviewSetQuery. For details, see Export documents from a review set in eDiscovery (Premium). + /// Initiate an export from a ediscoveryReviewSetQuery. For details, see Export documents from a review set in eDiscovery (Premium). /// Find more info here /// /// The request body @@ -49,7 +49,7 @@ public async Task PostAsync(ExportPostRequestBody body, Action - /// Initiate an export from a microsoft.graph.security.ediscoveryReviewSetQuery. For details, see Export documents from a review set in eDiscovery (Premium). + /// Initiate an export from a ediscoveryReviewSetQuery. For details, see Export documents from a review set in eDiscovery (Premium). /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Sites/SitesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Sites/SitesRequestBuilder.cs index dccd81e3706..e12215ec27d 100644 --- a/src/Microsoft.Graph/Generated/Sites/SitesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Sites/SitesRequestBuilder.cs @@ -55,8 +55,8 @@ public SitesRequestBuilder(Dictionary pathParameters, IRequestAd public SitesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/sites{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is **createdDateTime**. The search filter is a free text search that uses multiple properties when retrieving the search results. - /// Find more info here + /// List all available [sites][] in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a **[$search][]** query against the `/sites` collection to find sites matching given keywords.If you want to list all sites across all geographies, refer to getAllSites][]. For more guidance about building applications that use site discovery for scanning purposes, see [Best practices for discovering files and detecting changes at scale. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -75,7 +75,7 @@ public async Task GetAsync(Action(requestInfo, SiteCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is **createdDateTime**. The search filter is a free text search that uses multiple properties when retrieving the search results. + /// List all available [sites][] in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a **[$search][]** query against the `/sites` collection to find sites matching given keywords.If you want to list all sites across all geographies, refer to getAllSites][]. For more guidance about building applications that use site discovery for scanning purposes, see [Best practices for discovering files and detecting changes at scale. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -101,7 +101,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is **createdDateTime**. The search filter is a free text search that uses multiple properties when retrieving the search results. + /// List all available [sites][] in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a **[$search][]** query against the `/sites` collection to find sites matching given keywords.If you want to list all sites across all geographies, refer to getAllSites][]. For more guidance about building applications that use site discovery for scanning purposes, see [Best practices for discovering files and detecting changes at scale. /// public class SitesRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index c56e1514c09..50afb02f3d8 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs index f536dcc8fa2..95d13e5a356 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index 33acdc21636..57ce78fb64d 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs index a1880dc674b..240fc535b73 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/Photo/PhotoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/Photo/PhotoRequestBuilder.cs index 64dba006d7e..09382eed19f 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/Photo/PhotoRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/Photo/PhotoRequestBuilder.cs @@ -33,25 +33,6 @@ public PhotoRequestBuilder(Dictionary pathParameters, IRequestAd public PhotoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/teams/{team%2Did}/photo{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property photo for teams - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// Find more info here /// @@ -93,30 +74,6 @@ public async Task PatchAsync(ProfilePhoto body, Action(requestInfo, ProfilePhoto.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property photo for teams - /// - /// 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 { - HttpMethod = Method.DELETE, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new PhotoRequestBuilderDeleteRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// /// Configuration for the request such as headers, query parameters, and middleware options. @@ -171,22 +128,6 @@ public RequestInformation ToPatchRequestInformation(ProfilePhoto body, Action - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class PhotoRequestBuilderDeleteRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new photoRequestBuilderDeleteRequestConfiguration and sets the default values. - /// - public PhotoRequestBuilderDeleteRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// public class PhotoRequestBuilderGetQueryParameters { diff --git a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index abbcc654103..b52b1f94748 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs index 83173c8de3d..4905195bd23 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs index ea4eb0bf5c4..75503809356 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs index c73a9a6eeae..21aa351bf54 100644 --- a/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 80dff385085..4637db55755 100644 --- a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs index d1533aff390..2ef6be5cd28 100644 --- a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index b6cd815dcf0..e7f457c15b0 100644 --- a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs index d3039965c29..3aab159971b 100644 --- a/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teamwork/DeletedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Localizations/Item/OrganizationalBrandingLocalizationItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teamwork/TeamsAppSettings/TeamsAppSettingsRequestBuilder.cs similarity index 52% rename from src/Microsoft.Graph/Generated/Localizations/Item/OrganizationalBrandingLocalizationItemRequestBuilder.cs rename to src/Microsoft.Graph/Generated/Teamwork/TeamsAppSettings/TeamsAppSettingsRequestBuilder.cs index 66a7fe6bca5..d2e6b4d76e6 100644 --- a/src/Microsoft.Graph/Generated/Localizations/Item/OrganizationalBrandingLocalizationItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teamwork/TeamsAppSettings/TeamsAppSettingsRequestBuilder.cs @@ -1,10 +1,3 @@ -using Microsoft.Graph.Localizations.Item.BackgroundImage; -using Microsoft.Graph.Localizations.Item.BannerLogo; -using Microsoft.Graph.Localizations.Item.CustomCSS; -using Microsoft.Graph.Localizations.Item.Favicon; -using Microsoft.Graph.Localizations.Item.HeaderLogo; -using Microsoft.Graph.Localizations.Item.SquareLogo; -using Microsoft.Graph.Localizations.Item.SquareLogoDark; using Microsoft.Graph.Models.ODataErrors; using Microsoft.Graph.Models; using Microsoft.Kiota.Abstractions.Serialization; @@ -15,64 +8,36 @@ using System.Threading.Tasks; using System.Threading; using System; -namespace Microsoft.Graph.Localizations.Item { +namespace Microsoft.Graph.Teamwork.TeamsAppSettings { /// - /// Provides operations to manage the collection of organizationalBrandingLocalization entities. + /// Provides operations to manage the teamsAppSettings property of the microsoft.graph.teamwork entity. /// - public class OrganizationalBrandingLocalizationItemRequestBuilder : BaseRequestBuilder { - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public BackgroundImageRequestBuilder BackgroundImage { get => - new BackgroundImageRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public BannerLogoRequestBuilder BannerLogo { get => - new BannerLogoRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public CustomCSSRequestBuilder CustomCSS { get => - new CustomCSSRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public FaviconRequestBuilder Favicon { get => - new FaviconRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public HeaderLogoRequestBuilder HeaderLogo { get => - new HeaderLogoRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public SquareLogoRequestBuilder SquareLogo { get => - new SquareLogoRequestBuilder(PathParameters, RequestAdapter); - } - /// Provides operations to manage the media for the organizationalBrandingLocalization entity. - public SquareLogoDarkRequestBuilder SquareLogoDark { get => - new SquareLogoDarkRequestBuilder(PathParameters, RequestAdapter); - } + public class TeamsAppSettingsRequestBuilder : BaseRequestBuilder { /// - /// Instantiates a new OrganizationalBrandingLocalizationItemRequestBuilder and sets the default values. + /// Instantiates a new TeamsAppSettingsRequestBuilder and sets the default values. /// /// Path parameters for the request /// The request adapter to use to execute the requests. - public OrganizationalBrandingLocalizationItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}{?%24select,%24expand}", pathParameters) { + public TeamsAppSettingsRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/teamwork/teamsAppSettings{?%24select,%24expand}", pathParameters) { } /// - /// Instantiates a new OrganizationalBrandingLocalizationItemRequestBuilder and sets the default values. + /// Instantiates a new TeamsAppSettingsRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. /// The request adapter to use to execute the requests. - public OrganizationalBrandingLocalizationItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/localizations/{organizationalBrandingLocalization%2Did}{?%24select,%24expand}", rawUrl) { + public TeamsAppSettingsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/teamwork/teamsAppSettings{?%24select,%24expand}", rawUrl) { } /// - /// Delete entity from localizations + /// Delete navigation property teamsAppSettings for teamwork /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable - public async Task DeleteAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) { + public async Task DeleteAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) { #nullable restore #else - public async Task DeleteAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) { + public async Task DeleteAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) { #endif var requestInfo = ToDeleteRequestInformation(requestConfiguration); var errorMapping = new Dictionary> { @@ -82,36 +47,36 @@ public async Task DeleteAsync(Action - /// Get entity from localizations by key + /// Get teamsAppSettings from teamwork /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable - public async Task GetAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) { + public async Task GetAsync(Action? requestConfiguration = default, CancellationToken cancellationToken = default) { #nullable restore #else - public async Task GetAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) { + public async Task GetAsync(Action requestConfiguration = default, CancellationToken cancellationToken = default) { #endif var requestInfo = ToGetRequestInformation(requestConfiguration); var errorMapping = new Dictionary> { {"4XX", ODataError.CreateFromDiscriminatorValue}, {"5XX", ODataError.CreateFromDiscriminatorValue}, }; - return await RequestAdapter.SendAsync(requestInfo, OrganizationalBrandingLocalization.CreateFromDiscriminatorValue, errorMapping, cancellationToken); + return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.TeamsAppSettings.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update entity in localizations + /// Update the navigation property teamsAppSettings in teamwork /// /// The request body /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable - public async Task PatchAsync(OrganizationalBrandingLocalization body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { + public async Task PatchAsync(Microsoft.Graph.Models.TeamsAppSettings body, Action? requestConfiguration = default, CancellationToken cancellationToken = default) { #nullable restore #else - public async Task PatchAsync(OrganizationalBrandingLocalization body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { + public async Task PatchAsync(Microsoft.Graph.Models.TeamsAppSettings body, Action requestConfiguration = default, CancellationToken cancellationToken = default) { #endif _ = body ?? throw new ArgumentNullException(nameof(body)); var requestInfo = ToPatchRequestInformation(body, requestConfiguration); @@ -119,18 +84,18 @@ public async Task PatchAsync(OrganizationalB {"4XX", ODataError.CreateFromDiscriminatorValue}, {"5XX", ODataError.CreateFromDiscriminatorValue}, }; - return await RequestAdapter.SendAsync(requestInfo, OrganizationalBrandingLocalization.CreateFromDiscriminatorValue, errorMapping, cancellationToken); + return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.TeamsAppSettings.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete entity from localizations + /// Delete navigation property teamsAppSettings for teamwork /// /// 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) { + public RequestInformation ToDeleteRequestInformation(Action? requestConfiguration = default) { #nullable restore #else - public RequestInformation ToDeleteRequestInformation(Action requestConfiguration = default) { + public RequestInformation ToDeleteRequestInformation(Action requestConfiguration = default) { #endif var requestInfo = new RequestInformation { HttpMethod = Method.DELETE, @@ -138,7 +103,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Get entity from localizations by key + /// Get teamsAppSettings from teamwork /// /// 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) { + public RequestInformation ToGetRequestInformation(Action? requestConfiguration = default) { #nullable restore #else - public RequestInformation ToGetRequestInformation(Action requestConfiguration = default) { + public RequestInformation ToGetRequestInformation(Action requestConfiguration = default) { #endif var requestInfo = new RequestInformation { HttpMethod = Method.GET, @@ -163,7 +128,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update entity in localizations + /// Update the navigation property teamsAppSettings in teamwork /// /// 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(OrganizationalBrandingLocalization body, Action? requestConfiguration = default) { + public RequestInformation ToPatchRequestInformation(Microsoft.Graph.Models.TeamsAppSettings body, Action? requestConfiguration = default) { #nullable restore #else - public RequestInformation ToPatchRequestInformation(OrganizationalBrandingLocalization body, Action requestConfiguration = default) { + public RequestInformation ToPatchRequestInformation(Microsoft.Graph.Models.TeamsAppSettings body, Action requestConfiguration = default) { #endif _ = body ?? throw new ArgumentNullException(nameof(body)); var requestInfo = new RequestInformation { @@ -192,7 +157,7 @@ public RequestInformation ToPatchRequestInformation(OrganizationalBrandingLocali requestInfo.Headers.Add("Accept", "application/json"); requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body); if (requestConfiguration != null) { - var requestConfig = new OrganizationalBrandingLocalizationItemRequestBuilderPatchRequestConfiguration(); + var requestConfig = new TeamsAppSettingsRequestBuilderPatchRequestConfiguration(); requestConfiguration.Invoke(requestConfig); requestInfo.AddRequestOptions(requestConfig.Options); requestInfo.AddHeaders(requestConfig.Headers); @@ -202,23 +167,23 @@ public RequestInformation ToPatchRequestInformation(OrganizationalBrandingLocali /// /// Configuration for the request such as headers, query parameters, and middleware options. /// - public class OrganizationalBrandingLocalizationItemRequestBuilderDeleteRequestConfiguration { + public class TeamsAppSettingsRequestBuilderDeleteRequestConfiguration { /// Request headers public RequestHeaders Headers { get; set; } /// Request options public IList Options { get; set; } /// - /// Instantiates a new OrganizationalBrandingLocalizationItemRequestBuilderDeleteRequestConfiguration and sets the default values. + /// Instantiates a new teamsAppSettingsRequestBuilderDeleteRequestConfiguration and sets the default values. /// - public OrganizationalBrandingLocalizationItemRequestBuilderDeleteRequestConfiguration() { + public TeamsAppSettingsRequestBuilderDeleteRequestConfiguration() { Options = new List(); Headers = new RequestHeaders(); } } /// - /// Get entity from localizations by key + /// Get teamsAppSettings from teamwork /// - public class OrganizationalBrandingLocalizationItemRequestBuilderGetQueryParameters { + public class TeamsAppSettingsRequestBuilderGetQueryParameters { /// Expand related entities #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable @@ -243,17 +208,17 @@ public class OrganizationalBrandingLocalizationItemRequestBuilderGetQueryParamet /// /// Configuration for the request such as headers, query parameters, and middleware options. /// - public class OrganizationalBrandingLocalizationItemRequestBuilderGetRequestConfiguration { + public class TeamsAppSettingsRequestBuilderGetRequestConfiguration { /// Request headers public RequestHeaders Headers { get; set; } /// Request options public IList Options { get; set; } /// Request query parameters - public OrganizationalBrandingLocalizationItemRequestBuilderGetQueryParameters QueryParameters { get; set; } = new OrganizationalBrandingLocalizationItemRequestBuilderGetQueryParameters(); + public TeamsAppSettingsRequestBuilderGetQueryParameters QueryParameters { get; set; } = new TeamsAppSettingsRequestBuilderGetQueryParameters(); /// - /// Instantiates a new OrganizationalBrandingLocalizationItemRequestBuilderGetRequestConfiguration and sets the default values. + /// Instantiates a new teamsAppSettingsRequestBuilderGetRequestConfiguration and sets the default values. /// - public OrganizationalBrandingLocalizationItemRequestBuilderGetRequestConfiguration() { + public TeamsAppSettingsRequestBuilderGetRequestConfiguration() { Options = new List(); Headers = new RequestHeaders(); } @@ -261,15 +226,15 @@ public OrganizationalBrandingLocalizationItemRequestBuilderGetRequestConfigurati /// /// Configuration for the request such as headers, query parameters, and middleware options. /// - public class OrganizationalBrandingLocalizationItemRequestBuilderPatchRequestConfiguration { + public class TeamsAppSettingsRequestBuilderPatchRequestConfiguration { /// Request headers public RequestHeaders Headers { get; set; } /// Request options public IList Options { get; set; } /// - /// Instantiates a new OrganizationalBrandingLocalizationItemRequestBuilderPatchRequestConfiguration and sets the default values. + /// Instantiates a new teamsAppSettingsRequestBuilderPatchRequestConfiguration and sets the default values. /// - public OrganizationalBrandingLocalizationItemRequestBuilderPatchRequestConfiguration() { + public TeamsAppSettingsRequestBuilderPatchRequestConfiguration() { Options = new List(); Headers = new RequestHeaders(); } diff --git a/src/Microsoft.Graph/Generated/Teamwork/TeamworkRequestBuilder.cs b/src/Microsoft.Graph/Generated/Teamwork/TeamworkRequestBuilder.cs index e936c9e4b71..b9464cf356c 100644 --- a/src/Microsoft.Graph/Generated/Teamwork/TeamworkRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Teamwork/TeamworkRequestBuilder.cs @@ -2,6 +2,7 @@ using Microsoft.Graph.Models; using Microsoft.Graph.Teamwork.DeletedTeams; using Microsoft.Graph.Teamwork.SendActivityNotificationToRecipients; +using Microsoft.Graph.Teamwork.TeamsAppSettings; using Microsoft.Graph.Teamwork.WorkforceIntegrations; using Microsoft.Kiota.Abstractions.Serialization; using Microsoft.Kiota.Abstractions; @@ -24,6 +25,10 @@ public class TeamworkRequestBuilder : BaseRequestBuilder { public SendActivityNotificationToRecipientsRequestBuilder SendActivityNotificationToRecipients { get => new SendActivityNotificationToRecipientsRequestBuilder(PathParameters, RequestAdapter); } + /// Provides operations to manage the teamsAppSettings property of the microsoft.graph.teamwork entity. + public TeamsAppSettingsRequestBuilder TeamsAppSettings { get => + new TeamsAppSettingsRequestBuilder(PathParameters, RequestAdapter); + } /// Provides operations to manage the workforceIntegrations property of the microsoft.graph.teamwork entity. public WorkforceIntegrationsRequestBuilder WorkforceIntegrations { get => new WorkforceIntegrationsRequestBuilder(PathParameters, RequestAdapter); diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 05e77d3d46a..0aba6404e50 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index cf06252259f..075cbfcccfb 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendar/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs index 7df62266153..efc264b45e0 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 3746bfbb906..df42e83a065 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendar/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 7f0a4ee57d0..eb608936605 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index b12d89b750e..6d541699846 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs index 31452e15268..b7f0fae5ec4 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 2027b935949..e987d59621f 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/CalendarGroups/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 31dabbf9ae3..e3723811ebb 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index a82c5e648b1..866e92ca483 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs index 984d634b8b4..86da955ca8b 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index c036ce9549f..0fdd7fc86ad 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/CalendarView/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs index e6f54c287f0..fca4d8d2811 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index b4a1dd4be38..c6225c818a2 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Calendars/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index 085680a1de8..eed0ebe24d3 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/MessagesRequestBuilder.cs index 951b99649d0..e336fe61753 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Chats/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified 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 /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs index 2daee0033d0..85933317ab7 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs index 161ea616b21..d3f39c6da14 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Events/Item/Instances/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs index 2fa0fb82c62..af59d8af202 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs index 9e285e4961c..99cd2673b33 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs index 5d44e0b4a3f..7310955e2e5 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs index 5d17dfc8d94..36d21edda28 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Channels/Item/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs index 4fc953a4f97..d79fed3d49b 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/Photo/PhotoRequestBuilder.cs @@ -33,25 +33,6 @@ public PhotoRequestBuilder(Dictionary pathParameters, IRequestAd public PhotoRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/photo{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property photo for users - /// - /// Cancellation token to use when cancelling requests - /// Configuration for the request such as headers, query parameters, and middleware options. -#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER -#nullable enable - public async Task 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> { - {"4XX", ODataError.CreateFromDiscriminatorValue}, - {"5XX", ODataError.CreateFromDiscriminatorValue}, - }; - await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// Find more info here /// @@ -93,30 +74,6 @@ public async Task PatchAsync(ProfilePhoto body, Action(requestInfo, ProfilePhoto.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property photo for users - /// - /// 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 { - HttpMethod = Method.DELETE, - UrlTemplate = UrlTemplate, - PathParameters = PathParameters, - }; - if (requestConfiguration != null) { - var requestConfig = new PhotoRequestBuilderDeleteRequestConfiguration(); - requestConfiguration.Invoke(requestConfig); - requestInfo.AddRequestOptions(requestConfig.Options); - requestInfo.AddHeaders(requestConfig.Headers); - } - return requestInfo; - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// /// Configuration for the request such as headers, query parameters, and middleware options. @@ -171,22 +128,6 @@ public RequestInformation ToPatchRequestInformation(ProfilePhoto body, Action - /// Configuration for the request such as headers, query parameters, and middleware options. - /// - public class PhotoRequestBuilderDeleteRequestConfiguration { - /// Request headers - public RequestHeaders Headers { get; set; } - /// Request options - public IList Options { get; set; } - /// - /// Instantiates a new photoRequestBuilderDeleteRequestConfiguration and sets the default values. - /// - public PhotoRequestBuilderDeleteRequestConfiguration() { - Options = new List(); - Headers = new RequestHeaders(); - } - } - /// /// Get the specified profilePhoto or its metadata (**profilePhoto** properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they are stored in Azure Active Directory. You can get the metadata of the largest available photo, or specify a size to get the metadata for that photo size.If the size you request is not available, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of photo will be available for download. /// public class PhotoRequestBuilderGetQueryParameters { diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs index 2fd0f35bcbd..7d78610f04c 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/Item/ConversationMemberItemRequestBuilder.cs @@ -68,8 +68,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMember.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the role of a conversationMember in a team or channel. - /// Find more info here + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -140,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the role of a conversationMember in a team or channel. + /// Update the role of a conversationMember in a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs index 6042901bc09..2927fe7ad00 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Members/MembersRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ConversationMemberCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. - /// Find more info here + /// Add a conversationMember to a channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`. + /// Add a conversationMember to a channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs index 0c36bbbc723..94e39b249dc 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/Item/Replies/RepliesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new reply to a chatMessage in a specified channel. - /// Find more info here + /// Create a new reply to a chatMessage in a specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new reply to a chatMessage in a specified channel. + /// Create a new reply to a chatMessage in a specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs index ddf2a5045cd..a9b3d527337 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/JoinedTeams/Item/PrimaryChannel/Messages/MessagesRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, ChatMessageCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Send a new chatMessage in the specified channel or a chat. - /// Find more info here + /// Send a new chatMessage in the specified channel. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Send a new chatMessage in the specified channel or a chat. + /// Send a new chatMessage in the specified channel. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs index 7c39ea82656..0b4dedad0a6 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/ChildFoldersRequestBuilder.cs @@ -35,17 +35,17 @@ public Microsoft.Graph.Users.Item.MailFolders.Item.ChildFolders.Item.MailFolderI /// /// Path parameters for the request /// The request adapter to use to execute the requests. - public ChildFoldersRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders{?%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { + public ChildFoldersRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders{?includeHiddenFolders*,%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", pathParameters) { } /// /// Instantiates a new ChildFoldersRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. /// The request adapter to use to execute the requests. - public ChildFoldersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders{?%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { + public ChildFoldersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders{?includeHiddenFolders*,%24top,%24skip,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Get the folder collection under the specified folder. You can use the `.../me/mailFolders` shortcut to get the top-level folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter _includeHiddenFolders_ to include them in the response. + /// The collection of child folders in the mailFolder. /// Find more info here /// /// Cancellation token to use when cancelling requests @@ -87,7 +87,7 @@ public async Task PostAsync(MailFolder body, Action(requestInfo, MailFolder.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Get the folder collection under the specified folder. You can use the `.../me/mailFolders` shortcut to get the top-level folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter _includeHiddenFolders_ to include them in the response. + /// The collection of child folders in the mailFolder. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -141,7 +141,7 @@ public RequestInformation ToPostRequestInformation(MailFolder body, Action - /// Get the folder collection under the specified folder. You can use the `.../me/mailFolders` shortcut to get the top-level folder collection and navigate to another folder. By default, this operation does not return hidden folders. Use a query parameter _includeHiddenFolders_ to include them in the response. + /// The collection of child folders in the mailFolder. /// public class ChildFoldersRequestBuilderGetQueryParameters { /// Include count of items @@ -166,6 +166,14 @@ public class ChildFoldersRequestBuilderGetQueryParameters { #else [QueryParameter("%24filter")] public string Filter { get; set; } +#endif + /// Include Hidden Folders +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? IncludeHiddenFolders { get; set; } +#nullable restore +#else + public string IncludeHiddenFolders { get; set; } #endif /// Order items by property values #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs index 27a02b38151..2226a037f73 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/MailFolderItemRequestBuilder.cs @@ -38,14 +38,14 @@ public class MailFolderItemRequestBuilder : BaseRequestBuilder { /// /// Path parameters for the request /// The request adapter to use to execute the requests. - public MailFolderItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?%24select,%24expand}", pathParameters) { + public MailFolderItemRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?includeHiddenFolders*,%24select,%24expand}", pathParameters) { } /// /// Instantiates a new MailFolderItemRequestBuilder and sets the default values. /// /// The raw URL to use for the request builder. /// The request adapter to use to execute the requests. - public MailFolderItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?%24select,%24expand}", rawUrl) { + public MailFolderItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}{?includeHiddenFolders*,%24select,%24expand}", rawUrl) { } /// /// Delete navigation property childFolders for users @@ -213,6 +213,14 @@ public class MailFolderItemRequestBuilderGetQueryParameters { #else [QueryParameter("%24expand")] public string[] Expand { get; set; } +#endif + /// Include Hidden Folders +#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER +#nullable enable + public string? IncludeHiddenFolders { get; set; } +#nullable restore +#else + public string IncludeHiddenFolders { get; set; } #endif /// Select properties to be returned #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index 62993250b8f..351366f1734 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/ChildFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index 28482133c06..c46dc680370 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/MailFolders/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs index cd6796d8a64..8f9854e0644 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/BypassActivationLock/BypassActivationLockRequestBuilder.cs @@ -28,6 +28,7 @@ public BypassActivationLockRequestBuilder(string rawUrl, IRequestAdapter request } /// /// Bypass activation lock + /// 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/Users/Item/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs index 42d1ba760f2..da360a3c35f 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/CleanWindowsDevice/CleanWindowsDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public CleanWindowsDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAd } /// /// Clean Windows device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs index 369be1eb7d0..83d31bdaa50 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeleteUserFromSharedAppleDevice/DeleteUserFromSharedAppleDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public DeleteUserFromSharedAppleDeviceRequestBuilder(string rawUrl, IRequestAdap } /// /// Delete user from shared Apple device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs index 39d57053a55..63738f3135a 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DeviceCategory/DeviceCategoryRequestBuilder.cs @@ -47,7 +47,8 @@ public async Task DeleteAsync(Action - /// Device category + /// Read properties and relationships of the deviceCategory object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +67,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.DeviceCategory.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property deviceCategory in users + /// Update the properties of a deviceCategory object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -111,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device category + /// Read properties and relationships of the deviceCategory object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +139,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property deviceCategory in users + /// Update the properties of a deviceCategory object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +183,7 @@ public DeviceCategoryRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device category + /// Read properties and relationships of the deviceCategory object. /// public class DeviceCategoryRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs index bfc256e7ff2..1db843fbc1a 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/DisableLostMode/DisableLostModeRequestBuilder.cs @@ -28,6 +28,7 @@ public DisableLostModeRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Disable lost mode + /// 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/Users/Item/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs index 4570390ca33..5b567e1d9e1 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/LocateDevice/LocateDeviceRequestBuilder.cs @@ -28,6 +28,7 @@ public LocateDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) } /// /// Locate a device + /// 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/Users/Item/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs index a2a74be8b71..833249ba9cc 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/LogoutSharedAppleDeviceActiveUser/LogoutSharedAppleDeviceActiveUserRequestBuilder.cs @@ -28,6 +28,7 @@ public LogoutSharedAppleDeviceActiveUserRequestBuilder(string rawUrl, IRequestAd } /// /// Logout shared Apple device active user + /// 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/Users/Item/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs index f06abb8689b..66571db3f71 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RebootNow/RebootNowRequestBuilder.cs @@ -28,6 +28,7 @@ public RebootNowRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Reboot device + /// 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/Users/Item/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs index e0946004854..3b4e0946e5a 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RecoverPasscode/RecoverPasscodeRequestBuilder.cs @@ -28,6 +28,7 @@ public RecoverPasscodeRequestBuilder(string rawUrl, IRequestAdapter requestAdapt } /// /// Recover passcode + /// 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/Users/Item/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs index b6d48d1148a..a6fae01f47a 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RemoteLock/RemoteLockRequestBuilder.cs @@ -28,6 +28,7 @@ public RemoteLockRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : } /// /// Remote lock + /// 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/Users/Item/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs index 9c1b7d00e37..3fe4900efbe 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/RequestRemoteAssistance/RequestRemoteAssistanceRequestBuilder.cs @@ -28,6 +28,7 @@ public RequestRemoteAssistanceRequestBuilder(string rawUrl, IRequestAdapter requ } /// /// Request remote assistance + /// 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/Users/Item/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs index 795cad944b7..b0e6412eb5e 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/ResetPasscode/ResetPasscodeRequestBuilder.cs @@ -28,6 +28,7 @@ public ResetPasscodeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter } /// /// Reset passcode + /// 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/Users/Item/ManagedDevices/Item/Retire/RetireRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Retire/RetireRequestBuilder.cs index b358abc10d3..54e2765e9ff 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Retire/RetireRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Retire/RetireRequestBuilder.cs @@ -28,6 +28,7 @@ public RetireRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : bas } /// /// Retire a device + /// 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/Users/Item/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs index e24d2124070..69344ed2ad5 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/ShutDown/ShutDownRequestBuilder.cs @@ -28,6 +28,7 @@ public ShutDownRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : b } /// /// Shut down device + /// 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/Users/Item/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs index 8047398213c..ce47ab4e162 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/SyncDevice/SyncDeviceRequestBuilder.cs @@ -27,7 +27,8 @@ public SyncDeviceRequestBuilder(Dictionary pathParameters, IRequ public SyncDeviceRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/syncDevice", rawUrl) { } /// - /// Invoke action syncDevice + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action syncDevice + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs index edb171d0867..da190497d0c 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/UpdateWindowsDeviceAccount/UpdateWindowsDeviceAccountRequestBuilder.cs @@ -27,7 +27,8 @@ public UpdateWindowsDeviceAccountRequestBuilder(Dictionary pathP public UpdateWindowsDeviceAccountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/updateWindowsDeviceAccount", rawUrl) { } /// - /// Invoke action updateWindowsDeviceAccount + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(UpdateWindowsDeviceAccountPostRequestBody body, Acti await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); } /// - /// Invoke action updateWindowsDeviceAccount + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Users/UsersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Users/UsersRequestBuilder.cs index 1fe9ade6dad..988fdb030e5 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Users/UsersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Users/UsersRequestBuilder.cs @@ -28,7 +28,8 @@ public UsersRequestBuilder(Dictionary pathParameters, IRequestAd public UsersRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/users{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,7 @@ public async Task GetAsync(Action(requestInfo, UserCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -73,7 +74,7 @@ public RequestInformation ToGetRequestInformation(Action - /// The primary users associated with the managed device. + /// List properties and relationships of the user objects. /// public class UsersRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs index 9ed10b477ed..1a70b27bffd 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderScan/WindowsDefenderScanRequestBuilder.cs @@ -27,7 +27,8 @@ public WindowsDefenderScanRequestBuilder(Dictionary pathParamete public WindowsDefenderScanRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/windowsDefenderScan", rawUrl) { } /// - /// Invoke action windowsDefenderScan + /// Not yet documented + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -48,7 +49,7 @@ public async Task PostAsync(WindowsDefenderScanPostRequestBody body, Action - /// Invoke action windowsDefenderScan + /// Not yet documented /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs index 0f8617d47a7..55b209daf70 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsDefenderUpdateSignatures/WindowsDefenderUpdateSignaturesRequestBuilder.cs @@ -27,7 +27,8 @@ public WindowsDefenderUpdateSignaturesRequestBuilder(Dictionary public WindowsDefenderUpdateSignaturesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/windowsDefenderUpdateSignatures", rawUrl) { } /// - /// Invoke action windowsDefenderUpdateSignatures + /// Not yet documented + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -46,7 +47,7 @@ public async Task PostAsync(Action - /// Invoke action windowsDefenderUpdateSignatures + /// Not yet documented /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs index 01a41f67947..9e4fa2bf0fe 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/DetectedMalwareStateRequestBuilder.cs @@ -40,7 +40,8 @@ public DetectedMalwareStateRequestBuilder(Dictionary pathParamet public DetectedMalwareStateRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) { } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -59,7 +60,8 @@ public async Task GetAsync(Action(requestInfo, WindowsDeviceMalwareStateCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create new navigation property to detectedMalwareState for users + /// Create a new windowsDeviceMalwareState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -80,7 +82,7 @@ public async Task PostAsync(WindowsDeviceMalwareState return await RequestAdapter.SendAsync(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -106,7 +108,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create new navigation property to detectedMalwareState for users + /// Create a new windowsDeviceMalwareState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -134,7 +136,7 @@ public RequestInformation ToPostRequestInformation(WindowsDeviceMalwareState bod return requestInfo; } /// - /// Device malware list + /// List properties and relationships of the windowsDeviceMalwareState objects. /// public class DetectedMalwareStateRequestBuilderGetQueryParameters { /// Include count of items diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs index 35ca25b376e..4cc5e018b9c 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/DetectedMalwareState/Item/WindowsDeviceMalwareStateItemRequestBuilder.cs @@ -28,7 +28,8 @@ public WindowsDeviceMalwareStateItemRequestBuilder(Dictionary pa public WindowsDeviceMalwareStateItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete navigation property detectedMalwareState for users + /// Deletes a windowsDeviceMalwareState. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -47,7 +48,8 @@ public async Task DeleteAsync(Action - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -66,7 +68,8 @@ public async Task GetAsync(Action(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property detectedMalwareState in users + /// Update the properties of a windowsDeviceMalwareState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -87,7 +90,7 @@ public async Task PatchAsync(WindowsDeviceMalwareStat return await RequestAdapter.SendAsync(requestInfo, WindowsDeviceMalwareState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Delete navigation property detectedMalwareState for users + /// Deletes a windowsDeviceMalwareState. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -111,7 +114,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -137,7 +140,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property detectedMalwareState in users + /// Update the properties of a windowsDeviceMalwareState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -181,7 +184,7 @@ public WindowsDeviceMalwareStateItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Device malware list + /// Read properties and relationships of the windowsDeviceMalwareState object. /// public class WindowsDeviceMalwareStateItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs index 29a1567d0a7..b85fd2292c4 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/WindowsProtectionState/WindowsProtectionStateRequestBuilder.cs @@ -52,7 +52,8 @@ public async Task DeleteAsync(Action - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -71,7 +72,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.WindowsProtectionState.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the navigation property windowsProtectionState in users + /// Update the properties of a windowsProtectionState object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -116,7 +118,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -142,7 +144,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the navigation property windowsProtectionState in users + /// Update the properties of a windowsProtectionState object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -186,7 +188,7 @@ public WindowsProtectionStateRequestBuilderDeleteRequestConfiguration() { } } /// - /// The device protection status. This property is read-only. + /// Read properties and relationships of the windowsProtectionState object. /// public class WindowsProtectionStateRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs index 5da88365297..dddc6997c71 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/ManagedDevices/Item/Wipe/WipeRequestBuilder.cs @@ -28,6 +28,7 @@ public WipeRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base( } /// /// Wipe a device + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs index c5edee5de8d..5ded0bccdb6 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/Attachments/AttachmentsRequestBuilder.cs @@ -65,8 +65,8 @@ public async Task GetAsync(Action(requestInfo, AttachmentCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. - /// Find more info here + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you can add an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + /// Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs index a46dac835bd..76bb6f32c6d 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/Messages/Item/MessageItemRequestBuilder.cs @@ -109,7 +109,7 @@ public async Task DeleteAsync(Action /// The messages in a mailbox or folder. Read-only. Nullable. - /// Find more info here + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -128,8 +128,8 @@ public async Task DeleteAsync(Action(requestInfo, Microsoft.Graph.Models.Message.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the properties of an eventMessage object. - /// Find more info here + /// Update the properties of a message object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -200,7 +200,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of an eventMessage object. + /// Update the properties of a message object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/Users/Item/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs index 778b28e231b..e821350b954 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/RemoveAllDevicesFromManagement/RemoveAllDevicesFromManagementRequestBuilder.cs @@ -28,6 +28,7 @@ public RemoveAllDevicesFromManagementRequestBuilder(string rawUrl, IRequestAdapt } /// /// Retire all devices from management for this user + /// 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/Users/Item/UserItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs index 983bcc0b0e8..e79174dd3b7 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs @@ -370,8 +370,8 @@ public UserItemRequestBuilder(Dictionary pathParameters, IReques public UserItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/users/{user%2Did}{?%24select,%24expand}", rawUrl) { } /// - /// Delete user. When deleted, user resources are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted. To learn more, see deletedItems. - /// Find more info here + /// Deletes a user. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -400,8 +400,8 @@ public ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder ExportDevic return new ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder(PathParameters, RequestAdapter, skip, top); } /// - /// Retrieve the properties and relationships of user object. - /// Find more info here + /// Read properties and relationships of the user object. + /// Find more info here /// /// Cancellation token to use when cancelling requests /// Configuration for the request such as headers, query parameters, and middleware options. @@ -420,8 +420,8 @@ public ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder ExportDevic return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.User.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. - /// Find more info here + /// Update the properties of a user object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -452,7 +452,7 @@ public ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder ReminderViewWi return new ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder(PathParameters, RequestAdapter, endDateTime, startDateTime); } /// - /// Delete user. When deleted, user resources are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted. To learn more, see deletedItems. + /// Deletes a user. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -476,7 +476,7 @@ public RequestInformation ToDeleteRequestInformation(Action - /// Retrieve the properties and relationships of user object. + /// Read properties and relationships of the user object. /// /// Configuration for the request such as headers, query parameters, and middleware options. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER @@ -502,7 +502,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. + /// Update the properties of a user object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. @@ -546,7 +546,7 @@ public UserItemRequestBuilderDeleteRequestConfiguration() { } } /// - /// Retrieve the properties and relationships of user object. + /// Read properties and relationships of the user object. /// public class UserItemRequestBuilderGetQueryParameters { /// Expand related entities diff --git a/src/Microsoft.Graph/Generated/Users/Item/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/Item/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs index c6fee2fc992..934658c2f70 100644 --- a/src/Microsoft.Graph/Generated/Users/Item/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/Item/WipeManagedAppRegistrationsByDeviceTag/WipeManagedAppRegistrationsByDeviceTagRequestBuilder.cs @@ -28,6 +28,7 @@ public WipeManagedAppRegistrationsByDeviceTagRequestBuilder(string rawUrl, IRequ } /// /// Issues a wipe operation on an app registration with specified device tag. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests diff --git a/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs b/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs index dbd020406f0..0f8cc55731f 100644 --- a/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs +++ b/src/Microsoft.Graph/Generated/Users/UsersRequestBuilder.cs @@ -80,8 +80,8 @@ public async Task GetAsync(Action(requestInfo, UserCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken); } /// - /// Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. - /// Find more info here + /// Create a new user object. + /// Find more info here /// /// The request body /// Cancellation token to use when cancelling requests @@ -128,7 +128,7 @@ public RequestInformation ToGetRequestInformation(Action - /// Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. + /// Create a new user object. /// /// The request body /// Configuration for the request such as headers, query parameters, and middleware options. diff --git a/src/Microsoft.Graph/Generated/kiota-lock.json b/src/Microsoft.Graph/Generated/kiota-lock.json index 8bea0eb54b2..fa898fc93f8 100644 --- a/src/Microsoft.Graph/Generated/kiota-lock.json +++ b/src/Microsoft.Graph/Generated/kiota-lock.json @@ -1,5 +1,5 @@ { - "descriptionHash": "F92B13BAE36EAAA79E949CB1D6A4FE8619AD8FF993741240693884E7112C18B41DE086A12CDEA1541478EECDC37258482B8FBCD30EEB50FC7EA19664BA0F8304", + "descriptionHash": "6F078C360F81D8DCC032952C40E165CC3BFC9190311182A990791AE77D6C6FC49249CF2896AF415ECE42B92327D89684B5809D9DD3E19A33373878E021807566", "descriptionLocation": "/mnt/vss/_work/1/s/msgraph-metadata/clean_v10_openapi/openapi.yaml", "lockFileVersion": "1.0.0", "kiotaVersion": "1.5.0", diff --git a/src/Microsoft.Graph/Microsoft.Graph.csproj b/src/Microsoft.Graph/Microsoft.Graph.csproj index ce5708ae379..a01e6dff8ba 100644 --- a/src/Microsoft.Graph/Microsoft.Graph.csproj +++ b/src/Microsoft.Graph/Microsoft.Graph.csproj @@ -22,7 +22,7 @@ false 35MSSharedLib1024.snk true - 5.19.0 + 5.20.0