Table of Contents

Class CopyRequestBuilder

Namespace
Keycloak.AuthServices.Sdk.Kiota.Admin.Admin.Realms.Item.Authentication.Flows.Item.Copy
Assembly
Keycloak.AuthServices.Sdk.Kiota.dll

Builds and executes requests for operations under \admin\realms{realm}\authentication\flows{flowAlias-id}\copy

public class CopyRequestBuilder : BaseRequestBuilder
Inheritance
BaseRequestBuilder
CopyRequestBuilder
Inherited Members
BaseRequestBuilder.PathParameters
BaseRequestBuilder.RequestAdapter
BaseRequestBuilder.UrlTemplate

Constructors

CopyRequestBuilder(Dictionary<string, object>, IRequestAdapter)

Instantiates a new CopyRequestBuilder and sets the default values.

public CopyRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter)

Parameters

pathParameters Dictionary<string, object>

Path parameters for the request

requestAdapter IRequestAdapter

The request adapter to use to execute the requests.

CopyRequestBuilder(string, IRequestAdapter)

Instantiates a new CopyRequestBuilder and sets the default values.

public CopyRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)

Parameters

rawUrl string

The raw URL to use for the request builder.

requestAdapter IRequestAdapter

The request adapter to use to execute the requests.

Methods

PostAsync(CopyPostRequestBody, Action<RequestConfiguration<DefaultQueryParameters>>?, CancellationToken)

Copy existing authentication flow under a new name The new name is given as 'newName' attribute of the passed JSON object

public Task<Stream?> PostAsync(CopyPostRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null, CancellationToken cancellationToken = default)

Parameters

body CopyPostRequestBody

The request body

requestConfiguration Action<RequestConfiguration<DefaultQueryParameters>>

Configuration for the request such as headers, query parameters, and middleware options.

cancellationToken CancellationToken

Cancellation token to use when cancelling requests

Returns

Task<Stream>

A Stream

ToPostRequestInformation(CopyPostRequestBody, Action<RequestConfiguration<DefaultQueryParameters>>?)

Copy existing authentication flow under a new name The new name is given as 'newName' attribute of the passed JSON object

public RequestInformation ToPostRequestInformation(CopyPostRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null)

Parameters

body CopyPostRequestBody

The 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 CopyRequestBuilder WithUrl(string rawUrl)

Parameters

rawUrl string

The raw URL to use for the request builder.

Returns

CopyRequestBuilder

A CopyRequestBuilder