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 #2236

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. This API is available in the following national cloud deployments.
/// Delete a browserSiteList object.
/// 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<RequestConfiguration<DefaultQueryParameters
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is available in the following national cloud deployments.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// 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<RequestConfiguration<BrowserS
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the properties of a browserSiteList object. This API is available in the following national cloud deployments.
/// Update the properties of a browserSiteList object.
/// 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<Reque
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete a browserSiteList object. This API is available in the following national cloud deployments.
/// Delete a browserSiteList object.
/// </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 @@ -122,7 +122,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is available in the following national cloud deployments.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// </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 @@ -138,7 +138,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Br
return requestInfo;
}
/// <summary>
/// Update the properties of a browserSiteList object. This API is available in the following national cloud deployments.
/// Update the properties of a browserSiteList object.
/// </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 @@ -170,7 +170,7 @@ public BrowserSiteListItemRequestBuilder WithUrl(string rawUrl) {
public class BrowserSiteListItemRequestBuilderDeleteRequestConfiguration : RequestConfiguration<DefaultQueryParameters> {
}
/// <summary>
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is available in the following national cloud deployments.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// </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. This API is available in the following national cloud deployments.
/// Publish the specified browserSiteList for devices to download.
/// 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. This API is available in the following national cloud deployments.
/// Publish the specified browserSiteList for devices to download.
/// </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. This API is available in the following national cloud deployments.
/// Delete a browserSharedCookie from a browserSiteList.
/// 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<RequestConfiguration<DefaultQueryParameters
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. This API is available in the following national cloud deployments.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// 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<RequestConfiguration<Brow
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the properties of a browserSharedCookie object. This API is available in the following national cloud deployments.
/// Update the properties of a browserSharedCookie object.
/// 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. This API is available in the following national cloud deployments.
/// Delete a browserSharedCookie from a browserSiteList.
/// </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 @@ -107,7 +107,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
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. This API is available in the following national cloud deployments.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// </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 @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Br
return requestInfo;
}
/// <summary>
/// Update the properties of a browserSharedCookie object. This API is available in the following national cloud deployments.
/// Update the properties of a browserSharedCookie object.
/// </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 @@ -155,7 +155,7 @@ public BrowserSharedCookieItemRequestBuilder WithUrl(string rawUrl) {
public class BrowserSharedCookieItemRequestBuilderDeleteRequestConfiguration : RequestConfiguration<DefaultQueryParameters> {
}
/// <summary>
/// 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 available in the following national cloud deployments.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// </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. This API is available in the following national cloud deployments.
/// Get a list of the browserSharedCookie objects and their properties.
/// 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<Request
return await RequestAdapter.SendAsync<BrowserSharedCookieCollectionResponse>(requestInfo, BrowserSharedCookieCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Create a new browserSharedCookie object in a browserSiteList. This API is available in the following national cloud deployments.
/// Create a new browserSharedCookie object in a browserSiteList.
/// 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. This API is available in the following national cloud deployments.
/// Get a list of the browserSharedCookie objects and their properties.
/// </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 @@ -100,7 +100,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Sh
return requestInfo;
}
/// <summary>
/// Create a new browserSharedCookie object in a browserSiteList. This API is available in the following national cloud deployments.
/// Create a new browserSharedCookie object in a browserSiteList.
/// </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 All @@ -126,7 +126,7 @@ public SharedCookiesRequestBuilder WithUrl(string rawUrl) {
return new SharedCookiesRequestBuilder(rawUrl, RequestAdapter);
}
/// <summary>
/// Get a list of the browserSharedCookie objects and their properties. This API is available in the following national cloud deployments.
/// Get a list of the browserSharedCookie objects and their properties.
/// </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. This API is available in the following national cloud deployments.
/// Delete a browserSite from a browserSiteList.
/// 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<RequestConfiguration<DefaultQueryParameters
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a browserSite that resides on a browserSiteList. This API is available in the following national cloud deployments.
/// Get a browserSite that resides on a browserSiteList.
/// 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<RequestConfiguration<BrowserSiteI
return await RequestAdapter.SendAsync<BrowserSite>(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the properties of a browserSite object. This API is available in the following national cloud deployments.
/// Update the properties of a browserSite object.
/// 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<RequestConfig
return await RequestAdapter.SendAsync<BrowserSite>(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete a browserSite from a browserSiteList. This API is available in the following national cloud deployments.
/// Delete a browserSite from a browserSiteList.
/// </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 @@ -107,7 +107,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// Get a browserSite that resides on a browserSiteList. This API is available in the following national cloud deployments.
/// Get a browserSite that resides on a browserSiteList.
/// </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 @@ -123,7 +123,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Br
return requestInfo;
}
/// <summary>
/// Update the properties of a browserSite object. This API is available in the following national cloud deployments.
/// Update the properties of a browserSite object.
/// </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 @@ -155,7 +155,7 @@ public BrowserSiteItemRequestBuilder WithUrl(string rawUrl) {
public class BrowserSiteItemRequestBuilderDeleteRequestConfiguration : RequestConfiguration<DefaultQueryParameters> {
}
/// <summary>
/// Get a browserSite that resides on a browserSiteList. This API is available in the following national cloud deployments.
/// Get a browserSite that resides on a browserSiteList.
/// </summary>
public class BrowserSiteItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Loading