-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update generated files with build 115280
- Loading branch information
Showing
238 changed files
with
18,497 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
...Applications/Item/Synchronization/AcquireAccessToken/AcquireAccessTokenPostRequestBody.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
using Microsoft.Graph.Models; | ||
using Microsoft.Kiota.Abstractions.Serialization; | ||
using Microsoft.Kiota.Abstractions.Store; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System; | ||
namespace Microsoft.Graph.Applications.Item.Synchronization.AcquireAccessToken { | ||
public class AcquireAccessTokenPostRequestBody : IAdditionalDataHolder, IBackedModel, IParsable { | ||
/// <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"); } | ||
set { BackingStore?.Set("additionalData", value); } | ||
} | ||
/// <summary>Stores model information.</summary> | ||
public IBackingStore BackingStore { get; private set; } | ||
/// <summary>The credentials property</summary> | ||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER | ||
#nullable enable | ||
public List<SynchronizationSecretKeyStringValuePair>? Credentials { | ||
get { return BackingStore?.Get<List<SynchronizationSecretKeyStringValuePair>?>("credentials"); } | ||
set { BackingStore?.Set("credentials", value); } | ||
} | ||
#nullable restore | ||
#else | ||
public List<SynchronizationSecretKeyStringValuePair> Credentials { | ||
get { return BackingStore?.Get<List<SynchronizationSecretKeyStringValuePair>>("credentials"); } | ||
set { BackingStore?.Set("credentials", value); } | ||
} | ||
#endif | ||
/// <summary> | ||
/// Instantiates a new acquireAccessTokenPostRequestBody and sets the default values. | ||
/// </summary> | ||
public AcquireAccessTokenPostRequestBody() { | ||
BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore(); | ||
AdditionalData = new Dictionary<string, object>(); | ||
} | ||
/// <summary> | ||
/// Creates a new instance of the appropriate class based on discriminator value | ||
/// </summary> | ||
/// <param name="parseNode">The parse node to use to read the discriminator value and create the object</param> | ||
public static AcquireAccessTokenPostRequestBody CreateFromDiscriminatorValue(IParseNode parseNode) { | ||
_ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); | ||
return new AcquireAccessTokenPostRequestBody(); | ||
} | ||
/// <summary> | ||
/// The deserialization information for the current model | ||
/// </summary> | ||
public IDictionary<string, Action<IParseNode>> GetFieldDeserializers() { | ||
return new Dictionary<string, Action<IParseNode>> { | ||
{"credentials", n => { Credentials = n.GetCollectionOfObjectValues<SynchronizationSecretKeyStringValuePair>(SynchronizationSecretKeyStringValuePair.CreateFromDiscriminatorValue)?.ToList(); } }, | ||
}; | ||
} | ||
/// <summary> | ||
/// Serializes information the current object | ||
/// </summary> | ||
/// <param name="writer">Serialization writer to use to serialize this model</param> | ||
public void Serialize(ISerializationWriter writer) { | ||
_ = writer ?? throw new ArgumentNullException(nameof(writer)); | ||
writer.WriteCollectionOfObjectValues<SynchronizationSecretKeyStringValuePair>("credentials", Credentials); | ||
writer.WriteAdditionalData(AdditionalData); | ||
} | ||
} | ||
} |
94 changes: 94 additions & 0 deletions
94
.../Applications/Item/Synchronization/AcquireAccessToken/AcquireAccessTokenRequestBuilder.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
using Microsoft.Graph.Models.ODataErrors; | ||
using Microsoft.Kiota.Abstractions.Serialization; | ||
using Microsoft.Kiota.Abstractions; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using System.Threading; | ||
using System; | ||
namespace Microsoft.Graph.Applications.Item.Synchronization.AcquireAccessToken { | ||
/// <summary> | ||
/// Provides operations to call the acquireAccessToken method. | ||
/// </summary> | ||
public class AcquireAccessTokenRequestBuilder : BaseRequestBuilder { | ||
/// <summary> | ||
/// Instantiates a new AcquireAccessTokenRequestBuilder and sets the default values. | ||
/// </summary> | ||
/// <param name="pathParameters">Path parameters for the request</param> | ||
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param> | ||
public AcquireAccessTokenRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/acquireAccessToken", pathParameters) { | ||
} | ||
/// <summary> | ||
/// Instantiates a new AcquireAccessTokenRequestBuilder and sets the default values. | ||
/// </summary> | ||
/// <param name="rawUrl">The raw URL to use for the request builder.</param> | ||
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param> | ||
public AcquireAccessTokenRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/acquireAccessToken", rawUrl) { | ||
} | ||
/// <summary> | ||
/// Invoke action acquireAccessToken | ||
/// </summary> | ||
/// <param name="body">The request body</param> | ||
/// <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> | ||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER | ||
#nullable enable | ||
public async Task PostAsync(AcquireAccessTokenPostRequestBody body, Action<AcquireAccessTokenRequestBuilderPostRequestConfiguration>? requestConfiguration = default, CancellationToken cancellationToken = default) { | ||
#nullable restore | ||
#else | ||
public async Task PostAsync(AcquireAccessTokenPostRequestBody body, Action<AcquireAccessTokenRequestBuilderPostRequestConfiguration> requestConfiguration = default, CancellationToken cancellationToken = default) { | ||
#endif | ||
_ = body ?? throw new ArgumentNullException(nameof(body)); | ||
var requestInfo = ToPostRequestInformation(body, requestConfiguration); | ||
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>> { | ||
{"4XX", ODataError.CreateFromDiscriminatorValue}, | ||
{"5XX", ODataError.CreateFromDiscriminatorValue}, | ||
}; | ||
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken); | ||
} | ||
/// <summary> | ||
/// Invoke action acquireAccessToken | ||
/// </summary> | ||
/// <param name="body">The request body</param> | ||
/// <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 | ||
#nullable enable | ||
public RequestInformation ToPostRequestInformation(AcquireAccessTokenPostRequestBody body, Action<AcquireAccessTokenRequestBuilderPostRequestConfiguration>? requestConfiguration = default) { | ||
#nullable restore | ||
#else | ||
public RequestInformation ToPostRequestInformation(AcquireAccessTokenPostRequestBody body, Action<AcquireAccessTokenRequestBuilderPostRequestConfiguration> requestConfiguration = default) { | ||
#endif | ||
_ = body ?? throw new ArgumentNullException(nameof(body)); | ||
var requestInfo = new RequestInformation { | ||
HttpMethod = Method.POST, | ||
UrlTemplate = UrlTemplate, | ||
PathParameters = PathParameters, | ||
}; | ||
requestInfo.SetContentFromParsable(RequestAdapter, "application/json", body); | ||
if (requestConfiguration != null) { | ||
var requestConfig = new AcquireAccessTokenRequestBuilderPostRequestConfiguration(); | ||
requestConfiguration.Invoke(requestConfig); | ||
requestInfo.AddRequestOptions(requestConfig.Options); | ||
requestInfo.AddHeaders(requestConfig.Headers); | ||
} | ||
return requestInfo; | ||
} | ||
/// <summary> | ||
/// Configuration for the request such as headers, query parameters, and middleware options. | ||
/// </summary> | ||
public class AcquireAccessTokenRequestBuilderPostRequestConfiguration { | ||
/// <summary>Request headers</summary> | ||
public RequestHeaders Headers { get; set; } | ||
/// <summary>Request options</summary> | ||
public IList<IRequestOption> Options { get; set; } | ||
/// <summary> | ||
/// Instantiates a new acquireAccessTokenRequestBuilderPostRequestConfiguration and sets the default values. | ||
/// </summary> | ||
public AcquireAccessTokenRequestBuilderPostRequestConfiguration() { | ||
Options = new List<IRequestOption>(); | ||
Headers = new RequestHeaders(); | ||
} | ||
} | ||
} | ||
} |
118 changes: 118 additions & 0 deletions
118
...osoft.Graph/Generated/Applications/Item/Synchronization/Jobs/Count/CountRequestBuilder.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
using Microsoft.Graph.Models.ODataErrors; | ||
using Microsoft.Kiota.Abstractions.Serialization; | ||
using Microsoft.Kiota.Abstractions; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using System.Threading; | ||
using System; | ||
namespace Microsoft.Graph.Applications.Item.Synchronization.Jobs.Count { | ||
/// <summary> | ||
/// Provides operations to count the resources in the collection. | ||
/// </summary> | ||
public class CountRequestBuilder : BaseRequestBuilder { | ||
/// <summary> | ||
/// Instantiates a new CountRequestBuilder and sets the default values. | ||
/// </summary> | ||
/// <param name="pathParameters">Path parameters for the request</param> | ||
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param> | ||
public CountRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/jobs/$count{?%24search,%24filter}", pathParameters) { | ||
} | ||
/// <summary> | ||
/// Instantiates a new CountRequestBuilder and sets the default values. | ||
/// </summary> | ||
/// <param name="rawUrl">The raw URL to use for the request builder.</param> | ||
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param> | ||
public CountRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/jobs/$count{?%24search,%24filter}", rawUrl) { | ||
} | ||
/// <summary> | ||
/// Get the number of the resource | ||
/// </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> | ||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER | ||
#nullable enable | ||
public async Task<int?> GetAsync(Action<CountRequestBuilderGetRequestConfiguration>? requestConfiguration = default, CancellationToken cancellationToken = default) { | ||
#nullable restore | ||
#else | ||
public async Task<int?> GetAsync(Action<CountRequestBuilderGetRequestConfiguration> requestConfiguration = default, CancellationToken cancellationToken = default) { | ||
#endif | ||
var requestInfo = ToGetRequestInformation(requestConfiguration); | ||
var errorMapping = new Dictionary<string, ParsableFactory<IParsable>> { | ||
{"4XX", ODataError.CreateFromDiscriminatorValue}, | ||
{"5XX", ODataError.CreateFromDiscriminatorValue}, | ||
}; | ||
return await RequestAdapter.SendPrimitiveAsync<int?>(requestInfo, errorMapping, cancellationToken); | ||
} | ||
/// <summary> | ||
/// Get the number of the resource | ||
/// </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 | ||
#nullable enable | ||
public RequestInformation ToGetRequestInformation(Action<CountRequestBuilderGetRequestConfiguration>? requestConfiguration = default) { | ||
#nullable restore | ||
#else | ||
public RequestInformation ToGetRequestInformation(Action<CountRequestBuilderGetRequestConfiguration> requestConfiguration = default) { | ||
#endif | ||
var requestInfo = new RequestInformation { | ||
HttpMethod = Method.GET, | ||
UrlTemplate = UrlTemplate, | ||
PathParameters = PathParameters, | ||
}; | ||
requestInfo.Headers.Add("Accept", "text/plain"); | ||
if (requestConfiguration != null) { | ||
var requestConfig = new CountRequestBuilderGetRequestConfiguration(); | ||
requestConfiguration.Invoke(requestConfig); | ||
requestInfo.AddQueryParameters(requestConfig.QueryParameters); | ||
requestInfo.AddRequestOptions(requestConfig.Options); | ||
requestInfo.AddHeaders(requestConfig.Headers); | ||
} | ||
return requestInfo; | ||
} | ||
/// <summary> | ||
/// Get the number of the resource | ||
/// </summary> | ||
public class CountRequestBuilderGetQueryParameters { | ||
/// <summary>Filter items by property values</summary> | ||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER | ||
#nullable enable | ||
[QueryParameter("%24filter")] | ||
public string? Filter { get; set; } | ||
#nullable restore | ||
#else | ||
[QueryParameter("%24filter")] | ||
public string Filter { get; set; } | ||
#endif | ||
/// <summary>Search items by search phrases</summary> | ||
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER | ||
#nullable enable | ||
[QueryParameter("%24search")] | ||
public string? Search { get; set; } | ||
#nullable restore | ||
#else | ||
[QueryParameter("%24search")] | ||
public string Search { get; set; } | ||
#endif | ||
} | ||
/// <summary> | ||
/// Configuration for the request such as headers, query parameters, and middleware options. | ||
/// </summary> | ||
public class CountRequestBuilderGetRequestConfiguration { | ||
/// <summary>Request headers</summary> | ||
public RequestHeaders Headers { get; set; } | ||
/// <summary>Request options</summary> | ||
public IList<IRequestOption> Options { get; set; } | ||
/// <summary>Request query parameters</summary> | ||
public CountRequestBuilderGetQueryParameters QueryParameters { get; set; } = new CountRequestBuilderGetQueryParameters(); | ||
/// <summary> | ||
/// Instantiates a new CountRequestBuilderGetRequestConfiguration and sets the default values. | ||
/// </summary> | ||
public CountRequestBuilderGetRequestConfiguration() { | ||
Options = new List<IRequestOption>(); | ||
Headers = new RequestHeaders(); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.