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

Generated models and request builders #2148

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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public BrowserSiteListItemRequestBuilder(Dictionary<string, object> pathParamete
public BrowserSiteListItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}{?%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Delete a browserSiteList object.
/// Delete a browserSiteList object. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -64,7 +64,7 @@ public async Task DeleteAsync(Action<BrowserSiteListItemRequestBuilderDeleteRequ
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -84,7 +84,7 @@ public async Task<BrowserSiteList> GetAsync(Action<BrowserSiteListItemRequestBui
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the properties of a browserSiteList object.
/// Update the properties of a browserSiteList object. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
Expand All @@ -106,7 +106,7 @@ public async Task<BrowserSiteList> PatchAsync(BrowserSiteList body, Action<Brows
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete a browserSiteList object.
/// Delete a browserSiteList object. This API is supported in the following national cloud deployments.
/// </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 @@ -130,7 +130,7 @@ public RequestInformation ToDeleteRequestInformation(Action<BrowserSiteListItemR
return requestInfo;
}
/// <summary>
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is supported in the following national cloud deployments.
/// </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 @@ -156,7 +156,7 @@ public RequestInformation ToGetRequestInformation(Action<BrowserSiteListItemRequ
return requestInfo;
}
/// <summary>
/// Update the properties of a browserSiteList object.
/// Update the properties of a browserSiteList object. This API is supported in the following national cloud deployments.
/// </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 @@ -207,7 +207,7 @@ public BrowserSiteListItemRequestBuilderDeleteRequestConfiguration() {
}
}
/// <summary>
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is supported in the following national cloud deployments.
/// </summary>
public class BrowserSiteListItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public PublishRequestBuilder(Dictionary<string, object> pathParameters, IRequest
public PublishRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/publish", rawUrl) {
}
/// <summary>
/// Publish the specified browserSiteList for devices to download.
/// Publish the specified browserSiteList for devices to download. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-publish?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
Expand All @@ -51,7 +51,7 @@ public async Task<BrowserSiteList> PostAsync(PublishPostRequestBody body, Action
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Publish the specified browserSiteList for devices to download.
/// Publish the specified browserSiteList for devices to download. This API is supported in the following national cloud deployments.
/// </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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public BrowserSharedCookieItemRequestBuilder(Dictionary<string, object> pathPara
public BrowserSharedCookieItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sharedCookies/{browserSharedCookie%2Did}{?%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Delete a browserSharedCookie from a browserSiteList.
/// Delete a browserSharedCookie from a browserSiteList. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -49,7 +49,7 @@ public async Task DeleteAsync(Action<BrowserSharedCookieItemRequestBuilderDelete
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -69,7 +69,7 @@ public async Task<BrowserSharedCookie> GetAsync(Action<BrowserSharedCookieItemRe
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the properties of a browserSharedCookie object.
/// Update the properties of a browserSharedCookie object. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
Expand All @@ -91,7 +91,7 @@ public async Task<BrowserSharedCookie> PatchAsync(BrowserSharedCookie body, Acti
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete a browserSharedCookie from a browserSiteList.
/// Delete a browserSharedCookie from a browserSiteList. This API is supported in the following national cloud deployments.
/// </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 @@ -115,7 +115,7 @@ public RequestInformation ToDeleteRequestInformation(Action<BrowserSharedCookieI
return requestInfo;
}
/// <summary>
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. This API is supported in the following national cloud deployments.
/// </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 @@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action<BrowserSharedCookieItem
return requestInfo;
}
/// <summary>
/// Update the properties of a browserSharedCookie object.
/// Update the properties of a browserSharedCookie object. This API is supported in the following national cloud deployments.
/// </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 @@ -192,7 +192,7 @@ public BrowserSharedCookieItemRequestBuilderDeleteRequestConfiguration() {
}
}
/// <summary>
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. This API is supported in the following national cloud deployments.
/// </summary>
public class BrowserSharedCookieItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public SharedCookiesRequestBuilder(Dictionary<string, object> pathParameters, IR
public SharedCookiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sharedCookies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Get a list of the browserSharedCookie objects and their properties.
/// Get a list of the browserSharedCookie objects and their properties. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -62,7 +62,7 @@ public async Task<BrowserSharedCookieCollectionResponse> GetAsync(Action<SharedC
return await RequestAdapter.SendAsync<BrowserSharedCookieCollectionResponse>(requestInfo, BrowserSharedCookieCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Create a new browserSharedCookie object in a browserSiteList.
/// Create a new browserSharedCookie object in a browserSiteList. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
Expand All @@ -84,7 +84,7 @@ public async Task<BrowserSharedCookie> PostAsync(BrowserSharedCookie body, Actio
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a list of the browserSharedCookie objects and their properties.
/// Get a list of the browserSharedCookie objects and their properties. This API is supported in the following national cloud deployments.
/// </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 @@ -110,7 +110,7 @@ public RequestInformation ToGetRequestInformation(Action<SharedCookiesRequestBui
return requestInfo;
}
/// <summary>
/// Create a new browserSharedCookie object in a browserSiteList.
/// Create a new browserSharedCookie object in a browserSiteList. This API is supported in the following national cloud deployments.
/// </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 @@ -145,7 +145,7 @@ public SharedCookiesRequestBuilder WithUrl(string rawUrl) {
return new SharedCookiesRequestBuilder(rawUrl, RequestAdapter);
}
/// <summary>
/// Get a list of the browserSharedCookie objects and their properties.
/// Get a list of the browserSharedCookie objects and their properties. This API is supported in the following national cloud deployments.
/// </summary>
public class SharedCookiesRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public BrowserSiteItemRequestBuilder(Dictionary<string, object> pathParameters,
public BrowserSiteItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sites/{browserSite%2Did}{?%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Delete a browserSite from a browserSiteList.
/// Delete a browserSite from a browserSiteList. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -49,7 +49,7 @@ public async Task DeleteAsync(Action<BrowserSiteItemRequestBuilderDeleteRequestC
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a browserSite that resides on a browserSiteList.
/// Get a browserSite that resides on a browserSiteList. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -69,7 +69,7 @@ public async Task<BrowserSite> GetAsync(Action<BrowserSiteItemRequestBuilderGetR
return await RequestAdapter.SendAsync<BrowserSite>(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the properties of a browserSite object.
/// Update the properties of a browserSite object. This API is supported in the following national cloud deployments.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
Expand All @@ -91,7 +91,7 @@ public async Task<BrowserSite> PatchAsync(BrowserSite body, Action<BrowserSiteIt
return await RequestAdapter.SendAsync<BrowserSite>(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete a browserSite from a browserSiteList.
/// Delete a browserSite from a browserSiteList. This API is supported in the following national cloud deployments.
/// </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 @@ -115,7 +115,7 @@ public RequestInformation ToDeleteRequestInformation(Action<BrowserSiteItemReque
return requestInfo;
}
/// <summary>
/// Get a browserSite that resides on a browserSiteList.
/// Get a browserSite that resides on a browserSiteList. This API is supported in the following national cloud deployments.
/// </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 @@ -141,7 +141,7 @@ public RequestInformation ToGetRequestInformation(Action<BrowserSiteItemRequestB
return requestInfo;
}
/// <summary>
/// Update the properties of a browserSite object.
/// Update the properties of a browserSite object. This API is supported in the following national cloud deployments.
/// </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 @@ -192,7 +192,7 @@ public BrowserSiteItemRequestBuilderDeleteRequestConfiguration() {
}
}
/// <summary>
/// Get a browserSite that resides on a browserSiteList.
/// Get a browserSite that resides on a browserSiteList. This API is supported in the following national cloud deployments.
/// </summary>
public class BrowserSiteItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Loading
Loading