Table of Contents

Class ClientTemplatesRequestBuilder

Namespace
Keycloak.AuthServices.Sdk.Kiota.Admin.Admin.Realms.Item.ClientTemplates
Assembly
Keycloak.AuthServices.Sdk.Kiota.dll

Builds and executes requests for operations under \admin\realms{realm}\client-templates

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

Constructors

ClientTemplatesRequestBuilder(Dictionary<string, object>, IRequestAdapter)

Instantiates a new ClientTemplatesRequestBuilder and sets the default values.

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

ClientTemplatesRequestBuilder(string, IRequestAdapter)

Instantiates a new ClientTemplatesRequestBuilder and sets the default values.

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

this[string]

Gets an item from the Keycloak.AuthServices.Sdk.Kiota.Admin.admin.realms.item.clientTemplates.item collection

public ClientScopeItemRequestBuilder this[string position] { get; }

Parameters

position string

Unique identifier of the item

Property Value

ClientScopeItemRequestBuilder

A ClientScopeItemRequestBuilder

Methods

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

Get client scopes belonging to the realm Returns a list of client scopes belonging to the realm

public Task<List<ClientScopeRepresentation>?> 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<List<ClientScopeRepresentation>>

A List<ClientScopeRepresentation>

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

Create a new client scope Client Scope’s name must be unique!

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

Parameters

body ClientScopeRepresentation

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 client scopes belonging to the realm Returns a list of client scopes belonging to the realm

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

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

Create a new client scope Client Scope’s name must be unique!

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

Parameters

body ClientScopeRepresentation

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

Parameters

rawUrl string

The raw URL to use for the request builder.

Returns

ClientTemplatesRequestBuilder

A ClientTemplatesRequestBuilder