Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO NOT MERGE - SMOKE TEST #2004

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public async Task DeleteAsync(Action<ConversationMemberItemRequestBuilderDeleteR
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
/// <summary>
/// Retrieve a conversationMember from a chat or channel.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0" />
/// Retrieve a conversationMember from a chat.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand Down Expand Up @@ -113,7 +113,7 @@ public RequestInformation ToDeleteRequestInformation(Action<ConversationMemberIt
return requestInfo;
}
/// <summary>
/// Retrieve a conversationMember from a chat or channel.
/// Retrieve a conversationMember from a chat.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down Expand Up @@ -183,7 +183,7 @@ public ConversationMemberItemRequestBuilderDeleteRequestConfiguration() {
}
}
/// <summary>
/// Retrieve a conversationMember from a chat or channel.
/// Retrieve a conversationMember from a chat.
/// </summary>
public class ConversationMemberItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ public AndroidManagedAppProtectionsRequestBuilder(Dictionary<string, object> pat
public AndroidManagedAppProtectionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/androidManagedAppProtections{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// List properties and relationships of the androidManagedAppProtection objects.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-androidmanagedappprotection-list?view=graph-rest-1.0" />
/// Android managed app policies.
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -60,8 +59,7 @@ public async Task<AndroidManagedAppProtectionCollectionResponse> GetAsync(Action
return await RequestAdapter.SendAsync<AndroidManagedAppProtectionCollectionResponse>(requestInfo, AndroidManagedAppProtectionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Create a new androidManagedAppProtection object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-androidmanagedappprotection-create?view=graph-rest-1.0" />
/// Create new navigation property to androidManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -82,7 +80,7 @@ public async Task<AndroidManagedAppProtection> PostAsync(AndroidManagedAppProtec
return await RequestAdapter.SendAsync<AndroidManagedAppProtection>(requestInfo, AndroidManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// List properties and relationships of the androidManagedAppProtection objects.
/// Android managed app policies.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action<AndroidManagedAppProtec
return requestInfo;
}
/// <summary>
/// Create a new androidManagedAppProtection object.
/// Create new navigation property to androidManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand Down Expand Up @@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(AndroidManagedAppProtection b
return requestInfo;
}
/// <summary>
/// List properties and relationships of the androidManagedAppProtection objects.
/// Android managed app policies.
/// </summary>
public class AndroidManagedAppProtectionsRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ public AndroidManagedAppProtectionItemRequestBuilder(Dictionary<string, object>
public AndroidManagedAppProtectionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection%2Did}{?%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Deletes a androidManagedAppProtection.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-androidmanagedappprotection-delete?view=graph-rest-1.0" />
/// Delete navigation property androidManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -63,8 +62,7 @@ public async Task DeleteAsync(Action<AndroidManagedAppProtectionItemRequestBuild
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
/// <summary>
/// Read properties and relationships of the androidManagedAppProtection object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-androidmanagedappprotection-get?view=graph-rest-1.0" />
/// Android managed app policies.
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -83,8 +81,7 @@ public async Task<AndroidManagedAppProtection> GetAsync(Action<AndroidManagedApp
return await RequestAdapter.SendAsync<AndroidManagedAppProtection>(requestInfo, AndroidManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Update the properties of a androidManagedAppProtection object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-androidmanagedappprotection-update?view=graph-rest-1.0" />
/// Update the navigation property androidManagedAppProtections in deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -105,7 +102,7 @@ public async Task<AndroidManagedAppProtection> PatchAsync(AndroidManagedAppProte
return await RequestAdapter.SendAsync<AndroidManagedAppProtection>(requestInfo, AndroidManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Deletes a androidManagedAppProtection.
/// Delete navigation property androidManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -129,7 +126,7 @@ public RequestInformation ToDeleteRequestInformation(Action<AndroidManagedAppPro
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the androidManagedAppProtection object.
/// Android managed app policies.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -155,7 +152,7 @@ public RequestInformation ToGetRequestInformation(Action<AndroidManagedAppProtec
return requestInfo;
}
/// <summary>
/// Update the properties of a androidManagedAppProtection object.
/// Update the navigation property androidManagedAppProtections in deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand Down Expand Up @@ -199,7 +196,7 @@ public AndroidManagedAppProtectionItemRequestBuilderDeleteRequestConfiguration()
}
}
/// <summary>
/// Read properties and relationships of the androidManagedAppProtection object.
/// Android managed app policies.
/// </summary>
public class AndroidManagedAppProtectionItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ public DefaultManagedAppProtectionsRequestBuilder(Dictionary<string, object> pat
public DefaultManagedAppProtectionsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/defaultManagedAppProtections{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// List properties and relationships of the defaultManagedAppProtection objects.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-defaultmanagedappprotection-list?view=graph-rest-1.0" />
/// Default managed app policies.
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -60,8 +59,7 @@ public async Task<DefaultManagedAppProtectionCollectionResponse> GetAsync(Action
return await RequestAdapter.SendAsync<DefaultManagedAppProtectionCollectionResponse>(requestInfo, DefaultManagedAppProtectionCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Create a new defaultManagedAppProtection object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-defaultmanagedappprotection-create?view=graph-rest-1.0" />
/// Create new navigation property to defaultManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -82,7 +80,7 @@ public async Task<DefaultManagedAppProtection> PostAsync(DefaultManagedAppProtec
return await RequestAdapter.SendAsync<DefaultManagedAppProtection>(requestInfo, DefaultManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// List properties and relationships of the defaultManagedAppProtection objects.
/// Default managed app policies.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -108,7 +106,7 @@ public RequestInformation ToGetRequestInformation(Action<DefaultManagedAppProtec
return requestInfo;
}
/// <summary>
/// Create a new defaultManagedAppProtection object.
/// Create new navigation property to defaultManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand Down Expand Up @@ -136,7 +134,7 @@ public RequestInformation ToPostRequestInformation(DefaultManagedAppProtection b
return requestInfo;
}
/// <summary>
/// List properties and relationships of the defaultManagedAppProtection objects.
/// Default managed app policies.
/// </summary>
public class DefaultManagedAppProtectionsRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ public DefaultManagedAppProtectionItemRequestBuilder(Dictionary<string, object>
public DefaultManagedAppProtectionItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection%2Did}{?%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Deletes a defaultManagedAppProtection.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-defaultmanagedappprotection-delete?view=graph-rest-1.0" />
/// Delete navigation property defaultManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -58,8 +57,7 @@ public async Task DeleteAsync(Action<DefaultManagedAppProtectionItemRequestBuild
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
/// <summary>
/// Read properties and relationships of the defaultManagedAppProtection object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-defaultmanagedappprotection-get?view=graph-rest-1.0" />
/// Default managed app policies.
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -78,8 +76,7 @@ public async Task<DefaultManagedAppProtection> GetAsync(Action<DefaultManagedApp
return await RequestAdapter.SendAsync<DefaultManagedAppProtection>(requestInfo, DefaultManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Update the properties of a defaultManagedAppProtection object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-mam-defaultmanagedappprotection-update?view=graph-rest-1.0" />
/// Update the navigation property defaultManagedAppProtections in deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -100,7 +97,7 @@ public async Task<DefaultManagedAppProtection> PatchAsync(DefaultManagedAppProte
return await RequestAdapter.SendAsync<DefaultManagedAppProtection>(requestInfo, DefaultManagedAppProtection.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Deletes a defaultManagedAppProtection.
/// Delete navigation property defaultManagedAppProtections for deviceAppManagement
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -124,7 +121,7 @@ public RequestInformation ToDeleteRequestInformation(Action<DefaultManagedAppPro
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the defaultManagedAppProtection object.
/// Default managed app policies.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -150,7 +147,7 @@ public RequestInformation ToGetRequestInformation(Action<DefaultManagedAppProtec
return requestInfo;
}
/// <summary>
/// Update the properties of a defaultManagedAppProtection object.
/// Update the navigation property defaultManagedAppProtections in deviceAppManagement
/// </summary>
/// <param name="body">The request body</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand Down Expand Up @@ -194,7 +191,7 @@ public DefaultManagedAppProtectionItemRequestBuilderDeleteRequestConfiguration()
}
}
/// <summary>
/// Read properties and relationships of the defaultManagedAppProtection object.
/// Default managed app policies.
/// </summary>
public class DefaultManagedAppProtectionItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public DeviceAppManagementRequestBuilder(string rawUrl, IRequestAdapter requestA
}
/// <summary>
/// Update the properties of a deviceAppManagement object.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-books-deviceappmanagement-update?view=graph-rest-1.0" />
/// Find more info here <see href="https://docs.microsoft.com/graph/api/intune-policyset-deviceappmanagement-update?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand Down
Loading