diff --git a/.github/workflows/auto-merge-dependabot.yml b/.github/workflows/auto-merge-dependabot.yml
index 86df4202f96..6e5953f569e 100644
--- a/.github/workflows/auto-merge-dependabot.yml
+++ b/.github/workflows/auto-merge-dependabot.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
- uses: dependabot/fetch-metadata@v1.5.1
+ uses: dependabot/fetch-metadata@v1.6.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7218e33ac43..ec3e87c6b55 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,14 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v
## [Unreleased]
+## [5.16.0] - 2023-06-27
+
+- Fixes missing `Model` query parameter for Channels.GetAllMessages (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1979)
+- Fixes missing `StartDateTime` and `EndDateTime` query parameters for Event delta functions (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1860)
+- Fixes missing `PostAsync()` method for AdministrativeUnits[""].Members (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1828)
+- Fixes stream buffering for Stream response (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1954)
+- Latest metadata updates from 27th June 2023
+
## [5.15.0] - 2023-06-21
- Fixes incorrect naming for the InnerError property in MainError (https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1916)
diff --git a/src/Microsoft.Graph/Generated/Chats/GetAllMessages/GetAllMessagesRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/GetAllMessages/GetAllMessagesRequestBuilder.cs
index 7e878397927..47f0e98cdc6 100644
--- a/src/Microsoft.Graph/Generated/Chats/GetAllMessages/GetAllMessagesRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/GetAllMessages/GetAllMessagesRequestBuilder.cs
@@ -17,14 +17,14 @@ public class GetAllMessagesRequestBuilder : BaseRequestBuilder {
///
/// Path parameters for the request
/// The request adapter to use to execute the requests.
- public GetAllMessagesRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/getAllMessages(){?%24top,%24skip,%24search,%24filter,%24count,%24select,%24orderby}", pathParameters) {
+ public GetAllMessagesRequestBuilder(Dictionary pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/getAllMessages(){?model*,%24top,%24skip,%24search,%24filter,%24count,%24select,%24orderby}", pathParameters) {
}
///
/// Instantiates a new GetAllMessagesRequestBuilder and sets the default values.
///
/// The raw URL to use for the request builder.
/// The request adapter to use to execute the requests.
- public GetAllMessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/getAllMessages(){?%24top,%24skip,%24search,%24filter,%24count,%24select,%24orderby}", rawUrl) {
+ public GetAllMessagesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/chats/getAllMessages(){?model*,%24top,%24skip,%24search,%24filter,%24count,%24select,%24orderby}", rawUrl) {
}
///
/// Invoke function getAllMessages
@@ -87,6 +87,14 @@ public class GetAllMessagesRequestBuilderGetQueryParameters {
#else
[QueryParameter("%24filter")]
public string Filter { get; set; }
+#endif
+ /// The payment model for the API
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? Model { get; set; }
+#nullable restore
+#else
+ public string Model { get; set; }
#endif
/// Order items by property values
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
diff --git a/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs b/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
index 6fc7c92d902..62ed3992c86 100644
--- a/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Chats/Item/Members/Item/ConversationMemberItemRequestBuilder.cs
@@ -48,8 +48,8 @@ public async Task DeleteAsync(Action
- /// Retrieve a conversationMember from a chat or channel.
- /// Find more info here
+ /// Retrieve a conversationMember from a chat.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -113,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// Retrieve a conversationMember from a chat or channel.
+ /// Retrieve a conversationMember from a chat.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -183,7 +183,7 @@ public ConversationMemberItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// Retrieve a conversationMember from a chat or channel.
+ /// Retrieve a conversationMember from a chat.
///
public class ConversationMemberItemRequestBuilderGetQueryParameters {
/// Expand related entities
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 ebb8e2f76bf..0bb1445adca 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 chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
- /// Find more info here
+ /// Send a new chatMessage in the specified channel or a chat.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -113,7 +113,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ /// Send a new chatMessage in the specified channel or a chat.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
diff --git a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
index d76918f2c7f..0e35b3e8091 100644
--- a/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/Communications/Calls/Item/Participants/Invite/InviteRequestBuilder.cs
@@ -28,8 +28,8 @@ public InviteRequestBuilder(Dictionary pathParameters, IRequestA
public InviteRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/participants/invite", rawUrl) {
}
///
- /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
- /// Find more info here
+ /// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -50,7 +50,7 @@ public async Task PostAsync(InvitePostRequestBody b
return await RequestAdapter.SendAsync(requestInfo, InviteParticipantsOperation.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
+ /// Invite participants to the active call. For more information about how to handle operations, see commsOperation.
///
/// 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 c01ac9c2c91..9e3954c1c52 100644
--- a/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
+++ b/src/Microsoft.Graph/Generated/DeviceAppManagement/DeviceAppManagementRequestBuilder.cs
@@ -103,7 +103,8 @@ public DeviceAppManagementRequestBuilder(Dictionary pathParamete
public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement{?%24select,%24expand}", rawUrl) {
}
///
- /// Get deviceAppManagement
+ /// Read properties and relationships of the deviceAppManagement object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -122,7 +123,8 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.DeviceAppManagement.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Update deviceAppManagement
+ /// Update the properties of a deviceAppManagement object.
+ /// Find more info here
///
/// The request body
/// Cancellation token to use when cancelling requests
@@ -143,7 +145,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
return await RequestAdapter.SendAsync(requestInfo, Microsoft.Graph.Models.DeviceAppManagement.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
///
- /// Get deviceAppManagement
+ /// Read properties and relationships of the deviceAppManagement object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -169,7 +171,7 @@ public RequestInformation ToGetRequestInformation(Action
- /// Update deviceAppManagement
+ /// Update the properties of a deviceAppManagement object.
///
/// The request body
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -197,7 +199,7 @@ public RequestInformation ToPatchRequestInformation(Microsoft.Graph.Models.Devic
return requestInfo;
}
///
- /// Get deviceAppManagement
+ /// Read properties and relationships of the deviceAppManagement object.
///
public class DeviceAppManagementRequestBuilderGetQueryParameters {
/// Expand related entities
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..8092b8c23a2 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 managedAppProtection 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 managedAppProtection 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 managedAppProtection 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..cbb2f9a1fce 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..4f1510bf602 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..7ee9877c22c 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..f8a60f4ea79 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 managedAppRegistration object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -126,7 +127,7 @@ public RequestInformation ToDeleteRequestInformation(Action
- /// The managed app registrations.
+ /// Read properties and relationships of the managedAppRegistration object.
///
/// Configuration for the request such as headers, query parameters, and middleware options.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
@@ -196,7 +197,7 @@ public ManagedAppRegistrationItemRequestBuilderDeleteRequestConfiguration() {
}
}
///
- /// The managed app registrations.
+ /// Read properties and relationships of the managedAppRegistration 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..4d3c2b578cc 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 androidManagedAppRegistration 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 androidManagedAppRegistration 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 androidManagedAppRegistration 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..71c6eb243b0 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 managedAppStatusRaw objects.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -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 managedAppStatusRaw 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 managedAppStatusRaw 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..09d6de43466 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 managedEBookAssignment 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 iosVppEBookAssignment 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 managedEBookAssignment 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 iosVppEBookAssignment 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 managedEBookAssignment 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..ca9b4602ede 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 managedEBookAssignment object.
+ /// Find more info here
///
/// Cancellation token to use when cancelling requests
/// Configuration for the request such as headers, query parameters, and middleware options.
@@ -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 managedEBookAssignment 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 managedEBookAssignment 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