Skip to content

Commit

Permalink
Merge pull request #2476 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
Release 5.52.0
  • Loading branch information
andrueastman authored May 8, 2024
2 parents 35bdae2 + feb0983 commit 28f7005
Show file tree
Hide file tree
Showing 3,577 changed files with 18,195 additions and 8,273 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .github/workflows/validatePullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
solutionName: Microsoft.Graph.sln
steps:
- uses: actions/[email protected].4
- uses: actions/[email protected].5
- name: Setup .NET
uses: actions/[email protected]
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v

## [Unreleased]

## [5.52.0] - 2024-05-08

- Latest metadata updates from 7th May 2024.

## [5.51.0] - 2024-05-02

- Latest metadata updates from 24th April 2024.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public BrowserSiteListItemRequestBuilder(string rawUrl, IRequestAdapter requestA
{
}
/// <summary>
/// Delete navigation property siteLists for admin
/// 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>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -72,7 +73,8 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// A collection of site lists to support Internet Explorer mode.
/// 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>
/// <returns>A <see cref="BrowserSiteList"/></returns>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -95,7 +97,8 @@ public async Task<BrowserSiteList> GetAsync(Action<RequestConfiguration<BrowserS
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the navigation property siteLists in admin
/// 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>
/// <returns>A <see cref="BrowserSiteList"/></returns>
/// <param name="body">The request body</param>
Expand All @@ -120,7 +123,7 @@ public async Task<BrowserSiteList> PatchAsync(BrowserSiteList body, Action<Reque
return await RequestAdapter.SendAsync<BrowserSiteList>(requestInfo, BrowserSiteList.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete navigation property siteLists for admin
/// Delete a browserSiteList object.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -139,7 +142,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// A collection of site lists to support Internet Explorer mode.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -158,7 +161,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Br
return requestInfo;
}
/// <summary>
/// Update the navigation property siteLists in admin
/// Update the properties of a browserSiteList object.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="body">The request body</param>
Expand Down Expand Up @@ -196,7 +199,7 @@ public class BrowserSiteListItemRequestBuilderDeleteRequestConfiguration : Reque
{
}
/// <summary>
/// A collection of site lists to support Internet Explorer mode.
/// Get a browserSiteList that contains browserSite and browserSharedCookie resources.
/// </summary>
public class BrowserSiteListItemRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class PublishPostRequestBody : IAdditionalDataHolder, IBackedModel, IPars
{
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>
public IDictionary<string, object> AdditionalData {
get { return BackingStore.Get<IDictionary<string, object>>("AdditionalData") ?? throw new InvalidOperationException("AdditionalData can not be null"); }
get { return BackingStore.Get<IDictionary<string, object>>("AdditionalData") ?? new Dictionary<string, object>(); }
set { BackingStore.Set("AdditionalData", value); }
}
/// <summary>Stores model information.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public PublishRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : ba
}
/// <summary>
/// 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>
/// <returns>A <see cref="BrowserSiteList"/></returns>
/// <param name="body">The request body</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public BrowserSharedCookieItemRequestBuilder(string rawUrl, IRequestAdapter requ
{
}
/// <summary>
/// Delete navigation property sharedCookies for admin
/// 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>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -54,7 +55,8 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// A collection of shared cookies defined for the site list.
/// 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>
/// <returns>A <see cref="BrowserSharedCookie"/></returns>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -77,7 +79,8 @@ public async Task<BrowserSharedCookie> GetAsync(Action<RequestConfiguration<Brow
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the navigation property sharedCookies in admin
/// 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>
/// <returns>A <see cref="BrowserSharedCookie"/></returns>
/// <param name="body">The request body</param>
Expand All @@ -102,7 +105,7 @@ public async Task<BrowserSharedCookie> PatchAsync(BrowserSharedCookie body, Acti
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete navigation property sharedCookies for admin
/// Delete a browserSharedCookie from a browserSiteList.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -121,7 +124,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// A collection of shared cookies defined for the site list.
/// Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -140,7 +143,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Br
return requestInfo;
}
/// <summary>
/// Update the navigation property sharedCookies in admin
/// Update the properties of a browserSharedCookie object.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="body">The request body</param>
Expand Down Expand Up @@ -178,7 +181,7 @@ public class BrowserSharedCookieItemRequestBuilderDeleteRequestConfiguration : R
{
}
/// <summary>
/// A collection of shared cookies defined for the site list.
/// 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
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public SharedCookiesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter
{
}
/// <summary>
/// A collection of shared cookies defined for the site list.
/// 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>
/// <returns>A <see cref="BrowserSharedCookieCollectionResponse"/></returns>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -74,7 +75,8 @@ public async Task<BrowserSharedCookieCollectionResponse> GetAsync(Action<Request
return await RequestAdapter.SendAsync<BrowserSharedCookieCollectionResponse>(requestInfo, BrowserSharedCookieCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Create new navigation property to sharedCookies for admin
/// 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>
/// <returns>A <see cref="BrowserSharedCookie"/></returns>
/// <param name="body">The request body</param>
Expand All @@ -99,7 +101,7 @@ public async Task<BrowserSharedCookie> PostAsync(BrowserSharedCookie body, Actio
return await RequestAdapter.SendAsync<BrowserSharedCookie>(requestInfo, BrowserSharedCookie.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// A collection of shared cookies defined for the site list.
/// Get a list of the browserSharedCookie objects and their properties.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -118,7 +120,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Sh
return requestInfo;
}
/// <summary>
/// Create new navigation property to sharedCookies for admin
/// Create a new browserSharedCookie object in a browserSiteList.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="body">The request body</param>
Expand Down Expand Up @@ -149,7 +151,7 @@ public SharedCookiesRequestBuilder WithUrl(string rawUrl)
return new SharedCookiesRequestBuilder(rawUrl, RequestAdapter);
}
/// <summary>
/// A collection of shared cookies defined for the site list.
/// Get a list of the browserSharedCookie objects and their properties.
/// </summary>
public class SharedCookiesRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public BrowserSiteItemRequestBuilder(string rawUrl, IRequestAdapter requestAdapt
{
}
/// <summary>
/// Delete navigation property sites for admin
/// 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>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -54,7 +55,8 @@ public async Task DeleteAsync(Action<RequestConfiguration<DefaultQueryParameters
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// A collection of sites defined for the site list.
/// 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>
/// <returns>A <see cref="BrowserSite"/></returns>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -77,7 +79,8 @@ public async Task<BrowserSite> GetAsync(Action<RequestConfiguration<BrowserSiteI
return await RequestAdapter.SendAsync<BrowserSite>(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Update the navigation property sites in admin
/// 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>
/// <returns>A <see cref="BrowserSite"/></returns>
/// <param name="body">The request body</param>
Expand All @@ -102,7 +105,7 @@ public async Task<BrowserSite> PatchAsync(BrowserSite body, Action<RequestConfig
return await RequestAdapter.SendAsync<BrowserSite>(requestInfo, BrowserSite.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Delete navigation property sites for admin
/// Delete a browserSite from a browserSiteList.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -121,7 +124,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// A collection of sites defined for the site list.
/// Get a browserSite that resides on a browserSiteList.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -140,7 +143,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Br
return requestInfo;
}
/// <summary>
/// Update the navigation property sites in admin
/// Update the properties of a browserSite object.
/// </summary>
/// <returns>A <see cref="RequestInformation"/></returns>
/// <param name="body">The request body</param>
Expand Down Expand Up @@ -178,7 +181,7 @@ public class BrowserSiteItemRequestBuilderDeleteRequestConfiguration : RequestCo
{
}
/// <summary>
/// A collection of sites defined for the site list.
/// Get a browserSite that resides on a browserSiteList.
/// </summary>
public class BrowserSiteItemRequestBuilderGetQueryParameters
{
Expand Down
Loading

0 comments on commit 28f7005

Please sign in to comment.