Class DownloadRequestBuilder
- Namespace
- Keycloak.AuthServices.Sdk.Kiota.Admin.Admin.Realms.Item.Clients.Item.Certificates.Item.Download
- Assembly
- Keycloak.AuthServices.Sdk.Kiota.dll
Builds and executes requests for operations under \admin\realms{realm}\clients{client-uuid}\certificates{attr}\download
public class DownloadRequestBuilder : BaseRequestBuilder
- Inheritance
-
BaseRequestBuilderDownloadRequestBuilder
- Inherited Members
-
BaseRequestBuilder.PathParametersBaseRequestBuilder.RequestAdapterBaseRequestBuilder.UrlTemplate
Constructors
DownloadRequestBuilder(Dictionary<string, object>, IRequestAdapter)
Instantiates a new DownloadRequestBuilder and sets the default values.
public DownloadRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter)
Parameters
pathParameters
Dictionary<string, object>Path parameters for the request
requestAdapter
IRequestAdapterThe request adapter to use to execute the requests.
DownloadRequestBuilder(string, IRequestAdapter)
Instantiates a new DownloadRequestBuilder and sets the default values.
public DownloadRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)
Parameters
rawUrl
stringThe raw URL to use for the request builder.
requestAdapter
IRequestAdapterThe request adapter to use to execute the requests.
Methods
PostAsync(KeyStoreConfig, Action<RequestConfiguration<DefaultQueryParameters>>?, CancellationToken)
Get a keystore file for the client, containing private key and public certificate
public Task<Stream?> PostAsync(KeyStoreConfig body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null, CancellationToken cancellationToken = default)
Parameters
body
KeyStoreConfigThe request body
requestConfiguration
Action<RequestConfiguration<DefaultQueryParameters>>Configuration for the request such as headers, query parameters, and middleware options.
cancellationToken
CancellationTokenCancellation token to use when cancelling requests
Returns
ToPostRequestInformation(KeyStoreConfig, Action<RequestConfiguration<DefaultQueryParameters>>?)
Get a keystore file for the client, containing private key and public certificate
public RequestInformation ToPostRequestInformation(KeyStoreConfig body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null)
Parameters
body
KeyStoreConfigThe request body
requestConfiguration
Action<RequestConfiguration<DefaultQueryParameters>>Configuration for the request such as headers, query parameters, and middleware options.
Returns
- RequestInformation
A Microsoft.Kiota.Abstractions.RequestInformation
WithUrl(string)
Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
public DownloadRequestBuilder WithUrl(string rawUrl)
Parameters
rawUrl
stringThe raw URL to use for the request builder.