Skip to content

Commit a5eba53

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
feat(generation): update request builders and models
Update generated files with build 193250
1 parent 3811637 commit a5eba53

File tree

5,835 files changed

+45858
-49632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,835 files changed

+45858
-49632
lines changed

src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Count/CountRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
3636
/// <summary>
3737
/// Get the number of the resource
3838
/// </summary>
39-
/// <returns>A <see cref="int"/></returns>
39+
/// <returns>A <see cref="long"/></returns>
4040
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4141
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
4242
/// <exception cref="global::Microsoft.Graph.Models.ODataErrors.ODataError">When receiving a 4XX or 5XX status code</exception>
4343
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
4444
#nullable enable
45-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
45+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
4646
{
4747
#nullable restore
4848
#else
49-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
49+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
5050
{
5151
#endif
5252
var requestInfo = ToGetRequestInformation(requestConfiguration);
5353
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>>
5454
{
5555
{ "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
5656
};
57-
return await RequestAdapter.SendPrimitiveAsync<int?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
57+
return await RequestAdapter.SendPrimitiveAsync<long?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5858
}
5959
/// <summary>
6060
/// Get the number of the resource

src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/SharedCookies/Count/CountRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
3636
/// <summary>
3737
/// Get the number of the resource
3838
/// </summary>
39-
/// <returns>A <see cref="int"/></returns>
39+
/// <returns>A <see cref="long"/></returns>
4040
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4141
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
4242
/// <exception cref="global::Microsoft.Graph.Models.ODataErrors.ODataError">When receiving a 4XX or 5XX status code</exception>
4343
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
4444
#nullable enable
45-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.SharedCookies.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
45+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.SharedCookies.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
4646
{
4747
#nullable restore
4848
#else
49-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.SharedCookies.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
49+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.SharedCookies.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
5050
{
5151
#endif
5252
var requestInfo = ToGetRequestInformation(requestConfiguration);
5353
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>>
5454
{
5555
{ "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
5656
};
57-
return await RequestAdapter.SendPrimitiveAsync<int?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
57+
return await RequestAdapter.SendPrimitiveAsync<long?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5858
}
5959
/// <summary>
6060
/// Get the number of the resource

src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/SharedCookies/SharedCookiesRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ public partial class SharedCookiesRequestBuilderGetQueryParameters
214214
#endif
215215
/// <summary>Skip the first n items</summary>
216216
[QueryParameter("%24skip")]
217-
public int? Skip { get; set; }
217+
public long? Skip { get; set; }
218218
/// <summary>Show only the first n items</summary>
219219
[QueryParameter("%24top")]
220-
public int? Top { get; set; }
220+
public long? Top { get; set; }
221221
}
222222
/// <summary>
223223
/// Configuration for the request such as headers, query parameters, and middleware options.

src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Sites/Count/CountRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
3636
/// <summary>
3737
/// Get the number of the resource
3838
/// </summary>
39-
/// <returns>A <see cref="int"/></returns>
39+
/// <returns>A <see cref="long"/></returns>
4040
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4141
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
4242
/// <exception cref="global::Microsoft.Graph.Models.ODataErrors.ODataError">When receiving a 4XX or 5XX status code</exception>
4343
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
4444
#nullable enable
45-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.Sites.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
45+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.Sites.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
4646
{
4747
#nullable restore
4848
#else
49-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.Sites.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
49+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.Edge.InternetExplorerMode.SiteLists.Item.Sites.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
5050
{
5151
#endif
5252
var requestInfo = ToGetRequestInformation(requestConfiguration);
5353
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>>
5454
{
5555
{ "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
5656
};
57-
return await RequestAdapter.SendPrimitiveAsync<int?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
57+
return await RequestAdapter.SendPrimitiveAsync<long?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5858
}
5959
/// <summary>
6060
/// Get the number of the resource

src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/Item/Sites/SitesRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ public partial class SitesRequestBuilderGetQueryParameters
214214
#endif
215215
/// <summary>Skip the first n items</summary>
216216
[QueryParameter("%24skip")]
217-
public int? Skip { get; set; }
217+
public long? Skip { get; set; }
218218
/// <summary>Show only the first n items</summary>
219219
[QueryParameter("%24top")]
220-
public int? Top { get; set; }
220+
public long? Top { get; set; }
221221
}
222222
/// <summary>
223223
/// Configuration for the request such as headers, query parameters, and middleware options.

src/Microsoft.Graph/Generated/Admin/Edge/InternetExplorerMode/SiteLists/SiteListsRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ public partial class SiteListsRequestBuilderGetQueryParameters
214214
#endif
215215
/// <summary>Skip the first n items</summary>
216216
[QueryParameter("%24skip")]
217-
public int? Skip { get; set; }
217+
public long? Skip { get; set; }
218218
/// <summary>Show only the first n items</summary>
219219
[QueryParameter("%24top")]
220-
public int? Top { get; set; }
220+
public long? Top { get; set; }
221221
}
222222
/// <summary>
223223
/// Configuration for the request such as headers, query parameters, and middleware options.

src/Microsoft.Graph/Generated/Admin/People/ProfileCardProperties/Count/CountRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
3636
/// <summary>
3737
/// Get the number of the resource
3838
/// </summary>
39-
/// <returns>A <see cref="int"/></returns>
39+
/// <returns>A <see cref="long"/></returns>
4040
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4141
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
4242
/// <exception cref="global::Microsoft.Graph.Models.ODataErrors.ODataError">When receiving a 4XX or 5XX status code</exception>
4343
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
4444
#nullable enable
45-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.People.ProfileCardProperties.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
45+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.People.ProfileCardProperties.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
4646
{
4747
#nullable restore
4848
#else
49-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.People.ProfileCardProperties.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
49+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.People.ProfileCardProperties.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
5050
{
5151
#endif
5252
var requestInfo = ToGetRequestInformation(requestConfiguration);
5353
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>>
5454
{
5555
{ "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
5656
};
57-
return await RequestAdapter.SendPrimitiveAsync<int?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
57+
return await RequestAdapter.SendPrimitiveAsync<long?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5858
}
5959
/// <summary>
6060
/// Get the number of the resource

src/Microsoft.Graph/Generated/Admin/People/ProfileCardProperties/ProfileCardPropertiesRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ public partial class ProfileCardPropertiesRequestBuilderGetQueryParameters
214214
#endif
215215
/// <summary>Skip the first n items</summary>
216216
[QueryParameter("%24skip")]
217-
public int? Skip { get; set; }
217+
public long? Skip { get; set; }
218218
/// <summary>Show only the first n items</summary>
219219
[QueryParameter("%24top")]
220-
public int? Top { get; set; }
220+
public long? Top { get; set; }
221221
}
222222
/// <summary>
223223
/// Configuration for the request such as headers, query parameters, and middleware options.

src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/HealthOverviews/Count/CountRequestBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base
3636
/// <summary>
3737
/// Get the number of the resource
3838
/// </summary>
39-
/// <returns>A <see cref="int"/></returns>
39+
/// <returns>A <see cref="long"/></returns>
4040
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
4141
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
4242
/// <exception cref="global::Microsoft.Graph.Models.ODataErrors.ODataError">When receiving a 4XX or 5XX status code</exception>
4343
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
4444
#nullable enable
45-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.ServiceAnnouncement.HealthOverviews.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
45+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.ServiceAnnouncement.HealthOverviews.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>>? requestConfiguration = default, CancellationToken cancellationToken = default)
4646
{
4747
#nullable restore
4848
#else
49-
public async Task<int?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.ServiceAnnouncement.HealthOverviews.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
49+
public async Task<long?> GetAsync(Action<RequestConfiguration<global::Microsoft.Graph.Admin.ServiceAnnouncement.HealthOverviews.Count.CountRequestBuilder.CountRequestBuilderGetQueryParameters>> requestConfiguration = default, CancellationToken cancellationToken = default)
5050
{
5151
#endif
5252
var requestInfo = ToGetRequestInformation(requestConfiguration);
5353
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>>
5454
{
5555
{ "XXX", global::Microsoft.Graph.Models.ODataErrors.ODataError.CreateFromDiscriminatorValue },
5656
};
57-
return await RequestAdapter.SendPrimitiveAsync<int?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
57+
return await RequestAdapter.SendPrimitiveAsync<long?>(requestInfo, errorMapping, cancellationToken).ConfigureAwait(false);
5858
}
5959
/// <summary>
6060
/// Get the number of the resource

src/Microsoft.Graph/Generated/Admin/ServiceAnnouncement/HealthOverviews/HealthOverviewsRequestBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,10 @@ public partial class HealthOverviewsRequestBuilderGetQueryParameters
213213
#endif
214214
/// <summary>Skip the first n items</summary>
215215
[QueryParameter("%24skip")]
216-
public int? Skip { get; set; }
216+
public long? Skip { get; set; }
217217
/// <summary>Show only the first n items</summary>
218218
[QueryParameter("%24top")]
219-
public int? Top { get; set; }
219+
public long? Top { get; set; }
220220
}
221221
/// <summary>
222222
/// Configuration for the request such as headers, query parameters, and middleware options.

0 commit comments

Comments
 (0)