Skip to content

Commit

Permalink
Update generated files with build 120580
Browse files Browse the repository at this point in the history
  • Loading branch information
Microsoft Graph DevX Tooling authored and Microsoft Graph DevX Tooling committed Jul 18, 2023
1 parent 8db8f02 commit adf4d40
Show file tree
Hide file tree
Showing 125 changed files with 1,821 additions and 366 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public async Task DeleteAsync(Action<FileRequestBuilderDeleteRequestConfiguratio
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
/// <summary>
/// Retrieve the details of the default file for an agreement, including the language and version information. The file information is specified through the agreementFile object.
/// Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the **Accept-Language** header.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/agreementfile-get?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand Down Expand Up @@ -117,7 +117,7 @@ public RequestInformation ToDeleteRequestInformation(Action<FileRequestBuilderDe
return requestInfo;
}
/// <summary>
/// Retrieve the details of the default file for an agreement, including the language and version information. The file information is specified through the agreementFile object.
/// Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the **Accept-Language** header.
/// </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 Down Expand Up @@ -187,7 +187,7 @@ public FileRequestBuilderDeleteRequestConfiguration() {
}
}
/// <summary>
/// Retrieve the details of the default file for an agreement, including the language and version information. The file information is specified through the agreementFile object.
/// Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the **Accept-Language** header.
/// </summary>
public class FileRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public LocalizationsRequestBuilder(Dictionary<string, object> pathParameters, IR
public LocalizationsRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/agreements/{agreement%2Did}/file/localizations{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// The localized version of the terms of use agreement files attached to the agreement.
/// Get a list of the default and localized agreement files.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/agreementfile-list-localizations?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 Down Expand Up @@ -80,7 +81,7 @@ public async Task<AgreementFileLocalization> PostAsync(AgreementFileLocalization
return await RequestAdapter.SendAsync<AgreementFileLocalization>(requestInfo, AgreementFileLocalization.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// The localized version of the terms of use agreement files attached to the agreement.
/// Get a list of the default and localized agreement files.
/// </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 Down Expand Up @@ -134,7 +135,7 @@ public RequestInformation ToPostRequestInformation(AgreementFileLocalization bod
return requestInfo;
}
/// <summary>
/// The localized version of the terms of use agreement files attached to the agreement.
/// Get a list of the default and localized agreement files.
/// </summary>
public class LocalizationsRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public RefRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdap
public RefRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies/$ref{?%24top,%24skip,%24search,%24filter,%24count,%24orderby}", rawUrl) {
}
/// <summary>
/// List the tokenLifetimePolicy objects that are assigned to an application.
/// List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -48,7 +48,7 @@ public async Task<StringCollectionResponse> GetAsync(Action<RefRequestBuilderGet
return await RequestAdapter.SendAsync<StringCollectionResponse>(requestInfo, StringCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// Assign a tokenLifetimePolicy to an application.
/// Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-1.0" />
/// </summary>
/// <param name="body">The request body</param>
Expand All @@ -70,7 +70,7 @@ public async Task PostAsync(ReferenceCreate body, Action<RefRequestBuilderPostRe
await RequestAdapter.SendNoContentAsync(requestInfo, errorMapping, cancellationToken);
}
/// <summary>
/// List the tokenLifetimePolicy objects that are assigned to an application.
/// List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application.
/// </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 @@ -96,7 +96,7 @@ public RequestInformation ToGetRequestInformation(Action<RefRequestBuilderGetReq
return requestInfo;
}
/// <summary>
/// Assign a tokenLifetimePolicy to an application.
/// Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application.
/// </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 @@ -123,7 +123,7 @@ public RequestInformation ToPostRequestInformation(ReferenceCreate body, Action<
return requestInfo;
}
/// <summary>
/// List the tokenLifetimePolicy objects that are assigned to an application.
/// List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application.
/// </summary>
public class RefRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public TokenLifetimePoliciesRequestBuilder(Dictionary<string, object> pathParame
public TokenLifetimePoliciesRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// List the tokenLifetimePolicy objects that are assigned to an application.
/// List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application.
/// Find more info here <see href="https://docs.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0" />
/// </summary>
/// <param name="cancellationToken">Cancellation token to use when cancelling requests</param>
Expand All @@ -65,7 +65,7 @@ public async Task<TokenLifetimePolicyCollectionResponse> GetAsync(Action<TokenLi
return await RequestAdapter.SendAsync<TokenLifetimePolicyCollectionResponse>(requestInfo, TokenLifetimePolicyCollectionResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken);
}
/// <summary>
/// List the tokenLifetimePolicy objects that are assigned to an application.
/// List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application.
/// </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 @@ -91,7 +91,7 @@ public RequestInformation ToGetRequestInformation(Action<TokenLifetimePoliciesRe
return requestInfo;
}
/// <summary>
/// List the tokenLifetimePolicy objects that are assigned to an application.
/// List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application.
/// </summary>
public class TokenLifetimePoliciesRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Loading

0 comments on commit adf4d40

Please sign in to comment.