Table of Contents

Class ExecutionsRequestBuilder

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

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

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

Constructors

ExecutionsRequestBuilder(Dictionary<string, object>, IRequestAdapter)

Instantiates a new ExecutionsRequestBuilder and sets the default values.

public ExecutionsRequestBuilder(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.

ExecutionsRequestBuilder(string, IRequestAdapter)

Instantiates a new ExecutionsRequestBuilder and sets the default values.

public ExecutionsRequestBuilder(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.

Properties

Execution

The execution property

public ExecutionRequestBuilder Execution { get; }

Property Value

ExecutionRequestBuilder

Flow

The flow property

public FlowRequestBuilder Flow { get; }

Property Value

FlowRequestBuilder

Methods

GetAsync(Action<RequestConfiguration<DefaultQueryParameters>>?, CancellationToken)

Get authentication executions for a flow

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

Parameters

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

PutAsync(AuthenticationExecutionInfoRepresentation, Action<RequestConfiguration<DefaultQueryParameters>>?, CancellationToken)

Update authentication executions of a Flow

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

Parameters

body AuthenticationExecutionInfoRepresentation

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

ToGetRequestInformation(Action<RequestConfiguration<DefaultQueryParameters>>?)

Get authentication executions for a flow

public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null)

Parameters

requestConfiguration Action<RequestConfiguration<DefaultQueryParameters>>

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

Returns

RequestInformation

A Microsoft.Kiota.Abstractions.RequestInformation

ToPutRequestInformation(AuthenticationExecutionInfoRepresentation, Action<RequestConfiguration<DefaultQueryParameters>>?)

Update authentication executions of a Flow

public RequestInformation ToPutRequestInformation(AuthenticationExecutionInfoRepresentation body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null)

Parameters

body AuthenticationExecutionInfoRepresentation

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

Parameters

rawUrl string

The raw URL to use for the request builder.

Returns

ExecutionsRequestBuilder

A ExecutionsRequestBuilder