Table of Contents

Class ProfileRequestBuilder

Namespace
Keycloak.AuthServices.Sdk.Kiota.Admin.Admin.Realms.Item.Users.Profile
Assembly
Keycloak.AuthServices.Sdk.Kiota.dll

Builds and executes requests for operations under \admin\realms{realm}\users\profile

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

Constructors

ProfileRequestBuilder(Dictionary<string, object>, IRequestAdapter)

Instantiates a new ProfileRequestBuilder and sets the default values.

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

ProfileRequestBuilder(string, IRequestAdapter)

Instantiates a new ProfileRequestBuilder and sets the default values.

public ProfileRequestBuilder(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

Metadata

The metadata property

public MetadataRequestBuilder Metadata { get; }

Property Value

MetadataRequestBuilder

Methods

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

Get the configuration for the user profile

public Task<UPConfig?> 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<UPConfig>

A UPConfig

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

Set the configuration for the user profile

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

Parameters

body UPConfig

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<UPConfig>

A UPConfig

ToGetRequestInformation(Action<RequestConfiguration<DefaultQueryParameters>>?)

Get the configuration for the user profile

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(UPConfig, Action<RequestConfiguration<DefaultQueryParameters>>?)

Set the configuration for the user profile

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

Parameters

body UPConfig

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

Parameters

rawUrl string

The raw URL to use for the request builder.

Returns

ProfileRequestBuilder

A ProfileRequestBuilder