kcadmin

package
v0.0.0-...-d2b07c8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 10, 2026 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

Package kcadmin is a typed Go client for the Keycloak Admin REST API.

It is built from three layers:

  1. Generated layer (zz_generated.go). Typed models and a low-level net/http client produced by oapi-codegen from the vendored OpenAPI spec in openapi/keycloak-26.7.yaml. The generated client type is RawClient. This file is machine-owned and must never be hand-edited; regenerate it with `make generate`.

  2. Auth/transport layer (auth.go). OAuth2 token sources for the two Keycloak admin authentication flows — service-account (client_credentials) and admin password grant — plus a helper that wraps a token source in an *http.Client which injects the bearer token and refreshes it automatically. The generated client knows nothing about authentication; you inject a ready-to-use *http.Client into it.

  3. Augmentation layer (client.go, errors.go, organizations.go, augment.go). A thin, ergonomic Client facade over RawClient that adds structured error mapping (HTTP status -> typed sentinel errors) and hand-written typed wrappers for endpoints whose OpenAPI typing is too loose to be pleasant to use directly (notably Organizations).

Base URL

The baseURL passed to New is the Keycloak server root, for example "https://auth.example.com". The generated operation paths already include the "/admin" prefix (e.g. "/admin/realms/{realm}/users"), so do not append "/admin" yourself. The facade normalizes the base URL to preserve any context path.

Versioning

SDK releases track the Keycloak minor version. The tag vMAJOR.MINOR.PATCH (for example v26.7.x) corresponds to openapi/keycloak-26.7.yaml.

Package kcadmin provides primitives to interact with the openapi HTTP API.

Code generated by github.com/oapi-codegen/oapi-codegen/v2 version v2.7.2 DO NOT EDIT.

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrBadRequest maps to HTTP 400.
	ErrBadRequest = errors.New("kcadmin: bad request")
	// ErrUnauthorized maps to HTTP 401.
	ErrUnauthorized = errors.New("kcadmin: unauthorized")
	// ErrForbidden maps to HTTP 403.
	ErrForbidden = errors.New("kcadmin: forbidden")
	// ErrNotFound maps to HTTP 404.
	ErrNotFound = errors.New("kcadmin: not found")
	// ErrConflict maps to HTTP 409.
	ErrConflict = errors.New("kcadmin: conflict")
	// ErrServer maps to any HTTP 5xx.
	ErrServer = errors.New("kcadmin: server error")
)

Sentinel errors for the common Keycloak Admin API failure classes. Match them with errors.Is against any error returned by the Client facade:

if errors.Is(err, kcadmin.ErrConflict) { ... }

Functions

func ClientCredentialsTokenSource

func ClientCredentialsTokenSource(ctx context.Context, baseURL, realm, clientID, clientSecret string, scopes ...string) oauth2.TokenSource

ClientCredentialsTokenSource returns an oauth2.TokenSource using the client_credentials grant. This is the flow for Keycloak service accounts: the client must have "Service accounts enabled" and the roles required by the admin operations it performs.

The returned source is lazy and self-refreshing: the first token is fetched on first use and subsequent tokens are refreshed transparently on expiry.

func NewAuthedHTTPClient

func NewAuthedHTTPClient(ctx context.Context, ts oauth2.TokenSource) *http.Client

NewAuthedHTTPClient wraps a token source in an *http.Client whose transport injects the bearer token into every request and refreshes it on expiry.

The resulting client is what you inject into New: the generated client remains authentication-agnostic.

func NewDeleteAdminRealmsRealmAdminEventsRequest

func NewDeleteAdminRealmsRealmAdminEventsRequest(server string, realm string) (*http.Request, error)

NewDeleteAdminRealmsRealmAdminEventsRequest generates requests for DeleteAdminRealmsRealmAdminEvents

func NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersRequest

func NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersRequest(server string, realm string) (*http.Request, error)

NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersRequest generates requests for DeleteAdminRealmsRealmAttackDetectionBruteForceUsers

func NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest

func NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest(server string, realm string, userID string) (*http.Request, error)

NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest generates requests for DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID

func NewDeleteAdminRealmsRealmAuthenticationConfigIDRequest

func NewDeleteAdminRealmsRealmAuthenticationConfigIDRequest(server string, realm string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmAuthenticationConfigIDRequest generates requests for DeleteAdminRealmsRealmAuthenticationConfigID

func NewDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest

func NewDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest(server string, realm string, executionID string) (*http.Request, error)

NewDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest generates requests for DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID

func NewDeleteAdminRealmsRealmAuthenticationFlowsIDRequest

func NewDeleteAdminRealmsRealmAuthenticationFlowsIDRequest(server string, realm string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmAuthenticationFlowsIDRequest generates requests for DeleteAdminRealmsRealmAuthenticationFlowsID

func NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest

func NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest(server string, realm string, alias string) (*http.Request, error)

NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest generates requests for DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig

func NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasRequest

func NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasRequest(server string, realm string, alias string) (*http.Request, error)

NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasRequest generates requests for DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest generates requests for DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDRequest

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientScopesClientScopeIDRequest generates requests for DeleteAdminRealmsRealmClientScopesClientScopeID

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest calls the generic DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient builder with application/json body

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody generates requests for DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient with any type of body

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest calls the generic DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm builder with application/json body

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody

func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody generates requests for DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm with any type of body

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest generates requests for DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDRequest

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDRequest generates requests for DeleteAdminRealmsRealmClientTemplatesClientScopeID

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest calls the generic DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient builder with application/json body

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody generates requests for DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient with any type of body

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest calls the generic DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm builder with application/json body

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody

func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody generates requests for DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm with any type of body

func NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest(server string, realm string, clientUUID string, resourceID string, params *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID

func NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID

func NewDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated

func NewDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID

func NewDeleteAdminRealmsRealmClientsClientUUIDNodesNodeRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDNodesNodeRequest(server string, realm string, clientUUID string, node string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDNodesNodeRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDNodesNode

func NewDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID

func NewDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest(server string, realm string, clientUUID string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID

func NewDeleteAdminRealmsRealmClientsClientUUIDRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDRequest generates requests for DeleteAdminRealmsRealmClientsClientUUID

func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest(server string, realm string, clientUUID string, roleName string, body DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest calls the generic DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites builder with application/json body

func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody

func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody(server string, realm string, clientUUID string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody generates requests for DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites with any type of body

func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest generates requests for DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest(server string, realm string, clientUUID string, client string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest calls the generic DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient builder with application/json body

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientUUID string, client string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody generates requests for DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient with any type of body

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest(server string, realm string, clientUUID string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest calls the generic DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm builder with application/json body

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody

func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody generates requests for DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm with any type of body

func NewDeleteAdminRealmsRealmClientsInitialAccessIDRequest

func NewDeleteAdminRealmsRealmClientsInitialAccessIDRequest(server string, realm string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmClientsInitialAccessIDRequest generates requests for DeleteAdminRealmsRealmClientsInitialAccessID

func NewDeleteAdminRealmsRealmComponentsIDRequest

func NewDeleteAdminRealmsRealmComponentsIDRequest(server string, realm string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmComponentsIDRequest generates requests for DeleteAdminRealmsRealmComponentsID

func NewDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest

func NewDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest generates requests for DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID

func NewDeleteAdminRealmsRealmDefaultGroupsGroupIDRequest

func NewDeleteAdminRealmsRealmDefaultGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)

NewDeleteAdminRealmsRealmDefaultGroupsGroupIDRequest generates requests for DeleteAdminRealmsRealmDefaultGroupsGroupID

func NewDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest

func NewDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest generates requests for DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID

func NewDeleteAdminRealmsRealmEventsRequest

func NewDeleteAdminRealmsRealmEventsRequest(server string, realm string) (*http.Request, error)

NewDeleteAdminRealmsRealmEventsRequest generates requests for DeleteAdminRealmsRealmEvents

func NewDeleteAdminRealmsRealmGroupsGroupIDRequest

func NewDeleteAdminRealmsRealmGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)

NewDeleteAdminRealmsRealmGroupsGroupIDRequest generates requests for DeleteAdminRealmsRealmGroupsGroupID

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, groupID string, clientID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest calls the generic DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID builder with application/json body

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, groupID string, clientID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody generates requests for DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID with any type of body

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, groupID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest calls the generic DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm builder with application/json body

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody

func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody generates requests for DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm with any type of body

func NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest

func NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest(server string, realm string, alias string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest generates requests for DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID

func NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasRequest

func NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasRequest(server string, realm string, alias string) (*http.Request, error)

NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasRequest generates requests for DeleteAdminRealmsRealmIdentityProviderInstancesAlias

func NewDeleteAdminRealmsRealmLocalizationLocaleKeyRequest

func NewDeleteAdminRealmsRealmLocalizationLocaleKeyRequest(server string, realm string, locale string, key string) (*http.Request, error)

NewDeleteAdminRealmsRealmLocalizationLocaleKeyRequest generates requests for DeleteAdminRealmsRealmLocalizationLocaleKey

func NewDeleteAdminRealmsRealmLocalizationLocaleRequest

func NewDeleteAdminRealmsRealmLocalizationLocaleRequest(server string, realm string, locale string) (*http.Request, error)

NewDeleteAdminRealmsRealmLocalizationLocaleRequest generates requests for DeleteAdminRealmsRealmLocalizationLocale

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest(server string, realm string, orgID string, groupID string, userID string) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, orgID string, groupID string, clientID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest calls the generic DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID builder with application/json body

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID with any type of body

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, orgID string, groupID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest calls the generic DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm builder with application/json body

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody

func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm with any type of body

func NewDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest(server string, realm string, orgID string, alias string) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias

func NewDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest(server string, realm string, orgID string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID

func NewDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest(server string, realm string, orgID string, memberID string) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest generates requests for DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID

func NewDeleteAdminRealmsRealmOrganizationsOrgIDRequest

func NewDeleteAdminRealmsRealmOrganizationsOrgIDRequest(server string, realm string, orgID string) (*http.Request, error)

NewDeleteAdminRealmsRealmOrganizationsOrgIDRequest generates requests for DeleteAdminRealmsRealmOrganizationsOrgID

func NewDeleteAdminRealmsRealmRequest

func NewDeleteAdminRealmsRealmRequest(server string, realm string) (*http.Request, error)

NewDeleteAdminRealmsRealmRequest generates requests for DeleteAdminRealmsRealm

func NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequest

func NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequest(server string, realm string, roleID string, body DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequest calls the generic DeleteAdminRealmsRealmRolesByIDRoleIDComposites builder with application/json body

func NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody

func NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody generates requests for DeleteAdminRealmsRealmRolesByIDRoleIDComposites with any type of body

func NewDeleteAdminRealmsRealmRolesByIDRoleIDRequest

func NewDeleteAdminRealmsRealmRolesByIDRoleIDRequest(server string, realm string, roleID string) (*http.Request, error)

NewDeleteAdminRealmsRealmRolesByIDRoleIDRequest generates requests for DeleteAdminRealmsRealmRolesByIDRoleID

func NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequest

func NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequest(server string, realm string, roleName string, body DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequest calls the generic DeleteAdminRealmsRealmRolesRoleNameComposites builder with application/json body

func NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequestWithBody

func NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequestWithBody(server string, realm string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequestWithBody generates requests for DeleteAdminRealmsRealmRolesRoleNameComposites with any type of body

func NewDeleteAdminRealmsRealmRolesRoleNameRequest

func NewDeleteAdminRealmsRealmRolesRoleNameRequest(server string, realm string, roleName string) (*http.Request, error)

NewDeleteAdminRealmsRealmRolesRoleNameRequest generates requests for DeleteAdminRealmsRealmRolesRoleName

func NewDeleteAdminRealmsRealmSessionsSessionRequest

func NewDeleteAdminRealmsRealmSessionsSessionRequest(server string, realm string, session string, params *DeleteAdminRealmsRealmSessionsSessionParams) (*http.Request, error)

NewDeleteAdminRealmsRealmSessionsSessionRequest generates requests for DeleteAdminRealmsRealmSessionsSession

func NewDeleteAdminRealmsRealmUsersUserIDConsentsClientRequest

func NewDeleteAdminRealmsRealmUsersUserIDConsentsClientRequest(server string, realm string, userID string, client string) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDConsentsClientRequest generates requests for DeleteAdminRealmsRealmUsersUserIDConsentsClient

func NewDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDRequest

func NewDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDRequest(server string, realm string, userID string, credentialID string) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDRequest generates requests for DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID

func NewDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest

func NewDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest(server string, realm string, userID string, provider string) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest generates requests for DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider

func NewDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDRequest

func NewDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDRequest(server string, realm string, userID string, groupID string) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDRequest generates requests for DeleteAdminRealmsRealmUsersUserIDGroupsGroupID

func NewDeleteAdminRealmsRealmUsersUserIDRequest

func NewDeleteAdminRealmsRealmUsersUserIDRequest(server string, realm string, userID string) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDRequest generates requests for DeleteAdminRealmsRealmUsersUserID

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest(server string, realm string, userID string, clientID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest calls the generic DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID builder with application/json body

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, userID string, clientID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody generates requests for DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID with any type of body

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest(server string, realm string, userID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest calls the generic DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm builder with application/json body

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody

func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)

NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody generates requests for DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm with any type of body

func NewDeleteAdminRealmsRealmWorkflowsIDRequest

func NewDeleteAdminRealmsRealmWorkflowsIDRequest(server string, realm string, id string) (*http.Request, error)

NewDeleteAdminRealmsRealmWorkflowsIDRequest generates requests for DeleteAdminRealmsRealmWorkflowsID

func NewGetAdminRealmsRealmAdminEventsRequest

func NewGetAdminRealmsRealmAdminEventsRequest(server string, realm string, params *GetAdminRealmsRealmAdminEventsParams) (*http.Request, error)

NewGetAdminRealmsRealmAdminEventsRequest generates requests for GetAdminRealmsRealmAdminEvents

func NewGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest

func NewGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest generates requests for GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID

func NewGetAdminRealmsRealmAuthenticationAuthenticatorProvidersRequest

func NewGetAdminRealmsRealmAuthenticationAuthenticatorProvidersRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationAuthenticatorProvidersRequest generates requests for GetAdminRealmsRealmAuthenticationAuthenticatorProviders

func NewGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersRequest

func NewGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersRequest generates requests for GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders

func NewGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDRequest

func NewGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDRequest(server string, realm string, providerID string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDRequest generates requests for GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID

func NewGetAdminRealmsRealmAuthenticationConfigIDRequest

func NewGetAdminRealmsRealmAuthenticationConfigIDRequest(server string, realm string, id string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationConfigIDRequest generates requests for GetAdminRealmsRealmAuthenticationConfigID

func NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDRequest

func NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDRequest(server string, realm string, executionID string, id string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDRequest generates requests for GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID

func NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest

func NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest(server string, realm string, executionID string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest generates requests for GetAdminRealmsRealmAuthenticationExecutionsExecutionID

func NewGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest

func NewGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest(server string, realm string, flowAlias string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest generates requests for GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions

func NewGetAdminRealmsRealmAuthenticationFlowsIDRequest

func NewGetAdminRealmsRealmAuthenticationFlowsIDRequest(server string, realm string, id string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationFlowsIDRequest generates requests for GetAdminRealmsRealmAuthenticationFlowsID

func NewGetAdminRealmsRealmAuthenticationFlowsRequest

func NewGetAdminRealmsRealmAuthenticationFlowsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationFlowsRequest generates requests for GetAdminRealmsRealmAuthenticationFlows

func NewGetAdminRealmsRealmAuthenticationFormActionProvidersRequest

func NewGetAdminRealmsRealmAuthenticationFormActionProvidersRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationFormActionProvidersRequest generates requests for GetAdminRealmsRealmAuthenticationFormActionProviders

func NewGetAdminRealmsRealmAuthenticationFormProvidersRequest

func NewGetAdminRealmsRealmAuthenticationFormProvidersRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationFormProvidersRequest generates requests for GetAdminRealmsRealmAuthenticationFormProviders

func NewGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionRequest

func NewGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionRequest generates requests for GetAdminRealmsRealmAuthenticationPerClientConfigDescription

func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionRequest

func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionRequest generates requests for GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription

func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest

func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest generates requests for GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig

func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasRequest

func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasRequest generates requests for GetAdminRealmsRealmAuthenticationRequiredActionsAlias

func NewGetAdminRealmsRealmAuthenticationRequiredActionsRequest

func NewGetAdminRealmsRealmAuthenticationRequiredActionsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationRequiredActionsRequest generates requests for GetAdminRealmsRealmAuthenticationRequiredActions

func NewGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsRequest

func NewGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsRequest generates requests for GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions

func NewGetAdminRealmsRealmClientPoliciesPoliciesRequest

func NewGetAdminRealmsRealmClientPoliciesPoliciesRequest(server string, realm string, params *GetAdminRealmsRealmClientPoliciesPoliciesParams) (*http.Request, error)

NewGetAdminRealmsRealmClientPoliciesPoliciesRequest generates requests for GetAdminRealmsRealmClientPoliciesPolicies

func NewGetAdminRealmsRealmClientPoliciesProfilesRequest

func NewGetAdminRealmsRealmClientPoliciesProfilesRequest(server string, realm string, params *GetAdminRealmsRealmClientPoliciesProfilesParams) (*http.Request, error)

NewGetAdminRealmsRealmClientPoliciesProfilesRequest generates requests for GetAdminRealmsRealmClientPoliciesProfiles

func NewGetAdminRealmsRealmClientRegistrationPolicyProvidersRequest

func NewGetAdminRealmsRealmClientRegistrationPolicyProvidersRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmClientRegistrationPolicyProvidersRequest generates requests for GetAdminRealmsRealmClientRegistrationPolicyProviders

func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID

func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels

func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolRequest(server string, realm string, clientScopeID string, protocol string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol

func NewGetAdminRealmsRealmClientScopesClientScopeIDRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeID

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailable

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeRequest(server string, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeRequest(server string, realm string, clientScopeID string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRequest

func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRequest generates requests for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings

func NewGetAdminRealmsRealmClientScopesRequest

func NewGetAdminRealmsRealmClientScopesRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmClientScopesRequest generates requests for GetAdminRealmsRealmClientScopes

func NewGetAdminRealmsRealmClientSessionStatsRequest

func NewGetAdminRealmsRealmClientSessionStatsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmClientSessionStatsRequest generates requests for GetAdminRealmsRealmClientSessionStats

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolRequest(server string, realm string, clientScopeID string, protocol string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocol

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeID

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeRequest(server string, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeRequest(server string, realm string, clientScopeID string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRequest

func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRequest generates requests for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings

func NewGetAdminRealmsRealmClientTemplatesRequest

func NewGetAdminRealmsRealmClientTemplatesRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmClientTemplatesRequest generates requests for GetAdminRealmsRealmClientTemplates

func NewGetAdminRealmsRealmClientTypesRequest

func NewGetAdminRealmsRealmClientTypesRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmClientTypesRequest generates requests for GetAdminRealmsRealmClientTypes

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProviders

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProviders

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesRequest(server string, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsRequest(server string, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest(server string, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesRequest(server string, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissions

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResources

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsRequest

func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings

func NewGetAdminRealmsRealmClientsClientUUIDCertificatesAttrRequest

func NewGetAdminRealmsRealmClientsClientUUIDCertificatesAttrRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDCertificatesAttrRequest generates requests for GetAdminRealmsRealmClientsClientUUIDCertificatesAttr

func NewGetAdminRealmsRealmClientsClientUUIDClientSecretRequest

func NewGetAdminRealmsRealmClientsClientUUIDClientSecretRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDClientSecretRequest generates requests for GetAdminRealmsRealmClientsClientUUIDClientSecret

func NewGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest

func NewGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest generates requests for GetAdminRealmsRealmClientsClientUUIDClientSecretRotated

func NewGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesRequest

func NewGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedRequest(server string, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedRequest

func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedRequest(server string, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedRequest generates requests for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted

func NewGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDRequest

func NewGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDRequest(server string, realm string, clientUUID string, providerID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDRequest generates requests for GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderID

func NewGetAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest

func NewGetAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDManagementPermissions

func NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountRequest

func NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountRequest generates requests for GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount

func NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionsRequest

func NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionsRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDOfflineSessions

func NewGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesRequest

func NewGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDOptionalClientScopes

func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest

func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest(server string, realm string, clientUUID string, id string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest generates requests for GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID

func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest

func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels

func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolRequest

func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolRequest(server string, realm string, clientUUID string, protocol string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolRequest generates requests for GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol

func NewGetAdminRealmsRealmClientsClientUUIDRequest

func NewGetAdminRealmsRealmClientsClientUUIDRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRequest generates requests for GetAdminRealmsRealmClientsClientUUID

func NewGetAdminRealmsRealmClientsClientUUIDRolesRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDRolesParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRoles

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDRequest(server string, realm string, clientUUID string, roleName string, targetClientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsRequest(server string, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleName

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersRequest

func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersRequest(server string, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersRequest generates requests for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableRequest(server string, realm string, clientUUID string, client string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeRequest(server string, realm string, clientUUID string, client string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest(server string, realm string, clientUUID string, client string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealm

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRequest

func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDScopeMappings

func NewGetAdminRealmsRealmClientsClientUUIDServiceAccountUserRequest

func NewGetAdminRealmsRealmClientsClientUUIDServiceAccountUserRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDServiceAccountUserRequest generates requests for GetAdminRealmsRealmClientsClientUUIDServiceAccountUser

func NewGetAdminRealmsRealmClientsClientUUIDSessionCountRequest

func NewGetAdminRealmsRealmClientsClientUUIDSessionCountRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDSessionCountRequest generates requests for GetAdminRealmsRealmClientsClientUUIDSessionCount

func NewGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableRequest

func NewGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableRequest generates requests for GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable

func NewGetAdminRealmsRealmClientsClientUUIDUserSessionsRequest

func NewGetAdminRealmsRealmClientsClientUUIDUserSessionsRequest(server string, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDUserSessionsParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsClientUUIDUserSessionsRequest generates requests for GetAdminRealmsRealmClientsClientUUIDUserSessions

func NewGetAdminRealmsRealmClientsInitialAccessRequest

func NewGetAdminRealmsRealmClientsInitialAccessRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmClientsInitialAccessRequest generates requests for GetAdminRealmsRealmClientsInitialAccess

func NewGetAdminRealmsRealmClientsRequest

func NewGetAdminRealmsRealmClientsRequest(server string, realm string, params *GetAdminRealmsRealmClientsParams) (*http.Request, error)

NewGetAdminRealmsRealmClientsRequest generates requests for GetAdminRealmsRealmClients

func NewGetAdminRealmsRealmComponentsIDRequest

func NewGetAdminRealmsRealmComponentsIDRequest(server string, realm string, id string) (*http.Request, error)

NewGetAdminRealmsRealmComponentsIDRequest generates requests for GetAdminRealmsRealmComponentsID

func NewGetAdminRealmsRealmComponentsIDSubComponentTypesRequest

func NewGetAdminRealmsRealmComponentsIDSubComponentTypesRequest(server string, realm string, id string, params *GetAdminRealmsRealmComponentsIDSubComponentTypesParams) (*http.Request, error)

NewGetAdminRealmsRealmComponentsIDSubComponentTypesRequest generates requests for GetAdminRealmsRealmComponentsIDSubComponentTypes

func NewGetAdminRealmsRealmComponentsRequest

func NewGetAdminRealmsRealmComponentsRequest(server string, realm string, params *GetAdminRealmsRealmComponentsParams) (*http.Request, error)

NewGetAdminRealmsRealmComponentsRequest generates requests for GetAdminRealmsRealmComponents

func NewGetAdminRealmsRealmCredentialRegistratorsRequest

func NewGetAdminRealmsRealmCredentialRegistratorsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmCredentialRegistratorsRequest generates requests for GetAdminRealmsRealmCredentialRegistrators

func NewGetAdminRealmsRealmDefaultDefaultClientScopesRequest

func NewGetAdminRealmsRealmDefaultDefaultClientScopesRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmDefaultDefaultClientScopesRequest generates requests for GetAdminRealmsRealmDefaultDefaultClientScopes

func NewGetAdminRealmsRealmDefaultGroupsRequest

func NewGetAdminRealmsRealmDefaultGroupsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmDefaultGroupsRequest generates requests for GetAdminRealmsRealmDefaultGroups

func NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest

func NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest generates requests for GetAdminRealmsRealmDefaultOptionalClientScopes

func NewGetAdminRealmsRealmEventsConfigRequest

func NewGetAdminRealmsRealmEventsConfigRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmEventsConfigRequest generates requests for GetAdminRealmsRealmEventsConfig

func NewGetAdminRealmsRealmEventsRequest

func NewGetAdminRealmsRealmEventsRequest(server string, realm string, params *GetAdminRealmsRealmEventsParams) (*http.Request, error)

NewGetAdminRealmsRealmEventsRequest generates requests for GetAdminRealmsRealmEvents

func NewGetAdminRealmsRealmGroupByPathPathRequest

func NewGetAdminRealmsRealmGroupByPathPathRequest(server string, realm string, path string) (*http.Request, error)

NewGetAdminRealmsRealmGroupByPathPathRequest generates requests for GetAdminRealmsRealmGroupByPathPath

func NewGetAdminRealmsRealmGroupsCountRequest

func NewGetAdminRealmsRealmGroupsCountRequest(server string, realm string, params *GetAdminRealmsRealmGroupsCountParams) (*http.Request, error)

NewGetAdminRealmsRealmGroupsCountRequest generates requests for GetAdminRealmsRealmGroupsCount

func NewGetAdminRealmsRealmGroupsGroupIDChildrenRequest

func NewGetAdminRealmsRealmGroupsGroupIDChildrenRequest(server string, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDChildrenParams) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDChildrenRequest generates requests for GetAdminRealmsRealmGroupsGroupIDChildren

func NewGetAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest

func NewGetAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest(server string, realm string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest generates requests for GetAdminRealmsRealmGroupsGroupIDManagementPermissions

func NewGetAdminRealmsRealmGroupsGroupIDMembersRequest

func NewGetAdminRealmsRealmGroupsGroupIDMembersRequest(server string, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDMembersParams) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDMembersRequest generates requests for GetAdminRealmsRealmGroupsGroupIDMembers

func NewGetAdminRealmsRealmGroupsGroupIDRequest

func NewGetAdminRealmsRealmGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRequest generates requests for GetAdminRealmsRealmGroupsGroupID

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest(server string, realm string, groupID string, clientID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest(server string, realm string, groupID string, clientID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, groupID string, clientID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableRequest(server string, realm string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeRequest(server string, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRequest

func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRequest(server string, realm string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRequest generates requests for GetAdminRealmsRealmGroupsGroupIDRoleMappings

func NewGetAdminRealmsRealmGroupsRequest

func NewGetAdminRealmsRealmGroupsRequest(server string, realm string, params *GetAdminRealmsRealmGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmGroupsRequest generates requests for GetAdminRealmsRealmGroups

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasExportRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasExportRequest(server string, realm string, alias string, params *GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasExportRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAliasExport

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest(server string, realm string, alias string, id string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAliasMappers

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesAliasRequest(server string, realm string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesAliasRequest generates requests for GetAdminRealmsRealmIdentityProviderInstancesAlias

func NewGetAdminRealmsRealmIdentityProviderInstancesRequest

func NewGetAdminRealmsRealmIdentityProviderInstancesRequest(server string, realm string, params *GetAdminRealmsRealmIdentityProviderInstancesParams) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderInstancesRequest generates requests for GetAdminRealmsRealmIdentityProviderInstances

func NewGetAdminRealmsRealmIdentityProviderProvidersProviderIDRequest

func NewGetAdminRealmsRealmIdentityProviderProvidersProviderIDRequest(server string, realm string, providerID string) (*http.Request, error)

NewGetAdminRealmsRealmIdentityProviderProvidersProviderIDRequest generates requests for GetAdminRealmsRealmIdentityProviderProvidersProviderID

func NewGetAdminRealmsRealmKeysRequest

func NewGetAdminRealmsRealmKeysRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmKeysRequest generates requests for GetAdminRealmsRealmKeys

func NewGetAdminRealmsRealmLocalizationLocaleKeyRequest

func NewGetAdminRealmsRealmLocalizationLocaleKeyRequest(server string, realm string, locale string, key string) (*http.Request, error)

NewGetAdminRealmsRealmLocalizationLocaleKeyRequest generates requests for GetAdminRealmsRealmLocalizationLocaleKey

func NewGetAdminRealmsRealmLocalizationLocaleRequest

func NewGetAdminRealmsRealmLocalizationLocaleRequest(server string, realm string, locale string, params *GetAdminRealmsRealmLocalizationLocaleParams) (*http.Request, error)

NewGetAdminRealmsRealmLocalizationLocaleRequest generates requests for GetAdminRealmsRealmLocalizationLocale

func NewGetAdminRealmsRealmLocalizationRequest

func NewGetAdminRealmsRealmLocalizationRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmLocalizationRequest generates requests for GetAdminRealmsRealmLocalization

func NewGetAdminRealmsRealmOrganizationsCountRequest

func NewGetAdminRealmsRealmOrganizationsCountRequest(server string, realm string, params *GetAdminRealmsRealmOrganizationsCountParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsCountRequest generates requests for GetAdminRealmsRealmOrganizationsCount

func NewGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsRequest

func NewGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsRequest(server string, realm string, memberID string, params *GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsRequest generates requests for GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathRequest(server string, realm string, orgID string, path string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest(server string, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersRequest(server string, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest(server string, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest(server string, realm string, orgID string, groupID string, clientID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest(server string, realm string, orgID string, groupID string, clientID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, orgID string, groupID string, clientID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailable

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeRequest(server string, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsRequest(server string, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDGroupsRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDGroups

func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsRequest(server string, realm string, orgID string, alias string, params *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups

func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest(server string, realm string, orgID string, alias string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias

func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest(server string, realm string, orgID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDIdentityProviders

func NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest(server string, realm string, orgID string, id string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDInvitationsID

func NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsRequest(server string, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDInvitations

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersCountRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersCountRequest(server string, realm string, orgID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDMembersCountRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDMembersCount

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsRequest(server string, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsRequest(server string, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest(server string, realm string, orgID string, memberID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDMembersRequest(server string, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDMembersRequest generates requests for GetAdminRealmsRealmOrganizationsOrgIDMembers

func NewGetAdminRealmsRealmOrganizationsOrgIDRequest

func NewGetAdminRealmsRealmOrganizationsOrgIDRequest(server string, realm string, orgID string) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsOrgIDRequest generates requests for GetAdminRealmsRealmOrganizationsOrgID

func NewGetAdminRealmsRealmOrganizationsRequest

func NewGetAdminRealmsRealmOrganizationsRequest(server string, realm string, params *GetAdminRealmsRealmOrganizationsParams) (*http.Request, error)

NewGetAdminRealmsRealmOrganizationsRequest generates requests for GetAdminRealmsRealmOrganizations

func NewGetAdminRealmsRealmRequest

func NewGetAdminRealmsRealmRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmRequest generates requests for GetAdminRealmsRealm

func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDRequest

func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDRequest(server string, realm string, roleID string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDRequest generates requests for GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUID

func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmRequest

func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmRequest(server string, realm string, roleID string) (*http.Request, error)

NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmRequest generates requests for GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm

func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRequest

func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRequest(server string, realm string, roleID string, params *GetAdminRealmsRealmRolesByIDRoleIDCompositesParams) (*http.Request, error)

NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRequest generates requests for GetAdminRealmsRealmRolesByIDRoleIDComposites

func NewGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest

func NewGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest(server string, realm string, roleID string) (*http.Request, error)

NewGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest generates requests for GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions

func NewGetAdminRealmsRealmRolesByIDRoleIDRequest

func NewGetAdminRealmsRealmRolesByIDRoleIDRequest(server string, realm string, roleID string) (*http.Request, error)

NewGetAdminRealmsRealmRolesByIDRoleIDRequest generates requests for GetAdminRealmsRealmRolesByIDRoleID

func NewGetAdminRealmsRealmRolesRequest

func NewGetAdminRealmsRealmRolesRequest(server string, realm string, params *GetAdminRealmsRealmRolesParams) (*http.Request, error)

NewGetAdminRealmsRealmRolesRequest generates requests for GetAdminRealmsRealmRoles

func NewGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDRequest

func NewGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDRequest(server string, realm string, roleName string, targetClientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDRequest generates requests for GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID

func NewGetAdminRealmsRealmRolesRoleNameCompositesRealmRequest

func NewGetAdminRealmsRealmRolesRoleNameCompositesRealmRequest(server string, realm string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameCompositesRealmRequest generates requests for GetAdminRealmsRealmRolesRoleNameCompositesRealm

func NewGetAdminRealmsRealmRolesRoleNameCompositesRequest

func NewGetAdminRealmsRealmRolesRoleNameCompositesRequest(server string, realm string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameCompositesRequest generates requests for GetAdminRealmsRealmRolesRoleNameComposites

func NewGetAdminRealmsRealmRolesRoleNameGroupsRequest

func NewGetAdminRealmsRealmRolesRoleNameGroupsRequest(server string, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameGroupsRequest generates requests for GetAdminRealmsRealmRolesRoleNameGroups

func NewGetAdminRealmsRealmRolesRoleNameManagementPermissionsRequest

func NewGetAdminRealmsRealmRolesRoleNameManagementPermissionsRequest(server string, realm string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameManagementPermissionsRequest generates requests for GetAdminRealmsRealmRolesRoleNameManagementPermissions

func NewGetAdminRealmsRealmRolesRoleNameRequest

func NewGetAdminRealmsRealmRolesRoleNameRequest(server string, realm string, roleName string) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameRequest generates requests for GetAdminRealmsRealmRolesRoleName

func NewGetAdminRealmsRealmRolesRoleNameUsersRequest

func NewGetAdminRealmsRealmRolesRoleNameUsersRequest(server string, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameUsersParams) (*http.Request, error)

NewGetAdminRealmsRealmRolesRoleNameUsersRequest generates requests for GetAdminRealmsRealmRolesRoleNameUsers

func NewGetAdminRealmsRealmUsersCountRequest

func NewGetAdminRealmsRealmUsersCountRequest(server string, realm string, params *GetAdminRealmsRealmUsersCountParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersCountRequest generates requests for GetAdminRealmsRealmUsersCount

func NewGetAdminRealmsRealmUsersManagementPermissionsRequest

func NewGetAdminRealmsRealmUsersManagementPermissionsRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmUsersManagementPermissionsRequest generates requests for GetAdminRealmsRealmUsersManagementPermissions

func NewGetAdminRealmsRealmUsersProfileMetadataRequest

func NewGetAdminRealmsRealmUsersProfileMetadataRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmUsersProfileMetadataRequest generates requests for GetAdminRealmsRealmUsersProfileMetadata

func NewGetAdminRealmsRealmUsersProfileRequest

func NewGetAdminRealmsRealmUsersProfileRequest(server string, realm string) (*http.Request, error)

NewGetAdminRealmsRealmUsersProfileRequest generates requests for GetAdminRealmsRealmUsersProfile

func NewGetAdminRealmsRealmUsersRequest

func NewGetAdminRealmsRealmUsersRequest(server string, realm string, params *GetAdminRealmsRealmUsersParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersRequest generates requests for GetAdminRealmsRealmUsers

func NewGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesRequest

func NewGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesRequest generates requests for GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypes

func NewGetAdminRealmsRealmUsersUserIDConsentsRequest

func NewGetAdminRealmsRealmUsersUserIDConsentsRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDConsentsRequest generates requests for GetAdminRealmsRealmUsersUserIDConsents

func NewGetAdminRealmsRealmUsersUserIDCredentialsRequest

func NewGetAdminRealmsRealmUsersUserIDCredentialsRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDCredentialsRequest generates requests for GetAdminRealmsRealmUsersUserIDCredentials

func NewGetAdminRealmsRealmUsersUserIDFederatedIdentityRequest

func NewGetAdminRealmsRealmUsersUserIDFederatedIdentityRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDFederatedIdentityRequest generates requests for GetAdminRealmsRealmUsersUserIDFederatedIdentity

func NewGetAdminRealmsRealmUsersUserIDGroupsCountRequest

func NewGetAdminRealmsRealmUsersUserIDGroupsCountRequest(server string, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsCountParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDGroupsCountRequest generates requests for GetAdminRealmsRealmUsersUserIDGroupsCount

func NewGetAdminRealmsRealmUsersUserIDGroupsRequest

func NewGetAdminRealmsRealmUsersUserIDGroupsRequest(server string, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDGroupsRequest generates requests for GetAdminRealmsRealmUsersUserIDGroups

func NewGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDRequest

func NewGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDRequest(server string, realm string, userID string, clientUUID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDRequest generates requests for GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUID

func NewGetAdminRealmsRealmUsersUserIDRequest

func NewGetAdminRealmsRealmUsersUserIDRequest(server string, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRequest generates requests for GetAdminRealmsRealmUsersUserID

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableRequest(server string, realm string, userID string, clientID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeRequest(server string, realm string, userID string, clientID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest(server string, realm string, userID string, clientID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeRequest(server string, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappingsRealm

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRequest

func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDRoleMappingsRequest generates requests for GetAdminRealmsRealmUsersUserIDRoleMappings

func NewGetAdminRealmsRealmUsersUserIDSessionsRequest

func NewGetAdminRealmsRealmUsersUserIDSessionsRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDSessionsRequest generates requests for GetAdminRealmsRealmUsersUserIDSessions

func NewGetAdminRealmsRealmUsersUserIDUnmanagedAttributesRequest

func NewGetAdminRealmsRealmUsersUserIDUnmanagedAttributesRequest(server string, realm string, userID string) (*http.Request, error)

NewGetAdminRealmsRealmUsersUserIDUnmanagedAttributesRequest generates requests for GetAdminRealmsRealmUsersUserIDUnmanagedAttributes

func NewGetAdminRealmsRealmWorkflowsIDRequest

func NewGetAdminRealmsRealmWorkflowsIDRequest(server string, realm string, id string, params *GetAdminRealmsRealmWorkflowsIDParams) (*http.Request, error)

NewGetAdminRealmsRealmWorkflowsIDRequest generates requests for GetAdminRealmsRealmWorkflowsID

func NewGetAdminRealmsRealmWorkflowsRequest

func NewGetAdminRealmsRealmWorkflowsRequest(server string, realm string, params *GetAdminRealmsRealmWorkflowsParams) (*http.Request, error)

NewGetAdminRealmsRealmWorkflowsRequest generates requests for GetAdminRealmsRealmWorkflows

func NewGetAdminRealmsRealmWorkflowsScheduledResourceIDRequest

func NewGetAdminRealmsRealmWorkflowsScheduledResourceIDRequest(server string, realm string, resourceID string) (*http.Request, error)

NewGetAdminRealmsRealmWorkflowsScheduledResourceIDRequest generates requests for GetAdminRealmsRealmWorkflowsScheduledResourceID

func NewGetAdminRealmsRequest

func NewGetAdminRealmsRequest(server string, params *GetAdminRealmsParams) (*http.Request, error)

NewGetAdminRealmsRequest generates requests for GetAdminRealms

func NewPostAdminRealmsRealmAuthenticationConfigRequest

func NewPostAdminRealmsRealmAuthenticationConfigRequest(server string, realm string, body PostAdminRealmsRealmAuthenticationConfigJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationConfigRequest calls the generic PostAdminRealmsRealmAuthenticationConfig builder with application/json body

func NewPostAdminRealmsRealmAuthenticationConfigRequestWithBody

func NewPostAdminRealmsRealmAuthenticationConfigRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationConfigRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationConfig with any type of body

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequest

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequest(server string, realm string, executionID string, body PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequest calls the generic PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig builder with application/json body

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequestWithBody

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequestWithBody(server string, realm string, executionID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig with any type of body

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityRequest

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityRequest(server string, realm string, executionID string) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityRequest generates requests for PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityRequest

func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityRequest(server string, realm string, executionID string) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityRequest generates requests for PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority

func NewPostAdminRealmsRealmAuthenticationExecutionsRequest

func NewPostAdminRealmsRealmAuthenticationExecutionsRequest(server string, realm string, body PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationExecutionsRequest calls the generic PostAdminRealmsRealmAuthenticationExecutions builder with application/json body

func NewPostAdminRealmsRealmAuthenticationExecutionsRequestWithBody

func NewPostAdminRealmsRealmAuthenticationExecutionsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationExecutionsRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationExecutions with any type of body

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequest

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequest(server string, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequest calls the generic PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy builder with application/json body

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequestWithBody

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequestWithBody(server string, realm string, flowAlias string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy with any type of body

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequest

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequest(server string, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequest calls the generic PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution builder with application/json body

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequestWithBody

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequestWithBody(server string, realm string, flowAlias string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution with any type of body

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequest

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequest(server string, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequest calls the generic PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow builder with application/json body

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequestWithBody

func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequestWithBody(server string, realm string, flowAlias string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow with any type of body

func NewPostAdminRealmsRealmAuthenticationFlowsRequest

func NewPostAdminRealmsRealmAuthenticationFlowsRequest(server string, realm string, body PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsRequest calls the generic PostAdminRealmsRealmAuthenticationFlows builder with application/json body

func NewPostAdminRealmsRealmAuthenticationFlowsRequestWithBody

func NewPostAdminRealmsRealmAuthenticationFlowsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationFlowsRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationFlows with any type of body

func NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequest

func NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequest(server string, realm string, body PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequest calls the generic PostAdminRealmsRealmAuthenticationRegisterRequiredAction builder with application/json body

func NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequestWithBody

func NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequestWithBody generates requests for PostAdminRealmsRealmAuthenticationRegisterRequiredAction with any type of body

func NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityRequest

func NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityRequest(server string, realm string, alias string) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityRequest generates requests for PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority

func NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityRequest

func NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityRequest(server string, realm string, alias string) (*http.Request, error)

NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityRequest generates requests for PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority

func NewPostAdminRealmsRealmClientDescriptionConverterRequest

func NewPostAdminRealmsRealmClientDescriptionConverterRequest(server string, realm string, body PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientDescriptionConverterRequest calls the generic PostAdminRealmsRealmClientDescriptionConverter builder with application/json body

func NewPostAdminRealmsRealmClientDescriptionConverterRequestWithBody

func NewPostAdminRealmsRealmClientDescriptionConverterRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientDescriptionConverterRequestWithBody generates requests for PostAdminRealmsRealmClientDescriptionConverter with any type of body

func NewPostAdminRealmsRealmClientDescriptionConverterRequestWithTextBody

func NewPostAdminRealmsRealmClientDescriptionConverterRequestWithTextBody(server string, realm string, body PostAdminRealmsRealmClientDescriptionConverterTextRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientDescriptionConverterRequestWithTextBody calls the generic PostAdminRealmsRealmClientDescriptionConverter builder with text/plain body

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequest

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequest(server string, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequest calls the generic PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels builder with application/json body

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequestWithBody

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequestWithBody generates requests for PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels with any type of body

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest calls the generic PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels builder with application/json body

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequestWithBody

func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequestWithBody generates requests for PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels with any type of body

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest calls the generic PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient builder with application/json body

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody generates requests for PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient with any type of body

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest calls the generic PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm builder with application/json body

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody

func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody generates requests for PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm with any type of body

func NewPostAdminRealmsRealmClientScopesRequest

func NewPostAdminRealmsRealmClientScopesRequest(server string, realm string, body PostAdminRealmsRealmClientScopesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesRequest calls the generic PostAdminRealmsRealmClientScopes builder with application/json body

func NewPostAdminRealmsRealmClientScopesRequestWithBody

func NewPostAdminRealmsRealmClientScopesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientScopesRequestWithBody generates requests for PostAdminRealmsRealmClientScopes with any type of body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequest

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequest(server string, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequest calls the generic PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels builder with application/json body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequestWithBody

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequestWithBody generates requests for PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels with any type of body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest calls the generic PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels builder with application/json body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequestWithBody

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequestWithBody generates requests for PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels with any type of body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest calls the generic PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient builder with application/json body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody generates requests for PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient with any type of body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest calls the generic PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm builder with application/json body

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody

func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody generates requests for PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm with any type of body

func NewPostAdminRealmsRealmClientTemplatesRequest

func NewPostAdminRealmsRealmClientTemplatesRequest(server string, realm string, body PostAdminRealmsRealmClientTemplatesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesRequest calls the generic PostAdminRealmsRealmClientTemplates builder with application/json body

func NewPostAdminRealmsRealmClientTemplatesRequestWithBody

func NewPostAdminRealmsRealmClientTemplatesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientTemplatesRequestWithBody generates requests for PostAdminRealmsRealmClientTemplates with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest(server string, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequestWithBody(server string, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest calls the generic PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequest

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequest(server string, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequest calls the generic PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequestWithBody(server string, realm string, clientUUID string, attr string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequest

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequest(server string, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequest calls the generic PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequestWithBody(server string, realm string, clientUUID string, attr string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateRequest

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateRequest generates requests for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateRequest

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateRequest generates requests for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadRequest

func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadRequest generates requests for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload

func NewPostAdminRealmsRealmClientsClientUUIDClientSecretRequest

func NewPostAdminRealmsRealmClientsClientUUIDClientSecretRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDClientSecretRequest generates requests for PostAdminRealmsRealmClientsClientUUIDClientSecret

func NewPostAdminRealmsRealmClientsClientUUIDNodesRequest

func NewPostAdminRealmsRealmClientsClientUUIDNodesRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDNodesRequest calls the generic PostAdminRealmsRealmClientsClientUUIDNodes builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDNodesRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDNodesRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDNodesRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDNodes with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequest

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequest calls the generic PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest calls the generic PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDPushRevocationRequest

func NewPostAdminRealmsRealmClientsClientUUIDPushRevocationRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDPushRevocationRequest generates requests for PostAdminRealmsRealmClientsClientUUIDPushRevocation

func NewPostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenRequest

func NewPostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenRequest(server string, realm string, clientUUID string) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenRequest generates requests for PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken

func NewPostAdminRealmsRealmClientsClientUUIDRolesRequest

func NewPostAdminRealmsRealmClientsClientUUIDRolesRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDRolesRequest calls the generic PostAdminRealmsRealmClientsClientUUIDRoles builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDRolesRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDRolesRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDRolesRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDRoles with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest

func NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest(server string, realm string, clientUUID string, roleName string, body PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest calls the generic PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody(server string, realm string, clientUUID string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest(server string, realm string, clientUUID string, client string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest calls the generic PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientUUID string, client string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient with any type of body

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest(server string, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest calls the generic PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm builder with application/json body

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody

func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody generates requests for PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm with any type of body

func NewPostAdminRealmsRealmClientsInitialAccessRequest

func NewPostAdminRealmsRealmClientsInitialAccessRequest(server string, realm string, body PostAdminRealmsRealmClientsInitialAccessJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsInitialAccessRequest calls the generic PostAdminRealmsRealmClientsInitialAccess builder with application/json body

func NewPostAdminRealmsRealmClientsInitialAccessRequestWithBody

func NewPostAdminRealmsRealmClientsInitialAccessRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsInitialAccessRequestWithBody generates requests for PostAdminRealmsRealmClientsInitialAccess with any type of body

func NewPostAdminRealmsRealmClientsRequest

func NewPostAdminRealmsRealmClientsRequest(server string, realm string, body PostAdminRealmsRealmClientsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmClientsRequest calls the generic PostAdminRealmsRealmClients builder with application/json body

func NewPostAdminRealmsRealmClientsRequestWithBody

func NewPostAdminRealmsRealmClientsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmClientsRequestWithBody generates requests for PostAdminRealmsRealmClients with any type of body

func NewPostAdminRealmsRealmComponentsRequest

func NewPostAdminRealmsRealmComponentsRequest(server string, realm string, body PostAdminRealmsRealmComponentsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmComponentsRequest calls the generic PostAdminRealmsRealmComponents builder with application/json body

func NewPostAdminRealmsRealmComponentsRequestWithBody

func NewPostAdminRealmsRealmComponentsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmComponentsRequestWithBody generates requests for PostAdminRealmsRealmComponents with any type of body

func NewPostAdminRealmsRealmGroupsGroupIDChildrenRequest

func NewPostAdminRealmsRealmGroupsGroupIDChildrenRequest(server string, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmGroupsGroupIDChildrenRequest calls the generic PostAdminRealmsRealmGroupsGroupIDChildren builder with application/json body

func NewPostAdminRealmsRealmGroupsGroupIDChildrenRequestWithBody

func NewPostAdminRealmsRealmGroupsGroupIDChildrenRequestWithBody(server string, realm string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmGroupsGroupIDChildrenRequestWithBody generates requests for PostAdminRealmsRealmGroupsGroupIDChildren with any type of body

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, groupID string, clientID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest calls the generic PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID builder with application/json body

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, groupID string, clientID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody generates requests for PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID with any type of body

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest calls the generic PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm builder with application/json body

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody

func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody generates requests for PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm with any type of body

func NewPostAdminRealmsRealmGroupsRequest

func NewPostAdminRealmsRealmGroupsRequest(server string, realm string, body PostAdminRealmsRealmGroupsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmGroupsRequest calls the generic PostAdminRealmsRealmGroups builder with application/json body

func NewPostAdminRealmsRealmGroupsRequestWithBody

func NewPostAdminRealmsRealmGroupsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmGroupsRequestWithBody generates requests for PostAdminRealmsRealmGroups with any type of body

func NewPostAdminRealmsRealmIdentityProviderImportConfigRequest

func NewPostAdminRealmsRealmIdentityProviderImportConfigRequest(server string, realm string, body PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderImportConfigRequest calls the generic PostAdminRealmsRealmIdentityProviderImportConfig builder with application/json body

func NewPostAdminRealmsRealmIdentityProviderImportConfigRequestWithBody

func NewPostAdminRealmsRealmIdentityProviderImportConfigRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderImportConfigRequestWithBody generates requests for PostAdminRealmsRealmIdentityProviderImportConfig with any type of body

func NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest

func NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest(server string, realm string, alias string, body PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest calls the generic PostAdminRealmsRealmIdentityProviderInstancesAliasMappers builder with application/json body

func NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequestWithBody

func NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequestWithBody generates requests for PostAdminRealmsRealmIdentityProviderInstancesAliasMappers with any type of body

func NewPostAdminRealmsRealmIdentityProviderInstancesRequest

func NewPostAdminRealmsRealmIdentityProviderInstancesRequest(server string, realm string, body PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderInstancesRequest calls the generic PostAdminRealmsRealmIdentityProviderInstances builder with application/json body

func NewPostAdminRealmsRealmIdentityProviderInstancesRequestWithBody

func NewPostAdminRealmsRealmIdentityProviderInstancesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderInstancesRequestWithBody generates requests for PostAdminRealmsRealmIdentityProviderInstances with any type of body

func NewPostAdminRealmsRealmIdentityProviderUploadCertificateRequest

func NewPostAdminRealmsRealmIdentityProviderUploadCertificateRequest(server string, realm string) (*http.Request, error)

NewPostAdminRealmsRealmIdentityProviderUploadCertificateRequest generates requests for PostAdminRealmsRealmIdentityProviderUploadCertificate

func NewPostAdminRealmsRealmLocalizationLocaleRequest

func NewPostAdminRealmsRealmLocalizationLocaleRequest(server string, realm string, locale string, body PostAdminRealmsRealmLocalizationLocaleJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmLocalizationLocaleRequest calls the generic PostAdminRealmsRealmLocalizationLocale builder with application/json body

func NewPostAdminRealmsRealmLocalizationLocaleRequestWithBody

func NewPostAdminRealmsRealmLocalizationLocaleRequestWithBody(server string, realm string, locale string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmLocalizationLocaleRequestWithBody generates requests for PostAdminRealmsRealmLocalizationLocale with any type of body

func NewPostAdminRealmsRealmLogoutAllRequest

func NewPostAdminRealmsRealmLogoutAllRequest(server string, realm string) (*http.Request, error)

NewPostAdminRealmsRealmLogoutAllRequest generates requests for PostAdminRealmsRealmLogoutAll

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest(server string, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest calls the generic PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren builder with application/json body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, orgID string, groupID string, clientID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest calls the generic PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID builder with application/json body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest calls the generic PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm builder with application/json body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequest(server string, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequest calls the generic PostAdminRealmsRealmOrganizationsOrgIDGroups builder with application/json body

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDGroups with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest(server string, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest calls the generic PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders builder with application/json body

func NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendRequest(server string, realm string, orgID string, id string) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendRequest generates requests for PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUser with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithFormdataBody

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithFormdataBody(server string, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithFormdataBody calls the generic PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUser builder with application/x-www-form-urlencoded body

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUser with any type of body

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithFormdataBody

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithFormdataBody(server string, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithFormdataBody calls the generic PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUser builder with application/x-www-form-urlencoded body

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequest

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequest(server string, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequest calls the generic PostAdminRealmsRealmOrganizationsOrgIDMembers builder with application/json body

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequestWithBody

func NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequestWithBody generates requests for PostAdminRealmsRealmOrganizationsOrgIDMembers with any type of body

func NewPostAdminRealmsRealmOrganizationsRequest

func NewPostAdminRealmsRealmOrganizationsRequest(server string, realm string, body PostAdminRealmsRealmOrganizationsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsRequest calls the generic PostAdminRealmsRealmOrganizations builder with application/json body

func NewPostAdminRealmsRealmOrganizationsRequestWithBody

func NewPostAdminRealmsRealmOrganizationsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmOrganizationsRequestWithBody generates requests for PostAdminRealmsRealmOrganizations with any type of body

func NewPostAdminRealmsRealmPartialExportRequest

func NewPostAdminRealmsRealmPartialExportRequest(server string, realm string, params *PostAdminRealmsRealmPartialExportParams) (*http.Request, error)

NewPostAdminRealmsRealmPartialExportRequest generates requests for PostAdminRealmsRealmPartialExport

func NewPostAdminRealmsRealmPartialImportRequest

func NewPostAdminRealmsRealmPartialImportRequest(server string, realm string, body PostAdminRealmsRealmPartialImportJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmPartialImportRequest calls the generic PostAdminRealmsRealmPartialImport builder with application/json body

func NewPostAdminRealmsRealmPartialImportRequestWithBody

func NewPostAdminRealmsRealmPartialImportRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmPartialImportRequestWithBody generates requests for PostAdminRealmsRealmPartialImport with any type of body

func NewPostAdminRealmsRealmPushRevocationRequest

func NewPostAdminRealmsRealmPushRevocationRequest(server string, realm string) (*http.Request, error)

NewPostAdminRealmsRealmPushRevocationRequest generates requests for PostAdminRealmsRealmPushRevocation

func NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequest

func NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequest(server string, realm string, roleID string, body PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequest calls the generic PostAdminRealmsRealmRolesByIDRoleIDComposites builder with application/json body

func NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody

func NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody generates requests for PostAdminRealmsRealmRolesByIDRoleIDComposites with any type of body

func NewPostAdminRealmsRealmRolesRequest

func NewPostAdminRealmsRealmRolesRequest(server string, realm string, body PostAdminRealmsRealmRolesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmRolesRequest calls the generic PostAdminRealmsRealmRoles builder with application/json body

func NewPostAdminRealmsRealmRolesRequestWithBody

func NewPostAdminRealmsRealmRolesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmRolesRequestWithBody generates requests for PostAdminRealmsRealmRoles with any type of body

func NewPostAdminRealmsRealmRolesRoleNameCompositesRequest

func NewPostAdminRealmsRealmRolesRoleNameCompositesRequest(server string, realm string, roleName string, body PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmRolesRoleNameCompositesRequest calls the generic PostAdminRealmsRealmRolesRoleNameComposites builder with application/json body

func NewPostAdminRealmsRealmRolesRoleNameCompositesRequestWithBody

func NewPostAdminRealmsRealmRolesRoleNameCompositesRequestWithBody(server string, realm string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmRolesRoleNameCompositesRequestWithBody generates requests for PostAdminRealmsRealmRolesRoleNameComposites with any type of body

func NewPostAdminRealmsRealmTestSMTPConnectionRequest

func NewPostAdminRealmsRealmTestSMTPConnectionRequest(server string, realm string, body PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmTestSMTPConnectionRequest calls the generic PostAdminRealmsRealmTestSMTPConnection builder with application/json body

func NewPostAdminRealmsRealmTestSMTPConnectionRequestWithBody

func NewPostAdminRealmsRealmTestSMTPConnectionRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmTestSMTPConnectionRequestWithBody generates requests for PostAdminRealmsRealmTestSMTPConnection with any type of body

func NewPostAdminRealmsRealmTestSMTPConnectionRequestWithFormdataBody

func NewPostAdminRealmsRealmTestSMTPConnectionRequestWithFormdataBody(server string, realm string, body PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmTestSMTPConnectionRequestWithFormdataBody calls the generic PostAdminRealmsRealmTestSMTPConnection builder with application/x-www-form-urlencoded body

func NewPostAdminRealmsRealmUsersRequest

func NewPostAdminRealmsRealmUsersRequest(server string, realm string, body PostAdminRealmsRealmUsersJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmUsersRequest calls the generic PostAdminRealmsRealmUsers builder with application/json body

func NewPostAdminRealmsRealmUsersRequestWithBody

func NewPostAdminRealmsRealmUsersRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmUsersRequestWithBody generates requests for PostAdminRealmsRealmUsers with any type of body

func NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDRequest

func NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDRequest(server string, realm string, userID string, credentialID string, newPreviousCredentialID string) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDRequest generates requests for PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialID

func NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstRequest

func NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstRequest(server string, realm string, userID string, credentialID string) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstRequest generates requests for PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst

func NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest

func NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest(server string, realm string, userID string, provider string, body PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest calls the generic PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider builder with application/json body

func NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequestWithBody

func NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequestWithBody(server string, realm string, userID string, provider string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequestWithBody generates requests for PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider with any type of body

func NewPostAdminRealmsRealmUsersUserIDImpersonationRequest

func NewPostAdminRealmsRealmUsersUserIDImpersonationRequest(server string, realm string, userID string) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDImpersonationRequest generates requests for PostAdminRealmsRealmUsersUserIDImpersonation

func NewPostAdminRealmsRealmUsersUserIDLogoutRequest

func NewPostAdminRealmsRealmUsersUserIDLogoutRequest(server string, realm string, userID string) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDLogoutRequest generates requests for PostAdminRealmsRealmUsersUserIDLogout

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest(server string, realm string, userID string, clientID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest calls the generic PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID builder with application/json body

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, userID string, clientID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody generates requests for PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID with any type of body

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest(server string, realm string, userID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest calls the generic PostAdminRealmsRealmUsersUserIDRoleMappingsRealm builder with application/json body

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody

func NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody generates requests for PostAdminRealmsRealmUsersUserIDRoleMappingsRealm with any type of body

func NewPostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDRequest

func NewPostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDRequest(server string, realm string, id string, pType map[string]interface{}, resourceID string, params *PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams) (*http.Request, error)

NewPostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDRequest generates requests for PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID

func NewPostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDRequest

func NewPostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDRequest(server string, realm string, id string, pType map[string]interface{}, resourceID string) (*http.Request, error)

NewPostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDRequest generates requests for PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID

func NewPostAdminRealmsRealmWorkflowsMigrateRequest

func NewPostAdminRealmsRealmWorkflowsMigrateRequest(server string, realm string, params *PostAdminRealmsRealmWorkflowsMigrateParams) (*http.Request, error)

NewPostAdminRealmsRealmWorkflowsMigrateRequest generates requests for PostAdminRealmsRealmWorkflowsMigrate

func NewPostAdminRealmsRealmWorkflowsRequest

func NewPostAdminRealmsRealmWorkflowsRequest(server string, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRealmWorkflowsRequest calls the generic PostAdminRealmsRealmWorkflows builder with application/json body

func NewPostAdminRealmsRealmWorkflowsRequestWithBody

func NewPostAdminRealmsRealmWorkflowsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRealmWorkflowsRequestWithBody generates requests for PostAdminRealmsRealmWorkflows with any type of body

func NewPostAdminRealmsRequest

func NewPostAdminRealmsRequest(server string, body PostAdminRealmsJSONRequestBody) (*http.Request, error)

NewPostAdminRealmsRequest calls the generic PostAdminRealms builder with application/json body

func NewPostAdminRealmsRequestWithBody

func NewPostAdminRealmsRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewPostAdminRealmsRequestWithBody generates requests for PostAdminRealms with any type of body

func NewPutAdminRealmsRealmAuthenticationConfigIDRequest

func NewPutAdminRealmsRealmAuthenticationConfigIDRequest(server string, realm string, id string, body PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationConfigIDRequest calls the generic PutAdminRealmsRealmAuthenticationConfigID builder with application/json body

func NewPutAdminRealmsRealmAuthenticationConfigIDRequestWithBody

func NewPutAdminRealmsRealmAuthenticationConfigIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationConfigIDRequestWithBody generates requests for PutAdminRealmsRealmAuthenticationConfigID with any type of body

func NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest

func NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest(server string, realm string, flowAlias string, body PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest calls the generic PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions builder with application/json body

func NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequestWithBody

func NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequestWithBody(server string, realm string, flowAlias string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequestWithBody generates requests for PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions with any type of body

func NewPutAdminRealmsRealmAuthenticationFlowsIDRequest

func NewPutAdminRealmsRealmAuthenticationFlowsIDRequest(server string, realm string, id string, body PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationFlowsIDRequest calls the generic PutAdminRealmsRealmAuthenticationFlowsID builder with application/json body

func NewPutAdminRealmsRealmAuthenticationFlowsIDRequestWithBody

func NewPutAdminRealmsRealmAuthenticationFlowsIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationFlowsIDRequestWithBody generates requests for PutAdminRealmsRealmAuthenticationFlowsID with any type of body

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest(server string, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest calls the generic PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig builder with application/json body

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequestWithBody

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequestWithBody generates requests for PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig with any type of body

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequest

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequest(server string, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequest calls the generic PutAdminRealmsRealmAuthenticationRequiredActionsAlias builder with application/json body

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequestWithBody

func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequestWithBody generates requests for PutAdminRealmsRealmAuthenticationRequiredActionsAlias with any type of body

func NewPutAdminRealmsRealmClientPoliciesPoliciesRequest

func NewPutAdminRealmsRealmClientPoliciesPoliciesRequest(server string, realm string, body PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientPoliciesPoliciesRequest calls the generic PutAdminRealmsRealmClientPoliciesPolicies builder with application/json body

func NewPutAdminRealmsRealmClientPoliciesPoliciesRequestWithBody

func NewPutAdminRealmsRealmClientPoliciesPoliciesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientPoliciesPoliciesRequestWithBody generates requests for PutAdminRealmsRealmClientPoliciesPolicies with any type of body

func NewPutAdminRealmsRealmClientPoliciesProfilesRequest

func NewPutAdminRealmsRealmClientPoliciesProfilesRequest(server string, realm string, body PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientPoliciesProfilesRequest calls the generic PutAdminRealmsRealmClientPoliciesProfiles builder with application/json body

func NewPutAdminRealmsRealmClientPoliciesProfilesRequestWithBody

func NewPutAdminRealmsRealmClientPoliciesProfilesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientPoliciesProfilesRequestWithBody generates requests for PutAdminRealmsRealmClientPoliciesProfiles with any type of body

func NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest

func NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest calls the generic PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID builder with application/json body

func NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequestWithBody

func NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequestWithBody(server string, realm string, clientScopeID string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequestWithBody generates requests for PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID with any type of body

func NewPutAdminRealmsRealmClientScopesClientScopeIDRequest

func NewPutAdminRealmsRealmClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string, body PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientScopesClientScopeIDRequest calls the generic PutAdminRealmsRealmClientScopesClientScopeID builder with application/json body

func NewPutAdminRealmsRealmClientScopesClientScopeIDRequestWithBody

func NewPutAdminRealmsRealmClientScopesClientScopeIDRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientScopesClientScopeIDRequestWithBody generates requests for PutAdminRealmsRealmClientScopesClientScopeID with any type of body

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest calls the generic PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID builder with application/json body

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequestWithBody

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequestWithBody(server string, realm string, clientScopeID string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequestWithBody generates requests for PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID with any type of body

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequest

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequest(server string, realm string, clientScopeID string, body PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequest calls the generic PutAdminRealmsRealmClientTemplatesClientScopeID builder with application/json body

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequestWithBody

func NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequestWithBody(server string, realm string, clientScopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequestWithBody generates requests for PutAdminRealmsRealmClientTemplatesClientScopeID with any type of body

func NewPutAdminRealmsRealmClientTypesRequest

func NewPutAdminRealmsRealmClientTypesRequest(server string, realm string, body PutAdminRealmsRealmClientTypesJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientTypesRequest calls the generic PutAdminRealmsRealmClientTypes builder with application/json body

func NewPutAdminRealmsRealmClientTypesRequestWithBody

func NewPutAdminRealmsRealmClientTypesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientTypesRequestWithBody generates requests for PutAdminRealmsRealmClientTypes with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest(server string, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest calls the generic PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest(server string, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest calls the generic PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequestWithBody(server string, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest(server string, realm string, clientUUID string, scopeID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest calls the generic PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequestWithBody(server string, realm string, clientUUID string, scopeID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest

func NewPutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest generates requests for PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID

func NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest

func NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest(server string, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest calls the generic PutAdminRealmsRealmClientsClientUUIDManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDManagementPermissions with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest

func NewPutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest generates requests for PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID

func NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest

func NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest(server string, realm string, clientUUID string, id string, body PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest calls the generic PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequestWithBody(server string, realm string, clientUUID string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDRequest

func NewPutAdminRealmsRealmClientsClientUUIDRequest(server string, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDRequest calls the generic PutAdminRealmsRealmClientsClientUUID builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDRequestWithBody(server string, realm string, clientUUID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUID with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest(server string, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest calls the generic PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequestWithBody(server string, realm string, clientUUID string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions with any type of body

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest(server string, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest calls the generic PutAdminRealmsRealmClientsClientUUIDRolesRoleName builder with application/json body

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequestWithBody

func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequestWithBody(server string, realm string, clientUUID string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequestWithBody generates requests for PutAdminRealmsRealmClientsClientUUIDRolesRoleName with any type of body

func NewPutAdminRealmsRealmComponentsIDRequest

func NewPutAdminRealmsRealmComponentsIDRequest(server string, realm string, id string, body PutAdminRealmsRealmComponentsIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmComponentsIDRequest calls the generic PutAdminRealmsRealmComponentsID builder with application/json body

func NewPutAdminRealmsRealmComponentsIDRequestWithBody

func NewPutAdminRealmsRealmComponentsIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmComponentsIDRequestWithBody generates requests for PutAdminRealmsRealmComponentsID with any type of body

func NewPutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest

func NewPutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewPutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest generates requests for PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID

func NewPutAdminRealmsRealmDefaultGroupsGroupIDRequest

func NewPutAdminRealmsRealmDefaultGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)

NewPutAdminRealmsRealmDefaultGroupsGroupIDRequest generates requests for PutAdminRealmsRealmDefaultGroupsGroupID

func NewPutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest

func NewPutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)

NewPutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest generates requests for PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID

func NewPutAdminRealmsRealmEventsConfigRequest

func NewPutAdminRealmsRealmEventsConfigRequest(server string, realm string, body PutAdminRealmsRealmEventsConfigJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmEventsConfigRequest calls the generic PutAdminRealmsRealmEventsConfig builder with application/json body

func NewPutAdminRealmsRealmEventsConfigRequestWithBody

func NewPutAdminRealmsRealmEventsConfigRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmEventsConfigRequestWithBody generates requests for PutAdminRealmsRealmEventsConfig with any type of body

func NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest

func NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest(server string, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest calls the generic PutAdminRealmsRealmGroupsGroupIDManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequestWithBody(server string, realm string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmGroupsGroupIDManagementPermissions with any type of body

func NewPutAdminRealmsRealmGroupsGroupIDRequest

func NewPutAdminRealmsRealmGroupsGroupIDRequest(server string, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmGroupsGroupIDRequest calls the generic PutAdminRealmsRealmGroupsGroupID builder with application/json body

func NewPutAdminRealmsRealmGroupsGroupIDRequestWithBody

func NewPutAdminRealmsRealmGroupsGroupIDRequestWithBody(server string, realm string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmGroupsGroupIDRequestWithBody generates requests for PutAdminRealmsRealmGroupsGroupID with any type of body

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest(server string, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest calls the generic PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions with any type of body

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest(server string, realm string, alias string, id string, body PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest calls the generic PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID builder with application/json body

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequestWithBody

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequestWithBody(server string, realm string, alias string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequestWithBody generates requests for PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID with any type of body

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequest

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequest(server string, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequest calls the generic PutAdminRealmsRealmIdentityProviderInstancesAlias builder with application/json body

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequestWithBody

func NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequestWithBody generates requests for PutAdminRealmsRealmIdentityProviderInstancesAlias with any type of body

func NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithBody

func NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithBody(server string, realm string, locale string, key string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithBody generates requests for PutAdminRealmsRealmLocalizationLocaleKey with any type of body

func NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithTextBody

func NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithTextBody(server string, realm string, locale string, key string, body PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithTextBody calls the generic PutAdminRealmsRealmLocalizationLocaleKey builder with text/plain body

func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest

func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest(server string, realm string, orgID string, groupID string, userID string) (*http.Request, error)

NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest generates requests for PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID

func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest

func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest(server string, realm string, orgID string, groupID string, body PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest calls the generic PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID builder with application/json body

func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequestWithBody

func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequestWithBody generates requests for PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID with any type of body

func NewPutAdminRealmsRealmOrganizationsOrgIDRequest

func NewPutAdminRealmsRealmOrganizationsOrgIDRequest(server string, realm string, orgID string, body PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmOrganizationsOrgIDRequest calls the generic PutAdminRealmsRealmOrganizationsOrgID builder with application/json body

func NewPutAdminRealmsRealmOrganizationsOrgIDRequestWithBody

func NewPutAdminRealmsRealmOrganizationsOrgIDRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmOrganizationsOrgIDRequestWithBody generates requests for PutAdminRealmsRealmOrganizationsOrgID with any type of body

func NewPutAdminRealmsRealmRequest

func NewPutAdminRealmsRealmRequest(server string, realm string, body PutAdminRealmsRealmJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmRequest calls the generic PutAdminRealmsRealm builder with application/json body

func NewPutAdminRealmsRealmRequestWithBody

func NewPutAdminRealmsRealmRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmRequestWithBody generates requests for PutAdminRealmsRealm with any type of body

func NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest

func NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest(server string, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest calls the generic PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions with any type of body

func NewPutAdminRealmsRealmRolesByIDRoleIDRequest

func NewPutAdminRealmsRealmRolesByIDRoleIDRequest(server string, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmRolesByIDRoleIDRequest calls the generic PutAdminRealmsRealmRolesByIDRoleID builder with application/json body

func NewPutAdminRealmsRealmRolesByIDRoleIDRequestWithBody

func NewPutAdminRealmsRealmRolesByIDRoleIDRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmRolesByIDRoleIDRequestWithBody generates requests for PutAdminRealmsRealmRolesByIDRoleID with any type of body

func NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequest

func NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequest(server string, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequest calls the generic PutAdminRealmsRealmRolesRoleNameManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequestWithBody(server string, realm string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmRolesRoleNameManagementPermissions with any type of body

func NewPutAdminRealmsRealmRolesRoleNameRequest

func NewPutAdminRealmsRealmRolesRoleNameRequest(server string, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmRolesRoleNameRequest calls the generic PutAdminRealmsRealmRolesRoleName builder with application/json body

func NewPutAdminRealmsRealmRolesRoleNameRequestWithBody

func NewPutAdminRealmsRealmRolesRoleNameRequestWithBody(server string, realm string, roleName string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmRolesRoleNameRequestWithBody generates requests for PutAdminRealmsRealmRolesRoleName with any type of body

func NewPutAdminRealmsRealmUsersManagementPermissionsRequest

func NewPutAdminRealmsRealmUsersManagementPermissionsRequest(server string, realm string, body PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersManagementPermissionsRequest calls the generic PutAdminRealmsRealmUsersManagementPermissions builder with application/json body

func NewPutAdminRealmsRealmUsersManagementPermissionsRequestWithBody

func NewPutAdminRealmsRealmUsersManagementPermissionsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersManagementPermissionsRequestWithBody generates requests for PutAdminRealmsRealmUsersManagementPermissions with any type of body

func NewPutAdminRealmsRealmUsersProfileRequest

func NewPutAdminRealmsRealmUsersProfileRequest(server string, realm string, body PutAdminRealmsRealmUsersProfileJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersProfileRequest calls the generic PutAdminRealmsRealmUsersProfile builder with application/json body

func NewPutAdminRealmsRealmUsersProfileRequestWithBody

func NewPutAdminRealmsRealmUsersProfileRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersProfileRequestWithBody generates requests for PutAdminRealmsRealmUsersProfile with any type of body

func NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithBody

func NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithBody(server string, realm string, userID string, credentialID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithBody generates requests for PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabel with any type of body

func NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithTextBody

func NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithTextBody(server string, realm string, userID string, credentialID string, body PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithTextBody calls the generic PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabel builder with text/plain body

func NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequest

func NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequest(server string, realm string, userID string, body PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequest calls the generic PutAdminRealmsRealmUsersUserIDDisableCredentialTypes builder with application/json body

func NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequestWithBody

func NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequestWithBody generates requests for PutAdminRealmsRealmUsersUserIDDisableCredentialTypes with any type of body

func NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequest

func NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequest(server string, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, body PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequest calls the generic PutAdminRealmsRealmUsersUserIDExecuteActionsEmail builder with application/json body

func NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequestWithBody

func NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequestWithBody(server string, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequestWithBody generates requests for PutAdminRealmsRealmUsersUserIDExecuteActionsEmail with any type of body

func NewPutAdminRealmsRealmUsersUserIDGroupsGroupIDRequest

func NewPutAdminRealmsRealmUsersUserIDGroupsGroupIDRequest(server string, realm string, userID string, groupID string) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDGroupsGroupIDRequest generates requests for PutAdminRealmsRealmUsersUserIDGroupsGroupID

func NewPutAdminRealmsRealmUsersUserIDRequest

func NewPutAdminRealmsRealmUsersUserIDRequest(server string, realm string, userID string, body PutAdminRealmsRealmUsersUserIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDRequest calls the generic PutAdminRealmsRealmUsersUserID builder with application/json body

func NewPutAdminRealmsRealmUsersUserIDRequestWithBody

func NewPutAdminRealmsRealmUsersUserIDRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDRequestWithBody generates requests for PutAdminRealmsRealmUsersUserID with any type of body

func NewPutAdminRealmsRealmUsersUserIDResetPasswordEmailRequest

func NewPutAdminRealmsRealmUsersUserIDResetPasswordEmailRequest(server string, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDResetPasswordEmailRequest generates requests for PutAdminRealmsRealmUsersUserIDResetPasswordEmail

func NewPutAdminRealmsRealmUsersUserIDResetPasswordRequest

func NewPutAdminRealmsRealmUsersUserIDResetPasswordRequest(server string, realm string, userID string, body PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDResetPasswordRequest calls the generic PutAdminRealmsRealmUsersUserIDResetPassword builder with application/json body

func NewPutAdminRealmsRealmUsersUserIDResetPasswordRequestWithBody

func NewPutAdminRealmsRealmUsersUserIDResetPasswordRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDResetPasswordRequestWithBody generates requests for PutAdminRealmsRealmUsersUserIDResetPassword with any type of body

func NewPutAdminRealmsRealmUsersUserIDSendVerifyEmailRequest

func NewPutAdminRealmsRealmUsersUserIDSendVerifyEmailRequest(server string, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams) (*http.Request, error)

NewPutAdminRealmsRealmUsersUserIDSendVerifyEmailRequest generates requests for PutAdminRealmsRealmUsersUserIDSendVerifyEmail

func NewPutAdminRealmsRealmWorkflowsIDRequest

func NewPutAdminRealmsRealmWorkflowsIDRequest(server string, realm string, id string, body PutAdminRealmsRealmWorkflowsIDJSONRequestBody) (*http.Request, error)

NewPutAdminRealmsRealmWorkflowsIDRequest calls the generic PutAdminRealmsRealmWorkflowsID builder with application/json body

func NewPutAdminRealmsRealmWorkflowsIDRequestWithBody

func NewPutAdminRealmsRealmWorkflowsIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)

NewPutAdminRealmsRealmWorkflowsIDRequestWithBody generates requests for PutAdminRealmsRealmWorkflowsID with any type of body

func PasswordTokenSource

func PasswordTokenSource(ctx context.Context, baseURL, realm, clientID, username, password string) oauth2.TokenSource

PasswordTokenSource returns an oauth2.TokenSource using the Resource Owner Password Credentials grant, as used by the Keycloak "admin-cli" client for administrative logins (username/password).

The returned source is LAZY: no network call happens at construction time. The first token is fetched on first Token() call; afterwards it refreshes via the refresh_token when the access token expires.

func TokenURL

func TokenURL(baseURL, realm string) string

TokenURL builds the OpenID Connect token endpoint for a realm.

baseURL is the Keycloak server root (e.g. "https://auth.example.com"). The result is "<baseURL>/realms/<realm>/protocol/openid-connect/token".

Types

type APIError

type APIError struct {
	// StatusCode is the HTTP status returned by Keycloak.
	StatusCode int
	// Method and URL identify the failing request.
	Method string
	URL    string
	// Message is the human-readable error extracted from the Keycloak
	// response body, when present.
	Message string
	// Body is the raw (possibly truncated) response body for diagnostics.
	Body string
}

APIError is a structured error carrying the HTTP context of a failed Admin API call. It supports errors.Is against the sentinel errors above based on the HTTP status code.

func (*APIError) Error

func (e *APIError) Error() string

Error implements the error interface.

func (*APIError) Is

func (e *APIError) Is(target error) bool

Is reports whether target is the sentinel error corresponding to this APIError's HTTP status, enabling errors.Is(err, ErrConflict) style checks.

type AbstractPolicyRepresentation

type AbstractPolicyRepresentation struct {
	DecisionStrategy *DecisionStrategy         `json:"decisionStrategy,omitempty"`
	Description      *string                   `json:"description,omitempty"`
	ID               *string                   `json:"id,omitempty"`
	Logic            *Logic                    `json:"logic,omitempty"`
	Name             *string                   `json:"name,omitempty"`
	Owner            *string                   `json:"owner,omitempty"`
	Policies         *[]string                 `json:"policies,omitempty"`
	ResourceType     *string                   `json:"resourceType,omitempty"`
	Resources        *[]string                 `json:"resources,omitempty"`
	ResourcesData    *[]ResourceRepresentation `json:"resourcesData,omitempty"`
	Scopes           *[]string                 `json:"scopes,omitempty"`
	ScopesData       *[]ScopeRepresentation    `json:"scopesData,omitempty"`
	Type             *string                   `json:"type,omitempty"`
}

AbstractPolicyRepresentation defines model for AbstractPolicyRepresentation.

type Access

type Access struct {
	Roles        *[]string `json:"roles,omitempty"`
	VerifyCaller *bool     `json:"verify_caller,omitempty"`
}

Access defines model for Access.

type AccessToken

type AccessToken struct {
	Acr                  *string                                   `json:"acr,omitempty"`
	AllowedOrigins       *[]string                                 `json:"allowed-origins,omitempty"`
	AtHash               *string                                   `json:"at_hash,omitempty"`
	AuthTime             *int64                                    `json:"auth_time,omitempty"`
	Authorization        *Authorization                            `json:"authorization,omitempty"`
	AuthorizationDetails *[]AuthorizationDetailsJSONRepresentation `json:"authorization_details,omitempty"`
	Azp                  *string                                   `json:"azp,omitempty"`
	Birthdate            *string                                   `json:"birthdate,omitempty"`
	CHash                *string                                   `json:"c_hash,omitempty"`
	ClaimsLocales        *string                                   `json:"claims_locales,omitempty"`
	Cnf                  *Confirmation                             `json:"cnf,omitempty"`
	Email                *string                                   `json:"email,omitempty"`
	EmailVerified        *bool                                     `json:"email_verified,omitempty"`
	Exp                  *int64                                    `json:"exp,omitempty"`
	FamilyName           *string                                   `json:"family_name,omitempty"`
	Gender               *string                                   `json:"gender,omitempty"`
	GivenName            *string                                   `json:"given_name,omitempty"`
	Iat                  *int64                                    `json:"iat,omitempty"`
	Iss                  *string                                   `json:"iss,omitempty"`
	Jti                  *string                                   `json:"jti,omitempty"`
	Locale               *string                                   `json:"locale,omitempty"`
	MiddleName           *string                                   `json:"middle_name,omitempty"`
	Name                 *string                                   `json:"name,omitempty"`
	Nbf                  *int64                                    `json:"nbf,omitempty"`
	Nickname             *string                                   `json:"nickname,omitempty"`
	Nonce                *string                                   `json:"nonce,omitempty"`
	OtherClaims          *map[string]interface{}                   `json:"otherClaims,omitempty"`
	PhoneNumber          *string                                   `json:"phone_number,omitempty"`
	PhoneNumberVerified  *bool                                     `json:"phone_number_verified,omitempty"`
	Picture              *string                                   `json:"picture,omitempty"`
	PreferredUsername    *string                                   `json:"preferred_username,omitempty"`
	Profile              *string                                   `json:"profile,omitempty"`
	RealmAccess          *Access                                   `json:"realm_access,omitempty"`
	ResourceAccess       *map[string]Access                        `json:"resource_access,omitempty"`
	SHash                *string                                   `json:"s_hash,omitempty"`
	Scope                *string                                   `json:"scope,omitempty"`
	Sid                  *string                                   `json:"sid,omitempty"`
	Sub                  *string                                   `json:"sub,omitempty"`
	TrustedCerts         *[]string                                 `json:"trusted-certs,omitempty"`
	Typ                  *string                                   `json:"typ,omitempty"`
	UpdatedAt            *int64                                    `json:"updated_at,omitempty"`
	Website              *string                                   `json:"website,omitempty"`
	Zoneinfo             *string                                   `json:"zoneinfo,omitempty"`
}

AccessToken defines model for AccessToken.

type AdminEventRepresentation

type AdminEventRepresentation struct {
	AuthDetails    *AuthDetailsRepresentation `json:"authDetails,omitempty"`
	Details        *map[string]string         `json:"details,omitempty"`
	Error          *string                    `json:"error,omitempty"`
	ID             *string                    `json:"id,omitempty"`
	OperationType  *string                    `json:"operationType,omitempty"`
	RealmID        *string                    `json:"realmId,omitempty"`
	Representation *string                    `json:"representation,omitempty"`
	ResourcePath   *string                    `json:"resourcePath,omitempty"`
	ResourceType   *string                    `json:"resourceType,omitempty"`
	Time           *int64                     `json:"time,omitempty"`
}

AdminEventRepresentation defines model for AdminEventRepresentation.

type ApplicationRepresentation

type ApplicationRepresentation struct {
	Access                             *map[string]bool              `json:"access,omitempty"`
	AdminURL                           *string                       `json:"adminUrl,omitempty"`
	AlwaysDisplayInConsole             *bool                         `json:"alwaysDisplayInConsole,omitempty"`
	Attributes                         *map[string]string            `json:"attributes,omitempty"`
	AuthenticationFlowBindingOverrides *map[string]string            `json:"authenticationFlowBindingOverrides,omitempty"`
	AuthorizationServicesEnabled       *bool                         `json:"authorizationServicesEnabled,omitempty"`
	AuthorizationSettings              *ResourceServerRepresentation `json:"authorizationSettings,omitempty"`
	BaseURL                            *string                       `json:"baseUrl,omitempty"`
	BearerOnly                         *bool                         `json:"bearerOnly,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Claims                  *ClaimRepresentation `json:"claims,omitempty"`
	ClientAuthenticatorType *string              `json:"clientAuthenticatorType,omitempty"`
	ClientID                *string              `json:"clientId,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ClientTemplate      *string   `json:"clientTemplate,omitempty"`
	ConsentRequired     *bool     `json:"consentRequired,omitempty"`
	DefaultClientScopes *[]string `json:"defaultClientScopes,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DefaultRoles              *[]string `json:"defaultRoles,omitempty"`
	Description               *string   `json:"description,omitempty"`
	DirectAccessGrantsEnabled *bool     `json:"directAccessGrantsEnabled,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DirectGrantsOnly          *bool                           `json:"directGrantsOnly,omitempty"`
	Enabled                   *bool                           `json:"enabled,omitempty"`
	FrontchannelLogout        *bool                           `json:"frontchannelLogout,omitempty"`
	FullScopeAllowed          *bool                           `json:"fullScopeAllowed,omitempty"`
	ID                        *string                         `json:"id,omitempty"`
	ImplicitFlowEnabled       *bool                           `json:"implicitFlowEnabled,omitempty"`
	Name                      *string                         `json:"name,omitempty"`
	NodeReRegistrationTimeout *int32                          `json:"nodeReRegistrationTimeout,omitempty"`
	NotBefore                 *int32                          `json:"notBefore,omitempty"`
	OptionalClientScopes      *[]string                       `json:"optionalClientScopes,omitempty"`
	Origin                    *string                         `json:"origin,omitempty"`
	Protocol                  *string                         `json:"protocol,omitempty"`
	ProtocolMappers           *[]ProtocolMapperRepresentation `json:"protocolMappers,omitempty"`
	PublicClient              *bool                           `json:"publicClient,omitempty"`
	RedirectUris              *[]string                       `json:"redirectUris,omitempty"`
	RegisteredNodes           *map[string]int32               `json:"registeredNodes,omitempty"`
	RegistrationAccessToken   *string                         `json:"registrationAccessToken,omitempty"`
	RootURL                   *string                         `json:"rootUrl,omitempty"`
	Secret                    *string                         `json:"secret,omitempty"`
	ServiceAccountsEnabled    *bool                           `json:"serviceAccountsEnabled,omitempty"`
	StandardFlowEnabled       *bool                           `json:"standardFlowEnabled,omitempty"`
	SurrogateAuthRequired     *bool                           `json:"surrogateAuthRequired,omitempty"`
	Type                      *string                         `json:"type,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateConfig *bool `json:"useTemplateConfig,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateMappers *bool `json:"useTemplateMappers,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateScope *bool     `json:"useTemplateScope,omitempty"`
	WebOrigins       *[]string `json:"webOrigins,omitempty"`
}

ApplicationRepresentation defines model for ApplicationRepresentation.

type AuthDetailsRepresentation

type AuthDetailsRepresentation struct {
	ClientID  *string `json:"clientId,omitempty"`
	IPAddress *string `json:"ipAddress,omitempty"`
	RealmID   *string `json:"realmId,omitempty"`
	UserID    *string `json:"userId,omitempty"`
}

AuthDetailsRepresentation defines model for AuthDetailsRepresentation.

type AuthenticationExecutionExportRepresentation

type AuthenticationExecutionExportRepresentation struct {
	Authenticator       *string `json:"authenticator,omitempty"`
	AuthenticatorConfig *string `json:"authenticatorConfig,omitempty"`
	AuthenticatorFlow   *bool   `json:"authenticatorFlow,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	AutheticatorFlow *bool   `json:"autheticatorFlow,omitempty"`
	FlowAlias        *string `json:"flowAlias,omitempty"`
	Priority         *int32  `json:"priority,omitempty"`
	Requirement      *string `json:"requirement,omitempty"`
	UserSetupAllowed *bool   `json:"userSetupAllowed,omitempty"`
}

AuthenticationExecutionExportRepresentation defines model for AuthenticationExecutionExportRepresentation.

type AuthenticationExecutionInfoRepresentation

type AuthenticationExecutionInfoRepresentation struct {
	Alias                *string   `json:"alias,omitempty"`
	AuthenticationConfig *string   `json:"authenticationConfig,omitempty"`
	AuthenticationFlow   *bool     `json:"authenticationFlow,omitempty"`
	Configurable         *bool     `json:"configurable,omitempty"`
	Description          *string   `json:"description,omitempty"`
	DisplayName          *string   `json:"displayName,omitempty"`
	FlowID               *string   `json:"flowId,omitempty"`
	ID                   *string   `json:"id,omitempty"`
	Index                *int32    `json:"index,omitempty"`
	Level                *int32    `json:"level,omitempty"`
	Priority             *int32    `json:"priority,omitempty"`
	ProviderID           *string   `json:"providerId,omitempty"`
	Requirement          *string   `json:"requirement,omitempty"`
	RequirementChoices   *[]string `json:"requirementChoices,omitempty"`
}

AuthenticationExecutionInfoRepresentation defines model for AuthenticationExecutionInfoRepresentation.

type AuthenticationExecutionRepresentation

type AuthenticationExecutionRepresentation struct {
	Authenticator       *string `json:"authenticator,omitempty"`
	AuthenticatorConfig *string `json:"authenticatorConfig,omitempty"`
	AuthenticatorFlow   *bool   `json:"authenticatorFlow,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	AutheticatorFlow *bool   `json:"autheticatorFlow,omitempty"`
	FlowID           *string `json:"flowId,omitempty"`
	ID               *string `json:"id,omitempty"`
	ParentFlow       *string `json:"parentFlow,omitempty"`
	Priority         *int32  `json:"priority,omitempty"`
	Requirement      *string `json:"requirement,omitempty"`
}

AuthenticationExecutionRepresentation defines model for AuthenticationExecutionRepresentation.

type AuthenticationFlowRepresentation

type AuthenticationFlowRepresentation struct {
	Alias                    *string                                        `json:"alias,omitempty"`
	AuthenticationExecutions *[]AuthenticationExecutionExportRepresentation `json:"authenticationExecutions,omitempty"`
	BuiltIn                  *bool                                          `json:"builtIn,omitempty"`
	Description              *string                                        `json:"description,omitempty"`
	ID                       *string                                        `json:"id,omitempty"`
	ProviderID               *string                                        `json:"providerId,omitempty"`
	TopLevel                 *bool                                          `json:"topLevel,omitempty"`
}

AuthenticationFlowRepresentation defines model for AuthenticationFlowRepresentation.

type AuthenticatorConfigInfoRepresentation

type AuthenticatorConfigInfoRepresentation struct {
	HelpText   *string                         `json:"helpText,omitempty"`
	Name       *string                         `json:"name,omitempty"`
	Properties *[]ConfigPropertyRepresentation `json:"properties,omitempty"`
	ProviderID *string                         `json:"providerId,omitempty"`
}

AuthenticatorConfigInfoRepresentation defines model for AuthenticatorConfigInfoRepresentation.

type AuthenticatorConfigRepresentation

type AuthenticatorConfigRepresentation struct {
	Alias  *string            `json:"alias,omitempty"`
	Config *map[string]string `json:"config,omitempty"`
	ID     *string            `json:"id,omitempty"`
}

AuthenticatorConfigRepresentation defines model for AuthenticatorConfigRepresentation.

type Authorization

type Authorization struct {
	Permissions *[]Permission `json:"permissions,omitempty"`
}

Authorization defines model for Authorization.

type AuthorizationDetailsJSONRepresentation

type AuthorizationDetailsJSONRepresentation struct {
	Actions    *[]string               `json:"actions,omitempty"`
	CustomData *map[string]interface{} `json:"customData,omitempty"`
	Datatypes  *[]string               `json:"datatypes,omitempty"`
	Identifier *string                 `json:"identifier,omitempty"`
	Locations  *[]string               `json:"locations,omitempty"`
	Privileges *[]string               `json:"privileges,omitempty"`
	Type       *string                 `json:"type,omitempty"`
}

AuthorizationDetailsJSONRepresentation defines model for AuthorizationDetailsJSONRepresentation.

type AuthorizationSchema

type AuthorizationSchema struct {
	ResourceTypes *map[string]ResourceType `json:"resourceTypes,omitempty"`
}

AuthorizationSchema defines model for AuthorizationSchema.

type BruteForceStrategy

type BruteForceStrategy string

BruteForceStrategy defines model for BruteForceStrategy.

const (
	LINEAR   BruteForceStrategy = "LINEAR"
	MULTIPLE BruteForceStrategy = "MULTIPLE"
)

Defines values for BruteForceStrategy.

func (BruteForceStrategy) Valid

func (e BruteForceStrategy) Valid() bool

Valid indicates whether the value is a known member of the BruteForceStrategy enum.

type CertificateRepresentation

type CertificateRepresentation struct {
	Certificate *string `json:"certificate,omitempty"`
	Jwks        *string `json:"jwks,omitempty"`
	Kid         *string `json:"kid,omitempty"`
	PrivateKey  *string `json:"privateKey,omitempty"`
	PublicKey   *string `json:"publicKey,omitempty"`
}

CertificateRepresentation defines model for CertificateRepresentation.

type ClaimRepresentation

type ClaimRepresentation struct {
	Address  *bool `json:"address,omitempty"`
	Email    *bool `json:"email,omitempty"`
	Gender   *bool `json:"gender,omitempty"`
	Locale   *bool `json:"locale,omitempty"`
	Name     *bool `json:"name,omitempty"`
	Phone    *bool `json:"phone,omitempty"`
	Picture  *bool `json:"picture,omitempty"`
	Profile  *bool `json:"profile,omitempty"`
	Username *bool `json:"username,omitempty"`
	Website  *bool `json:"website,omitempty"`
}

ClaimRepresentation defines model for ClaimRepresentation.

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client is the ergonomic facade over the generated RawClient. It adds typed wrappers and structured error mapping while delegating transport to an injected, authentication-aware *http.Client.

func New

func New(baseURL string, httpClient *http.Client) (*Client, error)

New creates a Client for the Keycloak server at baseURL, using httpClient for transport. baseURL is the server root (e.g. "https://auth.example.com"); the "/admin" prefix is part of the generated operation paths and must not be included here.

httpClient is normally the result of NewAuthedHTTPClient so that requests carry a bearer token. If httpClient is nil, http.DefaultClient is used (unauthenticated — only useful for tests against open endpoints).

func NewWithTokenSource

func NewWithTokenSource(ctx context.Context, baseURL string, ts oauth2.TokenSource) (*Client, error)

NewWithTokenSource is a convenience constructor that wraps ts in an authentication-aware *http.Client and builds a Client from it.

func (*Client) AddMember

func (c *Client) AddMember(ctx context.Context, realm, orgID, userID string) error

AddMember associates an existing user (by user id) with an organization. Returns ErrConflict if the user is already a member and ErrBadRequest if the user does not exist.

func (*Client) GetOrganization

func (c *Client) GetOrganization(ctx context.Context, realm, orgID string) (*Organization, error)

GetOrganization returns a single organization by id.

func (*Client) InviteUser

func (c *Client) InviteUser(ctx context.Context, realm, orgID string, req InviteUserRequest) error

InviteUser invites a user to an organization by email. If a user with that email exists Keycloak sends an invitation link, otherwise a registration link. The request is sent as application/x-www-form-urlencoded, per the API.

func (*Client) ListMembers

func (c *Client) ListMembers(ctx context.Context, realm, orgID string, opts *ListMembersOptions) ([]OrganizationMember, error)

ListMembers returns the members of an organization. Pass nil opts for Keycloak defaults.

func (*Client) ListOrganizations

func (c *Client) ListOrganizations(ctx context.Context, realm string, opts *ListOrganizationsOptions) ([]Organization, error)

ListOrganizations returns the organizations in a realm. Pass nil opts for Keycloak defaults.

func (*Client) ListUsers

func (c *Client) ListUsers(ctx context.Context, realm string, opts *ListUsersOptions) ([]User, error)

ListUsers returns users in a realm. Pass nil opts for Keycloak defaults.

func (*Client) Raw

func (c *Client) Raw() *RawClient

Raw exposes the underlying generated client as an escape hatch for endpoints the facade does not wrap.

type ClientInitialAccessCreatePresentation

type ClientInitialAccessCreatePresentation struct {
	Count      *int32    `json:"count,omitempty"`
	Expiration *int32    `json:"expiration,omitempty"`
	WebOrigins *[]string `json:"webOrigins,omitempty"`
}

ClientInitialAccessCreatePresentation defines model for ClientInitialAccessCreatePresentation.

type ClientInitialAccessPresentation

type ClientInitialAccessPresentation struct {
	Count          *int32  `json:"count,omitempty"`
	Expiration     *int32  `json:"expiration,omitempty"`
	ID             *string `json:"id,omitempty"`
	RemainingCount *int32  `json:"remainingCount,omitempty"`
	Timestamp      *int32  `json:"timestamp,omitempty"`
	Token          *string `json:"token,omitempty"`
}

ClientInitialAccessPresentation defines model for ClientInitialAccessPresentation.

type ClientInterface

type ClientInterface interface {
	// GetAdminRealms request
	GetAdminRealms(ctx context.Context, params *GetAdminRealmsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsWithBody request with any body
	PostAdminRealmsWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealms(ctx context.Context, body PostAdminRealmsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealm request
	DeleteAdminRealmsRealm(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealm request
	GetAdminRealmsRealm(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmWithBody request with any body
	PutAdminRealmsRealmWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealm(ctx context.Context, realm string, body PutAdminRealmsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAdminEvents request
	DeleteAdminRealmsRealmAdminEvents(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAdminEvents request
	GetAdminRealmsRealmAdminEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmAdminEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAttackDetectionBruteForceUsers request
	DeleteAdminRealmsRealmAttackDetectionBruteForceUsers(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID request
	DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID request
	GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationAuthenticatorProviders request
	GetAdminRealmsRealmAuthenticationAuthenticatorProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders request
	GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationConfigWithBody request with any body
	PostAdminRealmsRealmAuthenticationConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationConfig(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID request
	GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAuthenticationConfigID request
	DeleteAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationConfigID request
	GetAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmAuthenticationConfigIDWithBody request with any body
	PutAdminRealmsRealmAuthenticationConfigIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationExecutionsWithBody request with any body
	PostAdminRealmsRealmAuthenticationExecutionsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationExecutions(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID request
	DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationExecutionsExecutionID request
	GetAdminRealmsRealmAuthenticationExecutionsExecutionID(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBody request with any body
	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBody(ctx context.Context, realm string, executionID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig(ctx context.Context, realm string, executionID string, body PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID request
	GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID(ctx context.Context, realm string, executionID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority request
	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority request
	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationFlows request
	GetAdminRealmsRealmAuthenticationFlows(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationFlowsWithBody request with any body
	PostAdminRealmsRealmAuthenticationFlowsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationFlows(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBody request with any body
	PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions request
	GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBody request with any body
	PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, body PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBody request with any body
	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBody request with any body
	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAuthenticationFlowsID request
	DeleteAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationFlowsID request
	GetAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmAuthenticationFlowsIDWithBody request with any body
	PutAdminRealmsRealmAuthenticationFlowsIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationFormActionProviders request
	GetAdminRealmsRealmAuthenticationFormActionProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationFormProviders request
	GetAdminRealmsRealmAuthenticationFormProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationPerClientConfigDescription request
	GetAdminRealmsRealmAuthenticationPerClientConfigDescription(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBody request with any body
	PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmAuthenticationRegisterRequiredAction(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationRequiredActions request
	GetAdminRealmsRealmAuthenticationRequiredActions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias request
	DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsAlias request
	GetAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBody request with any body
	PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig request
	DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig request
	GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBody request with any body
	PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription request
	GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority request
	PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority request
	PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions request
	GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientDescriptionConverterWithBody request with any body
	PostAdminRealmsRealmClientDescriptionConverterWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientDescriptionConverter(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientDescriptionConverterWithTextBody(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterTextRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientPoliciesPolicies request
	GetAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesPoliciesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientPoliciesPoliciesWithBody request with any body
	PutAdminRealmsRealmClientPoliciesPoliciesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientPoliciesProfiles request
	GetAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesProfilesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientPoliciesProfilesWithBody request with any body
	PutAdminRealmsRealmClientPoliciesProfilesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientRegistrationPolicyProviders request
	GetAdminRealmsRealmClientRegistrationPolicyProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopes request
	GetAdminRealmsRealmClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientScopesWithBody request with any body
	PostAdminRealmsRealmClientScopesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientScopes(ctx context.Context, realm string, body PostAdminRealmsRealmClientScopesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeID request
	DeleteAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeID request
	GetAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientScopesClientScopeIDWithBody request with any body
	PutAdminRealmsRealmClientScopesClientScopeIDWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBody request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels request
	GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBody request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID request
	DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID request
	GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBody request with any body
	PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol request
	GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody request with any body
	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailable request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody request with any body
	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientSessionStats request
	GetAdminRealmsRealmClientSessionStats(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplates request
	GetAdminRealmsRealmClientTemplates(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientTemplatesWithBody request with any body
	PostAdminRealmsRealmClientTemplatesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientTemplates(ctx context.Context, realm string, body PostAdminRealmsRealmClientTemplatesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeID request
	DeleteAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeID request
	GetAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientTemplatesClientScopeIDWithBody request with any body
	PutAdminRealmsRealmClientTemplatesClientScopeIDWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBody request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels request
	GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBody request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID request
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID request
	GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBody request with any body
	PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocol request
	GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody request with any body
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody request with any body
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientTypes request
	GetAdminRealmsRealmClientTypes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientTypesWithBody request with any body
	PutAdminRealmsRealmClientTypesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientTypes(ctx context.Context, realm string, body PutAdminRealmsRealmClientTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClients request
	GetAdminRealmsRealmClients(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsWithBody request with any body
	PostAdminRealmsRealmClientsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClients(ctx context.Context, realm string, body PostAdminRealmsRealmClientsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsInitialAccess request
	GetAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsInitialAccessWithBody request with any body
	PostAdminRealmsRealmClientsInitialAccessWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, body PostAdminRealmsRealmClientsInitialAccessJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsInitialAccessID request
	DeleteAdminRealmsRealmClientsInitialAccessID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUID request
	DeleteAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUID request
	GetAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProviders request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProviders(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProviders request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProviders(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBody(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID request
	DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, params *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBody(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID request
	DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBody(ctx context.Context, realm string, clientUUID string, scopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissions request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissions(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResources request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResources(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDCertificatesAttr request
	GetAdminRealmsRealmClientsClientUUIDCertificatesAttr(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBody(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate request
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBody(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload request
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate request
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDClientSecret request
	GetAdminRealmsRealmClientsClientUUIDClientSecret(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDClientSecret request
	PostAdminRealmsRealmClientsClientUUIDClientSecret(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated request
	DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDClientSecretRotated request
	GetAdminRealmsRealmClientsClientUUIDClientSecretRotated(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes request
	GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID request
	DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID request
	PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderID request
	GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderID(ctx context.Context, realm string, clientUUID string, providerID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDManagementPermissions request
	GetAdminRealmsRealmClientsClientUUIDManagementPermissions(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDManagementPermissions(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDNodesWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDNodesWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDNodes(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDNodesNode request
	DeleteAdminRealmsRealmClientsClientUUIDNodesNode(ctx context.Context, realm string, clientUUID string, node string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount request
	GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDOfflineSessions request
	GetAdminRealmsRealmClientsClientUUIDOfflineSessions(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDOptionalClientScopes request
	GetAdminRealmsRealmClientsClientUUIDOptionalClientScopes(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID request
	DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID request
	PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels request
	GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID request
	DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID request
	GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientUUID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, body PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol request
	GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientUUID string, protocol string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDPushRevocation request
	PostAdminRealmsRealmClientsClientUUIDPushRevocation(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken request
	PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRoles request
	GetAdminRealmsRealmClientsClientUUIDRoles(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDRolesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDRolesWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDRolesWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDRoles(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName request
	DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleName request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody request with any body
	DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, body DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, body PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID(ctx context.Context, realm string, clientUUID string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappings request
	GetAdminRealmsRealmClientsClientUUIDScopeMappings(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody request with any body
	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientUUID string, client string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody request with any body
	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealm request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody request with any body
	PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDServiceAccountUser request
	GetAdminRealmsRealmClientsClientUUIDServiceAccountUser(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDSessionCount request
	GetAdminRealmsRealmClientsClientUUIDSessionCount(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable request
	GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmClientsClientUUIDUserSessions request
	GetAdminRealmsRealmClientsClientUUIDUserSessions(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDUserSessionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmComponents request
	GetAdminRealmsRealmComponents(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmComponentsWithBody request with any body
	PostAdminRealmsRealmComponentsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmComponents(ctx context.Context, realm string, body PostAdminRealmsRealmComponentsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmComponentsID request
	DeleteAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmComponentsID request
	GetAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmComponentsIDWithBody request with any body
	PutAdminRealmsRealmComponentsIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmComponentsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmComponentsIDSubComponentTypes request
	GetAdminRealmsRealmComponentsIDSubComponentTypes(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmComponentsIDSubComponentTypesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmCredentialRegistrators request
	GetAdminRealmsRealmCredentialRegistrators(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmDefaultDefaultClientScopes request
	GetAdminRealmsRealmDefaultDefaultClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID request
	DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID request
	PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmDefaultGroups request
	GetAdminRealmsRealmDefaultGroups(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmDefaultGroupsGroupID request
	DeleteAdminRealmsRealmDefaultGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmDefaultGroupsGroupID request
	PutAdminRealmsRealmDefaultGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmDefaultOptionalClientScopes request
	GetAdminRealmsRealmDefaultOptionalClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID request
	DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID request
	PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmEvents request
	DeleteAdminRealmsRealmEvents(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmEvents request
	GetAdminRealmsRealmEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmEventsConfig request
	GetAdminRealmsRealmEventsConfig(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmEventsConfigWithBody request with any body
	PutAdminRealmsRealmEventsConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmEventsConfig(ctx context.Context, realm string, body PutAdminRealmsRealmEventsConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupByPathPath request
	GetAdminRealmsRealmGroupByPathPath(ctx context.Context, realm string, path string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroups request
	GetAdminRealmsRealmGroups(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmGroupsWithBody request with any body
	PostAdminRealmsRealmGroupsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmGroups(ctx context.Context, realm string, body PostAdminRealmsRealmGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsCount request
	GetAdminRealmsRealmGroupsCount(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmGroupsGroupID request
	DeleteAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupID request
	GetAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmGroupsGroupIDWithBody request with any body
	PutAdminRealmsRealmGroupsGroupIDWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDChildren request
	GetAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmGroupsGroupIDChildrenWithBody request with any body
	PostAdminRealmsRealmGroupsGroupIDChildrenWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDManagementPermissions request
	GetAdminRealmsRealmGroupsGroupIDManagementPermissions(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmGroupsGroupIDManagementPermissions(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDMembers request
	GetAdminRealmsRealmGroupsGroupIDMembers(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappings request
	GetAdminRealmsRealmGroupsGroupIDRoleMappings(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody request with any body
	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody request with any body
	PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, groupID string, clientID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody request with any body
	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody request with any body
	PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmIdentityProviderImportConfigWithBody request with any body
	PostAdminRealmsRealmIdentityProviderImportConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmIdentityProviderImportConfig(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstances request
	GetAdminRealmsRealmIdentityProviderInstances(ctx context.Context, realm string, params *GetAdminRealmsRealmIdentityProviderInstancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmIdentityProviderInstancesWithBody request with any body
	PostAdminRealmsRealmIdentityProviderInstancesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmIdentityProviderInstances(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmIdentityProviderInstancesAlias request
	DeleteAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAlias request
	GetAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmIdentityProviderInstancesAliasWithBody request with any body
	PutAdminRealmsRealmIdentityProviderInstancesAliasWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasExport request
	GetAdminRealmsRealmIdentityProviderInstancesAliasExport(ctx context.Context, realm string, alias string, params *GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions request
	GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes request
	GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasMappers request
	GetAdminRealmsRealmIdentityProviderInstancesAliasMappers(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBody request with any body
	PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmIdentityProviderInstancesAliasMappers(ctx context.Context, realm string, alias string, body PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID request
	DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID request
	GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBody request with any body
	PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBody(ctx context.Context, realm string, alias string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, body PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys request
	GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmIdentityProviderProvidersProviderID request
	GetAdminRealmsRealmIdentityProviderProvidersProviderID(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmIdentityProviderUploadCertificate request
	PostAdminRealmsRealmIdentityProviderUploadCertificate(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmKeys request
	GetAdminRealmsRealmKeys(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmLocalization request
	GetAdminRealmsRealmLocalization(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmLocalizationLocale request
	DeleteAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmLocalizationLocale request
	GetAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, params *GetAdminRealmsRealmLocalizationLocaleParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmLocalizationLocaleWithBody request with any body
	PostAdminRealmsRealmLocalizationLocaleWithBody(ctx context.Context, realm string, locale string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, body PostAdminRealmsRealmLocalizationLocaleJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmLocalizationLocaleKey request
	DeleteAdminRealmsRealmLocalizationLocaleKey(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmLocalizationLocaleKey request
	GetAdminRealmsRealmLocalizationLocaleKey(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmLocalizationLocaleKeyWithBody request with any body
	PutAdminRealmsRealmLocalizationLocaleKeyWithBody(ctx context.Context, realm string, locale string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmLocalizationLocaleKeyWithTextBody(ctx context.Context, realm string, locale string, key string, body PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmLogoutAll request
	PostAdminRealmsRealmLogoutAll(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizations request
	GetAdminRealmsRealmOrganizations(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsWithBody request with any body
	PostAdminRealmsRealmOrganizationsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizations(ctx context.Context, realm string, body PostAdminRealmsRealmOrganizationsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsCount request
	GetAdminRealmsRealmOrganizationsCount(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations request
	GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations(ctx context.Context, realm string, memberID string, params *GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgID request
	DeleteAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgID request
	GetAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmOrganizationsOrgIDWithBody request with any body
	PutAdminRealmsRealmOrganizationsOrgIDWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, body PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroups request
	GetAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath(ctx context.Context, realm string, orgID string, path string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID request
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBody request with any body
	PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, body PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID request
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID request
	PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody request with any body
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, clientID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, clientID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, orgID string, groupID string, clientID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody request with any body
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailable request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailable(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDIdentityProviders request
	GetAdminRealmsRealmOrganizationsOrgIDIdentityProviders(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias request
	DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias request
	GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups request
	GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups(ctx context.Context, realm string, orgID string, alias string, params *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDInvitations request
	GetAdminRealmsRealmOrganizationsOrgIDInvitations(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID request
	DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDInvitationsID request
	GetAdminRealmsRealmOrganizationsOrgIDInvitationsID(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend request
	PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembers request
	GetAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDMembersWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDMembersWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersCount request
	GetAdminRealmsRealmOrganizationsOrgIDMembersCount(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBody(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBody request with any body
	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBody(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID request
	DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID request
	GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups request
	GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations request
	GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmPartialExport request
	PostAdminRealmsRealmPartialExport(ctx context.Context, realm string, params *PostAdminRealmsRealmPartialExportParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmPartialImportWithBody request with any body
	PostAdminRealmsRealmPartialImportWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmPartialImport(ctx context.Context, realm string, body PostAdminRealmsRealmPartialImportJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmPushRevocation request
	PostAdminRealmsRealmPushRevocation(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRoles request
	GetAdminRealmsRealmRoles(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmRolesWithBody request with any body
	PostAdminRealmsRealmRolesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmRoles(ctx context.Context, realm string, body PostAdminRealmsRealmRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmRolesByIDRoleID request
	DeleteAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesByIDRoleID request
	GetAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmRolesByIDRoleIDWithBody request with any body
	PutAdminRealmsRealmRolesByIDRoleIDWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBody request with any body
	DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, body DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesByIDRoleIDComposites request
	GetAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, params *GetAdminRealmsRealmRolesByIDRoleIDCompositesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBody request with any body
	PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, body PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUID request
	GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUID(ctx context.Context, realm string, roleID string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm request
	GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions request
	GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmRolesRoleName request
	DeleteAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleName request
	GetAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmRolesRoleNameWithBody request with any body
	PutAdminRealmsRealmRolesRoleNameWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmRolesRoleNameCompositesWithBody request with any body
	DeleteAdminRealmsRealmRolesRoleNameCompositesWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, body DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleNameComposites request
	GetAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmRolesRoleNameCompositesWithBody request with any body
	PostAdminRealmsRealmRolesRoleNameCompositesWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, body PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID request
	GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID(ctx context.Context, realm string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleNameCompositesRealm request
	GetAdminRealmsRealmRolesRoleNameCompositesRealm(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleNameGroups request
	GetAdminRealmsRealmRolesRoleNameGroups(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleNameManagementPermissions request
	GetAdminRealmsRealmRolesRoleNameManagementPermissions(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmRolesRoleNameManagementPermissions(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmRolesRoleNameUsers request
	GetAdminRealmsRealmRolesRoleNameUsers(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmSessionsSession request
	DeleteAdminRealmsRealmSessionsSession(ctx context.Context, realm string, session string, params *DeleteAdminRealmsRealmSessionsSessionParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmTestSMTPConnectionWithBody request with any body
	PostAdminRealmsRealmTestSMTPConnectionWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmTestSMTPConnection(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmTestSMTPConnectionWithFormdataBody(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsers request
	GetAdminRealmsRealmUsers(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersWithBody request with any body
	PostAdminRealmsRealmUsersWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmUsers(ctx context.Context, realm string, body PostAdminRealmsRealmUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersManagementPermissions request
	GetAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersManagementPermissionsWithBody request with any body
	PutAdminRealmsRealmUsersManagementPermissionsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, body PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersCount request
	GetAdminRealmsRealmUsersCount(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersProfile request
	GetAdminRealmsRealmUsersProfile(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersProfileWithBody request with any body
	PutAdminRealmsRealmUsersProfileWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersProfile(ctx context.Context, realm string, body PutAdminRealmsRealmUsersProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersProfileMetadata request
	GetAdminRealmsRealmUsersProfileMetadata(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserID request
	DeleteAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserID request
	GetAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDWithBody request with any body
	PutAdminRealmsRealmUsersUserIDWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypes request
	GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypes(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDConsents request
	GetAdminRealmsRealmUsersUserIDConsents(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserIDConsentsClient request
	DeleteAdminRealmsRealmUsersUserIDConsentsClient(ctx context.Context, realm string, userID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDCredentials request
	GetAdminRealmsRealmUsersUserIDCredentials(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID request
	DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialID request
	PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialID(ctx context.Context, realm string, userID string, credentialID string, newPreviousCredentialID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst request
	PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBody request with any body
	PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBody(ctx context.Context, realm string, userID string, credentialID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBody(ctx context.Context, realm string, userID string, credentialID string, body PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBody request with any body
	PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersUserIDDisableCredentialTypes(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBody request with any body
	PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBody(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersUserIDExecuteActionsEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, body PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDFederatedIdentity request
	GetAdminRealmsRealmUsersUserIDFederatedIdentity(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider request
	DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider(ctx context.Context, realm string, userID string, provider string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBody request with any body
	PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBody(ctx context.Context, realm string, userID string, provider string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider(ctx context.Context, realm string, userID string, provider string, body PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDGroups request
	GetAdminRealmsRealmUsersUserIDGroups(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDGroupsCount request
	GetAdminRealmsRealmUsersUserIDGroupsCount(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserIDGroupsGroupID request
	DeleteAdminRealmsRealmUsersUserIDGroupsGroupID(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDGroupsGroupID request
	PutAdminRealmsRealmUsersUserIDGroupsGroupID(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDImpersonation request
	PostAdminRealmsRealmUsersUserIDImpersonation(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDLogout request
	PostAdminRealmsRealmUsersUserIDLogout(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUID request
	GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUID(ctx context.Context, realm string, userID string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDResetPasswordWithBody request with any body
	PutAdminRealmsRealmUsersUserIDResetPasswordWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmUsersUserIDResetPassword(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDResetPasswordEmail request
	PutAdminRealmsRealmUsersUserIDResetPasswordEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappings request
	GetAdminRealmsRealmUsersUserIDRoleMappings(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody request with any body
	DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID request
	GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody request with any body
	PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable request
	GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite request
	GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, userID string, clientID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody request with any body
	DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsRealm request
	GetAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody request with any body
	PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable request
	GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite request
	GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmUsersUserIDSendVerifyEmail request
	PutAdminRealmsRealmUsersUserIDSendVerifyEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDSessions request
	GetAdminRealmsRealmUsersUserIDSessions(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmUsersUserIDUnmanagedAttributes request
	GetAdminRealmsRealmUsersUserIDUnmanagedAttributes(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmWorkflows request
	GetAdminRealmsRealmWorkflows(ctx context.Context, realm string, params *GetAdminRealmsRealmWorkflowsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmWorkflowsWithBody request with any body
	PostAdminRealmsRealmWorkflowsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PostAdminRealmsRealmWorkflows(ctx context.Context, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmWorkflowsMigrate request
	PostAdminRealmsRealmWorkflowsMigrate(ctx context.Context, realm string, params *PostAdminRealmsRealmWorkflowsMigrateParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmWorkflowsScheduledResourceID request
	GetAdminRealmsRealmWorkflowsScheduledResourceID(ctx context.Context, realm string, resourceID string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DeleteAdminRealmsRealmWorkflowsID request
	DeleteAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GetAdminRealmsRealmWorkflowsID request
	GetAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmWorkflowsIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PutAdminRealmsRealmWorkflowsIDWithBody request with any body
	PutAdminRealmsRealmWorkflowsIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	PutAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmWorkflowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID request
	PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, params *PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID request
	PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, reqEditors ...RequestEditorFn) (*http.Response, error)
}

The interface specification for the client above.

type ClientMappingsRepresentation

type ClientMappingsRepresentation struct {
	Client   *string               `json:"client,omitempty"`
	ID       *string               `json:"id,omitempty"`
	Mappings *[]RoleRepresentation `json:"mappings,omitempty"`
}

ClientMappingsRepresentation defines model for ClientMappingsRepresentation.

type ClientOption

type ClientOption func(*RawClient) error

ClientOption allows setting custom parameters during construction

func WithBaseURL

func WithBaseURL(baseURL string) ClientOption

WithBaseURL overrides the baseURL.

func WithHTTPClient

func WithHTTPClient(doer HttpRequestDoer) ClientOption

WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.

func WithRequestEditorFn

func WithRequestEditorFn(fn RequestEditorFn) ClientOption

WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request. This can be used to mutate the request.

type ClientPoliciesRepresentation

type ClientPoliciesRepresentation struct {
	GlobalPolicies *[]ClientPolicyRepresentation `json:"globalPolicies,omitempty"`
	Policies       *[]ClientPolicyRepresentation `json:"policies,omitempty"`
}

ClientPoliciesRepresentation defines model for ClientPoliciesRepresentation.

type ClientPolicyConditionRepresentation

type ClientPolicyConditionRepresentation struct {
	Condition *string `json:"condition,omitempty"`

	// Configuration Configuration settings as a JSON object
	Configuration *map[string]interface{} `json:"configuration,omitempty"`
}

ClientPolicyConditionRepresentation defines model for ClientPolicyConditionRepresentation.

type ClientPolicyExecutorRepresentation

type ClientPolicyExecutorRepresentation struct {
	// Configuration Configuration settings as a JSON object
	Configuration *map[string]interface{} `json:"configuration,omitempty"`
	Executor      *string                 `json:"executor,omitempty"`
}

ClientPolicyExecutorRepresentation defines model for ClientPolicyExecutorRepresentation.

type ClientPolicyRepresentation

type ClientPolicyRepresentation struct {
	Conditions  *[]ClientPolicyConditionRepresentation `json:"conditions,omitempty"`
	Description *string                                `json:"description,omitempty"`
	Enabled     *bool                                  `json:"enabled,omitempty"`
	Mode        *string                                `json:"mode,omitempty"`
	Name        *string                                `json:"name,omitempty"`
	Profiles    *[]string                              `json:"profiles,omitempty"`
}

ClientPolicyRepresentation defines model for ClientPolicyRepresentation.

type ClientProfileRepresentation

type ClientProfileRepresentation struct {
	Description *string                               `json:"description,omitempty"`
	Executors   *[]ClientPolicyExecutorRepresentation `json:"executors,omitempty"`
	Name        *string                               `json:"name,omitempty"`
}

ClientProfileRepresentation defines model for ClientProfileRepresentation.

type ClientProfilesRepresentation

type ClientProfilesRepresentation struct {
	GlobalProfiles *[]ClientProfileRepresentation `json:"globalProfiles,omitempty"`
	Profiles       *[]ClientProfileRepresentation `json:"profiles,omitempty"`
}

ClientProfilesRepresentation defines model for ClientProfilesRepresentation.

type ClientRepresentation

type ClientRepresentation struct {
	Access                             *map[string]bool              `json:"access,omitempty"`
	AdminURL                           *string                       `json:"adminUrl,omitempty"`
	AlwaysDisplayInConsole             *bool                         `json:"alwaysDisplayInConsole,omitempty"`
	Attributes                         *map[string]string            `json:"attributes,omitempty"`
	AuthenticationFlowBindingOverrides *map[string]string            `json:"authenticationFlowBindingOverrides,omitempty"`
	AuthorizationServicesEnabled       *bool                         `json:"authorizationServicesEnabled,omitempty"`
	AuthorizationSettings              *ResourceServerRepresentation `json:"authorizationSettings,omitempty"`
	BaseURL                            *string                       `json:"baseUrl,omitempty"`
	BearerOnly                         *bool                         `json:"bearerOnly,omitempty"`
	ClientAuthenticatorType            *string                       `json:"clientAuthenticatorType,omitempty"`
	ClientID                           *string                       `json:"clientId,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ClientTemplate      *string   `json:"clientTemplate,omitempty"`
	ConsentRequired     *bool     `json:"consentRequired,omitempty"`
	DefaultClientScopes *[]string `json:"defaultClientScopes,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DefaultRoles              *[]string `json:"defaultRoles,omitempty"`
	Description               *string   `json:"description,omitempty"`
	DirectAccessGrantsEnabled *bool     `json:"directAccessGrantsEnabled,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DirectGrantsOnly          *bool                           `json:"directGrantsOnly,omitempty"`
	Enabled                   *bool                           `json:"enabled,omitempty"`
	FrontchannelLogout        *bool                           `json:"frontchannelLogout,omitempty"`
	FullScopeAllowed          *bool                           `json:"fullScopeAllowed,omitempty"`
	ID                        *string                         `json:"id,omitempty"`
	ImplicitFlowEnabled       *bool                           `json:"implicitFlowEnabled,omitempty"`
	Name                      *string                         `json:"name,omitempty"`
	NodeReRegistrationTimeout *int32                          `json:"nodeReRegistrationTimeout,omitempty"`
	NotBefore                 *int32                          `json:"notBefore,omitempty"`
	OptionalClientScopes      *[]string                       `json:"optionalClientScopes,omitempty"`
	Origin                    *string                         `json:"origin,omitempty"`
	Protocol                  *string                         `json:"protocol,omitempty"`
	ProtocolMappers           *[]ProtocolMapperRepresentation `json:"protocolMappers,omitempty"`
	PublicClient              *bool                           `json:"publicClient,omitempty"`
	RedirectUris              *[]string                       `json:"redirectUris,omitempty"`
	RegisteredNodes           *map[string]int32               `json:"registeredNodes,omitempty"`
	RegistrationAccessToken   *string                         `json:"registrationAccessToken,omitempty"`
	RootURL                   *string                         `json:"rootUrl,omitempty"`
	Secret                    *string                         `json:"secret,omitempty"`
	ServiceAccountsEnabled    *bool                           `json:"serviceAccountsEnabled,omitempty"`
	StandardFlowEnabled       *bool                           `json:"standardFlowEnabled,omitempty"`
	SurrogateAuthRequired     *bool                           `json:"surrogateAuthRequired,omitempty"`
	Type                      *string                         `json:"type,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateConfig *bool `json:"useTemplateConfig,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateMappers *bool `json:"useTemplateMappers,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateScope *bool     `json:"useTemplateScope,omitempty"`
	WebOrigins       *[]string `json:"webOrigins,omitempty"`
}

ClientRepresentation defines model for ClientRepresentation.

type ClientScopeRepresentation

type ClientScopeRepresentation struct {
	Attributes      *map[string]string              `json:"attributes,omitempty"`
	Description     *string                         `json:"description,omitempty"`
	ID              *string                         `json:"id,omitempty"`
	Name            *string                         `json:"name,omitempty"`
	Protocol        *string                         `json:"protocol,omitempty"`
	ProtocolMappers *[]ProtocolMapperRepresentation `json:"protocolMappers,omitempty"`
}

ClientScopeRepresentation defines model for ClientScopeRepresentation.

type ClientTemplateRepresentation

type ClientTemplateRepresentation struct {
	Attributes                *map[string]string              `json:"attributes,omitempty"`
	BearerOnly                *bool                           `json:"bearerOnly,omitempty"`
	ConsentRequired           *bool                           `json:"consentRequired,omitempty"`
	Description               *string                         `json:"description,omitempty"`
	DirectAccessGrantsEnabled *bool                           `json:"directAccessGrantsEnabled,omitempty"`
	FrontchannelLogout        *bool                           `json:"frontchannelLogout,omitempty"`
	FullScopeAllowed          *bool                           `json:"fullScopeAllowed,omitempty"`
	ID                        *string                         `json:"id,omitempty"`
	ImplicitFlowEnabled       *bool                           `json:"implicitFlowEnabled,omitempty"`
	Name                      *string                         `json:"name,omitempty"`
	Protocol                  *string                         `json:"protocol,omitempty"`
	ProtocolMappers           *[]ProtocolMapperRepresentation `json:"protocolMappers,omitempty"`
	PublicClient              *bool                           `json:"publicClient,omitempty"`
	ServiceAccountsEnabled    *bool                           `json:"serviceAccountsEnabled,omitempty"`
	StandardFlowEnabled       *bool                           `json:"standardFlowEnabled,omitempty"`
}

ClientTemplateRepresentation defines model for ClientTemplateRepresentation.

type ClientTypeRepresentation

type ClientTypeRepresentation struct {
	Config   *map[string]PropertyConfig `json:"config,omitempty"`
	Name     *string                    `json:"name,omitempty"`
	Parent   *string                    `json:"parent,omitempty"`
	Provider *string                    `json:"provider,omitempty"`
}

ClientTypeRepresentation defines model for ClientTypeRepresentation.

type ClientTypesRepresentation

type ClientTypesRepresentation struct {
	ClientTypes       *[]ClientTypeRepresentation `json:"client-types,omitempty"`
	GlobalClientTypes *[]ClientTypeRepresentation `json:"global-client-types,omitempty"`
}

ClientTypesRepresentation defines model for ClientTypesRepresentation.

type ClientWithResponses

type ClientWithResponses struct {
	ClientInterface
}

ClientWithResponses builds on ClientInterface to offer response payloads

func NewClientWithResponses

func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error)

NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling

func (*ClientWithResponses) DeleteAdminRealmsRealmAdminEventsWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAdminEventsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAdminEventsResponse, error)

DeleteAdminRealmsRealmAdminEventsWithResponse request returning *DeleteAdminRealmsRealmAdminEventsResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)

DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse request returning *DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse, error)

DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse request returning *DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationConfigIDResponse, error)

DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse request returning *DeleteAdminRealmsRealmAuthenticationConfigIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)

DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse request returning *DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationFlowsIDResponse, error)

DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse request returning *DeleteAdminRealmsRealmAuthenticationFlowsIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse request returning *DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse request returning *DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse request returning *DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDResponse, error)

DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse request returning *DeleteAdminRealmsRealmClientScopesClientScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse request returning *DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse request returning *DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse(ctx context.Context, realm string, clientUUID string, node string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDResponse, error)

DeleteAdminRealmsRealmClientsClientUUIDWithResponse request returning *DeleteAdminRealmsRealmClientsClientUUIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsInitialAccessIDResponse, error)

DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse request returning *DeleteAdminRealmsRealmClientsInitialAccessIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmComponentsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmComponentsIDResponse, error)

DeleteAdminRealmsRealmComponentsIDWithResponse request returning *DeleteAdminRealmsRealmComponentsIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)

DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse request returning *DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse, error)

DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse request returning *DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)

DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse request returning *DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmEventsWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmEventsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmEventsResponse, error)

DeleteAdminRealmsRealmEventsWithResponse request returning *DeleteAdminRealmsRealmEventsResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDResponse, error)

DeleteAdminRealmsRealmGroupsGroupIDWithResponse request returning *DeleteAdminRealmsRealmGroupsGroupIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse request returning *DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse request returning *DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmLocalizationLocaleKeyResponse, error)

DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse request returning *DeleteAdminRealmsRealmLocalizationLocaleKeyResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmLocalizationLocaleWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmLocalizationLocaleResponse, error)

DeleteAdminRealmsRealmLocalizationLocaleWithResponse request returning *DeleteAdminRealmsRealmLocalizationLocaleResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse request returning *DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse request returning *DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse request returning *DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse request returning *DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse request returning *DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDResponse, error)

DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse request returning *DeleteAdminRealmsRealmOrganizationsOrgIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesByIDRoleIDResponse, error)

DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse request returning *DeleteAdminRealmsRealmRolesByIDRoleIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)

DeleteAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmRolesRoleNameCompositesResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesRoleNameResponse, error)

DeleteAdminRealmsRealmRolesRoleNameWithResponse request returning *DeleteAdminRealmsRealmRolesRoleNameResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmSessionsSessionWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmSessionsSessionWithResponse(ctx context.Context, realm string, session string, params *DeleteAdminRealmsRealmSessionsSessionParams, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmSessionsSessionResponse, error)

DeleteAdminRealmsRealmSessionsSessionWithResponse request returning *DeleteAdminRealmsRealmSessionsSessionResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse(ctx context.Context, realm string, userID string, client string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse, error)

DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse request returning *DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse, error)

DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse request returning *DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse(ctx context.Context, realm string, userID string, provider string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse request returning *DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)

DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse request returning *DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse request with arbitrary body returning *DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDResponse, error)

DeleteAdminRealmsRealmUsersUserIDWithResponse request returning *DeleteAdminRealmsRealmUsersUserIDResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmResponse, error)

DeleteAdminRealmsRealmWithResponse request returning *DeleteAdminRealmsRealmResponse

func (*ClientWithResponses) DeleteAdminRealmsRealmWorkflowsIDWithResponse

func (c *ClientWithResponses) DeleteAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmWorkflowsIDResponse, error)

DeleteAdminRealmsRealmWorkflowsIDWithResponse request returning *DeleteAdminRealmsRealmWorkflowsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAdminEventsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAdminEventsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmAdminEventsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAdminEventsResponse, error)

GetAdminRealmsRealmAdminEventsWithResponse request returning *GetAdminRealmsRealmAdminEventsResponse

func (*ClientWithResponses) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)

GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse request returning *GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse, error)

GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse request returning *GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse, error)

GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse request returning *GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse, error)

GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse request returning *GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationConfigIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationConfigIDResponse, error)

GetAdminRealmsRealmAuthenticationConfigIDWithResponse request returning *GetAdminRealmsRealmAuthenticationConfigIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse(ctx context.Context, realm string, executionID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse, error)

GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse request returning *GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)

GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse request returning *GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse(ctx context.Context, realm string, flowAlias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse request returning *GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsIDResponse, error)

GetAdminRealmsRealmAuthenticationFlowsIDWithResponse request returning *GetAdminRealmsRealmAuthenticationFlowsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsResponse, error)

GetAdminRealmsRealmAuthenticationFlowsWithResponse request returning *GetAdminRealmsRealmAuthenticationFlowsResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFormActionProvidersResponse, error)

GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse request returning *GetAdminRealmsRealmAuthenticationFormActionProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationFormProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFormProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFormProvidersResponse, error)

GetAdminRealmsRealmAuthenticationFormProvidersWithResponse request returning *GetAdminRealmsRealmAuthenticationFormProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse, error)

GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse request returning *GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse, error)

GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse request returning *GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse request returning *GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse request returning *GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsResponse, error)

GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse request returning *GetAdminRealmsRealmAuthenticationRequiredActionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse, error)

GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse request returning *GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientPoliciesPoliciesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientPoliciesPoliciesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesPoliciesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientPoliciesPoliciesResponse, error)

GetAdminRealmsRealmClientPoliciesPoliciesWithResponse request returning *GetAdminRealmsRealmClientPoliciesPoliciesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientPoliciesProfilesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientPoliciesProfilesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesProfilesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientPoliciesProfilesResponse, error)

GetAdminRealmsRealmClientPoliciesProfilesWithResponse request returning *GetAdminRealmsRealmClientPoliciesProfilesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse, error)

GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse request returning *GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDResponse, error)

GetAdminRealmsRealmClientScopesClientScopeIDWithResponse request returning *GetAdminRealmsRealmClientScopesClientScopeIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientScopesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesResponse, error)

GetAdminRealmsRealmClientScopesWithResponse request returning *GetAdminRealmsRealmClientScopesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientSessionStatsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientSessionStatsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientSessionStatsResponse, error)

GetAdminRealmsRealmClientSessionStatsWithResponse request returning *GetAdminRealmsRealmClientSessionStatsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse request returning *GetAdminRealmsRealmClientTemplatesClientScopeIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTemplatesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesResponse, error)

GetAdminRealmsRealmClientTemplatesWithResponse request returning *GetAdminRealmsRealmClientTemplatesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientTypesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientTypesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTypesResponse, error)

GetAdminRealmsRealmClientTypesWithResponse request returning *GetAdminRealmsRealmClientTypesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse, error)

GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)

GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)

GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDClientSecretResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse, error)

GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse, error)

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse(ctx context.Context, realm string, clientUUID string, providerID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse, error)

GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse, error)

GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse, error)

GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse, error)

GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientUUID string, protocol string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse, error)

GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDRolesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesResponse, error)

GetAdminRealmsRealmClientsClientUUIDRolesWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDRolesResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientUUID string, client string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse, error)

GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse, error)

GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDSessionCountResponse, error)

GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDSessionCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse, error)

GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDUserSessionsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse, error)

GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDResponse, error)

GetAdminRealmsRealmClientsClientUUIDWithResponse request returning *GetAdminRealmsRealmClientsClientUUIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsInitialAccessWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsInitialAccessWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsInitialAccessResponse, error)

GetAdminRealmsRealmClientsInitialAccessWithResponse request returning *GetAdminRealmsRealmClientsInitialAccessResponse

func (*ClientWithResponses) GetAdminRealmsRealmClientsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmClientsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsResponse, error)

GetAdminRealmsRealmClientsWithResponse request returning *GetAdminRealmsRealmClientsResponse

func (*ClientWithResponses) GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmComponentsIDSubComponentTypesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsIDSubComponentTypesResponse, error)

GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse request returning *GetAdminRealmsRealmComponentsIDSubComponentTypesResponse

func (*ClientWithResponses) GetAdminRealmsRealmComponentsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsIDResponse, error)

GetAdminRealmsRealmComponentsIDWithResponse request returning *GetAdminRealmsRealmComponentsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmComponentsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmComponentsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsResponse, error)

GetAdminRealmsRealmComponentsWithResponse request returning *GetAdminRealmsRealmComponentsResponse

func (*ClientWithResponses) GetAdminRealmsRealmCredentialRegistratorsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmCredentialRegistratorsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmCredentialRegistratorsResponse, error)

GetAdminRealmsRealmCredentialRegistratorsWithResponse request returning *GetAdminRealmsRealmCredentialRegistratorsResponse

func (*ClientWithResponses) GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultDefaultClientScopesResponse, error)

GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse request returning *GetAdminRealmsRealmDefaultDefaultClientScopesResponse

func (*ClientWithResponses) GetAdminRealmsRealmDefaultGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmDefaultGroupsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultGroupsResponse, error)

GetAdminRealmsRealmDefaultGroupsWithResponse request returning *GetAdminRealmsRealmDefaultGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultOptionalClientScopesResponse, error)

GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse request returning *GetAdminRealmsRealmDefaultOptionalClientScopesResponse

func (*ClientWithResponses) GetAdminRealmsRealmEventsConfigWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmEventsConfigWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmEventsConfigResponse, error)

GetAdminRealmsRealmEventsConfigWithResponse request returning *GetAdminRealmsRealmEventsConfigResponse

func (*ClientWithResponses) GetAdminRealmsRealmEventsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmEventsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmEventsResponse, error)

GetAdminRealmsRealmEventsWithResponse request returning *GetAdminRealmsRealmEventsResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupByPathPathWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupByPathPathWithResponse(ctx context.Context, realm string, path string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupByPathPathResponse, error)

GetAdminRealmsRealmGroupByPathPathWithResponse request returning *GetAdminRealmsRealmGroupByPathPathResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsCountResponse, error)

GetAdminRealmsRealmGroupsCountWithResponse request returning *GetAdminRealmsRealmGroupsCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDChildrenResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDMembersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDMembersWithResponse(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDMembersResponse, error)

GetAdminRealmsRealmGroupsGroupIDMembersWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDMembersResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, groupID string, clientID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse, error)

GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDResponse, error)

GetAdminRealmsRealmGroupsGroupIDWithResponse request returning *GetAdminRealmsRealmGroupsGroupIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmGroupsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsResponse, error)

GetAdminRealmsRealmGroupsWithResponse request returning *GetAdminRealmsRealmGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse(ctx context.Context, realm string, alias string, params *GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesAliasResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmIdentityProviderInstancesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesResponse, error)

GetAdminRealmsRealmIdentityProviderInstancesWithResponse request returning *GetAdminRealmsRealmIdentityProviderInstancesResponse

func (*ClientWithResponses) GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse, error)

GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse request returning *GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmKeysWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmKeysWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmKeysResponse, error)

GetAdminRealmsRealmKeysWithResponse request returning *GetAdminRealmsRealmKeysResponse

func (*ClientWithResponses) GetAdminRealmsRealmLocalizationLocaleKeyWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmLocalizationLocaleKeyWithResponse(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationLocaleKeyResponse, error)

GetAdminRealmsRealmLocalizationLocaleKeyWithResponse request returning *GetAdminRealmsRealmLocalizationLocaleKeyResponse

func (*ClientWithResponses) GetAdminRealmsRealmLocalizationLocaleWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, params *GetAdminRealmsRealmLocalizationLocaleParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationLocaleResponse, error)

GetAdminRealmsRealmLocalizationLocaleWithResponse request returning *GetAdminRealmsRealmLocalizationLocaleResponse

func (*ClientWithResponses) GetAdminRealmsRealmLocalizationWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmLocalizationWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationResponse, error)

GetAdminRealmsRealmLocalizationWithResponse request returning *GetAdminRealmsRealmLocalizationResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsCountResponse, error)

GetAdminRealmsRealmOrganizationsCountWithResponse request returning *GetAdminRealmsRealmOrganizationsCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse(ctx context.Context, realm string, memberID string, params *GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse, error)

GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse request returning *GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse(ctx context.Context, realm string, orgID string, path string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse(ctx context.Context, realm string, orgID string, alias string, params *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDMembersResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDResponse, error)

GetAdminRealmsRealmOrganizationsOrgIDWithResponse request returning *GetAdminRealmsRealmOrganizationsOrgIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmOrganizationsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsResponse, error)

GetAdminRealmsRealmOrganizationsWithResponse request returning *GetAdminRealmsRealmOrganizationsResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse(ctx context.Context, realm string, roleID string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse, error)

GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse request returning *GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse, error)

GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse request returning *GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, params *GetAdminRealmsRealmRolesByIDRoleIDCompositesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse request returning *GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse request returning *GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDResponse, error)

GetAdminRealmsRealmRolesByIDRoleIDWithResponse request returning *GetAdminRealmsRealmRolesByIDRoleIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse(ctx context.Context, realm string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse, error)

GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse request returning *GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse, error)

GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse request returning *GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameCompositesResponse, error)

GetAdminRealmsRealmRolesRoleNameCompositesWithResponse request returning *GetAdminRealmsRealmRolesRoleNameCompositesResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameGroupsWithResponse(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameGroupsResponse, error)

GetAdminRealmsRealmRolesRoleNameGroupsWithResponse request returning *GetAdminRealmsRealmRolesRoleNameGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse request returning *GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameUsersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameUsersWithResponse(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameUsersResponse, error)

GetAdminRealmsRealmRolesRoleNameUsersWithResponse request returning *GetAdminRealmsRealmRolesRoleNameUsersResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesRoleNameWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameResponse, error)

GetAdminRealmsRealmRolesRoleNameWithResponse request returning *GetAdminRealmsRealmRolesRoleNameResponse

func (*ClientWithResponses) GetAdminRealmsRealmRolesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmRolesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesResponse, error)

GetAdminRealmsRealmRolesWithResponse request returning *GetAdminRealmsRealmRolesResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersCountResponse, error)

GetAdminRealmsRealmUsersCountWithResponse request returning *GetAdminRealmsRealmUsersCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersManagementPermissionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersManagementPermissionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersManagementPermissionsResponse, error)

GetAdminRealmsRealmUsersManagementPermissionsWithResponse request returning *GetAdminRealmsRealmUsersManagementPermissionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersProfileMetadataWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersProfileMetadataWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersProfileMetadataResponse, error)

GetAdminRealmsRealmUsersProfileMetadataWithResponse request returning *GetAdminRealmsRealmUsersProfileMetadataResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersProfileWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersProfileWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersProfileResponse, error)

GetAdminRealmsRealmUsersProfileWithResponse request returning *GetAdminRealmsRealmUsersProfileResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse, error)

GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse request returning *GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDConsentsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDConsentsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDConsentsResponse, error)

GetAdminRealmsRealmUsersUserIDConsentsWithResponse request returning *GetAdminRealmsRealmUsersUserIDConsentsResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDCredentialsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDCredentialsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDCredentialsResponse, error)

GetAdminRealmsRealmUsersUserIDCredentialsWithResponse request returning *GetAdminRealmsRealmUsersUserIDCredentialsResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse, error)

GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse request returning *GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDGroupsCountResponse, error)

GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse request returning *GetAdminRealmsRealmUsersUserIDGroupsCountResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDGroupsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDGroupsWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDGroupsResponse, error)

GetAdminRealmsRealmUsersUserIDGroupsWithResponse request returning *GetAdminRealmsRealmUsersUserIDGroupsResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse(ctx context.Context, realm string, userID string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse, error)

GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse request returning *GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, userID string, clientID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsResponse, error)

GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse request returning *GetAdminRealmsRealmUsersUserIDRoleMappingsResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDSessionsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDSessionsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDSessionsResponse, error)

GetAdminRealmsRealmUsersUserIDSessionsWithResponse request returning *GetAdminRealmsRealmUsersUserIDSessionsResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse, error)

GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse request returning *GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersUserIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDResponse, error)

GetAdminRealmsRealmUsersUserIDWithResponse request returning *GetAdminRealmsRealmUsersUserIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmUsersWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmUsersWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersResponse, error)

GetAdminRealmsRealmUsersWithResponse request returning *GetAdminRealmsRealmUsersResponse

func (*ClientWithResponses) GetAdminRealmsRealmWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmResponse, error)

GetAdminRealmsRealmWithResponse request returning *GetAdminRealmsRealmResponse

func (*ClientWithResponses) GetAdminRealmsRealmWorkflowsIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmWorkflowsIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmWorkflowsIDResponse, error)

GetAdminRealmsRealmWorkflowsIDWithResponse request returning *GetAdminRealmsRealmWorkflowsIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse(ctx context.Context, realm string, resourceID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse, error)

GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse request returning *GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse

func (*ClientWithResponses) GetAdminRealmsRealmWorkflowsWithResponse

func (c *ClientWithResponses) GetAdminRealmsRealmWorkflowsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmWorkflowsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmWorkflowsResponse, error)

GetAdminRealmsRealmWorkflowsWithResponse request returning *GetAdminRealmsRealmWorkflowsResponse

func (*ClientWithResponses) GetAdminRealmsWithResponse

func (c *ClientWithResponses) GetAdminRealmsWithResponse(ctx context.Context, params *GetAdminRealmsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsResponse, error)

GetAdminRealmsWithResponse request returning *GetAdminRealmsResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationConfigWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)

PostAdminRealmsRealmAuthenticationConfigWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationConfigResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBodyWithResponse(ctx context.Context, realm string, executionID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)

PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse, error)

PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse request returning *PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse, error)

PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse request returning *PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)

PostAdminRealmsRealmAuthenticationExecutionsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationExecutionsResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)

PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, error)

PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)

PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)

PostAdminRealmsRealmAuthenticationFlowsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationFlowsResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)

PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse, error)

PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse request returning *PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse

func (*ClientWithResponses) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse, error)

PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse request returning *PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)

PostAdminRealmsRealmClientDescriptionConverterWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientDescriptionConverterResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, error)

PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientScopesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesResponse, error)

PostAdminRealmsRealmClientScopesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientScopesResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientScopesWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientScopesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse, error)

PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientTemplatesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesResponse, error)

PostAdminRealmsRealmClientTemplatesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientTemplatesResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientTemplatesWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientTemplatesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse, error)

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse, error)

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse request returning *PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse, error)

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse request returning *PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse, error)

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse request returning *PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)

PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse request returning *PostAdminRealmsRealmClientsClientUUIDClientSecretResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDNodesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDNodesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)

PostAdminRealmsRealmClientsClientUUIDNodesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDNodesResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDNodesWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDNodesWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)

PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse, error)

PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse request returning *PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse, error)

PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse request returning *PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)

PostAdminRealmsRealmClientsClientUUIDRolesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDRolesResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsInitialAccessWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsInitialAccessWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)

PostAdminRealmsRealmClientsInitialAccessWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsInitialAccessResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsResponse, error)

PostAdminRealmsRealmClientsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmClientsResponse

func (*ClientWithResponses) PostAdminRealmsRealmClientsWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmClientsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmComponentsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmComponentsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmComponentsResponse, error)

PostAdminRealmsRealmComponentsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmComponentsResponse

func (*ClientWithResponses) PostAdminRealmsRealmComponentsWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmComponentsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmComponentsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmComponentsResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDChildrenWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDChildrenWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

PostAdminRealmsRealmGroupsGroupIDChildrenWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmGroupsGroupIDChildrenResponse

func (*ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDChildrenWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

func (*ClientWithResponses) PostAdminRealmsRealmGroupsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmGroupsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsResponse, error)

PostAdminRealmsRealmGroupsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmGroupsResponse

func (*ClientWithResponses) PostAdminRealmsRealmGroupsWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmGroupsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmIdentityProviderImportConfigWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderImportConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)

PostAdminRealmsRealmIdentityProviderImportConfigWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmIdentityProviderImportConfigResponse

func (*ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse

func (*ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)

PostAdminRealmsRealmIdentityProviderInstancesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmIdentityProviderInstancesResponse

func (*ClientWithResponses) PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderUploadCertificateResponse, error)

PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse request returning *PostAdminRealmsRealmIdentityProviderUploadCertificateResponse

func (*ClientWithResponses) PostAdminRealmsRealmLocalizationLocaleWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmLocalizationLocaleWithBodyWithResponse(ctx context.Context, realm string, locale string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)

PostAdminRealmsRealmLocalizationLocaleWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmLocalizationLocaleResponse

func (*ClientWithResponses) PostAdminRealmsRealmLocalizationLocaleWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, body PostAdminRealmsRealmLocalizationLocaleJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmLogoutAllWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmLogoutAllWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLogoutAllResponse, error)

PostAdminRealmsRealmLogoutAllWithResponse request returning *PostAdminRealmsRealmLogoutAllResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse request returning *PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

PostAdminRealmsRealmOrganizationsOrgIDMembersWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsOrgIDMembersResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsResponse, error)

PostAdminRealmsRealmOrganizationsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmOrganizationsResponse

func (*ClientWithResponses) PostAdminRealmsRealmOrganizationsWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmOrganizationsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmPartialExportWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmPartialExportWithResponse(ctx context.Context, realm string, params *PostAdminRealmsRealmPartialExportParams, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPartialExportResponse, error)

PostAdminRealmsRealmPartialExportWithResponse request returning *PostAdminRealmsRealmPartialExportResponse

func (*ClientWithResponses) PostAdminRealmsRealmPartialImportWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmPartialImportWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPartialImportResponse, error)

PostAdminRealmsRealmPartialImportWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmPartialImportResponse

func (*ClientWithResponses) PostAdminRealmsRealmPartialImportWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmPartialImportWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmPartialImportJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPartialImportResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmPushRevocationWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmPushRevocationWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPushRevocationResponse, error)

PostAdminRealmsRealmPushRevocationWithResponse request returning *PostAdminRealmsRealmPushRevocationResponse

func (*ClientWithResponses) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse

func (*ClientWithResponses) PostAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)

PostAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmRolesRoleNameCompositesResponse

func (*ClientWithResponses) PostAdminRealmsRealmRolesWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmRolesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesResponse, error)

PostAdminRealmsRealmRolesWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmRolesResponse

func (*ClientWithResponses) PostAdminRealmsRealmRolesWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmRolesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)

PostAdminRealmsRealmTestSMTPConnectionWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmTestSMTPConnectionResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse(ctx context.Context, realm string, userID string, credentialID string, newPreviousCredentialID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse, error)

PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse request returning *PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse, error)

PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse request returning *PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBodyWithResponse(ctx context.Context, realm string, userID string, provider string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDImpersonationWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDImpersonationWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDImpersonationResponse, error)

PostAdminRealmsRealmUsersUserIDImpersonationWithResponse request returning *PostAdminRealmsRealmUsersUserIDImpersonationResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDLogoutWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDLogoutWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDLogoutResponse, error)

PostAdminRealmsRealmUsersUserIDLogoutWithResponse request returning *PostAdminRealmsRealmUsersUserIDLogoutResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersResponse, error)

PostAdminRealmsRealmUsersWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmUsersResponse

func (*ClientWithResponses) PostAdminRealmsRealmUsersWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmUsersWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersResponse, error)

func (*ClientWithResponses) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, params *PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse, error)

PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse request returning *PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse

func (*ClientWithResponses) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse, error)

PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse request returning *PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse

func (*ClientWithResponses) PostAdminRealmsRealmWorkflowsMigrateWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsMigrateWithResponse(ctx context.Context, realm string, params *PostAdminRealmsRealmWorkflowsMigrateParams, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsMigrateResponse, error)

PostAdminRealmsRealmWorkflowsMigrateWithResponse request returning *PostAdminRealmsRealmWorkflowsMigrateResponse

func (*ClientWithResponses) PostAdminRealmsRealmWorkflowsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsResponse, error)

PostAdminRealmsRealmWorkflowsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsRealmWorkflowsResponse

func (*ClientWithResponses) PostAdminRealmsRealmWorkflowsWithResponse

func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsResponse, error)

func (*ClientWithResponses) PostAdminRealmsWithBodyWithResponse

func (c *ClientWithResponses) PostAdminRealmsWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsResponse, error)

PostAdminRealmsWithBodyWithResponse request with arbitrary body returning *PostAdminRealmsResponse

func (*ClientWithResponses) PostAdminRealmsWithResponse

func (c *ClientWithResponses) PostAdminRealmsWithResponse(ctx context.Context, body PostAdminRealmsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmAuthenticationConfigIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationConfigIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)

PutAdminRealmsRealmAuthenticationConfigIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmAuthenticationConfigIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)

PutAdminRealmsRealmAuthenticationFlowsIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmAuthenticationFlowsIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

func (*ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientPoliciesPoliciesWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesPoliciesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)

PutAdminRealmsRealmClientPoliciesPoliciesWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientPoliciesPoliciesResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientPoliciesProfilesWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesProfilesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)

PutAdminRealmsRealmClientPoliciesProfilesWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientPoliciesProfilesResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)

PutAdminRealmsRealmClientScopesClientScopeIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientScopesClientScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

PutAdminRealmsRealmClientTemplatesClientScopeIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientTemplatesClientScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmClientTypesWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientTypesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTypesResponse, error)

PutAdminRealmsRealmClientTypesWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientTypesResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientTypesWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientTypesWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmClientTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTypesResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, error)

PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse request returning *PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, error)

PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse request returning *PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)

PutAdminRealmsRealmClientsClientUUIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmClientsClientUUIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmComponentsIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmComponentsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmComponentsIDResponse, error)

PutAdminRealmsRealmComponentsIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmComponentsIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmComponentsIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmComponentsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmComponentsIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)

PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse request returning *PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmDefaultGroupsGroupIDResponse, error)

PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse request returning *PutAdminRealmsRealmDefaultGroupsGroupIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)

PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse request returning *PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmEventsConfigWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmEventsConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmEventsConfigResponse, error)

PutAdminRealmsRealmEventsConfigWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmEventsConfigResponse

func (*ClientWithResponses) PutAdminRealmsRealmEventsConfigWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmEventsConfigWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmEventsConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmEventsConfigResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)

PutAdminRealmsRealmGroupsGroupIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmGroupsGroupIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBodyWithResponse(ctx context.Context, realm string, alias string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

PutAdminRealmsRealmIdentityProviderInstancesAliasWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmIdentityProviderInstancesAliasResponse

func (*ClientWithResponses) PutAdminRealmsRealmLocalizationLocaleKeyWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmLocalizationLocaleKeyWithBodyWithResponse(ctx context.Context, realm string, locale string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)

PutAdminRealmsRealmLocalizationLocaleKeyWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmLocalizationLocaleKeyResponse

func (*ClientWithResponses) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBodyWithResponse(ctx context.Context, realm string, locale string, key string, body PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, error)

PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse request returning *PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)

PutAdminRealmsRealmOrganizationsOrgIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmOrganizationsOrgIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, body PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)

PutAdminRealmsRealmRolesByIDRoleIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmRolesByIDRoleIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmRolesRoleNameWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameResponse, error)

PutAdminRealmsRealmRolesRoleNameWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmRolesRoleNameResponse

func (*ClientWithResponses) PutAdminRealmsRealmRolesRoleNameWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmUsersManagementPermissionsWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)

PutAdminRealmsRealmUsersManagementPermissionsWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersManagementPermissionsResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersProfileWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersProfileWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersProfileResponse, error)

PutAdminRealmsRealmUsersProfileWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersProfileResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersProfileWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersProfileWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmUsersProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersProfileResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBodyWithResponse(ctx context.Context, realm string, userID string, credentialID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)

PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)

PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBodyWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)

PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)

PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse request returning *PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse, error)

PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse request returning *PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)

PutAdminRealmsRealmUsersUserIDResetPasswordWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersUserIDResetPasswordResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse, error)

PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse request returning *PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResponse, error)

PutAdminRealmsRealmUsersUserIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmUsersUserIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmUsersUserIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmResponse, error)

PutAdminRealmsRealmWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmResponse

func (*ClientWithResponses) PutAdminRealmsRealmWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmResponse, error)

func (*ClientWithResponses) PutAdminRealmsRealmWorkflowsIDWithBodyWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmWorkflowsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmWorkflowsIDResponse, error)

PutAdminRealmsRealmWorkflowsIDWithBodyWithResponse request with arbitrary body returning *PutAdminRealmsRealmWorkflowsIDResponse

func (*ClientWithResponses) PutAdminRealmsRealmWorkflowsIDWithResponse

func (c *ClientWithResponses) PutAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmWorkflowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmWorkflowsIDResponse, error)

type ClientWithResponsesInterface

type ClientWithResponsesInterface interface {
	// GetAdminRealmsWithResponse request
	GetAdminRealmsWithResponse(ctx context.Context, params *GetAdminRealmsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsResponse, error)

	// PostAdminRealmsWithBodyWithResponse request with any body
	PostAdminRealmsWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsResponse, error)

	PostAdminRealmsWithResponse(ctx context.Context, body PostAdminRealmsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsResponse, error)

	// DeleteAdminRealmsRealmWithResponse request
	DeleteAdminRealmsRealmWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmResponse, error)

	// GetAdminRealmsRealmWithResponse request
	GetAdminRealmsRealmWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmResponse, error)

	// PutAdminRealmsRealmWithBodyWithResponse request with any body
	PutAdminRealmsRealmWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmResponse, error)

	PutAdminRealmsRealmWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmResponse, error)

	// DeleteAdminRealmsRealmAdminEventsWithResponse request
	DeleteAdminRealmsRealmAdminEventsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAdminEventsResponse, error)

	// GetAdminRealmsRealmAdminEventsWithResponse request
	GetAdminRealmsRealmAdminEventsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmAdminEventsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAdminEventsResponse, error)

	// DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse request
	DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse, error)

	// DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse request
	DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)

	// GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse request
	GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)

	// GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse request
	GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse, error)

	// GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse request
	GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse, error)

	// PostAdminRealmsRealmAuthenticationConfigWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)

	PostAdminRealmsRealmAuthenticationConfigWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)

	// GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse request
	GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse, error)

	// DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse request
	DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationConfigIDResponse, error)

	// GetAdminRealmsRealmAuthenticationConfigIDWithResponse request
	GetAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationConfigIDResponse, error)

	// PutAdminRealmsRealmAuthenticationConfigIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmAuthenticationConfigIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)

	PutAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)

	// PostAdminRealmsRealmAuthenticationExecutionsWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationExecutionsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)

	PostAdminRealmsRealmAuthenticationExecutionsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)

	// DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse request
	DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)

	// GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse request
	GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)

	// PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBodyWithResponse(ctx context.Context, realm string, executionID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)

	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithResponse(ctx context.Context, realm string, executionID string, body PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)

	// GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse request
	GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse(ctx context.Context, realm string, executionID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse, error)

	// PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse request
	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse, error)

	// PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse request
	PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse, error)

	// GetAdminRealmsRealmAuthenticationFlowsWithResponse request
	GetAdminRealmsRealmAuthenticationFlowsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsResponse, error)

	// PostAdminRealmsRealmAuthenticationFlowsWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationFlowsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)

	PostAdminRealmsRealmAuthenticationFlowsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)

	// PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)

	PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithResponse(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)

	// GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse request
	GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse(ctx context.Context, realm string, flowAlias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

	// PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

	PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse(ctx context.Context, realm string, flowAlias string, body PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

	// PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, error)

	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithResponse(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, error)

	// PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)

	PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithResponse(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)

	// DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse request
	DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationFlowsIDResponse, error)

	// GetAdminRealmsRealmAuthenticationFlowsIDWithResponse request
	GetAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsIDResponse, error)

	// PutAdminRealmsRealmAuthenticationFlowsIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmAuthenticationFlowsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)

	PutAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)

	// GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse request
	GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFormActionProvidersResponse, error)

	// GetAdminRealmsRealmAuthenticationFormProvidersWithResponse request
	GetAdminRealmsRealmAuthenticationFormProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFormProvidersResponse, error)

	// GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse request
	GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse, error)

	// PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBodyWithResponse request with any body
	PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)

	PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse request
	GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsResponse, error)

	// DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse request
	DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse request
	GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

	// PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBodyWithResponse request with any body
	PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

	PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

	// DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse request
	DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse request
	GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

	// PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBodyWithResponse request with any body
	PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

	PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

	// GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse request
	GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse, error)

	// PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse request
	PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse, error)

	// PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse request
	PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse, error)

	// GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse request
	GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse, error)

	// PostAdminRealmsRealmClientDescriptionConverterWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientDescriptionConverterWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)

	PostAdminRealmsRealmClientDescriptionConverterWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)

	PostAdminRealmsRealmClientDescriptionConverterWithTextBodyWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterTextRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)

	// GetAdminRealmsRealmClientPoliciesPoliciesWithResponse request
	GetAdminRealmsRealmClientPoliciesPoliciesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesPoliciesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientPoliciesPoliciesResponse, error)

	// PutAdminRealmsRealmClientPoliciesPoliciesWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientPoliciesPoliciesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)

	PutAdminRealmsRealmClientPoliciesPoliciesWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)

	// GetAdminRealmsRealmClientPoliciesProfilesWithResponse request
	GetAdminRealmsRealmClientPoliciesProfilesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesProfilesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientPoliciesProfilesResponse, error)

	// PutAdminRealmsRealmClientPoliciesProfilesWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientPoliciesProfilesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)

	PutAdminRealmsRealmClientPoliciesProfilesWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)

	// GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse request
	GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse, error)

	// GetAdminRealmsRealmClientScopesWithResponse request
	GetAdminRealmsRealmClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesResponse, error)

	// PostAdminRealmsRealmClientScopesWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientScopesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesResponse, error)

	PostAdminRealmsRealmClientScopesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientScopesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesResponse, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse request
	DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDResponse, error)

	// PutAdminRealmsRealmClientScopesClientScopeIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientScopesClientScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)

	PutAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, error)

	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

	PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse request
	DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

	// PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

	PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse, error)

	// DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

	DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

	// PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

	PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse, error)

	// GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse request
	GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse, error)

	// GetAdminRealmsRealmClientSessionStatsWithResponse request
	GetAdminRealmsRealmClientSessionStatsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientSessionStatsResponse, error)

	// GetAdminRealmsRealmClientTemplatesWithResponse request
	GetAdminRealmsRealmClientTemplatesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesResponse, error)

	// PostAdminRealmsRealmClientTemplatesWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientTemplatesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesResponse, error)

	PostAdminRealmsRealmClientTemplatesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientTemplatesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesResponse, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse request
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

	// PutAdminRealmsRealmClientTemplatesClientScopeIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientTemplatesClientScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

	PutAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse request
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

	// PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

	PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse, error)

	// DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

	DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

	// PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

	PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse, error)

	// GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse request
	GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse, error)

	// GetAdminRealmsRealmClientTypesWithResponse request
	GetAdminRealmsRealmClientTypesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTypesResponse, error)

	// PutAdminRealmsRealmClientTypesWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientTypesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTypesResponse, error)

	PutAdminRealmsRealmClientTypesWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmClientTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTypesResponse, error)

	// GetAdminRealmsRealmClientsWithResponse request
	GetAdminRealmsRealmClientsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsResponse, error)

	// PostAdminRealmsRealmClientsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsResponse, error)

	PostAdminRealmsRealmClientsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsResponse, error)

	// GetAdminRealmsRealmClientsInitialAccessWithResponse request
	GetAdminRealmsRealmClientsInitialAccessWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsInitialAccessResponse, error)

	// PostAdminRealmsRealmClientsInitialAccessWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsInitialAccessWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)

	PostAdminRealmsRealmClientsInitialAccessWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientsInitialAccessJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)

	// DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse request
	DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsInitialAccessIDResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDWithResponse request
	GetAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)

	PutAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

	PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

	PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse request
	GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)

	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse request
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse, error)

	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse request
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse request
	PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse request
	GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse request
	PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse request
	GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse request
	PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse request
	GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse request
	GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse(ctx context.Context, realm string, clientUUID string, providerID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

	PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDNodesWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDNodesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)

	PostAdminRealmsRealmClientsClientUUIDNodesWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse(ctx context.Context, realm string, clientUUID string, node string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse request
	GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse request
	PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)

	PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

	PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse request
	GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

	PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, body PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse request
	GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientUUID string, protocol string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse request
	PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse request
	PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDRolesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDRolesWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDRolesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)

	PostAdminRealmsRealmClientsClientUUIDRolesWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse request
	DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

	DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

	PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

	// PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

	PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse request
	GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

	PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientUUID string, client string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse, error)

	// DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

	DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

	// PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse request with any body
	PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

	PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse request
	GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse request
	GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse request
	GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDSessionCountResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse request
	GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse, error)

	// GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse request
	GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDUserSessionsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse, error)

	// GetAdminRealmsRealmComponentsWithResponse request
	GetAdminRealmsRealmComponentsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsResponse, error)

	// PostAdminRealmsRealmComponentsWithBodyWithResponse request with any body
	PostAdminRealmsRealmComponentsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmComponentsResponse, error)

	PostAdminRealmsRealmComponentsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmComponentsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmComponentsResponse, error)

	// DeleteAdminRealmsRealmComponentsIDWithResponse request
	DeleteAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmComponentsIDResponse, error)

	// GetAdminRealmsRealmComponentsIDWithResponse request
	GetAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsIDResponse, error)

	// PutAdminRealmsRealmComponentsIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmComponentsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmComponentsIDResponse, error)

	PutAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmComponentsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmComponentsIDResponse, error)

	// GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse request
	GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmComponentsIDSubComponentTypesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsIDSubComponentTypesResponse, error)

	// GetAdminRealmsRealmCredentialRegistratorsWithResponse request
	GetAdminRealmsRealmCredentialRegistratorsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmCredentialRegistratorsResponse, error)

	// GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse request
	GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultDefaultClientScopesResponse, error)

	// DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse request
	DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)

	// PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse request
	PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)

	// GetAdminRealmsRealmDefaultGroupsWithResponse request
	GetAdminRealmsRealmDefaultGroupsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultGroupsResponse, error)

	// DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse request
	DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse, error)

	// PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse request
	PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmDefaultGroupsGroupIDResponse, error)

	// GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse request
	GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultOptionalClientScopesResponse, error)

	// DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse request
	DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)

	// PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse request
	PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)

	// DeleteAdminRealmsRealmEventsWithResponse request
	DeleteAdminRealmsRealmEventsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmEventsResponse, error)

	// GetAdminRealmsRealmEventsWithResponse request
	GetAdminRealmsRealmEventsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmEventsResponse, error)

	// GetAdminRealmsRealmEventsConfigWithResponse request
	GetAdminRealmsRealmEventsConfigWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmEventsConfigResponse, error)

	// PutAdminRealmsRealmEventsConfigWithBodyWithResponse request with any body
	PutAdminRealmsRealmEventsConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmEventsConfigResponse, error)

	PutAdminRealmsRealmEventsConfigWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmEventsConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmEventsConfigResponse, error)

	// GetAdminRealmsRealmGroupByPathPathWithResponse request
	GetAdminRealmsRealmGroupByPathPathWithResponse(ctx context.Context, realm string, path string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupByPathPathResponse, error)

	// GetAdminRealmsRealmGroupsWithResponse request
	GetAdminRealmsRealmGroupsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsResponse, error)

	// PostAdminRealmsRealmGroupsWithBodyWithResponse request with any body
	PostAdminRealmsRealmGroupsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsResponse, error)

	PostAdminRealmsRealmGroupsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsResponse, error)

	// GetAdminRealmsRealmGroupsCountWithResponse request
	GetAdminRealmsRealmGroupsCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsCountResponse, error)

	// DeleteAdminRealmsRealmGroupsGroupIDWithResponse request
	DeleteAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDWithResponse request
	GetAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDResponse, error)

	// PutAdminRealmsRealmGroupsGroupIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmGroupsGroupIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)

	PutAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse request
	GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

	// PostAdminRealmsRealmGroupsGroupIDChildrenWithBodyWithResponse request with any body
	PostAdminRealmsRealmGroupsGroupIDChildrenWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

	PostAdminRealmsRealmGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse request
	GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

	// PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

	PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDMembersWithResponse request
	GetAdminRealmsRealmGroupsGroupIDMembersWithResponse(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDMembersResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse, error)

	// DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	// PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with any body
	PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, groupID string, clientID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, error)

	// DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

	DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

	// PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with any body
	PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

	PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse, error)

	// GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse request
	GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse, error)

	// PostAdminRealmsRealmIdentityProviderImportConfigWithBodyWithResponse request with any body
	PostAdminRealmsRealmIdentityProviderImportConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)

	PostAdminRealmsRealmIdentityProviderImportConfigWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmIdentityProviderInstancesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesResponse, error)

	// PostAdminRealmsRealmIdentityProviderInstancesWithBodyWithResponse request with any body
	PostAdminRealmsRealmIdentityProviderInstancesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)

	PostAdminRealmsRealmIdentityProviderInstancesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)

	// DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse request
	DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

	// PutAdminRealmsRealmIdentityProviderInstancesAliasWithBodyWithResponse request with any body
	PutAdminRealmsRealmIdentityProviderInstancesAliasWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

	PutAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse(ctx context.Context, realm string, alias string, params *GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

	// PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

	PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

	// PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBodyWithResponse request with any body
	PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

	PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse(ctx context.Context, realm string, alias string, body PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

	// DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse request
	DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

	// PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBodyWithResponse(ctx context.Context, realm string, alias string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

	PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, body PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

	// GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse request
	GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse, error)

	// GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse request
	GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse, error)

	// PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse request
	PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderUploadCertificateResponse, error)

	// GetAdminRealmsRealmKeysWithResponse request
	GetAdminRealmsRealmKeysWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmKeysResponse, error)

	// GetAdminRealmsRealmLocalizationWithResponse request
	GetAdminRealmsRealmLocalizationWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationResponse, error)

	// DeleteAdminRealmsRealmLocalizationLocaleWithResponse request
	DeleteAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmLocalizationLocaleResponse, error)

	// GetAdminRealmsRealmLocalizationLocaleWithResponse request
	GetAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, params *GetAdminRealmsRealmLocalizationLocaleParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationLocaleResponse, error)

	// PostAdminRealmsRealmLocalizationLocaleWithBodyWithResponse request with any body
	PostAdminRealmsRealmLocalizationLocaleWithBodyWithResponse(ctx context.Context, realm string, locale string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)

	PostAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, body PostAdminRealmsRealmLocalizationLocaleJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)

	// DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse request
	DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmLocalizationLocaleKeyResponse, error)

	// GetAdminRealmsRealmLocalizationLocaleKeyWithResponse request
	GetAdminRealmsRealmLocalizationLocaleKeyWithResponse(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationLocaleKeyResponse, error)

	// PutAdminRealmsRealmLocalizationLocaleKeyWithBodyWithResponse request with any body
	PutAdminRealmsRealmLocalizationLocaleKeyWithBodyWithResponse(ctx context.Context, realm string, locale string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)

	PutAdminRealmsRealmLocalizationLocaleKeyWithTextBodyWithResponse(ctx context.Context, realm string, locale string, key string, body PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)

	// PostAdminRealmsRealmLogoutAllWithResponse request
	PostAdminRealmsRealmLogoutAllWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLogoutAllResponse, error)

	// GetAdminRealmsRealmOrganizationsWithResponse request
	GetAdminRealmsRealmOrganizationsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsResponse, error)

	// PostAdminRealmsRealmOrganizationsWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsResponse, error)

	PostAdminRealmsRealmOrganizationsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmOrganizationsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsResponse, error)

	// GetAdminRealmsRealmOrganizationsCountWithResponse request
	GetAdminRealmsRealmOrganizationsCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsCountResponse, error)

	// GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse request
	GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse(ctx context.Context, realm string, memberID string, params *GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse request
	DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDResponse, error)

	// PutAdminRealmsRealmOrganizationsOrgIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmOrganizationsOrgIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)

	PutAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, body PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse(ctx context.Context, realm string, orgID string, path string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse request
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

	// PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

	PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, body PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse request
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, error)

	// PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse request
	PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

	DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse request
	DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse(ctx context.Context, realm string, orgID string, alias string, params *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse request
	DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse request
	PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDMembersWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDMembersWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDMembersWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBodyWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, error)

	// PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBodyWithResponse request with any body
	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)

	PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBodyWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)

	// DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse request
	DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse, error)

	// GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse request
	GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse, error)

	// PostAdminRealmsRealmPartialExportWithResponse request
	PostAdminRealmsRealmPartialExportWithResponse(ctx context.Context, realm string, params *PostAdminRealmsRealmPartialExportParams, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPartialExportResponse, error)

	// PostAdminRealmsRealmPartialImportWithBodyWithResponse request with any body
	PostAdminRealmsRealmPartialImportWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPartialImportResponse, error)

	PostAdminRealmsRealmPartialImportWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmPartialImportJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPartialImportResponse, error)

	// PostAdminRealmsRealmPushRevocationWithResponse request
	PostAdminRealmsRealmPushRevocationWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPushRevocationResponse, error)

	// GetAdminRealmsRealmRolesWithResponse request
	GetAdminRealmsRealmRolesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesResponse, error)

	// PostAdminRealmsRealmRolesWithBodyWithResponse request with any body
	PostAdminRealmsRealmRolesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesResponse, error)

	PostAdminRealmsRealmRolesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesResponse, error)

	// DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse request
	DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesByIDRoleIDResponse, error)

	// GetAdminRealmsRealmRolesByIDRoleIDWithResponse request
	GetAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDResponse, error)

	// PutAdminRealmsRealmRolesByIDRoleIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmRolesByIDRoleIDWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)

	PutAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)

	// DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

	DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, body DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

	// GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse request
	GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, params *GetAdminRealmsRealmRolesByIDRoleIDCompositesParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

	// PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse request with any body
	PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

	PostAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, body PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

	// GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse request
	GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse(ctx context.Context, realm string, roleID string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse, error)

	// GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse request
	GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse, error)

	// GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse request
	GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

	// PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

	PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

	// DeleteAdminRealmsRealmRolesRoleNameWithResponse request
	DeleteAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesRoleNameResponse, error)

	// GetAdminRealmsRealmRolesRoleNameWithResponse request
	GetAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameResponse, error)

	// PutAdminRealmsRealmRolesRoleNameWithBodyWithResponse request with any body
	PutAdminRealmsRealmRolesRoleNameWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameResponse, error)

	PutAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameResponse, error)

	// DeleteAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)

	DeleteAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, body DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)

	// GetAdminRealmsRealmRolesRoleNameCompositesWithResponse request
	GetAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameCompositesResponse, error)

	// PostAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse request with any body
	PostAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)

	PostAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, body PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)

	// GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse request
	GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse(ctx context.Context, realm string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse, error)

	// GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse request
	GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse, error)

	// GetAdminRealmsRealmRolesRoleNameGroupsWithResponse request
	GetAdminRealmsRealmRolesRoleNameGroupsWithResponse(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameGroupsResponse, error)

	// GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse request
	GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

	// PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

	PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

	// GetAdminRealmsRealmRolesRoleNameUsersWithResponse request
	GetAdminRealmsRealmRolesRoleNameUsersWithResponse(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmRolesRoleNameUsersResponse, error)

	// DeleteAdminRealmsRealmSessionsSessionWithResponse request
	DeleteAdminRealmsRealmSessionsSessionWithResponse(ctx context.Context, realm string, session string, params *DeleteAdminRealmsRealmSessionsSessionParams, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmSessionsSessionResponse, error)

	// PostAdminRealmsRealmTestSMTPConnectionWithBodyWithResponse request with any body
	PostAdminRealmsRealmTestSMTPConnectionWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)

	PostAdminRealmsRealmTestSMTPConnectionWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)

	PostAdminRealmsRealmTestSMTPConnectionWithFormdataBodyWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)

	// GetAdminRealmsRealmUsersWithResponse request
	GetAdminRealmsRealmUsersWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersResponse, error)

	// PostAdminRealmsRealmUsersWithBodyWithResponse request with any body
	PostAdminRealmsRealmUsersWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersResponse, error)

	PostAdminRealmsRealmUsersWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersResponse, error)

	// GetAdminRealmsRealmUsersManagementPermissionsWithResponse request
	GetAdminRealmsRealmUsersManagementPermissionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersManagementPermissionsResponse, error)

	// PutAdminRealmsRealmUsersManagementPermissionsWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)

	PutAdminRealmsRealmUsersManagementPermissionsWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)

	// GetAdminRealmsRealmUsersCountWithResponse request
	GetAdminRealmsRealmUsersCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersCountResponse, error)

	// GetAdminRealmsRealmUsersProfileWithResponse request
	GetAdminRealmsRealmUsersProfileWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersProfileResponse, error)

	// PutAdminRealmsRealmUsersProfileWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersProfileWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersProfileResponse, error)

	PutAdminRealmsRealmUsersProfileWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmUsersProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersProfileResponse, error)

	// GetAdminRealmsRealmUsersProfileMetadataWithResponse request
	GetAdminRealmsRealmUsersProfileMetadataWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersProfileMetadataResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDWithResponse request
	DeleteAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDResponse, error)

	// GetAdminRealmsRealmUsersUserIDWithResponse request
	GetAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDResponse, error)

	// PutAdminRealmsRealmUsersUserIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersUserIDWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResponse, error)

	PutAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResponse, error)

	// GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse request
	GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse, error)

	// GetAdminRealmsRealmUsersUserIDConsentsWithResponse request
	GetAdminRealmsRealmUsersUserIDConsentsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDConsentsResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse request
	DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse(ctx context.Context, realm string, userID string, client string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse, error)

	// GetAdminRealmsRealmUsersUserIDCredentialsWithResponse request
	GetAdminRealmsRealmUsersUserIDCredentialsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDCredentialsResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse request
	DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse, error)

	// PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse request
	PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse(ctx context.Context, realm string, userID string, credentialID string, newPreviousCredentialID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse, error)

	// PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse request
	PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse, error)

	// PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBodyWithResponse(ctx context.Context, realm string, userID string, credentialID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)

	PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBodyWithResponse(ctx context.Context, realm string, userID string, credentialID string, body PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)

	// PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)

	PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithResponse(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)

	// PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBodyWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)

	PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, body PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)

	// GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse request
	GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse request
	DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse(ctx context.Context, realm string, userID string, provider string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

	// PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBodyWithResponse request with any body
	PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBodyWithResponse(ctx context.Context, realm string, userID string, provider string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

	PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse(ctx context.Context, realm string, userID string, provider string, body PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

	// GetAdminRealmsRealmUsersUserIDGroupsWithResponse request
	GetAdminRealmsRealmUsersUserIDGroupsWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDGroupsResponse, error)

	// GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse request
	GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsCountParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDGroupsCountResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse request
	DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)

	// PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse request
	PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)

	// PostAdminRealmsRealmUsersUserIDImpersonationWithResponse request
	PostAdminRealmsRealmUsersUserIDImpersonationWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDImpersonationResponse, error)

	// PostAdminRealmsRealmUsersUserIDLogoutWithResponse request
	PostAdminRealmsRealmUsersUserIDLogoutWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDLogoutResponse, error)

	// GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse request
	GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse(ctx context.Context, realm string, userID string, clientUUID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse, error)

	// PutAdminRealmsRealmUsersUserIDResetPasswordWithBodyWithResponse request with any body
	PutAdminRealmsRealmUsersUserIDResetPasswordWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)

	PutAdminRealmsRealmUsersUserIDResetPasswordWithResponse(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)

	// PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse request
	PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

	DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

	// PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse request with any body
	PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

	PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, userID string, clientID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse, error)

	// DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse request with any body
	DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

	DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

	// PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse request with any body
	PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

	PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse, error)

	// GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse request
	GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse, error)

	// PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse request
	PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse, error)

	// GetAdminRealmsRealmUsersUserIDSessionsWithResponse request
	GetAdminRealmsRealmUsersUserIDSessionsWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDSessionsResponse, error)

	// GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse request
	GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse, error)

	// GetAdminRealmsRealmWorkflowsWithResponse request
	GetAdminRealmsRealmWorkflowsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmWorkflowsParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmWorkflowsResponse, error)

	// PostAdminRealmsRealmWorkflowsWithBodyWithResponse request with any body
	PostAdminRealmsRealmWorkflowsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsResponse, error)

	PostAdminRealmsRealmWorkflowsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsResponse, error)

	// PostAdminRealmsRealmWorkflowsMigrateWithResponse request
	PostAdminRealmsRealmWorkflowsMigrateWithResponse(ctx context.Context, realm string, params *PostAdminRealmsRealmWorkflowsMigrateParams, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsMigrateResponse, error)

	// GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse request
	GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse(ctx context.Context, realm string, resourceID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse, error)

	// DeleteAdminRealmsRealmWorkflowsIDWithResponse request
	DeleteAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmWorkflowsIDResponse, error)

	// GetAdminRealmsRealmWorkflowsIDWithResponse request
	GetAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmWorkflowsIDParams, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmWorkflowsIDResponse, error)

	// PutAdminRealmsRealmWorkflowsIDWithBodyWithResponse request with any body
	PutAdminRealmsRealmWorkflowsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmWorkflowsIDResponse, error)

	PutAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmWorkflowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmWorkflowsIDResponse, error)

	// PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse request
	PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, params *PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse, error)

	// PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse request
	PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse, error)
}

ClientWithResponsesInterface is the interface specification for the client with responses above.

type ComponentExportRepresentation

type ComponentExportRepresentation struct {
	Config        *MultivaluedHashMapStringString                        `json:"config,omitempty"`
	ID            *string                                                `json:"id,omitempty"`
	Name          *string                                                `json:"name,omitempty"`
	ProviderID    *string                                                `json:"providerId,omitempty"`
	SubComponents *MultivaluedHashMapStringComponentExportRepresentation `json:"subComponents,omitempty"`
	SubType       *string                                                `json:"subType,omitempty"`
}

ComponentExportRepresentation defines model for ComponentExportRepresentation.

type ComponentRepresentation

type ComponentRepresentation struct {
	Config       *MultivaluedHashMapStringString `json:"config,omitempty"`
	ID           *string                         `json:"id,omitempty"`
	Name         *string                         `json:"name,omitempty"`
	ParentID     *string                         `json:"parentId,omitempty"`
	ProviderID   *string                         `json:"providerId,omitempty"`
	ProviderType *string                         `json:"providerType,omitempty"`
	SubType      *string                         `json:"subType,omitempty"`
}

ComponentRepresentation defines model for ComponentRepresentation.

type ComponentTypeRepresentation

type ComponentTypeRepresentation struct {
	ClientProperties *[]ConfigPropertyRepresentation `json:"clientProperties,omitempty"`
	HelpText         *string                         `json:"helpText,omitempty"`
	ID               *string                         `json:"id,omitempty"`
	Metadata         *map[string]interface{}         `json:"metadata,omitempty"`
	Properties       *[]ConfigPropertyRepresentation `json:"properties,omitempty"`
}

ComponentTypeRepresentation defines model for ComponentTypeRepresentation.

type Composites

type Composites struct {
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Application *map[string][]string `json:"application,omitempty"`
	Client      *map[string][]string `json:"client,omitempty"`
	Realm       *[]string            `json:"realm,omitempty"`
}

Composites defines model for Composites.

type ConfigPropertyRepresentation

type ConfigPropertyRepresentation struct {
	DefaultValue interface{} `json:"defaultValue,omitempty"`
	HelpText     *string     `json:"helpText,omitempty"`
	Label        *string     `json:"label,omitempty"`
	Name         *string     `json:"name,omitempty"`
	Options      *[]string   `json:"options,omitempty"`
	ReadOnly     *bool       `json:"readOnly,omitempty"`
	Required     *bool       `json:"required,omitempty"`
	Secret       *bool       `json:"secret,omitempty"`
	Type         *string     `json:"type,omitempty"`
}

ConfigPropertyRepresentation defines model for ConfigPropertyRepresentation.

type Confirmation

type Confirmation struct {
	Jkt       *string `json:"jkt,omitempty"`
	KcJktType *string `json:"kc-jkt-type,omitempty"`
	X5TS256   *string `json:"x5t#S256,omitempty"`
}

Confirmation defines model for Confirmation.

type CredentialRepresentation

type CredentialRepresentation struct {
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Algorithm *string `json:"algorithm,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Config *MultivaluedHashMapStringString `json:"config,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Counter        *int32  `json:"counter,omitempty"`
	CreatedDate    *int64  `json:"createdDate,omitempty"`
	CredentialData *string `json:"credentialData,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Device *string `json:"device,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Digits         *int32  `json:"digits,omitempty"`
	FederationLink *string `json:"federationLink,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	HashIterations *int32 `json:"hashIterations,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	HashedSaltedValue *string `json:"hashedSaltedValue,omitempty"`
	ID                *string `json:"id,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Period   *int32 `json:"period,omitempty"`
	Priority *int32 `json:"priority,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Salt       *string `json:"salt,omitempty"`
	SecretData *string `json:"secretData,omitempty"`
	Temporary  *bool   `json:"temporary,omitempty"`
	Type       *string `json:"type,omitempty"`
	UserLabel  *string `json:"userLabel,omitempty"`
	Value      *string `json:"value,omitempty"`
}

CredentialRepresentation defines model for CredentialRepresentation.

type DecisionEffect

type DecisionEffect string

DecisionEffect defines model for DecisionEffect.

const (
	DENY   DecisionEffect = "DENY"
	PERMIT DecisionEffect = "PERMIT"
)

Defines values for DecisionEffect.

func (DecisionEffect) Valid

func (e DecisionEffect) Valid() bool

Valid indicates whether the value is a known member of the DecisionEffect enum.

type DecisionStrategy

type DecisionStrategy string

DecisionStrategy defines model for DecisionStrategy.

const (
	AFFIRMATIVE DecisionStrategy = "AFFIRMATIVE"
	CONSENSUS   DecisionStrategy = "CONSENSUS"
	UNANIMOUS   DecisionStrategy = "UNANIMOUS"
)

Defines values for DecisionStrategy.

func (DecisionStrategy) Valid

func (e DecisionStrategy) Valid() bool

Valid indicates whether the value is a known member of the DecisionStrategy enum.

type DeleteAdminRealmsRealmAdminEventsResponse

type DeleteAdminRealmsRealmAdminEventsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAdminEventsResponse

func ParseDeleteAdminRealmsRealmAdminEventsResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAdminEventsResponse, error)

ParseDeleteAdminRealmsRealmAdminEventsResponse parses an HTTP response from a DeleteAdminRealmsRealmAdminEventsWithResponse call

func (DeleteAdminRealmsRealmAdminEventsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAdminEventsResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAdminEventsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse

type DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse

func ParseDeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse, error)

ParseDeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse parses an HTTP response from a DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse call

func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse

type DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse

func ParseDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)

ParseDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse parses an HTTP response from a DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse call

func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAuthenticationConfigIDResponse

type DeleteAdminRealmsRealmAuthenticationConfigIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAuthenticationConfigIDResponse

func ParseDeleteAdminRealmsRealmAuthenticationConfigIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAuthenticationConfigIDResponse, error)

ParseDeleteAdminRealmsRealmAuthenticationConfigIDResponse parses an HTTP response from a DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse call

func (DeleteAdminRealmsRealmAuthenticationConfigIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAuthenticationConfigIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse

type DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse

func ParseDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)

ParseDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse parses an HTTP response from a DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse call

func (DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAuthenticationFlowsIDResponse

type DeleteAdminRealmsRealmAuthenticationFlowsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAuthenticationFlowsIDResponse

func ParseDeleteAdminRealmsRealmAuthenticationFlowsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAuthenticationFlowsIDResponse, error)

ParseDeleteAdminRealmsRealmAuthenticationFlowsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse call

func (DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

type DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

func ParseDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

ParseDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse parses an HTTP response from a DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse call

func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

type DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

func ParseDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

ParseDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse parses an HTTP response from a DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse call

func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

type DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

ParseDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse call

func (DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientScopesClientScopeIDResponse

type DeleteAdminRealmsRealmClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDResponse

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientScopesClientScopeIDResponse, error)

ParseDeleteAdminRealmsRealmClientScopesClientScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse call

func (DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody defines parameters for DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient.

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody = DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody

DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody defines body for DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient for application/json ContentType.

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

ParseDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse parses an HTTP response from a DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse call

func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody defines parameters for DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm.

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody = DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody

DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody defines body for DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm for application/json ContentType.

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

func ParseDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

ParseDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse call

func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse call

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse call

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody defines parameters for DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient.

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody = DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody

DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody defines body for DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient for application/json ContentType.

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse parses an HTTP response from a DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse call

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody defines parameters for DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm.

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody = DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody

DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody defines body for DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm for application/json ContentType.

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

func ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

ParseDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse call

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams

type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams defines parameters for DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID.

type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse

type DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse

type DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse

type DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse

type DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

type DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDResponse

type DeleteAdminRealmsRealmClientsClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody defines parameters for DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites.

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody = DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody

DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody defines body for DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites for application/json ContentType.

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody defines parameters for DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient.

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody = DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody

DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody defines body for DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient for application/json ContentType.

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody defines parameters for DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm.

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody = DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody

DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody defines body for DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm for application/json ContentType.

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

func ParseDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

ParseDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse call

func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmClientsInitialAccessIDResponse

type DeleteAdminRealmsRealmClientsInitialAccessIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmClientsInitialAccessIDResponse

func ParseDeleteAdminRealmsRealmClientsInitialAccessIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmClientsInitialAccessIDResponse, error)

ParseDeleteAdminRealmsRealmClientsInitialAccessIDResponse parses an HTTP response from a DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse call

func (DeleteAdminRealmsRealmClientsInitialAccessIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmClientsInitialAccessIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmClientsInitialAccessIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmComponentsIDResponse

type DeleteAdminRealmsRealmComponentsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmComponentsIDResponse

func ParseDeleteAdminRealmsRealmComponentsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmComponentsIDResponse, error)

ParseDeleteAdminRealmsRealmComponentsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmComponentsIDWithResponse call

func (DeleteAdminRealmsRealmComponentsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmComponentsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmComponentsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse

type DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse

func ParseDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)

ParseDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse call

func (DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse

type DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmDefaultGroupsGroupIDResponse

func ParseDeleteAdminRealmsRealmDefaultGroupsGroupIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse, error)

ParseDeleteAdminRealmsRealmDefaultGroupsGroupIDResponse parses an HTTP response from a DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse call

func (DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse

type DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse

func ParseDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)

ParseDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse parses an HTTP response from a DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse call

func (DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmEventsResponse

type DeleteAdminRealmsRealmEventsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmEventsResponse

func ParseDeleteAdminRealmsRealmEventsResponse(rsp *http.Response) (*DeleteAdminRealmsRealmEventsResponse, error)

ParseDeleteAdminRealmsRealmEventsResponse parses an HTTP response from a DeleteAdminRealmsRealmEventsWithResponse call

func (DeleteAdminRealmsRealmEventsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmEventsResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmEventsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmGroupsGroupIDResponse

type DeleteAdminRealmsRealmGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmGroupsGroupIDResponse

func ParseDeleteAdminRealmsRealmGroupsGroupIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmGroupsGroupIDResponse, error)

ParseDeleteAdminRealmsRealmGroupsGroupIDResponse parses an HTTP response from a DeleteAdminRealmsRealmGroupsGroupIDWithResponse call

func (DeleteAdminRealmsRealmGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody defines parameters for DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID.

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody = DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody

DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody defines body for DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID for application/json ContentType.

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

func ParseDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

ParseDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse parses an HTTP response from a DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse call

func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody defines parameters for DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm.

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody = DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody

DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody defines body for DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm for application/json ContentType.

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

func ParseDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

ParseDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse call

func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

type DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

func ParseDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

ParseDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse parses an HTTP response from a DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse call

func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse

type DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse

func ParseDeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse(rsp *http.Response) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

ParseDeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse parses an HTTP response from a DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse call

func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmLocalizationLocaleKeyResponse

type DeleteAdminRealmsRealmLocalizationLocaleKeyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmLocalizationLocaleKeyResponse

func ParseDeleteAdminRealmsRealmLocalizationLocaleKeyResponse(rsp *http.Response) (*DeleteAdminRealmsRealmLocalizationLocaleKeyResponse, error)

ParseDeleteAdminRealmsRealmLocalizationLocaleKeyResponse parses an HTTP response from a DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse call

func (DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmLocalizationLocaleResponse

type DeleteAdminRealmsRealmLocalizationLocaleResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmLocalizationLocaleResponse

func ParseDeleteAdminRealmsRealmLocalizationLocaleResponse(rsp *http.Response) (*DeleteAdminRealmsRealmLocalizationLocaleResponse, error)

ParseDeleteAdminRealmsRealmLocalizationLocaleResponse parses an HTTP response from a DeleteAdminRealmsRealmLocalizationLocaleWithResponse call

func (DeleteAdminRealmsRealmLocalizationLocaleResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmLocalizationLocaleResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmLocalizationLocaleResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody defines parameters for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID.

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody = DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody defines body for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID for application/json ContentType.

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody defines parameters for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm.

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody = DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody

DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody defines body for DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm for application/json ContentType.

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmOrganizationsOrgIDResponse

type DeleteAdminRealmsRealmOrganizationsOrgIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDResponse

func ParseDeleteAdminRealmsRealmOrganizationsOrgIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmOrganizationsOrgIDResponse, error)

ParseDeleteAdminRealmsRealmOrganizationsOrgIDResponse parses an HTTP response from a DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse call

func (DeleteAdminRealmsRealmOrganizationsOrgIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmOrganizationsOrgIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmResponse

type DeleteAdminRealmsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmResponse

func ParseDeleteAdminRealmsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmResponse, error)

ParseDeleteAdminRealmsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmWithResponse call

func (DeleteAdminRealmsRealmResponse) ContentType

func (r DeleteAdminRealmsRealmResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmResponse) StatusCode

func (r DeleteAdminRealmsRealmResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody

type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody defines parameters for DeleteAdminRealmsRealmRolesByIDRoleIDComposites.

type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody

type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody = DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody

DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody defines body for DeleteAdminRealmsRealmRolesByIDRoleIDComposites for application/json ContentType.

type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse

type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse

func ParseDeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse(rsp *http.Response) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

ParseDeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse parses an HTTP response from a DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse call

func (DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmRolesByIDRoleIDResponse

type DeleteAdminRealmsRealmRolesByIDRoleIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmRolesByIDRoleIDResponse

func ParseDeleteAdminRealmsRealmRolesByIDRoleIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmRolesByIDRoleIDResponse, error)

ParseDeleteAdminRealmsRealmRolesByIDRoleIDResponse parses an HTTP response from a DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse call

func (DeleteAdminRealmsRealmRolesByIDRoleIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmRolesByIDRoleIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmRolesRoleNameCompositesJSONBody

type DeleteAdminRealmsRealmRolesRoleNameCompositesJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmRolesRoleNameCompositesJSONBody defines parameters for DeleteAdminRealmsRealmRolesRoleNameComposites.

type DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody

type DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody = DeleteAdminRealmsRealmRolesRoleNameCompositesJSONBody

DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody defines body for DeleteAdminRealmsRealmRolesRoleNameComposites for application/json ContentType.

type DeleteAdminRealmsRealmRolesRoleNameCompositesResponse

type DeleteAdminRealmsRealmRolesRoleNameCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmRolesRoleNameCompositesResponse

func ParseDeleteAdminRealmsRealmRolesRoleNameCompositesResponse(rsp *http.Response) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)

ParseDeleteAdminRealmsRealmRolesRoleNameCompositesResponse parses an HTTP response from a DeleteAdminRealmsRealmRolesRoleNameCompositesWithResponse call

func (DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmRolesRoleNameResponse

type DeleteAdminRealmsRealmRolesRoleNameResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmRolesRoleNameResponse

func ParseDeleteAdminRealmsRealmRolesRoleNameResponse(rsp *http.Response) (*DeleteAdminRealmsRealmRolesRoleNameResponse, error)

ParseDeleteAdminRealmsRealmRolesRoleNameResponse parses an HTTP response from a DeleteAdminRealmsRealmRolesRoleNameWithResponse call

func (DeleteAdminRealmsRealmRolesRoleNameResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmRolesRoleNameResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmRolesRoleNameResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmSessionsSessionParams

type DeleteAdminRealmsRealmSessionsSessionParams struct {
	IsOffline *bool `form:"isOffline,omitempty" json:"isOffline,omitempty"`
}

DeleteAdminRealmsRealmSessionsSessionParams defines parameters for DeleteAdminRealmsRealmSessionsSession.

type DeleteAdminRealmsRealmSessionsSessionResponse

type DeleteAdminRealmsRealmSessionsSessionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmSessionsSessionResponse

func ParseDeleteAdminRealmsRealmSessionsSessionResponse(rsp *http.Response) (*DeleteAdminRealmsRealmSessionsSessionResponse, error)

ParseDeleteAdminRealmsRealmSessionsSessionResponse parses an HTTP response from a DeleteAdminRealmsRealmSessionsSessionWithResponse call

func (DeleteAdminRealmsRealmSessionsSessionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmSessionsSessionResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmSessionsSessionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse

type DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDConsentsClientResponse

func ParseDeleteAdminRealmsRealmUsersUserIDConsentsClientResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDConsentsClientResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse

type DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse

func ParseDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse

type DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse

func ParseDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse

type DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse

func ParseDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDResponse

type DeleteAdminRealmsRealmUsersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDResponse

func ParseDeleteAdminRealmsRealmUsersUserIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody defines parameters for DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID.

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody = DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody

DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody defines body for DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID for application/json ContentType.

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

func ParseDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody = []RoleRepresentation

DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody defines parameters for DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm.

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody = DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody

DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody defines body for DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm for application/json ContentType.

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

func ParseDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

ParseDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse call

func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DeleteAdminRealmsRealmWorkflowsIDResponse

type DeleteAdminRealmsRealmWorkflowsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDeleteAdminRealmsRealmWorkflowsIDResponse

func ParseDeleteAdminRealmsRealmWorkflowsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmWorkflowsIDResponse, error)

ParseDeleteAdminRealmsRealmWorkflowsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmWorkflowsIDWithResponse call

func (DeleteAdminRealmsRealmWorkflowsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (DeleteAdminRealmsRealmWorkflowsIDResponse) Status

Status returns HTTPResponse.Status

func (DeleteAdminRealmsRealmWorkflowsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ErrorRepresentation

type ErrorRepresentation struct {
	ErrorMessage *string                `json:"errorMessage,omitempty"`
	Errors       *[]ErrorRepresentation `json:"errors,omitempty"`
	Field        *string                `json:"field,omitempty"`
	Params       *[]interface{}         `json:"params,omitempty"`
}

ErrorRepresentation defines model for ErrorRepresentation.

type EvaluationResultRepresentation

type EvaluationResultRepresentation struct {
	AllowedScopes *[]ScopeRepresentation        `json:"allowedScopes,omitempty"`
	DeniedScopes  *[]ScopeRepresentation        `json:"deniedScopes,omitempty"`
	Policies      *[]PolicyResultRepresentation `json:"policies,omitempty"`
	Resource      *ResourceRepresentation       `json:"resource,omitempty"`
	Scopes        *[]ScopeRepresentation        `json:"scopes,omitempty"`
	Status        *DecisionEffect               `json:"status,omitempty"`
}

EvaluationResultRepresentation defines model for EvaluationResultRepresentation.

type EventRepresentation

type EventRepresentation struct {
	ClientID  *string            `json:"clientId,omitempty"`
	Details   *map[string]string `json:"details,omitempty"`
	Error     *string            `json:"error,omitempty"`
	ID        *string            `json:"id,omitempty"`
	IPAddress *string            `json:"ipAddress,omitempty"`
	RealmID   *string            `json:"realmId,omitempty"`
	SessionID *string            `json:"sessionId,omitempty"`
	Time      *int64             `json:"time,omitempty"`
	Type      *string            `json:"type,omitempty"`
	UserID    *string            `json:"userId,omitempty"`
}

EventRepresentation defines model for EventRepresentation.

type FederatedIdentityRepresentation

type FederatedIdentityRepresentation struct {
	IdentityProvider *string `json:"identityProvider,omitempty"`
	UserID           *string `json:"userId,omitempty"`
	UserName         *string `json:"userName,omitempty"`
}

FederatedIdentityRepresentation defines model for FederatedIdentityRepresentation.

type GetAdminRealmsParams

type GetAdminRealmsParams struct {
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsParams defines parameters for GetAdminRealms.

type GetAdminRealmsRealmAdminEventsParams

type GetAdminRealmsRealmAdminEventsParams struct {
	AuthClient    *string `form:"authClient,omitempty" json:"authClient,omitempty"`
	AuthIPAddress *string `form:"authIpAddress,omitempty" json:"authIpAddress,omitempty"`
	AuthRealm     *string `form:"authRealm,omitempty" json:"authRealm,omitempty"`

	// AuthUser user id
	AuthUser *string `form:"authUser,omitempty" json:"authUser,omitempty"`

	// DateFrom From (inclusive) date (yyyy-MM-dd) or time in Epoch timestamp millis (number of milliseconds since January 1, 1970, 00:00:00 GMT)
	DateFrom *string `form:"dateFrom,omitempty" json:"dateFrom,omitempty"`

	// DateTo To (inclusive) date (yyyy-MM-dd) or time in Epoch timestamp millis (number of milliseconds since January 1, 1970, 00:00:00 GMT)
	DateTo *string `form:"dateTo,omitempty" json:"dateTo,omitempty"`

	// Direction The direction to sort events by (asc or desc)
	Direction *string `form:"direction,omitempty" json:"direction,omitempty"`
	First     *int32  `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum results size (defaults to 100)
	Max            *int32    `form:"max,omitempty" json:"max,omitempty"`
	OperationTypes *[]string `form:"operationTypes,omitempty" json:"operationTypes,omitempty"`
	ResourcePath   *string   `form:"resourcePath,omitempty" json:"resourcePath,omitempty"`
	ResourceTypes  *[]string `form:"resourceTypes,omitempty" json:"resourceTypes,omitempty"`
}

GetAdminRealmsRealmAdminEventsParams defines parameters for GetAdminRealmsRealmAdminEvents.

type GetAdminRealmsRealmAdminEventsResponse

type GetAdminRealmsRealmAdminEventsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]AdminEventRepresentation
}

func ParseGetAdminRealmsRealmAdminEventsResponse

func ParseGetAdminRealmsRealmAdminEventsResponse(rsp *http.Response) (*GetAdminRealmsRealmAdminEventsResponse, error)

ParseGetAdminRealmsRealmAdminEventsResponse parses an HTTP response from a GetAdminRealmsRealmAdminEventsWithResponse call

func (GetAdminRealmsRealmAdminEventsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAdminEventsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAdminEventsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse

type GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
}

func ParseGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse

func ParseGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse(rsp *http.Response) (*GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)

ParseGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse parses an HTTP response from a GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse call

func (GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse

type GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]interface{}
}

func ParseGetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse

func ParseGetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse, error)

ParseGetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse call

func (GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse

type GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]interface{}
}

func ParseGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse

func ParseGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse, error)

ParseGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse call

func (GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse

type GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AuthenticatorConfigInfoRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse

func ParseGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse, error)

ParseGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse call

func (GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationConfigIDResponse

type GetAdminRealmsRealmAuthenticationConfigIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AuthenticatorConfigRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationConfigIDResponse

func ParseGetAdminRealmsRealmAuthenticationConfigIDResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationConfigIDResponse, error)

ParseGetAdminRealmsRealmAuthenticationConfigIDResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationConfigIDWithResponse call

func (GetAdminRealmsRealmAuthenticationConfigIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationConfigIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse

type GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AuthenticatorConfigRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse

func ParseGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse, error)

ParseGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse call

func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse

type GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AuthenticationExecutionRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse

func ParseGetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)

ParseGetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse call

func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse

type GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]AuthenticationExecutionInfoRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse

func ParseGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

ParseGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse call

func (GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationFlowsIDResponse

type GetAdminRealmsRealmAuthenticationFlowsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AuthenticationFlowRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationFlowsIDResponse

func ParseGetAdminRealmsRealmAuthenticationFlowsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationFlowsIDResponse, error)

ParseGetAdminRealmsRealmAuthenticationFlowsIDResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationFlowsIDWithResponse call

func (GetAdminRealmsRealmAuthenticationFlowsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationFlowsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationFlowsResponse

type GetAdminRealmsRealmAuthenticationFlowsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]AuthenticationFlowRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationFlowsResponse

func ParseGetAdminRealmsRealmAuthenticationFlowsResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationFlowsResponse, error)

ParseGetAdminRealmsRealmAuthenticationFlowsResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationFlowsWithResponse call

func (GetAdminRealmsRealmAuthenticationFlowsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationFlowsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationFlowsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationFormActionProvidersResponse

type GetAdminRealmsRealmAuthenticationFormActionProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]interface{}
}

func ParseGetAdminRealmsRealmAuthenticationFormActionProvidersResponse

func ParseGetAdminRealmsRealmAuthenticationFormActionProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationFormActionProvidersResponse, error)

ParseGetAdminRealmsRealmAuthenticationFormActionProvidersResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse call

func (GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationFormProvidersResponse

type GetAdminRealmsRealmAuthenticationFormProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]interface{}
}

func ParseGetAdminRealmsRealmAuthenticationFormProvidersResponse

func ParseGetAdminRealmsRealmAuthenticationFormProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationFormProvidersResponse, error)

ParseGetAdminRealmsRealmAuthenticationFormProvidersResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationFormProvidersWithResponse call

func (GetAdminRealmsRealmAuthenticationFormProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationFormProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationFormProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse

type GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string][]ConfigPropertyRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse

func ParseGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse, error)

ParseGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse call

func (GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse

type GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RequiredActionConfigInfoRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse, error)

ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse call

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

type GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RequiredActionConfigRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse call

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

type GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RequiredActionProviderRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

ParseGetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse call

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationRequiredActionsResponse

type GetAdminRealmsRealmAuthenticationRequiredActionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RequiredActionProviderRepresentation
}

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsResponse

func ParseGetAdminRealmsRealmAuthenticationRequiredActionsResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationRequiredActionsResponse, error)

ParseGetAdminRealmsRealmAuthenticationRequiredActionsResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse call

func (GetAdminRealmsRealmAuthenticationRequiredActionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationRequiredActionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationRequiredActionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse

type GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]string
}

func ParseGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse

func ParseGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse(rsp *http.Response) (*GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse, error)

ParseGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse parses an HTTP response from a GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse call

func (GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientPoliciesPoliciesParams

type GetAdminRealmsRealmClientPoliciesPoliciesParams struct {
	IncludeGlobalPolicies *bool `form:"include-global-policies,omitempty" json:"include-global-policies,omitempty"`
}

GetAdminRealmsRealmClientPoliciesPoliciesParams defines parameters for GetAdminRealmsRealmClientPoliciesPolicies.

type GetAdminRealmsRealmClientPoliciesPoliciesResponse

type GetAdminRealmsRealmClientPoliciesPoliciesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientPoliciesRepresentation
}

func ParseGetAdminRealmsRealmClientPoliciesPoliciesResponse

func ParseGetAdminRealmsRealmClientPoliciesPoliciesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientPoliciesPoliciesResponse, error)

ParseGetAdminRealmsRealmClientPoliciesPoliciesResponse parses an HTTP response from a GetAdminRealmsRealmClientPoliciesPoliciesWithResponse call

func (GetAdminRealmsRealmClientPoliciesPoliciesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientPoliciesPoliciesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientPoliciesPoliciesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientPoliciesProfilesParams

type GetAdminRealmsRealmClientPoliciesProfilesParams struct {
	IncludeGlobalProfiles *bool `form:"include-global-profiles,omitempty" json:"include-global-profiles,omitempty"`
}

GetAdminRealmsRealmClientPoliciesProfilesParams defines parameters for GetAdminRealmsRealmClientPoliciesProfiles.

type GetAdminRealmsRealmClientPoliciesProfilesResponse

type GetAdminRealmsRealmClientPoliciesProfilesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientProfilesRepresentation
}

func ParseGetAdminRealmsRealmClientPoliciesProfilesResponse

func ParseGetAdminRealmsRealmClientPoliciesProfilesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientPoliciesProfilesResponse, error)

ParseGetAdminRealmsRealmClientPoliciesProfilesResponse parses an HTTP response from a GetAdminRealmsRealmClientPoliciesProfilesWithResponse call

func (GetAdminRealmsRealmClientPoliciesProfilesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientPoliciesProfilesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientPoliciesProfilesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse

type GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ComponentTypeRepresentation
}

func ParseGetAdminRealmsRealmClientRegistrationPolicyProvidersResponse

func ParseGetAdminRealmsRealmClientRegistrationPolicyProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse, error)

ParseGetAdminRealmsRealmClientRegistrationPolicyProvidersResponse parses an HTTP response from a GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse call

func (GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse

type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse

type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDResponse

type GetAdminRealmsRealmClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams defines parameters for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite.

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams defines parameters for GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite.

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse

type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MappingsRepresentation
}

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse

func ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse, error)

ParseGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse call

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientScopesResponse

type GetAdminRealmsRealmClientScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmClientScopesResponse

func ParseGetAdminRealmsRealmClientScopesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientScopesResponse, error)

ParseGetAdminRealmsRealmClientScopesResponse parses an HTTP response from a GetAdminRealmsRealmClientScopesWithResponse call

func (GetAdminRealmsRealmClientScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientScopesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientSessionStatsResponse

type GetAdminRealmsRealmClientSessionStatsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]string
}

func ParseGetAdminRealmsRealmClientSessionStatsResponse

func ParseGetAdminRealmsRealmClientSessionStatsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientSessionStatsResponse, error)

ParseGetAdminRealmsRealmClientSessionStatsResponse parses an HTTP response from a GetAdminRealmsRealmClientSessionStatsWithResponse call

func (GetAdminRealmsRealmClientSessionStatsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientSessionStatsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientSessionStatsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams defines parameters for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite.

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams defines parameters for GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite.

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse

type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MappingsRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse

func ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse, error)

ParseGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse call

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTemplatesResponse

type GetAdminRealmsRealmClientTemplatesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmClientTemplatesResponse

func ParseGetAdminRealmsRealmClientTemplatesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTemplatesResponse, error)

ParseGetAdminRealmsRealmClientTemplatesResponse parses an HTTP response from a GetAdminRealmsRealmClientTemplatesWithResponse call

func (GetAdminRealmsRealmClientTemplatesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTemplatesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTemplatesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientTypesResponse

type GetAdminRealmsRealmClientTypesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientTypesRepresentation
}

func ParseGetAdminRealmsRealmClientTypesResponse

func ParseGetAdminRealmsRealmClientTypesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientTypesResponse, error)

ParseGetAdminRealmsRealmClientTypesResponse parses an HTTP response from a GetAdminRealmsRealmClientTypesWithResponse call

func (GetAdminRealmsRealmClientTypesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientTypesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientTypesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams struct {
	Fields       *string `form:"fields,omitempty" json:"fields,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Permission   *bool   `form:"permission,omitempty" json:"permission,omitempty"`
	PolicyID     *string `form:"policyId,omitempty" json:"policyId,omitempty"`
	Resource     *string `form:"resource,omitempty" json:"resource,omitempty"`
	ResourceType *string `form:"resourceType,omitempty" json:"resourceType,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]PolicyProviderRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]AbstractPolicyRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams struct {
	Fields *string `form:"fields,omitempty" json:"fields,omitempty"`
	Name   *string `form:"name,omitempty" json:"name,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AbstractPolicyRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams struct {
	Fields       *string `form:"fields,omitempty" json:"fields,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Permission   *bool   `form:"permission,omitempty" json:"permission,omitempty"`
	PolicyID     *string `form:"policyId,omitempty" json:"policyId,omitempty"`
	Resource     *string `form:"resource,omitempty" json:"resource,omitempty"`
	ResourceType *string `form:"resourceType,omitempty" json:"resourceType,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]PolicyProviderRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]AbstractPolicyRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams struct {
	Fields *string `form:"fields,omitempty" json:"fields,omitempty"`
	Name   *string `form:"name,omitempty" json:"name,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AbstractPolicyRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]PolicyRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ResourceRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ScopeRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ResourceRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams struct {
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ResourceRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ResourceServerRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams struct {
	First   *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max     *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name    *string `form:"name,omitempty" json:"name,omitempty"`
	ScopeID *string `form:"scopeId,omitempty" json:"scopeId,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ScopeRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]PolicyRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ResourceRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ScopeRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams struct {
	Name *string `form:"name,omitempty" json:"name,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams defines parameters for GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch.

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ScopeRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse

type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ResourceServerRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse

type GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CertificateRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse

func ParseGetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDClientSecretResponse

type GetAdminRealmsRealmClientsClientUUIDClientSecretResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CredentialRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDClientSecretResponse

func ParseGetAdminRealmsRealmClientsClientUUIDClientSecretResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDClientSecretResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse

type GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CredentialRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse

func ParseGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse

type GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams struct {
	Audience *string `form:"audience,omitempty" json:"audience,omitempty"`
	Scope    *string `form:"scope,omitempty" json:"scope,omitempty"`
	UserID   *string `form:"userId,omitempty" json:"userId,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AccessToken
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams struct {
	Audience *string `form:"audience,omitempty" json:"audience,omitempty"`
	Scope    *string `form:"scope,omitempty" json:"scope,omitempty"`
	UserID   *string `form:"userId,omitempty" json:"userId,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *IDToken
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams struct {
	Audience *string `form:"audience,omitempty" json:"audience,omitempty"`
	Scope    *string `form:"scope,omitempty" json:"scope,omitempty"`
	UserID   *string `form:"userId,omitempty" json:"userId,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SamlExampleResponse
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams struct {
	Scope  *string `form:"scope,omitempty" json:"scope,omitempty"`
	UserID *string `form:"userId,omitempty" json:"userId,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams struct {
	Scope *string `form:"scope,omitempty" json:"scope,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperEvaluationRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams struct {
	Scope *string `form:"scope,omitempty" json:"scope,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams struct {
	Scope *string `form:"scope,omitempty" json:"scope,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams defines parameters for GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted.

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse

type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse

func ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse

type GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse

func ParseGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse

type GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse

type GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]int64
}

func ParseGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse

func ParseGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams

type GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams struct {
	// First Paging offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum results size.
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams defines parameters for GetAdminRealmsRealmClientsClientUUIDOfflineSessions.

type GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse

type GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserSessionRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse

type GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

type GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

func ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse

type GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse

type GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ProtocolMapperRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse

func ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDResponse

type GetAdminRealmsRealmClientsClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDResponse

func ParseGetAdminRealmsRealmClientsClientUUIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesParams

type GetAdminRealmsRealmClientsClientUUIDRolesParams struct {
	BriefRepresentation *bool   `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
	First               *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max                 *int32  `form:"max,omitempty" json:"max,omitempty"`
	Search              *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDRolesParams defines parameters for GetAdminRealmsRealmClientsClientUUIDRoles.

type GetAdminRealmsRealmClientsClientUUIDRolesResponse

type GetAdminRealmsRealmClientsClientUUIDRolesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams struct {
	// N100 Maximum number of results to return. Unbounded if negative.
	N100 *int32 `form:"100,omitempty" json:"100,omitempty"`

	// BriefRepresentation If false, return a full representation of the {@code GroupRepresentation} objects.
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// First First result to return. Ignored if negative or {@code null}.
	First *int32 `form:"first,omitempty" json:"first,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams defines parameters for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups.

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams struct {
	// BriefRepresentation Boolean which defines whether brief representations are returned (default: false)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// First first result to return. Ignored if negative or {@code null}.
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum number of results to return. Unbounded if negative.
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams defines parameters for GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers.

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse

type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse

func ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams defines parameters for GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite.

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams defines parameters for GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite.

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse

type GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MappingsRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse

type GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse

func ParseGetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDSessionCountResponse

type GetAdminRealmsRealmClientsClientUUIDSessionCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]int64
}

func ParseGetAdminRealmsRealmClientsClientUUIDSessionCountResponse

func ParseGetAdminRealmsRealmClientsClientUUIDSessionCountResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDSessionCountResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDSessionCountResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse

type GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRequestResult
}

func ParseGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse

func ParseGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsClientUUIDUserSessionsParams

type GetAdminRealmsRealmClientsClientUUIDUserSessionsParams struct {
	// First Paging offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum results size.
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`
}

GetAdminRealmsRealmClientsClientUUIDUserSessionsParams defines parameters for GetAdminRealmsRealmClientsClientUUIDUserSessions.

type GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse

type GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserSessionRepresentation
}

func ParseGetAdminRealmsRealmClientsClientUUIDUserSessionsResponse

func ParseGetAdminRealmsRealmClientsClientUUIDUserSessionsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse, error)

ParseGetAdminRealmsRealmClientsClientUUIDUserSessionsResponse parses an HTTP response from a GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse call

func (GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsInitialAccessResponse

type GetAdminRealmsRealmClientsInitialAccessResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientInitialAccessPresentation
}

func ParseGetAdminRealmsRealmClientsInitialAccessResponse

func ParseGetAdminRealmsRealmClientsInitialAccessResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsInitialAccessResponse, error)

ParseGetAdminRealmsRealmClientsInitialAccessResponse parses an HTTP response from a GetAdminRealmsRealmClientsInitialAccessWithResponse call

func (GetAdminRealmsRealmClientsInitialAccessResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsInitialAccessResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsInitialAccessResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmClientsParams

type GetAdminRealmsRealmClientsParams struct {
	// ClientID filter by clientId
	ClientID *string `form:"clientId,omitempty" json:"clientId,omitempty"`

	// First the first result
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max the max results to return
	Max *int32  `form:"max,omitempty" json:"max,omitempty"`
	Q   *string `form:"q,omitempty" json:"q,omitempty"`

	// Search whether this is a search query or a getClientById query
	Search *bool `form:"search,omitempty" json:"search,omitempty"`

	// ViewableOnly filter clients that cannot be viewed in full by admin
	ViewableOnly *bool `form:"viewableOnly,omitempty" json:"viewableOnly,omitempty"`
}

GetAdminRealmsRealmClientsParams defines parameters for GetAdminRealmsRealmClients.

type GetAdminRealmsRealmClientsResponse

type GetAdminRealmsRealmClientsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientRepresentation
}

func ParseGetAdminRealmsRealmClientsResponse

func ParseGetAdminRealmsRealmClientsResponse(rsp *http.Response) (*GetAdminRealmsRealmClientsResponse, error)

ParseGetAdminRealmsRealmClientsResponse parses an HTTP response from a GetAdminRealmsRealmClientsWithResponse call

func (GetAdminRealmsRealmClientsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmClientsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmClientsResponse) StatusCode

func (r GetAdminRealmsRealmClientsResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmComponentsIDResponse

type GetAdminRealmsRealmComponentsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ComponentRepresentation
}

func ParseGetAdminRealmsRealmComponentsIDResponse

func ParseGetAdminRealmsRealmComponentsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmComponentsIDResponse, error)

ParseGetAdminRealmsRealmComponentsIDResponse parses an HTTP response from a GetAdminRealmsRealmComponentsIDWithResponse call

func (GetAdminRealmsRealmComponentsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmComponentsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmComponentsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmComponentsIDSubComponentTypesParams

type GetAdminRealmsRealmComponentsIDSubComponentTypesParams struct {
	Type *string `form:"type,omitempty" json:"type,omitempty"`
}

GetAdminRealmsRealmComponentsIDSubComponentTypesParams defines parameters for GetAdminRealmsRealmComponentsIDSubComponentTypes.

type GetAdminRealmsRealmComponentsIDSubComponentTypesResponse

type GetAdminRealmsRealmComponentsIDSubComponentTypesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ComponentTypeRepresentation
}

func ParseGetAdminRealmsRealmComponentsIDSubComponentTypesResponse

func ParseGetAdminRealmsRealmComponentsIDSubComponentTypesResponse(rsp *http.Response) (*GetAdminRealmsRealmComponentsIDSubComponentTypesResponse, error)

ParseGetAdminRealmsRealmComponentsIDSubComponentTypesResponse parses an HTTP response from a GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse call

func (GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmComponentsParams

type GetAdminRealmsRealmComponentsParams struct {
	Name       *string `form:"name,omitempty" json:"name,omitempty"`
	Parent     *string `form:"parent,omitempty" json:"parent,omitempty"`
	ProviderID *string `form:"providerId,omitempty" json:"providerId,omitempty"`
	Type       *string `form:"type,omitempty" json:"type,omitempty"`
}

GetAdminRealmsRealmComponentsParams defines parameters for GetAdminRealmsRealmComponents.

type GetAdminRealmsRealmComponentsResponse

type GetAdminRealmsRealmComponentsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ComponentRepresentation
}

func ParseGetAdminRealmsRealmComponentsResponse

func ParseGetAdminRealmsRealmComponentsResponse(rsp *http.Response) (*GetAdminRealmsRealmComponentsResponse, error)

ParseGetAdminRealmsRealmComponentsResponse parses an HTTP response from a GetAdminRealmsRealmComponentsWithResponse call

func (GetAdminRealmsRealmComponentsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmComponentsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmComponentsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmCredentialRegistratorsResponse

type GetAdminRealmsRealmCredentialRegistratorsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]string
}

func ParseGetAdminRealmsRealmCredentialRegistratorsResponse

func ParseGetAdminRealmsRealmCredentialRegistratorsResponse(rsp *http.Response) (*GetAdminRealmsRealmCredentialRegistratorsResponse, error)

ParseGetAdminRealmsRealmCredentialRegistratorsResponse parses an HTTP response from a GetAdminRealmsRealmCredentialRegistratorsWithResponse call

func (GetAdminRealmsRealmCredentialRegistratorsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmCredentialRegistratorsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmCredentialRegistratorsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmDefaultDefaultClientScopesResponse

type GetAdminRealmsRealmDefaultDefaultClientScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmDefaultDefaultClientScopesResponse

func ParseGetAdminRealmsRealmDefaultDefaultClientScopesResponse(rsp *http.Response) (*GetAdminRealmsRealmDefaultDefaultClientScopesResponse, error)

ParseGetAdminRealmsRealmDefaultDefaultClientScopesResponse parses an HTTP response from a GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse call

func (GetAdminRealmsRealmDefaultDefaultClientScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmDefaultDefaultClientScopesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmDefaultDefaultClientScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmDefaultGroupsResponse

type GetAdminRealmsRealmDefaultGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmDefaultGroupsResponse

func ParseGetAdminRealmsRealmDefaultGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmDefaultGroupsResponse, error)

ParseGetAdminRealmsRealmDefaultGroupsResponse parses an HTTP response from a GetAdminRealmsRealmDefaultGroupsWithResponse call

func (GetAdminRealmsRealmDefaultGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmDefaultGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmDefaultGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmDefaultOptionalClientScopesResponse

type GetAdminRealmsRealmDefaultOptionalClientScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]ClientScopeRepresentation
}

func ParseGetAdminRealmsRealmDefaultOptionalClientScopesResponse

func ParseGetAdminRealmsRealmDefaultOptionalClientScopesResponse(rsp *http.Response) (*GetAdminRealmsRealmDefaultOptionalClientScopesResponse, error)

ParseGetAdminRealmsRealmDefaultOptionalClientScopesResponse parses an HTTP response from a GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse call

func (GetAdminRealmsRealmDefaultOptionalClientScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmDefaultOptionalClientScopesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmDefaultOptionalClientScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmEventsConfigResponse

type GetAdminRealmsRealmEventsConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RealmEventsConfigRepresentation
}

func ParseGetAdminRealmsRealmEventsConfigResponse

func ParseGetAdminRealmsRealmEventsConfigResponse(rsp *http.Response) (*GetAdminRealmsRealmEventsConfigResponse, error)

ParseGetAdminRealmsRealmEventsConfigResponse parses an HTTP response from a GetAdminRealmsRealmEventsConfigWithResponse call

func (GetAdminRealmsRealmEventsConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmEventsConfigResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmEventsConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmEventsParams

type GetAdminRealmsRealmEventsParams struct {
	// Client App or oauth client name
	Client *string `form:"client,omitempty" json:"client,omitempty"`

	// DateFrom From (inclusive) date (yyyy-MM-dd) or time in Epoch timestamp millis (number of milliseconds since January 1, 1970, 00:00:00 GMT)
	DateFrom *string `form:"dateFrom,omitempty" json:"dateFrom,omitempty"`

	// DateTo To (inclusive) date (yyyy-MM-dd) or time in Epoch timestamp millis (number of milliseconds since January 1, 1970, 00:00:00 GMT)
	DateTo *string `form:"dateTo,omitempty" json:"dateTo,omitempty"`

	// Direction The direction to sort events by (asc or desc)
	Direction *string `form:"direction,omitempty" json:"direction,omitempty"`

	// First Paging offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// IPAddress IP Address
	IPAddress *string `form:"ipAddress,omitempty" json:"ipAddress,omitempty"`

	// Max Maximum results size
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Type The types of events to return
	Type *[]string `form:"type,omitempty" json:"type,omitempty"`

	// User User id
	User *string `form:"user,omitempty" json:"user,omitempty"`
}

GetAdminRealmsRealmEventsParams defines parameters for GetAdminRealmsRealmEvents.

type GetAdminRealmsRealmEventsResponse

type GetAdminRealmsRealmEventsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]EventRepresentation
}

func ParseGetAdminRealmsRealmEventsResponse

func ParseGetAdminRealmsRealmEventsResponse(rsp *http.Response) (*GetAdminRealmsRealmEventsResponse, error)

ParseGetAdminRealmsRealmEventsResponse parses an HTTP response from a GetAdminRealmsRealmEventsWithResponse call

func (GetAdminRealmsRealmEventsResponse) ContentType

func (r GetAdminRealmsRealmEventsResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmEventsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmEventsResponse) StatusCode

func (r GetAdminRealmsRealmEventsResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupByPathPathResponse

type GetAdminRealmsRealmGroupByPathPathResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GroupRepresentation
}

func ParseGetAdminRealmsRealmGroupByPathPathResponse

func ParseGetAdminRealmsRealmGroupByPathPathResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupByPathPathResponse, error)

ParseGetAdminRealmsRealmGroupByPathPathResponse parses an HTTP response from a GetAdminRealmsRealmGroupByPathPathWithResponse call

func (GetAdminRealmsRealmGroupByPathPathResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupByPathPathResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupByPathPathResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsCountParams

type GetAdminRealmsRealmGroupsCountParams struct {
	Search *string `form:"search,omitempty" json:"search,omitempty"`
	Top    *bool   `form:"top,omitempty" json:"top,omitempty"`
}

GetAdminRealmsRealmGroupsCountParams defines parameters for GetAdminRealmsRealmGroupsCount.

type GetAdminRealmsRealmGroupsCountResponse

type GetAdminRealmsRealmGroupsCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]int64
}

func ParseGetAdminRealmsRealmGroupsCountResponse

func ParseGetAdminRealmsRealmGroupsCountResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsCountResponse, error)

ParseGetAdminRealmsRealmGroupsCountResponse parses an HTTP response from a GetAdminRealmsRealmGroupsCountWithResponse call

func (GetAdminRealmsRealmGroupsCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDChildrenParams

type GetAdminRealmsRealmGroupsGroupIDChildrenParams struct {
	// BriefRepresentation Boolean which defines whether brief groups representations are returned or not (default: false)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// Exact Boolean which defines whether the params "search" must match exactly or not
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First The position of the first result to be returned (pagination offset).
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max The maximum number of results that are to be returned. Defaults to 10
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Search A String representing either an exact group name or a partial name, defaults to prefix search.
	Search *string `form:"search,omitempty" json:"search,omitempty"`

	// SubGroupsCount Boolean which defines whether to return the count of subgroups for each subgroup of this group (default: true)
	SubGroupsCount *bool `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmGroupsGroupIDChildrenParams defines parameters for GetAdminRealmsRealmGroupsGroupIDChildren.

type GetAdminRealmsRealmGroupsGroupIDChildrenResponse

type GetAdminRealmsRealmGroupsGroupIDChildrenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDChildrenResponse

func ParseGetAdminRealmsRealmGroupsGroupIDChildrenResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDChildrenResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDChildrenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDChildrenResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDChildrenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse

type GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse

func ParseGetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDMembersParams

type GetAdminRealmsRealmGroupsGroupIDMembersParams struct {
	// BriefRepresentation Only return basic information (only guaranteed to return id, username, created, first and last name, email, enabled state, email verification state, federation link, and access. Note that it means that namely user attributes, required actions, and not before are not returned.)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// First Pagination offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum results size (defaults to 100)
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`
}

GetAdminRealmsRealmGroupsGroupIDMembersParams defines parameters for GetAdminRealmsRealmGroupsGroupIDMembers.

type GetAdminRealmsRealmGroupsGroupIDMembersResponse

type GetAdminRealmsRealmGroupsGroupIDMembersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDMembersResponse

func ParseGetAdminRealmsRealmGroupsGroupIDMembersResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDMembersResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDMembersResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDMembersWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDMembersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDMembersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDMembersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDResponse

type GetAdminRealmsRealmGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GroupRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDResponse

func ParseGetAdminRealmsRealmGroupsGroupIDResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams defines parameters for GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite.

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams defines parameters for GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite.

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse

type GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MappingsRepresentation
}

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse

func ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse, error)

ParseGetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse parses an HTTP response from a GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse call

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmGroupsParams

type GetAdminRealmsRealmGroupsParams struct {
	BriefRepresentation *bool   `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
	Exact               *bool   `form:"exact,omitempty" json:"exact,omitempty"`
	First               *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max                 *int32  `form:"max,omitempty" json:"max,omitempty"`
	PopulateHierarchy   *bool   `form:"populateHierarchy,omitempty" json:"populateHierarchy,omitempty"`
	Q                   *string `form:"q,omitempty" json:"q,omitempty"`
	Search              *string `form:"search,omitempty" json:"search,omitempty"`

	// SubGroupsCount Boolean which defines whether to return the count of subgroups for each group (default: true
	SubGroupsCount *bool `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmGroupsParams defines parameters for GetAdminRealmsRealmGroups.

type GetAdminRealmsRealmGroupsResponse

type GetAdminRealmsRealmGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmGroupsResponse

func ParseGetAdminRealmsRealmGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmGroupsResponse, error)

ParseGetAdminRealmsRealmGroupsResponse parses an HTTP response from a GetAdminRealmsRealmGroupsWithResponse call

func (GetAdminRealmsRealmGroupsResponse) ContentType

func (r GetAdminRealmsRealmGroupsResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmGroupsResponse) StatusCode

func (r GetAdminRealmsRealmGroupsResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams

type GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams struct {
	// Format Format to use
	Format *string `form:"format,omitempty" json:"format,omitempty"`
}

GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams defines parameters for GetAdminRealmsRealmIdentityProviderInstancesAliasExport.

type GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *IdentityProviderMapperRepresentation
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]IdentityProviderMapperRepresentation
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *bool
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesAliasResponse

type GetAdminRealmsRealmIdentityProviderInstancesAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *IdentityProviderRepresentation
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesAliasResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesAliasResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderInstancesParams

type GetAdminRealmsRealmIdentityProviderInstancesParams struct {
	// BriefRepresentation Boolean which defines whether brief representations are returned (default: false)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// Capability Filter by identity providers capability
	Capability *string `form:"capability,omitempty" json:"capability,omitempty"`

	// First Pagination offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum results size (defaults to 100)
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// RealmOnly Boolean which defines if only realm-level IDPs (not associated with orgs) should be returned (default: false)
	RealmOnly *bool `form:"realmOnly,omitempty" json:"realmOnly,omitempty"`

	// Search Filter specific providers by name. Search can be prefix (name*), contains (*name*) or exact ("name"). Default prefixed.
	Search *string `form:"search,omitempty" json:"search,omitempty"`

	// Type Filter by identity providers type
	Type *string `form:"type,omitempty" json:"type,omitempty"`
}

GetAdminRealmsRealmIdentityProviderInstancesParams defines parameters for GetAdminRealmsRealmIdentityProviderInstances.

type GetAdminRealmsRealmIdentityProviderInstancesResponse

type GetAdminRealmsRealmIdentityProviderInstancesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]IdentityProviderRepresentation
}

func ParseGetAdminRealmsRealmIdentityProviderInstancesResponse

func ParseGetAdminRealmsRealmIdentityProviderInstancesResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderInstancesResponse, error)

ParseGetAdminRealmsRealmIdentityProviderInstancesResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderInstancesWithResponse call

func (GetAdminRealmsRealmIdentityProviderInstancesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderInstancesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderInstancesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse

type GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
}

func ParseGetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse

func ParseGetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse(rsp *http.Response) (*GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse, error)

ParseGetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse parses an HTTP response from a GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse call

func (GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmKeysResponse

type GetAdminRealmsRealmKeysResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *KeysMetadataRepresentation
}

func ParseGetAdminRealmsRealmKeysResponse

func ParseGetAdminRealmsRealmKeysResponse(rsp *http.Response) (*GetAdminRealmsRealmKeysResponse, error)

ParseGetAdminRealmsRealmKeysResponse parses an HTTP response from a GetAdminRealmsRealmKeysWithResponse call

func (GetAdminRealmsRealmKeysResponse) ContentType

func (r GetAdminRealmsRealmKeysResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmKeysResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmKeysResponse) StatusCode

func (r GetAdminRealmsRealmKeysResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmLocalizationLocaleKeyResponse

type GetAdminRealmsRealmLocalizationLocaleKeyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseGetAdminRealmsRealmLocalizationLocaleKeyResponse

func ParseGetAdminRealmsRealmLocalizationLocaleKeyResponse(rsp *http.Response) (*GetAdminRealmsRealmLocalizationLocaleKeyResponse, error)

ParseGetAdminRealmsRealmLocalizationLocaleKeyResponse parses an HTTP response from a GetAdminRealmsRealmLocalizationLocaleKeyWithResponse call

func (GetAdminRealmsRealmLocalizationLocaleKeyResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmLocalizationLocaleKeyResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmLocalizationLocaleParams

type GetAdminRealmsRealmLocalizationLocaleParams struct {
	UseRealmDefaultLocaleFallback *bool `form:"useRealmDefaultLocaleFallback,omitempty" json:"useRealmDefaultLocaleFallback,omitempty"`
}

GetAdminRealmsRealmLocalizationLocaleParams defines parameters for GetAdminRealmsRealmLocalizationLocale.

type GetAdminRealmsRealmLocalizationLocaleResponse

type GetAdminRealmsRealmLocalizationLocaleResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]string
}

func ParseGetAdminRealmsRealmLocalizationLocaleResponse

func ParseGetAdminRealmsRealmLocalizationLocaleResponse(rsp *http.Response) (*GetAdminRealmsRealmLocalizationLocaleResponse, error)

ParseGetAdminRealmsRealmLocalizationLocaleResponse parses an HTTP response from a GetAdminRealmsRealmLocalizationLocaleWithResponse call

func (GetAdminRealmsRealmLocalizationLocaleResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmLocalizationLocaleResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmLocalizationLocaleResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmLocalizationResponse

type GetAdminRealmsRealmLocalizationResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]string
}

func ParseGetAdminRealmsRealmLocalizationResponse

func ParseGetAdminRealmsRealmLocalizationResponse(rsp *http.Response) (*GetAdminRealmsRealmLocalizationResponse, error)

ParseGetAdminRealmsRealmLocalizationResponse parses an HTTP response from a GetAdminRealmsRealmLocalizationWithResponse call

func (GetAdminRealmsRealmLocalizationResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmLocalizationResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmLocalizationResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsCountParams

type GetAdminRealmsRealmOrganizationsCountParams struct {
	// Exact Boolean which defines whether the param 'search' must match exactly or not
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// Q A query to search for custom attributes, in the format 'key1:value2 key2:value2'
	Q *string `form:"q,omitempty" json:"q,omitempty"`

	// Search A String representing either an organization name or domain
	Search *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmOrganizationsCountParams defines parameters for GetAdminRealmsRealmOrganizationsCount.

type GetAdminRealmsRealmOrganizationsCountResponse

type GetAdminRealmsRealmOrganizationsCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *int64
}

func ParseGetAdminRealmsRealmOrganizationsCountResponse

func ParseGetAdminRealmsRealmOrganizationsCountResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsCountResponse, error)

ParseGetAdminRealmsRealmOrganizationsCountResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsCountWithResponse call

func (GetAdminRealmsRealmOrganizationsCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams

type GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams struct {
	// BriefRepresentation if false, return the full representation. Otherwise, only the basic fields are returned.
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams defines parameters for GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations.

type GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse

type GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]OrganizationRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse

func ParseGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse, error)

ParseGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse call

func (GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams struct {
	// SubGroupsCount Whether to return the count of subgroups (default: false)
	SubGroupsCount *bool `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GroupRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams struct {
	// Exact Boolean which defines whether the params "search" must match exactly or not
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First The position of the first result to be returned (pagination offset).
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max The maximum number of results that are to be returned. Defaults to 10
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Search A String representing either an exact group name or a partial name
	Search *string `form:"search,omitempty" json:"search,omitempty"`

	// SubGroupsCount Whether to return the count of subgroups (default: false)
	SubGroupsCount *bool `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams struct {
	// BriefRepresentation Only return basic information (only guaranteed to return id, username, created, first and last name, email, enabled state, email verification state, federation link, and access. Note that it means that namely user attributes, required actions, and not before are not returned.)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// First Pagination offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum results size (defaults to 100)
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]MemberRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams struct {
	// SubGroupsCount Whether to return the count of subgroups (default: false)
	SubGroupsCount *bool `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GroupRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MappingsRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDGroupsParams

type GetAdminRealmsRealmOrganizationsOrgIDGroupsParams struct {
	BriefRepresentation *bool   `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
	Exact               *bool   `form:"exact,omitempty" json:"exact,omitempty"`
	First               *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max                 *int32  `form:"max,omitempty" json:"max,omitempty"`
	PopulateHierarchy   *bool   `form:"populateHierarchy,omitempty" json:"populateHierarchy,omitempty"`
	Q                   *string `form:"q,omitempty" json:"q,omitempty"`
	Search              *string `form:"search,omitempty" json:"search,omitempty"`
	SubGroupsCount      *bool   `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDGroupsParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDGroups.

type GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse

type GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDGroupsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams struct {
	// BriefRepresentation If true, return brief representation; otherwise return full representation
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// Exact If true, perform exact match on the search parameter
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First The position of the first result (pagination offset)
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max The maximum number of results to return
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Q A query to search for group attributes, in the format 'key1:value1 key2:value2'
	Q *string `form:"q,omitempty" json:"q,omitempty"`

	// Search A string to search for in group names
	Search *string `form:"search,omitempty" json:"search,omitempty"`

	// SubGroupsCount If true, include subgroups count in the response
	SubGroupsCount *bool `form:"subGroupsCount,omitempty" json:"subGroupsCount,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups.

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *IdentityProviderRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse

type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]IdentityProviderRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse

type GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *OrganizationInvitationRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams

type GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams struct {
	Email     *string `form:"email,omitempty" json:"email,omitempty"`
	First     *int32  `form:"first,omitempty" json:"first,omitempty"`
	FirstName *string `form:"firstName,omitempty" json:"firstName,omitempty"`
	LastName  *string `form:"lastName,omitempty" json:"lastName,omitempty"`
	Max       *int32  `form:"max,omitempty" json:"max,omitempty"`
	Search    *string `form:"search,omitempty" json:"search,omitempty"`
	Status    *string `form:"status,omitempty" json:"status,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDInvitations.

type GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse

type GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]OrganizationInvitationRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse

type GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *int64
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams struct {
	BriefRepresentation *bool   `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
	First               *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max                 *int32  `form:"max,omitempty" json:"max,omitempty"`
	Search              *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups.

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams struct {
	// BriefRepresentation if false, return the full representation. Otherwise, only the basic fields are returned.
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations.

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]OrganizationRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse

type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MemberRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDMembersParams

type GetAdminRealmsRealmOrganizationsOrgIDMembersParams struct {
	// BriefRepresentation Boolean to return either a brief or a full user representation. If not specified, the brief representation is returned by default.
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// Exact Boolean which defines whether the param 'search' must match exactly or not
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First The position of the first result to be processed (pagination offset)
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max The maximum number of results to be returned. Defaults to 10
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// MembershipType The membership type
	MembershipType *string `form:"membershipType,omitempty" json:"membershipType,omitempty"`

	// Search A String representing either a member's username, e-mail, first name, or last name.
	Search *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmOrganizationsOrgIDMembersParams defines parameters for GetAdminRealmsRealmOrganizationsOrgIDMembers.

type GetAdminRealmsRealmOrganizationsOrgIDMembersResponse

type GetAdminRealmsRealmOrganizationsOrgIDMembersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]MemberRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDMembersResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDMembersResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsOrgIDResponse

type GetAdminRealmsRealmOrganizationsOrgIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *OrganizationRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsOrgIDResponse

func ParseGetAdminRealmsRealmOrganizationsOrgIDResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsOrgIDResponse, error)

ParseGetAdminRealmsRealmOrganizationsOrgIDResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsOrgIDWithResponse call

func (GetAdminRealmsRealmOrganizationsOrgIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsOrgIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmOrganizationsParams

type GetAdminRealmsRealmOrganizationsParams struct {
	// BriefRepresentation if false, return the full representation. Otherwise, only the basic fields are returned.
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// Exact Boolean which defines whether the param 'search' must match exactly or not
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First The position of the first result to be processed (pagination offset)
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max The maximum number of results to be returned - defaults to 10
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Q A query to search for custom attributes, in the format 'key1:value2 key2:value2'
	Q *string `form:"q,omitempty" json:"q,omitempty"`

	// Search A String representing either an organization name or domain
	Search *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmOrganizationsParams defines parameters for GetAdminRealmsRealmOrganizations.

type GetAdminRealmsRealmOrganizationsResponse

type GetAdminRealmsRealmOrganizationsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]OrganizationRepresentation
}

func ParseGetAdminRealmsRealmOrganizationsResponse

func ParseGetAdminRealmsRealmOrganizationsResponse(rsp *http.Response) (*GetAdminRealmsRealmOrganizationsResponse, error)

ParseGetAdminRealmsRealmOrganizationsResponse parses an HTTP response from a GetAdminRealmsRealmOrganizationsWithResponse call

func (GetAdminRealmsRealmOrganizationsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmOrganizationsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmOrganizationsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmResponse

type GetAdminRealmsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RealmRepresentation
}

func ParseGetAdminRealmsRealmResponse

func ParseGetAdminRealmsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmResponse, error)

ParseGetAdminRealmsRealmResponse parses an HTTP response from a GetAdminRealmsRealmWithResponse call

func (GetAdminRealmsRealmResponse) ContentType

func (r GetAdminRealmsRealmResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmResponse) StatusCode

func (r GetAdminRealmsRealmResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse

type GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse

func ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse, error)

ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse parses an HTTP response from a GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse call

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesByIDRoleIDCompositesParams

type GetAdminRealmsRealmRolesByIDRoleIDCompositesParams struct {
	First  *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max    *int32  `form:"max,omitempty" json:"max,omitempty"`
	Search *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmRolesByIDRoleIDCompositesParams defines parameters for GetAdminRealmsRealmRolesByIDRoleIDComposites.

type GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse

type GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse

func ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse, error)

ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse parses an HTTP response from a GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse call

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse

type GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesResponse

func ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

ParseGetAdminRealmsRealmRolesByIDRoleIDCompositesResponse parses an HTTP response from a GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse call

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse

type GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse

func ParseGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse call

func (GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesByIDRoleIDResponse

type GetAdminRealmsRealmRolesByIDRoleIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesByIDRoleIDResponse

func ParseGetAdminRealmsRealmRolesByIDRoleIDResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesByIDRoleIDResponse, error)

ParseGetAdminRealmsRealmRolesByIDRoleIDResponse parses an HTTP response from a GetAdminRealmsRealmRolesByIDRoleIDWithResponse call

func (GetAdminRealmsRealmRolesByIDRoleIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesByIDRoleIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesParams

type GetAdminRealmsRealmRolesParams struct {
	BriefRepresentation *bool   `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
	First               *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max                 *int32  `form:"max,omitempty" json:"max,omitempty"`
	Search              *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmRolesParams defines parameters for GetAdminRealmsRealmRoles.

type GetAdminRealmsRealmRolesResponse

type GetAdminRealmsRealmRolesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesResponse

func ParseGetAdminRealmsRealmRolesResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesResponse, error)

ParseGetAdminRealmsRealmRolesResponse parses an HTTP response from a GetAdminRealmsRealmRolesWithResponse call

func (GetAdminRealmsRealmRolesResponse) ContentType

func (r GetAdminRealmsRealmRolesResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesResponse) StatusCode

func (r GetAdminRealmsRealmRolesResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse

type GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse

func ParseGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse call

func (GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse

type GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesRoleNameCompositesRealmResponse

func ParseGetAdminRealmsRealmRolesRoleNameCompositesRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameCompositesRealmResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse call

func (GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameCompositesResponse

type GetAdminRealmsRealmRolesRoleNameCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesRoleNameCompositesResponse

func ParseGetAdminRealmsRealmRolesRoleNameCompositesResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameCompositesResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameCompositesResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameCompositesWithResponse call

func (GetAdminRealmsRealmRolesRoleNameCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameCompositesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameGroupsParams

type GetAdminRealmsRealmRolesRoleNameGroupsParams struct {
	// N100 Maximum number of results to return. Unbounded if negative.
	N100 *int32 `form:"100,omitempty" json:"100,omitempty"`

	// BriefRepresentation If false, return a full representation of the {@code GroupRepresentation} objects.
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// First First result to return. Ignored if negative or {@code null}.
	First *int32 `form:"first,omitempty" json:"first,omitempty"`
}

GetAdminRealmsRealmRolesRoleNameGroupsParams defines parameters for GetAdminRealmsRealmRolesRoleNameGroups.

type GetAdminRealmsRealmRolesRoleNameGroupsResponse

type GetAdminRealmsRealmRolesRoleNameGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserRepresentation
}

func ParseGetAdminRealmsRealmRolesRoleNameGroupsResponse

func ParseGetAdminRealmsRealmRolesRoleNameGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameGroupsResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameGroupsResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameGroupsWithResponse call

func (GetAdminRealmsRealmRolesRoleNameGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse

type GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse

func ParseGetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse call

func (GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameResponse

type GetAdminRealmsRealmRolesRoleNameResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RoleRepresentation
}

func ParseGetAdminRealmsRealmRolesRoleNameResponse

func ParseGetAdminRealmsRealmRolesRoleNameResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameWithResponse call

func (GetAdminRealmsRealmRolesRoleNameResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmRolesRoleNameUsersParams

type GetAdminRealmsRealmRolesRoleNameUsersParams struct {
	// BriefRepresentation Boolean which defines whether brief representations are returned (default: false)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// First first result to return. Ignored if negative or {@code null}.
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max Maximum number of results to return. Unbounded if negative.
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`
}

GetAdminRealmsRealmRolesRoleNameUsersParams defines parameters for GetAdminRealmsRealmRolesRoleNameUsers.

type GetAdminRealmsRealmRolesRoleNameUsersResponse

type GetAdminRealmsRealmRolesRoleNameUsersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserRepresentation
}

func ParseGetAdminRealmsRealmRolesRoleNameUsersResponse

func ParseGetAdminRealmsRealmRolesRoleNameUsersResponse(rsp *http.Response) (*GetAdminRealmsRealmRolesRoleNameUsersResponse, error)

ParseGetAdminRealmsRealmRolesRoleNameUsersResponse parses an HTTP response from a GetAdminRealmsRealmRolesRoleNameUsersWithResponse call

func (GetAdminRealmsRealmRolesRoleNameUsersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmRolesRoleNameUsersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmRolesRoleNameUsersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersCountParams

type GetAdminRealmsRealmUsersCountParams struct {
	// CreatedAfter Only return users created after (inclusive) the given date, in ISO-8601 format (yyyy-MM-dd) or epoch milliseconds
	CreatedAfter *string `form:"createdAfter,omitempty" json:"createdAfter,omitempty"`

	// CreatedBefore Only return users created before (inclusive) the given date, in ISO-8601 format (yyyy-MM-dd) or epoch milliseconds
	CreatedBefore *string `form:"createdBefore,omitempty" json:"createdBefore,omitempty"`

	// Email A String contained in email, or the complete email, if param "exact" is true
	Email *string `form:"email,omitempty" json:"email,omitempty"`

	// EmailVerified whether the email has been verified
	EmailVerified *bool `form:"emailVerified,omitempty" json:"emailVerified,omitempty"`

	// Enabled Boolean representing if user is enabled or not
	Enabled *bool `form:"enabled,omitempty" json:"enabled,omitempty"`

	// Exact Boolean which defines whether the params "last", "first", "email" and "username" must match exactly
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// FirstName A String contained in firstName, or the complete firstName, if param "exact" is true
	FirstName *string `form:"firstName,omitempty" json:"firstName,omitempty"`

	// IdpAlias The alias of an Identity Provider linked to the user
	IdpAlias *string `form:"idpAlias,omitempty" json:"idpAlias,omitempty"`

	// IdpUserID The userId at an Identity Provider linked to the user
	IdpUserID *string `form:"idpUserId,omitempty" json:"idpUserId,omitempty"`

	// LastName A String contained in lastName, or the complete lastName, if param "exact" is true
	LastName *string `form:"lastName,omitempty" json:"lastName,omitempty"`

	// Q A query to search for custom attributes, in the format 'key1:value2 key2:value2'
	Q *string `form:"q,omitempty" json:"q,omitempty"`

	// Search A String contained in username, first or last name, or email. Default search behavior is prefix-based (e.g., foo or foo*). Use *foo* for infix search and "foo" for exact search.
	Search *string `form:"search,omitempty" json:"search,omitempty"`

	// Username A String contained in username, or the complete username, if param "exact" is true
	Username *string `form:"username,omitempty" json:"username,omitempty"`
}

GetAdminRealmsRealmUsersCountParams defines parameters for GetAdminRealmsRealmUsersCount.

type GetAdminRealmsRealmUsersCountResponse

type GetAdminRealmsRealmUsersCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *int32
}

func ParseGetAdminRealmsRealmUsersCountResponse

func ParseGetAdminRealmsRealmUsersCountResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersCountResponse, error)

ParseGetAdminRealmsRealmUsersCountResponse parses an HTTP response from a GetAdminRealmsRealmUsersCountWithResponse call

func (GetAdminRealmsRealmUsersCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersManagementPermissionsResponse

type GetAdminRealmsRealmUsersManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParseGetAdminRealmsRealmUsersManagementPermissionsResponse

func ParseGetAdminRealmsRealmUsersManagementPermissionsResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersManagementPermissionsResponse, error)

ParseGetAdminRealmsRealmUsersManagementPermissionsResponse parses an HTTP response from a GetAdminRealmsRealmUsersManagementPermissionsWithResponse call

func (GetAdminRealmsRealmUsersManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersParams

type GetAdminRealmsRealmUsersParams struct {
	// BriefRepresentation Boolean which defines whether brief representations are returned (default: false)
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`

	// CreatedAfter Only return users created after (inclusive) the given date, in ISO-8601 format (yyyy-MM-dd) or epoch milliseconds
	CreatedAfter *string `form:"createdAfter,omitempty" json:"createdAfter,omitempty"`

	// CreatedBefore Only return users created before (inclusive) the given date, in ISO-8601 format (yyyy-MM-dd) or epoch milliseconds
	CreatedBefore *string `form:"createdBefore,omitempty" json:"createdBefore,omitempty"`

	// Email A String contained in email, or the complete email, if param "exact" is true
	Email *string `form:"email,omitempty" json:"email,omitempty"`

	// EmailVerified whether the email has been verified
	EmailVerified *bool `form:"emailVerified,omitempty" json:"emailVerified,omitempty"`

	// Enabled Boolean representing if user is enabled or not
	Enabled *bool `form:"enabled,omitempty" json:"enabled,omitempty"`

	// Exact Boolean which defines whether the params "last", "first", "email" and "username" must match exactly
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First Pagination offset
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// FirstName A String contained in firstName, or the complete firstName, if param "exact" is true
	FirstName *string `form:"firstName,omitempty" json:"firstName,omitempty"`

	// IdpAlias The alias of an Identity Provider linked to the user
	IdpAlias *string `form:"idpAlias,omitempty" json:"idpAlias,omitempty"`

	// IdpUserID The userId at an Identity Provider linked to the user
	IdpUserID *string `form:"idpUserId,omitempty" json:"idpUserId,omitempty"`

	// LastName A String contained in lastName, or the complete lastName, if param "exact" is true
	LastName *string `form:"lastName,omitempty" json:"lastName,omitempty"`

	// Max Maximum results size (defaults to 100)
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Q A query to search for custom attributes, in the format 'key1:value2 key2:value2'
	Q *string `form:"q,omitempty" json:"q,omitempty"`

	// Search A String contained in username, first or last name, or email. Default search behavior is prefix-based (e.g., foo or foo*). Use *foo* for infix search and "foo" for exact search.
	Search *string `form:"search,omitempty" json:"search,omitempty"`

	// Username A String contained in username, or the complete username, if param "exact" is true
	Username *string `form:"username,omitempty" json:"username,omitempty"`
}

GetAdminRealmsRealmUsersParams defines parameters for GetAdminRealmsRealmUsers.

type GetAdminRealmsRealmUsersProfileMetadataResponse

type GetAdminRealmsRealmUsersProfileMetadataResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserProfileMetadata
}

func ParseGetAdminRealmsRealmUsersProfileMetadataResponse

func ParseGetAdminRealmsRealmUsersProfileMetadataResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersProfileMetadataResponse, error)

ParseGetAdminRealmsRealmUsersProfileMetadataResponse parses an HTTP response from a GetAdminRealmsRealmUsersProfileMetadataWithResponse call

func (GetAdminRealmsRealmUsersProfileMetadataResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersProfileMetadataResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersProfileMetadataResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersProfileResponse

type GetAdminRealmsRealmUsersProfileResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UPConfig
}

func ParseGetAdminRealmsRealmUsersProfileResponse

func ParseGetAdminRealmsRealmUsersProfileResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersProfileResponse, error)

ParseGetAdminRealmsRealmUsersProfileResponse parses an HTTP response from a GetAdminRealmsRealmUsersProfileWithResponse call

func (GetAdminRealmsRealmUsersProfileResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersProfileResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersProfileResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersResponse

type GetAdminRealmsRealmUsersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserRepresentation
}

func ParseGetAdminRealmsRealmUsersResponse

func ParseGetAdminRealmsRealmUsersResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersResponse, error)

ParseGetAdminRealmsRealmUsersResponse parses an HTTP response from a GetAdminRealmsRealmUsersWithResponse call

func (GetAdminRealmsRealmUsersResponse) ContentType

func (r GetAdminRealmsRealmUsersResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersResponse) StatusCode

func (r GetAdminRealmsRealmUsersResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse

type GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]string
}

func ParseGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse

func ParseGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse, error)

ParseGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse call

func (GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDConsentsResponse

type GetAdminRealmsRealmUsersUserIDConsentsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]map[string]interface{}
}

func ParseGetAdminRealmsRealmUsersUserIDConsentsResponse

func ParseGetAdminRealmsRealmUsersUserIDConsentsResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDConsentsResponse, error)

ParseGetAdminRealmsRealmUsersUserIDConsentsResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDConsentsWithResponse call

func (GetAdminRealmsRealmUsersUserIDConsentsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDConsentsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDConsentsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDCredentialsResponse

type GetAdminRealmsRealmUsersUserIDCredentialsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]CredentialRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDCredentialsResponse

func ParseGetAdminRealmsRealmUsersUserIDCredentialsResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDCredentialsResponse, error)

ParseGetAdminRealmsRealmUsersUserIDCredentialsResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDCredentialsWithResponse call

func (GetAdminRealmsRealmUsersUserIDCredentialsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDCredentialsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDCredentialsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse

type GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]FederatedIdentityRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDFederatedIdentityResponse

func ParseGetAdminRealmsRealmUsersUserIDFederatedIdentityResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse, error)

ParseGetAdminRealmsRealmUsersUserIDFederatedIdentityResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse call

func (GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDGroupsCountParams

type GetAdminRealmsRealmUsersUserIDGroupsCountParams struct {
	Search *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmUsersUserIDGroupsCountParams defines parameters for GetAdminRealmsRealmUsersUserIDGroupsCount.

type GetAdminRealmsRealmUsersUserIDGroupsCountResponse

type GetAdminRealmsRealmUsersUserIDGroupsCountResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]int64
}

func ParseGetAdminRealmsRealmUsersUserIDGroupsCountResponse

func ParseGetAdminRealmsRealmUsersUserIDGroupsCountResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDGroupsCountResponse, error)

ParseGetAdminRealmsRealmUsersUserIDGroupsCountResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse call

func (GetAdminRealmsRealmUsersUserIDGroupsCountResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDGroupsCountResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDGroupsCountResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDGroupsParams

type GetAdminRealmsRealmUsersUserIDGroupsParams struct {
	BriefRepresentation *bool   `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
	First               *int32  `form:"first,omitempty" json:"first,omitempty"`
	Max                 *int32  `form:"max,omitempty" json:"max,omitempty"`
	Search              *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmUsersUserIDGroupsParams defines parameters for GetAdminRealmsRealmUsersUserIDGroups.

type GetAdminRealmsRealmUsersUserIDGroupsResponse

type GetAdminRealmsRealmUsersUserIDGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]GroupRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDGroupsResponse

func ParseGetAdminRealmsRealmUsersUserIDGroupsResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDGroupsResponse, error)

ParseGetAdminRealmsRealmUsersUserIDGroupsResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDGroupsWithResponse call

func (GetAdminRealmsRealmUsersUserIDGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDGroupsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse

type GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserSessionRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse

func ParseGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse, error)

ParseGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse call

func (GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDParams

type GetAdminRealmsRealmUsersUserIDParams struct {
	// UserProfileMetadata Indicates if the user profile metadata should be added to the response
	UserProfileMetadata *bool `form:"userProfileMetadata,omitempty" json:"userProfileMetadata,omitempty"`
}

GetAdminRealmsRealmUsersUserIDParams defines parameters for GetAdminRealmsRealmUsersUserID.

type GetAdminRealmsRealmUsersUserIDResponse

type GetAdminRealmsRealmUsersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDResponse

func ParseGetAdminRealmsRealmUsersUserIDResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDResponse, error)

ParseGetAdminRealmsRealmUsersUserIDResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDWithResponse call

func (GetAdminRealmsRealmUsersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams defines parameters for GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite.

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams struct {
	// BriefRepresentation if false, return roles with their attributes
	BriefRepresentation *bool `form:"briefRepresentation,omitempty" json:"briefRepresentation,omitempty"`
}

GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams defines parameters for GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite.

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RoleRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDRoleMappingsResponse

type GetAdminRealmsRealmUsersUserIDRoleMappingsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *MappingsRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsResponse

func ParseGetAdminRealmsRealmUsersUserIDRoleMappingsResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDRoleMappingsResponse, error)

ParseGetAdminRealmsRealmUsersUserIDRoleMappingsResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse call

func (GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDSessionsResponse

type GetAdminRealmsRealmUsersUserIDSessionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]UserSessionRepresentation
}

func ParseGetAdminRealmsRealmUsersUserIDSessionsResponse

func ParseGetAdminRealmsRealmUsersUserIDSessionsResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDSessionsResponse, error)

ParseGetAdminRealmsRealmUsersUserIDSessionsResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDSessionsWithResponse call

func (GetAdminRealmsRealmUsersUserIDSessionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDSessionsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDSessionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse

type GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string][]string
}

func ParseGetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse

func ParseGetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse(rsp *http.Response) (*GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse, error)

ParseGetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse parses an HTTP response from a GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse call

func (GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmWorkflowsIDParams

type GetAdminRealmsRealmWorkflowsIDParams struct {
	// IncludeID Indicates whether the workflow and step ids should be included in the representation or not - defaults to true
	IncludeID *bool `form:"includeId,omitempty" json:"includeId,omitempty"`
}

GetAdminRealmsRealmWorkflowsIDParams defines parameters for GetAdminRealmsRealmWorkflowsID.

type GetAdminRealmsRealmWorkflowsIDResponse

type GetAdminRealmsRealmWorkflowsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *WorkflowRepresentation
	YAML200      *WorkflowRepresentation
}

func ParseGetAdminRealmsRealmWorkflowsIDResponse

func ParseGetAdminRealmsRealmWorkflowsIDResponse(rsp *http.Response) (*GetAdminRealmsRealmWorkflowsIDResponse, error)

ParseGetAdminRealmsRealmWorkflowsIDResponse parses an HTTP response from a GetAdminRealmsRealmWorkflowsIDWithResponse call

func (GetAdminRealmsRealmWorkflowsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmWorkflowsIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmWorkflowsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmWorkflowsParams

type GetAdminRealmsRealmWorkflowsParams struct {
	// Exact Boolean which defines whether the param 'search' must match exactly or not
	Exact *bool `form:"exact,omitempty" json:"exact,omitempty"`

	// First The position of the first result to be processed (pagination offset)
	First *int32 `form:"first,omitempty" json:"first,omitempty"`

	// Max The maximum number of results to be returned - defaults to 10
	Max *int32 `form:"max,omitempty" json:"max,omitempty"`

	// Search A String representing the workflow name - either partial or exact
	Search *string `form:"search,omitempty" json:"search,omitempty"`
}

GetAdminRealmsRealmWorkflowsParams defines parameters for GetAdminRealmsRealmWorkflows.

type GetAdminRealmsRealmWorkflowsResponse

type GetAdminRealmsRealmWorkflowsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *WorkflowRepresentation
	YAML200      *WorkflowRepresentation
}

func ParseGetAdminRealmsRealmWorkflowsResponse

func ParseGetAdminRealmsRealmWorkflowsResponse(rsp *http.Response) (*GetAdminRealmsRealmWorkflowsResponse, error)

ParseGetAdminRealmsRealmWorkflowsResponse parses an HTTP response from a GetAdminRealmsRealmWorkflowsWithResponse call

func (GetAdminRealmsRealmWorkflowsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmWorkflowsResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmWorkflowsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse

type GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *WorkflowRepresentation
}

func ParseGetAdminRealmsRealmWorkflowsScheduledResourceIDResponse

func ParseGetAdminRealmsRealmWorkflowsScheduledResourceIDResponse(rsp *http.Response) (*GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse, error)

ParseGetAdminRealmsRealmWorkflowsScheduledResourceIDResponse parses an HTTP response from a GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse call

func (GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) Status

Status returns HTTPResponse.Status

func (GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type GetAdminRealmsResponse

type GetAdminRealmsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]RealmRepresentation
}

func ParseGetAdminRealmsResponse

func ParseGetAdminRealmsResponse(rsp *http.Response) (*GetAdminRealmsResponse, error)

ParseGetAdminRealmsResponse parses an HTTP response from a GetAdminRealmsWithResponse call

func (GetAdminRealmsResponse) ContentType

func (r GetAdminRealmsResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (GetAdminRealmsResponse) Status

func (r GetAdminRealmsResponse) Status() string

Status returns HTTPResponse.Status

func (GetAdminRealmsResponse) StatusCode

func (r GetAdminRealmsResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRequestResult

type GlobalRequestResult struct {
	FailedRequests  *[]string `json:"failedRequests,omitempty"`
	SuccessRequests *[]string `json:"successRequests,omitempty"`
}

GlobalRequestResult defines model for GlobalRequestResult.

type GroupRepresentation

type GroupRepresentation struct {
	Access        *map[string]bool       `json:"access,omitempty"`
	Attributes    *map[string][]string   `json:"attributes,omitempty"`
	ClientRoles   *map[string][]string   `json:"clientRoles,omitempty"`
	Description   *string                `json:"description,omitempty"`
	ID            *string                `json:"id,omitempty"`
	Name          *string                `json:"name,omitempty"`
	ParentID      *string                `json:"parentId,omitempty"`
	Path          *string                `json:"path,omitempty"`
	RealmRoles    *[]string              `json:"realmRoles,omitempty"`
	SubGroupCount *int64                 `json:"subGroupCount,omitempty"`
	SubGroups     *[]GroupRepresentation `json:"subGroups,omitempty"`
}

GroupRepresentation defines model for GroupRepresentation.

type HttpRequestDoer

type HttpRequestDoer interface {
	Do(req *http.Request) (*http.Response, error)
}

Doer performs HTTP requests.

The standard http.Client implements this interface.

type IDToken

type IDToken struct {
	Acr                 *string                 `json:"acr,omitempty"`
	AtHash              *string                 `json:"at_hash,omitempty"`
	AuthTime            *int64                  `json:"auth_time,omitempty"`
	Azp                 *string                 `json:"azp,omitempty"`
	Birthdate           *string                 `json:"birthdate,omitempty"`
	CHash               *string                 `json:"c_hash,omitempty"`
	ClaimsLocales       *string                 `json:"claims_locales,omitempty"`
	Email               *string                 `json:"email,omitempty"`
	EmailVerified       *bool                   `json:"email_verified,omitempty"`
	Exp                 *int64                  `json:"exp,omitempty"`
	FamilyName          *string                 `json:"family_name,omitempty"`
	Gender              *string                 `json:"gender,omitempty"`
	GivenName           *string                 `json:"given_name,omitempty"`
	Iat                 *int64                  `json:"iat,omitempty"`
	Iss                 *string                 `json:"iss,omitempty"`
	Jti                 *string                 `json:"jti,omitempty"`
	Locale              *string                 `json:"locale,omitempty"`
	MiddleName          *string                 `json:"middle_name,omitempty"`
	Name                *string                 `json:"name,omitempty"`
	Nbf                 *int64                  `json:"nbf,omitempty"`
	Nickname            *string                 `json:"nickname,omitempty"`
	Nonce               *string                 `json:"nonce,omitempty"`
	OtherClaims         *map[string]interface{} `json:"otherClaims,omitempty"`
	PhoneNumber         *string                 `json:"phone_number,omitempty"`
	PhoneNumberVerified *bool                   `json:"phone_number_verified,omitempty"`
	Picture             *string                 `json:"picture,omitempty"`
	PreferredUsername   *string                 `json:"preferred_username,omitempty"`
	Profile             *string                 `json:"profile,omitempty"`
	SHash               *string                 `json:"s_hash,omitempty"`
	Sid                 *string                 `json:"sid,omitempty"`
	Sub                 *string                 `json:"sub,omitempty"`
	Typ                 *string                 `json:"typ,omitempty"`
	UpdatedAt           *int64                  `json:"updated_at,omitempty"`
	Website             *string                 `json:"website,omitempty"`
	Zoneinfo            *string                 `json:"zoneinfo,omitempty"`
}

IDToken defines model for IDToken.

type IdentityProviderMapperRepresentation

type IdentityProviderMapperRepresentation struct {
	Config                 *map[string]string `json:"config,omitempty"`
	ID                     *string            `json:"id,omitempty"`
	IdentityProviderAlias  *string            `json:"identityProviderAlias,omitempty"`
	IdentityProviderMapper *string            `json:"identityProviderMapper,omitempty"`
	Name                   *string            `json:"name,omitempty"`
}

IdentityProviderMapperRepresentation defines model for IdentityProviderMapperRepresentation.

type IdentityProviderMapperTypeRepresentation

type IdentityProviderMapperTypeRepresentation struct {
	Category   *string                         `json:"category,omitempty"`
	HelpText   *string                         `json:"helpText,omitempty"`
	ID         *string                         `json:"id,omitempty"`
	Name       *string                         `json:"name,omitempty"`
	Properties *[]ConfigPropertyRepresentation `json:"properties,omitempty"`
}

IdentityProviderMapperTypeRepresentation defines model for IdentityProviderMapperTypeRepresentation.

type IdentityProviderRepresentation

type IdentityProviderRepresentation struct {
	AddReadTokenRoleOnCreate  *bool              `json:"addReadTokenRoleOnCreate,omitempty"`
	Alias                     *string            `json:"alias,omitempty"`
	AuthenticateByDefault     *bool              `json:"authenticateByDefault,omitempty"`
	Config                    *map[string]string `json:"config,omitempty"`
	DisplayName               *string            `json:"displayName,omitempty"`
	Enabled                   *bool              `json:"enabled,omitempty"`
	FirstBrokerLoginFlowAlias *string            `json:"firstBrokerLoginFlowAlias,omitempty"`
	HideOnLogin               *bool              `json:"hideOnLogin,omitempty"`
	InternalID                *string            `json:"internalId,omitempty"`
	LinkOnly                  *bool              `json:"linkOnly,omitempty"`
	OrganizationID            *string            `json:"organizationId,omitempty"`
	PostBrokerLoginFlowAlias  *string            `json:"postBrokerLoginFlowAlias,omitempty"`
	ProviderID                *string            `json:"providerId,omitempty"`
	StoreToken                *bool              `json:"storeToken,omitempty"`
	TrustEmail                *bool              `json:"trustEmail,omitempty"`
	Types                     *[]string          `json:"types,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UpdateProfileFirstLogin *bool `json:"updateProfileFirstLogin,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UpdateProfileFirstLoginMode *string `json:"updateProfileFirstLoginMode,omitempty"`
}

IdentityProviderRepresentation defines model for IdentityProviderRepresentation.

type InviteUserRequest

type InviteUserRequest struct {
	Email     string
	FirstName string
	LastName  string
}

InviteUserRequest is the payload for InviteUser. Email is required; the name fields are used when Keycloak sends a registration link to a new user.

type IssuedVerifiableCredentialRepresentation

type IssuedVerifiableCredentialRepresentation struct {
	ClientBaseURL  *string `json:"clientBaseUrl,omitempty"`
	ClientID       *string `json:"clientId,omitempty"`
	ClientName     *string `json:"clientName,omitempty"`
	CredentialType *string `json:"credentialType,omitempty"`
	ExpiresAt      *int64  `json:"expiresAt,omitempty"`
	ID             *string `json:"id,omitempty"`
	IssuedAt       *int64  `json:"issuedAt,omitempty"`
	Revision       *string `json:"revision,omitempty"`
	UserID         *string `json:"userId,omitempty"`
}

IssuedVerifiableCredentialRepresentation defines model for IssuedVerifiableCredentialRepresentation.

type KeyMetadataRepresentation

type KeyMetadataRepresentation struct {
	Algorithm        *string `json:"algorithm,omitempty"`
	Certificate      *string `json:"certificate,omitempty"`
	Kid              *string `json:"kid,omitempty"`
	ProviderID       *string `json:"providerId,omitempty"`
	ProviderPriority *int64  `json:"providerPriority,omitempty"`
	PublicKey        *string `json:"publicKey,omitempty"`
	Status           *string `json:"status,omitempty"`
	Type             *string `json:"type,omitempty"`
	Use              *KeyUse `json:"use,omitempty"`
	ValidTo          *int64  `json:"validTo,omitempty"`
}

KeyMetadataRepresentation defines model for KeyMetadataRepresentation.

type KeyStoreConfig

type KeyStoreConfig struct {
	Format           *string `json:"format,omitempty"`
	KeyAlias         *string `json:"keyAlias,omitempty"`
	KeyPassword      *string `json:"keyPassword,omitempty"`
	KeySize          *int32  `json:"keySize,omitempty"`
	RealmAlias       *string `json:"realmAlias,omitempty"`
	RealmCertificate *bool   `json:"realmCertificate,omitempty"`
	StorePassword    *string `json:"storePassword,omitempty"`
	Validity         *int32  `json:"validity,omitempty"`
}

KeyStoreConfig defines model for KeyStoreConfig.

type KeyUse

type KeyUse string

KeyUse defines model for KeyUse.

const (
	ENC     KeyUse = "ENC"
	JWTSVID KeyUse = "JWT_SVID"
	SIG     KeyUse = "SIG"
)

Defines values for KeyUse.

func (KeyUse) Valid

func (e KeyUse) Valid() bool

Valid indicates whether the value is a known member of the KeyUse enum.

type KeysMetadataRepresentation

type KeysMetadataRepresentation struct {
	Active *map[string]string           `json:"active,omitempty"`
	Keys   *[]KeyMetadataRepresentation `json:"keys,omitempty"`
}

KeysMetadataRepresentation defines model for KeysMetadataRepresentation.

type ListMembersOptions

type ListMembersOptions struct {
	// Search matches a member's username, email, first name, or last name.
	Search string
	// Exact requires Search to match exactly.
	Exact bool
	// MembershipType filters by membership type (e.g. "MANAGED", "UNMANAGED").
	MembershipType string
	// First is the pagination offset.
	First int
	// Max is the maximum number of results.
	Max int
}

ListMembersOptions filters ListMembers. Zero-value fields are omitted.

type ListOrganizationsOptions

type ListOrganizationsOptions struct {
	// Search matches an organization name or domain.
	Search string
	// Exact requires Search to match exactly.
	Exact bool
	// First is the pagination offset.
	First int
	// Max is the maximum number of results.
	Max int
}

ListOrganizationsOptions filters ListOrganizations. Zero-value fields are omitted, letting Keycloak apply its defaults.

type ListUsersOptions

type ListUsersOptions struct {
	// Search matches username, first/last name, or email.
	Search string
	// Username, Email exactly or partially match those fields.
	Username string
	Email    string
	// Exact requires the field filters to match exactly.
	Exact bool
	// First is the pagination offset.
	First int
	// Max is the maximum number of results.
	Max int
}

ListUsersOptions filters ListUsers. Zero-value fields are omitted, letting Keycloak apply its defaults.

type Logic

type Logic string

Logic defines model for Logic.

const (
	NEGATIVE Logic = "NEGATIVE"
	POSITIVE Logic = "POSITIVE"
)

Defines values for Logic.

func (Logic) Valid

func (e Logic) Valid() bool

Valid indicates whether the value is a known member of the Logic enum.

type ManagementPermissionReference

type ManagementPermissionReference struct {
	Enabled          *bool              `json:"enabled,omitempty"`
	Resource         *string            `json:"resource,omitempty"`
	ScopePermissions *map[string]string `json:"scopePermissions,omitempty"`
}

ManagementPermissionReference defines model for ManagementPermissionReference.

type MappingsRepresentation

type MappingsRepresentation struct {
	ClientMappings *map[string]ClientMappingsRepresentation `json:"clientMappings,omitempty"`
	RealmMappings  *[]RoleRepresentation                    `json:"realmMappings,omitempty"`
}

MappingsRepresentation defines model for MappingsRepresentation.

type MemberRepresentation

type MemberRepresentation struct {
	Access *map[string]bool `json:"access,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ApplicationRoles            *map[string][]string                        `json:"applicationRoles,omitempty"`
	Attributes                  *map[string][]string                        `json:"attributes,omitempty"`
	ClientConsents              *[]UserConsentRepresentation                `json:"clientConsents,omitempty"`
	ClientRoles                 *map[string][]string                        `json:"clientRoles,omitempty"`
	CreatedTimestamp            *int64                                      `json:"createdTimestamp,omitempty"`
	Credentials                 *[]CredentialRepresentation                 `json:"credentials,omitempty"`
	DisableableCredentialTypes  *[]string                                   `json:"disableableCredentialTypes,omitempty"`
	Email                       *string                                     `json:"email,omitempty"`
	EmailVerified               *bool                                       `json:"emailVerified,omitempty"`
	Enabled                     *bool                                       `json:"enabled,omitempty"`
	FederatedIdentities         *[]FederatedIdentityRepresentation          `json:"federatedIdentities,omitempty"`
	FederationLink              *string                                     `json:"federationLink,omitempty"`
	FirstName                   *string                                     `json:"firstName,omitempty"`
	Groups                      *[]string                                   `json:"groups,omitempty"`
	ID                          *string                                     `json:"id,omitempty"`
	IssuedVerifiableCredentials *[]IssuedVerifiableCredentialRepresentation `json:"issuedVerifiableCredentials,omitempty"`
	LastName                    *string                                     `json:"lastName,omitempty"`
	MembershipType              *MembershipType                             `json:"membershipType,omitempty"`
	NotBefore                   *int32                                      `json:"notBefore,omitempty"`
	Origin                      *string                                     `json:"origin,omitempty"`
	RealmRoles                  *[]string                                   `json:"realmRoles,omitempty"`
	RequiredActions             *[]string                                   `json:"requiredActions,omitempty"`
	Self                        *string                                     `json:"self,omitempty"`
	ServiceAccountClientID      *string                                     `json:"serviceAccountClientId,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	SocialLinks           *[]SocialLinkRepresentation               `json:"socialLinks,omitempty"`
	Totp                  *bool                                     `json:"totp,omitempty"`
	UserProfileMetadata   *UserProfileMetadata                      `json:"userProfileMetadata,omitempty"`
	Username              *string                                   `json:"username,omitempty"`
	VerifiableCredentials *[]UserVerifiableCredentialRepresentation `json:"verifiableCredentials,omitempty"`
}

MemberRepresentation defines model for MemberRepresentation.

type MembershipType

type MembershipType string

MembershipType defines model for MembershipType.

const (
	MANAGED   MembershipType = "MANAGED"
	UNMANAGED MembershipType = "UNMANAGED"
)

Defines values for MembershipType.

func (MembershipType) Valid

func (e MembershipType) Valid() bool

Valid indicates whether the value is a known member of the MembershipType enum.

type MultivaluedHashMapStringComponentExportRepresentation

type MultivaluedHashMapStringComponentExportRepresentation map[string][]ComponentExportRepresentation

MultivaluedHashMapStringComponentExportRepresentation defines model for MultivaluedHashMapStringComponentExportRepresentation.

type MultivaluedHashMapStringString

type MultivaluedHashMapStringString map[string][]string

MultivaluedHashMapStringString defines model for MultivaluedHashMapStringString.

type OAuthClientRepresentation

type OAuthClientRepresentation struct {
	Access                             *map[string]bool              `json:"access,omitempty"`
	AdminURL                           *string                       `json:"adminUrl,omitempty"`
	AlwaysDisplayInConsole             *bool                         `json:"alwaysDisplayInConsole,omitempty"`
	Attributes                         *map[string]string            `json:"attributes,omitempty"`
	AuthenticationFlowBindingOverrides *map[string]string            `json:"authenticationFlowBindingOverrides,omitempty"`
	AuthorizationServicesEnabled       *bool                         `json:"authorizationServicesEnabled,omitempty"`
	AuthorizationSettings              *ResourceServerRepresentation `json:"authorizationSettings,omitempty"`
	BaseURL                            *string                       `json:"baseUrl,omitempty"`
	BearerOnly                         *bool                         `json:"bearerOnly,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Claims                  *ClaimRepresentation `json:"claims,omitempty"`
	ClientAuthenticatorType *string              `json:"clientAuthenticatorType,omitempty"`
	ClientID                *string              `json:"clientId,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ClientTemplate      *string   `json:"clientTemplate,omitempty"`
	ConsentRequired     *bool     `json:"consentRequired,omitempty"`
	DefaultClientScopes *[]string `json:"defaultClientScopes,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DefaultRoles              *[]string `json:"defaultRoles,omitempty"`
	Description               *string   `json:"description,omitempty"`
	DirectAccessGrantsEnabled *bool     `json:"directAccessGrantsEnabled,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DirectGrantsOnly          *bool                           `json:"directGrantsOnly,omitempty"`
	Enabled                   *bool                           `json:"enabled,omitempty"`
	FrontchannelLogout        *bool                           `json:"frontchannelLogout,omitempty"`
	FullScopeAllowed          *bool                           `json:"fullScopeAllowed,omitempty"`
	ID                        *string                         `json:"id,omitempty"`
	ImplicitFlowEnabled       *bool                           `json:"implicitFlowEnabled,omitempty"`
	Name                      *string                         `json:"name,omitempty"`
	NodeReRegistrationTimeout *int32                          `json:"nodeReRegistrationTimeout,omitempty"`
	NotBefore                 *int32                          `json:"notBefore,omitempty"`
	OptionalClientScopes      *[]string                       `json:"optionalClientScopes,omitempty"`
	Origin                    *string                         `json:"origin,omitempty"`
	Protocol                  *string                         `json:"protocol,omitempty"`
	ProtocolMappers           *[]ProtocolMapperRepresentation `json:"protocolMappers,omitempty"`
	PublicClient              *bool                           `json:"publicClient,omitempty"`
	RedirectUris              *[]string                       `json:"redirectUris,omitempty"`
	RegisteredNodes           *map[string]int32               `json:"registeredNodes,omitempty"`
	RegistrationAccessToken   *string                         `json:"registrationAccessToken,omitempty"`
	RootURL                   *string                         `json:"rootUrl,omitempty"`
	Secret                    *string                         `json:"secret,omitempty"`
	ServiceAccountsEnabled    *bool                           `json:"serviceAccountsEnabled,omitempty"`
	StandardFlowEnabled       *bool                           `json:"standardFlowEnabled,omitempty"`
	SurrogateAuthRequired     *bool                           `json:"surrogateAuthRequired,omitempty"`
	Type                      *string                         `json:"type,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateConfig *bool `json:"useTemplateConfig,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateMappers *bool `json:"useTemplateMappers,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UseTemplateScope *bool     `json:"useTemplateScope,omitempty"`
	WebOrigins       *[]string `json:"webOrigins,omitempty"`
}

OAuthClientRepresentation defines model for OAuthClientRepresentation.

type Organization

type Organization struct {
	ID          string               `json:"id,omitempty"`
	Name        string               `json:"name,omitempty"`
	Alias       string               `json:"alias,omitempty"`
	Enabled     bool                 `json:"enabled,omitempty"`
	Description string               `json:"description,omitempty"`
	RedirectURL string               `json:"redirectUrl,omitempty"`
	Attributes  map[string][]string  `json:"attributes,omitempty"`
	Domains     []OrganizationDomain `json:"domains,omitempty"`
}

Organization is a typed view of a Keycloak organization (OrganizationRepresentation). It is decoupled from the generated model so the facade presents a stable, ergonomic surface.

type OrganizationDomain

type OrganizationDomain struct {
	Name     string `json:"name,omitempty"`
	Verified bool   `json:"verified,omitempty"`
}

OrganizationDomain is a verified or unverified domain owned by an organization.

type OrganizationDomainRepresentation

type OrganizationDomainRepresentation struct {
	Name     *string `json:"name,omitempty"`
	Verified *bool   `json:"verified,omitempty"`
}

OrganizationDomainRepresentation defines model for OrganizationDomainRepresentation.

type OrganizationInvitationRepresentation

type OrganizationInvitationRepresentation struct {
	Email          *string `json:"email,omitempty"`
	ExpiresAt      *int32  `json:"expiresAt,omitempty"`
	FirstName      *string `json:"firstName,omitempty"`
	ID             *string `json:"id,omitempty"`
	InviteLink     *string `json:"inviteLink,omitempty"`
	LastName       *string `json:"lastName,omitempty"`
	OrganizationID *string `json:"organizationId,omitempty"`
	SentDate       *int32  `json:"sentDate,omitempty"`
	Status         *Status `json:"status,omitempty"`
}

OrganizationInvitationRepresentation defines model for OrganizationInvitationRepresentation.

type OrganizationMember

type OrganizationMember struct {
	ID             string `json:"id,omitempty"`
	Username       string `json:"username,omitempty"`
	Email          string `json:"email,omitempty"`
	FirstName      string `json:"firstName,omitempty"`
	LastName       string `json:"lastName,omitempty"`
	Enabled        bool   `json:"enabled,omitempty"`
	MembershipType string `json:"membershipType,omitempty"`
}

OrganizationMember is a typed view of an organization member (MemberRepresentation) with the fields consumers commonly need.

type OrganizationRepresentation

type OrganizationRepresentation struct {
	Alias             *string                             `json:"alias,omitempty"`
	Attributes        *map[string][]string                `json:"attributes,omitempty"`
	Description       *string                             `json:"description,omitempty"`
	Domains           *[]OrganizationDomainRepresentation `json:"domains,omitempty"`
	Enabled           *bool                               `json:"enabled,omitempty"`
	Groups            *[]GroupRepresentation              `json:"groups,omitempty"`
	ID                *string                             `json:"id,omitempty"`
	IdentityProviders *[]IdentityProviderRepresentation   `json:"identityProviders,omitempty"`
	Members           *[]MemberRepresentation             `json:"members,omitempty"`
	Name              *string                             `json:"name,omitempty"`
	RedirectURL       *string                             `json:"redirectUrl,omitempty"`
}

OrganizationRepresentation defines model for OrganizationRepresentation.

type Permission

type Permission struct {
	Claims *map[string][]string `json:"claims,omitempty"`
	Rsid   *string              `json:"rsid,omitempty"`
	Rsname *string              `json:"rsname,omitempty"`
	Scopes *[]string            `json:"scopes,omitempty"`
}

Permission defines model for Permission.

type PolicyEnforcementMode

type PolicyEnforcementMode string

PolicyEnforcementMode defines model for PolicyEnforcementMode.

const (
	DISABLED   PolicyEnforcementMode = "DISABLED"
	ENFORCING  PolicyEnforcementMode = "ENFORCING"
	PERMISSIVE PolicyEnforcementMode = "PERMISSIVE"
)

Defines values for PolicyEnforcementMode.

func (PolicyEnforcementMode) Valid

func (e PolicyEnforcementMode) Valid() bool

Valid indicates whether the value is a known member of the PolicyEnforcementMode enum.

type PolicyEvaluationRequest

type PolicyEvaluationRequest struct {
	ClientID     *string                       `json:"clientId,omitempty"`
	Context      *map[string]map[string]string `json:"context,omitempty"`
	Entitlements *bool                         `json:"entitlements,omitempty"`
	ResourceType *string                       `json:"resourceType,omitempty"`
	Resources    *[]ResourceRepresentation     `json:"resources,omitempty"`
	RoleIds      *[]string                     `json:"roleIds,omitempty"`
	UserID       *string                       `json:"userId,omitempty"`
}

PolicyEvaluationRequest defines model for PolicyEvaluationRequest.

type PolicyEvaluationResponse

type PolicyEvaluationResponse struct {
	Entitlements *bool                             `json:"entitlements,omitempty"`
	Results      *[]EvaluationResultRepresentation `json:"results,omitempty"`
	Rpt          *AccessToken                      `json:"rpt,omitempty"`
	Status       *DecisionEffect                   `json:"status,omitempty"`
}

PolicyEvaluationResponse defines model for PolicyEvaluationResponse.

type PolicyProviderRepresentation

type PolicyProviderRepresentation struct {
	Code        *string `json:"code,omitempty"`
	Description *string `json:"description,omitempty"`
	Group       *string `json:"group,omitempty"`
	Name        *string `json:"name,omitempty"`
	Type        *string `json:"type,omitempty"`
}

PolicyProviderRepresentation defines model for PolicyProviderRepresentation.

type PolicyRepresentation

type PolicyRepresentation struct {
	Config           *map[string]string        `json:"config,omitempty"`
	DecisionStrategy *DecisionStrategy         `json:"decisionStrategy,omitempty"`
	Description      *string                   `json:"description,omitempty"`
	ID               *string                   `json:"id,omitempty"`
	Logic            *Logic                    `json:"logic,omitempty"`
	Name             *string                   `json:"name,omitempty"`
	Owner            *string                   `json:"owner,omitempty"`
	Policies         *[]string                 `json:"policies,omitempty"`
	ResourceType     *string                   `json:"resourceType,omitempty"`
	Resources        *[]string                 `json:"resources,omitempty"`
	ResourcesData    *[]ResourceRepresentation `json:"resourcesData,omitempty"`
	Scopes           *[]string                 `json:"scopes,omitempty"`
	ScopesData       *[]ScopeRepresentation    `json:"scopesData,omitempty"`
	Type             *string                   `json:"type,omitempty"`
}

PolicyRepresentation defines model for PolicyRepresentation.

type PolicyResultRepresentation

type PolicyResultRepresentation struct {
	AssociatedPolicies *[]PolicyResultRepresentation `json:"associatedPolicies,omitempty"`
	Policy             *PolicyRepresentation         `json:"policy,omitempty"`
	ResourceType       *string                       `json:"resourceType,omitempty"`
	Scopes             *[]string                     `json:"scopes,omitempty"`
	Status             *DecisionEffect               `json:"status,omitempty"`
}

PolicyResultRepresentation defines model for PolicyResultRepresentation.

type PostAdminRealmsJSONBody

type PostAdminRealmsJSONBody = openapi_types.File

PostAdminRealmsJSONBody defines parameters for PostAdminRealms.

type PostAdminRealmsJSONRequestBody

type PostAdminRealmsJSONRequestBody = PostAdminRealmsJSONBody

PostAdminRealmsJSONRequestBody defines body for PostAdminRealms for application/json ContentType.

type PostAdminRealmsRealmAuthenticationConfigJSONRequestBody

type PostAdminRealmsRealmAuthenticationConfigJSONRequestBody = AuthenticatorConfigRepresentation

PostAdminRealmsRealmAuthenticationConfigJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationConfig for application/json ContentType.

type PostAdminRealmsRealmAuthenticationConfigResponse

type PostAdminRealmsRealmAuthenticationConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationConfigResponse

func ParsePostAdminRealmsRealmAuthenticationConfigResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)

ParsePostAdminRealmsRealmAuthenticationConfigResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationConfigWithResponse call

func (PostAdminRealmsRealmAuthenticationConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationConfigResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody = AuthenticatorConfigRepresentation

PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig for application/json ContentType.

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse

func ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)

ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithResponse call

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse

func ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse, error)

ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse call

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse

type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse

func ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse, error)

ParsePostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse call

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody

type PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody = AuthenticationExecutionRepresentation

PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationExecutions for application/json ContentType.

type PostAdminRealmsRealmAuthenticationExecutionsResponse

type PostAdminRealmsRealmAuthenticationExecutionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationExecutionsResponse

func ParsePostAdminRealmsRealmAuthenticationExecutionsResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)

ParsePostAdminRealmsRealmAuthenticationExecutionsResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationExecutionsWithResponse call

func (PostAdminRealmsRealmAuthenticationExecutionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationExecutionsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationExecutionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONBody

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONBody map[string]string

PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONBody defines parameters for PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy.

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONBody

PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy for application/json ContentType.

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse

func ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)

ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithResponse call

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONBody

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONBody map[string]interface{}

PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONBody defines parameters for PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution.

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONBody

PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution for application/json ContentType.

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse

func ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, error)

ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithResponse call

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONBody

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONBody map[string]interface{}

PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONBody defines parameters for PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow.

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONBody

PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow for application/json ContentType.

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse

type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse

func ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)

ParsePostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithResponse call

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody

type PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody = AuthenticationFlowRepresentation

PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationFlows for application/json ContentType.

type PostAdminRealmsRealmAuthenticationFlowsResponse

type PostAdminRealmsRealmAuthenticationFlowsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationFlowsResponse

func ParsePostAdminRealmsRealmAuthenticationFlowsResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)

ParsePostAdminRealmsRealmAuthenticationFlowsResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationFlowsWithResponse call

func (PostAdminRealmsRealmAuthenticationFlowsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationFlowsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationFlowsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONBody

type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONBody map[string]string

PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONBody defines parameters for PostAdminRealmsRealmAuthenticationRegisterRequiredAction.

type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody

type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONBody

PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody defines body for PostAdminRealmsRealmAuthenticationRegisterRequiredAction for application/json ContentType.

type PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse

type PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse

func ParsePostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)

ParsePostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithResponse call

func (PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse

type PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse

func ParsePostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse, error)

ParsePostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse call

func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse

type PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse

func ParsePostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse(rsp *http.Response) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse, error)

ParsePostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse parses an HTTP response from a PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse call

func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientDescriptionConverterJSONBody

type PostAdminRealmsRealmClientDescriptionConverterJSONBody = string

PostAdminRealmsRealmClientDescriptionConverterJSONBody defines parameters for PostAdminRealmsRealmClientDescriptionConverter.

type PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody

type PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody = PostAdminRealmsRealmClientDescriptionConverterJSONBody

PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody defines body for PostAdminRealmsRealmClientDescriptionConverter for application/json ContentType.

type PostAdminRealmsRealmClientDescriptionConverterResponse

type PostAdminRealmsRealmClientDescriptionConverterResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientRepresentation
}

func ParsePostAdminRealmsRealmClientDescriptionConverterResponse

func ParsePostAdminRealmsRealmClientDescriptionConverterResponse(rsp *http.Response) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)

ParsePostAdminRealmsRealmClientDescriptionConverterResponse parses an HTTP response from a PostAdminRealmsRealmClientDescriptionConverterWithResponse call

func (PostAdminRealmsRealmClientDescriptionConverterResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientDescriptionConverterResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientDescriptionConverterResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientDescriptionConverterTextBody

type PostAdminRealmsRealmClientDescriptionConverterTextBody = string

PostAdminRealmsRealmClientDescriptionConverterTextBody defines parameters for PostAdminRealmsRealmClientDescriptionConverter.

type PostAdminRealmsRealmClientDescriptionConverterTextRequestBody

type PostAdminRealmsRealmClientDescriptionConverterTextRequestBody = PostAdminRealmsRealmClientDescriptionConverterTextBody

PostAdminRealmsRealmClientDescriptionConverterTextRequestBody defines body for PostAdminRealmsRealmClientDescriptionConverter for text/plain ContentType.

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONBody

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONBody = []ProtocolMapperRepresentation

PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONBody defines parameters for PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels.

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody = PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONBody

PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody defines body for PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels for application/json ContentType.

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse

func ParsePostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, error)

ParsePostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse parses an HTTP response from a PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithResponse call

func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody = ProtocolMapperRepresentation

PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody defines body for PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels for application/json ContentType.

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse

type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse

func ParsePostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)

ParsePostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse parses an HTTP response from a PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse call

func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody defines parameters for PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient.

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody = PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody

PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody defines body for PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient for application/json ContentType.

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse

func ParsePostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse(rsp *http.Response) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)

ParsePostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse parses an HTTP response from a PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse call

func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody defines parameters for PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm.

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody = PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody

PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody defines body for PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm for application/json ContentType.

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse

func ParsePostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse(rsp *http.Response) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)

ParsePostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse parses an HTTP response from a PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse call

func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientScopesJSONRequestBody

type PostAdminRealmsRealmClientScopesJSONRequestBody = ClientScopeRepresentation

PostAdminRealmsRealmClientScopesJSONRequestBody defines body for PostAdminRealmsRealmClientScopes for application/json ContentType.

type PostAdminRealmsRealmClientScopesResponse

type PostAdminRealmsRealmClientScopesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientScopesResponse

func ParsePostAdminRealmsRealmClientScopesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientScopesResponse, error)

ParsePostAdminRealmsRealmClientScopesResponse parses an HTTP response from a PostAdminRealmsRealmClientScopesWithResponse call

func (PostAdminRealmsRealmClientScopesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientScopesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientScopesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONBody = []ProtocolMapperRepresentation

PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONBody defines parameters for PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels.

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody = PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONBody

PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody defines body for PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels for application/json ContentType.

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse, error)

ParsePostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse parses an HTTP response from a PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithResponse call

func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody = ProtocolMapperRepresentation

PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody defines body for PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels for application/json ContentType.

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse

type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)

ParsePostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse parses an HTTP response from a PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse call

func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody defines parameters for PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient.

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody = PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody

PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody defines body for PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient for application/json ContentType.

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse(rsp *http.Response) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)

ParsePostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse parses an HTTP response from a PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse call

func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody defines parameters for PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm.

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody = PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody

PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody defines body for PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm for application/json ContentType.

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse

func ParsePostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse(rsp *http.Response) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)

ParsePostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse parses an HTTP response from a PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse call

func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientTemplatesJSONRequestBody

type PostAdminRealmsRealmClientTemplatesJSONRequestBody = ClientScopeRepresentation

PostAdminRealmsRealmClientTemplatesJSONRequestBody defines body for PostAdminRealmsRealmClientTemplates for application/json ContentType.

type PostAdminRealmsRealmClientTemplatesResponse

type PostAdminRealmsRealmClientTemplatesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientTemplatesResponse

func ParsePostAdminRealmsRealmClientTemplatesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientTemplatesResponse, error)

ParsePostAdminRealmsRealmClientTemplatesResponse parses an HTTP response from a PostAdminRealmsRealmClientTemplatesWithResponse call

func (PostAdminRealmsRealmClientTemplatesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientTemplatesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientTemplatesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody = ResourceServerRepresentation

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody = PolicyEvaluationRequest

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PolicyEvaluationResponse
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONBody = string

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody = PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONBody

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody = PolicyEvaluationRequest

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PolicyEvaluationResponse
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONBody = string

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody = PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONBody

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody = ResourceRepresentation

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams defines parameters for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ResourceRepresentation
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody = ScopeRepresentation

PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse

type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse

func ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody = KeyStoreConfig

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody = KeyStoreConfig

PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CertificateRepresentation
}

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CertificateRepresentation
}

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse

type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CertificateRepresentation
}

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse

func ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDClientSecretResponse

type PostAdminRealmsRealmClientsClientUUIDClientSecretResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CredentialRepresentation
}

func ParsePostAdminRealmsRealmClientsClientUUIDClientSecretResponse

func ParsePostAdminRealmsRealmClientsClientUUIDClientSecretResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDClientSecretResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDNodesJSONBody

type PostAdminRealmsRealmClientsClientUUIDNodesJSONBody map[string]string

PostAdminRealmsRealmClientsClientUUIDNodesJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDNodes.

type PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody PostAdminRealmsRealmClientsClientUUIDNodesJSONBody

PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDNodes for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDNodesResponse

type PostAdminRealmsRealmClientsClientUUIDNodesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDNodesResponse

func ParsePostAdminRealmsRealmClientsClientUUIDNodesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDNodesResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDNodesWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDNodesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDNodesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDNodesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONBody

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONBody = []ProtocolMapperRepresentation

PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels.

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody = PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONBody

PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse

func ParsePostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody = ProtocolMapperRepresentation

PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse

type PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse

func ParsePostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse

type PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRequestResult
}

func ParsePostAdminRealmsRealmClientsClientUUIDPushRevocationResponse

func ParsePostAdminRealmsRealmClientsClientUUIDPushRevocationResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDPushRevocationResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse

type PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ClientRepresentation
}

func ParsePostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse

func ParsePostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody = RoleRepresentation

PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDRoles for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDRolesResponse

type PostAdminRealmsRealmClientsClientUUIDRolesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDRolesResponse

func ParsePostAdminRealmsRealmClientsClientUUIDRolesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDRolesResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDRolesWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDRolesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDRolesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDRolesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody

type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites.

type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody = PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody

PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse

func ParsePostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient.

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody = PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody

PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse

func ParsePostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody = []RoleRepresentation

PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody defines parameters for PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm.

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody = PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody

PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody defines body for PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm for application/json ContentType.

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse

func ParsePostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)

ParsePostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse parses an HTTP response from a PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse call

func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsInitialAccessJSONRequestBody

type PostAdminRealmsRealmClientsInitialAccessJSONRequestBody = ClientInitialAccessCreatePresentation

PostAdminRealmsRealmClientsInitialAccessJSONRequestBody defines body for PostAdminRealmsRealmClientsInitialAccess for application/json ContentType.

type PostAdminRealmsRealmClientsInitialAccessResponse

type PostAdminRealmsRealmClientsInitialAccessResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ClientInitialAccessCreatePresentation
}

func ParsePostAdminRealmsRealmClientsInitialAccessResponse

func ParsePostAdminRealmsRealmClientsInitialAccessResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)

ParsePostAdminRealmsRealmClientsInitialAccessResponse parses an HTTP response from a PostAdminRealmsRealmClientsInitialAccessWithResponse call

func (PostAdminRealmsRealmClientsInitialAccessResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsInitialAccessResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsInitialAccessResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmClientsJSONRequestBody

type PostAdminRealmsRealmClientsJSONRequestBody = ClientRepresentation

PostAdminRealmsRealmClientsJSONRequestBody defines body for PostAdminRealmsRealmClients for application/json ContentType.

type PostAdminRealmsRealmClientsResponse

type PostAdminRealmsRealmClientsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmClientsResponse

func ParsePostAdminRealmsRealmClientsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsResponse, error)

ParsePostAdminRealmsRealmClientsResponse parses an HTTP response from a PostAdminRealmsRealmClientsWithResponse call

func (PostAdminRealmsRealmClientsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmClientsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmClientsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmComponentsJSONRequestBody

type PostAdminRealmsRealmComponentsJSONRequestBody = ComponentRepresentation

PostAdminRealmsRealmComponentsJSONRequestBody defines body for PostAdminRealmsRealmComponents for application/json ContentType.

type PostAdminRealmsRealmComponentsResponse

type PostAdminRealmsRealmComponentsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmComponentsResponse

func ParsePostAdminRealmsRealmComponentsResponse(rsp *http.Response) (*PostAdminRealmsRealmComponentsResponse, error)

ParsePostAdminRealmsRealmComponentsResponse parses an HTTP response from a PostAdminRealmsRealmComponentsWithResponse call

func (PostAdminRealmsRealmComponentsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmComponentsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmComponentsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody

type PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody = GroupRepresentation

PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody defines body for PostAdminRealmsRealmGroupsGroupIDChildren for application/json ContentType.

type PostAdminRealmsRealmGroupsGroupIDChildrenResponse

type PostAdminRealmsRealmGroupsGroupIDChildrenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmGroupsGroupIDChildrenResponse

func ParsePostAdminRealmsRealmGroupsGroupIDChildrenResponse(rsp *http.Response) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)

ParsePostAdminRealmsRealmGroupsGroupIDChildrenResponse parses an HTTP response from a PostAdminRealmsRealmGroupsGroupIDChildrenWithResponse call

func (PostAdminRealmsRealmGroupsGroupIDChildrenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmGroupsGroupIDChildrenResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmGroupsGroupIDChildrenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody = []RoleRepresentation

PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody defines parameters for PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID.

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody = PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody

PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody defines body for PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID for application/json ContentType.

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse

func ParsePostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

ParsePostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse parses an HTTP response from a PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse call

func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody = []RoleRepresentation

PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody defines parameters for PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm.

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody = PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody

PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody defines body for PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm for application/json ContentType.

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse

func ParsePostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse(rsp *http.Response) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)

ParsePostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse parses an HTTP response from a PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse call

func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmGroupsJSONRequestBody

type PostAdminRealmsRealmGroupsJSONRequestBody = GroupRepresentation

PostAdminRealmsRealmGroupsJSONRequestBody defines body for PostAdminRealmsRealmGroups for application/json ContentType.

type PostAdminRealmsRealmGroupsResponse

type PostAdminRealmsRealmGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmGroupsResponse

func ParsePostAdminRealmsRealmGroupsResponse(rsp *http.Response) (*PostAdminRealmsRealmGroupsResponse, error)

ParsePostAdminRealmsRealmGroupsResponse parses an HTTP response from a PostAdminRealmsRealmGroupsWithResponse call

func (PostAdminRealmsRealmGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmGroupsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmGroupsResponse) StatusCode

func (r PostAdminRealmsRealmGroupsResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmIdentityProviderImportConfigJSONBody

type PostAdminRealmsRealmIdentityProviderImportConfigJSONBody map[string]interface{}

PostAdminRealmsRealmIdentityProviderImportConfigJSONBody defines parameters for PostAdminRealmsRealmIdentityProviderImportConfig.

type PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody

type PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody PostAdminRealmsRealmIdentityProviderImportConfigJSONBody

PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody defines body for PostAdminRealmsRealmIdentityProviderImportConfig for application/json ContentType.

type PostAdminRealmsRealmIdentityProviderImportConfigResponse

type PostAdminRealmsRealmIdentityProviderImportConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]string
}

func ParsePostAdminRealmsRealmIdentityProviderImportConfigResponse

func ParsePostAdminRealmsRealmIdentityProviderImportConfigResponse(rsp *http.Response) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)

ParsePostAdminRealmsRealmIdentityProviderImportConfigResponse parses an HTTP response from a PostAdminRealmsRealmIdentityProviderImportConfigWithResponse call

func (PostAdminRealmsRealmIdentityProviderImportConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmIdentityProviderImportConfigResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmIdentityProviderImportConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody

type PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody = IdentityProviderMapperRepresentation

PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody defines body for PostAdminRealmsRealmIdentityProviderInstancesAliasMappers for application/json ContentType.

type PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse

type PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse

func ParsePostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse(rsp *http.Response) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)

ParsePostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse parses an HTTP response from a PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse call

func (PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody

type PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody = IdentityProviderRepresentation

PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody defines body for PostAdminRealmsRealmIdentityProviderInstances for application/json ContentType.

type PostAdminRealmsRealmIdentityProviderInstancesResponse

type PostAdminRealmsRealmIdentityProviderInstancesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmIdentityProviderInstancesResponse

func ParsePostAdminRealmsRealmIdentityProviderInstancesResponse(rsp *http.Response) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)

ParsePostAdminRealmsRealmIdentityProviderInstancesResponse parses an HTTP response from a PostAdminRealmsRealmIdentityProviderInstancesWithResponse call

func (PostAdminRealmsRealmIdentityProviderInstancesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmIdentityProviderInstancesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmIdentityProviderInstancesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmIdentityProviderUploadCertificateResponse

type PostAdminRealmsRealmIdentityProviderUploadCertificateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CertificateRepresentation
}

func ParsePostAdminRealmsRealmIdentityProviderUploadCertificateResponse

func ParsePostAdminRealmsRealmIdentityProviderUploadCertificateResponse(rsp *http.Response) (*PostAdminRealmsRealmIdentityProviderUploadCertificateResponse, error)

ParsePostAdminRealmsRealmIdentityProviderUploadCertificateResponse parses an HTTP response from a PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse call

func (PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmLocalizationLocaleJSONBody

type PostAdminRealmsRealmLocalizationLocaleJSONBody map[string]string

PostAdminRealmsRealmLocalizationLocaleJSONBody defines parameters for PostAdminRealmsRealmLocalizationLocale.

type PostAdminRealmsRealmLocalizationLocaleJSONRequestBody

type PostAdminRealmsRealmLocalizationLocaleJSONRequestBody PostAdminRealmsRealmLocalizationLocaleJSONBody

PostAdminRealmsRealmLocalizationLocaleJSONRequestBody defines body for PostAdminRealmsRealmLocalizationLocale for application/json ContentType.

type PostAdminRealmsRealmLocalizationLocaleResponse

type PostAdminRealmsRealmLocalizationLocaleResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmLocalizationLocaleResponse

func ParsePostAdminRealmsRealmLocalizationLocaleResponse(rsp *http.Response) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)

ParsePostAdminRealmsRealmLocalizationLocaleResponse parses an HTTP response from a PostAdminRealmsRealmLocalizationLocaleWithResponse call

func (PostAdminRealmsRealmLocalizationLocaleResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmLocalizationLocaleResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmLocalizationLocaleResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmLogoutAllResponse

type PostAdminRealmsRealmLogoutAllResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRequestResult
}

func ParsePostAdminRealmsRealmLogoutAllResponse

func ParsePostAdminRealmsRealmLogoutAllResponse(rsp *http.Response) (*PostAdminRealmsRealmLogoutAllResponse, error)

ParsePostAdminRealmsRealmLogoutAllResponse parses an HTTP response from a PostAdminRealmsRealmLogoutAllWithResponse call

func (PostAdminRealmsRealmLogoutAllResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmLogoutAllResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmLogoutAllResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsJSONRequestBody

type PostAdminRealmsRealmOrganizationsJSONRequestBody = OrganizationRepresentation

PostAdminRealmsRealmOrganizationsJSONRequestBody defines body for PostAdminRealmsRealmOrganizations for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody = GroupRepresentation

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody = []RoleRepresentation

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody defines parameters for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody = PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody = []RoleRepresentation

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody defines parameters for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody = PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody

PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody = GroupRepresentation

PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDGroups for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse

type PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDGroupsResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONBody

type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONBody = string

PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONBody defines parameters for PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders.

type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody = PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONBody

PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse

type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse

type PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataBody

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataBody struct {
	ID *string `form:"id,omitempty" json:"id,omitempty"`
}

PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataBody defines parameters for PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUser.

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataBody

PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUser for application/x-www-form-urlencoded ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataBody

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataBody struct {
	Email     *string `form:"email,omitempty" json:"email,omitempty"`
	FirstName *string `form:"firstName,omitempty" json:"firstName,omitempty"`
	LastName  *string `form:"lastName,omitempty" json:"lastName,omitempty"`
}

PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataBody defines parameters for PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUser.

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataBody

PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUser for application/x-www-form-urlencoded ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse

type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsOrgIDMembersJSONBody

type PostAdminRealmsRealmOrganizationsOrgIDMembersJSONBody = string

PostAdminRealmsRealmOrganizationsOrgIDMembersJSONBody defines parameters for PostAdminRealmsRealmOrganizationsOrgIDMembers.

type PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody

type PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody = PostAdminRealmsRealmOrganizationsOrgIDMembersJSONBody

PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody defines body for PostAdminRealmsRealmOrganizationsOrgIDMembers for application/json ContentType.

type PostAdminRealmsRealmOrganizationsOrgIDMembersResponse

type PostAdminRealmsRealmOrganizationsOrgIDMembersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsOrgIDMembersResponse

func ParsePostAdminRealmsRealmOrganizationsOrgIDMembersResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)

ParsePostAdminRealmsRealmOrganizationsOrgIDMembersResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsOrgIDMembersWithResponse call

func (PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmOrganizationsResponse

type PostAdminRealmsRealmOrganizationsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmOrganizationsResponse

func ParsePostAdminRealmsRealmOrganizationsResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsResponse, error)

ParsePostAdminRealmsRealmOrganizationsResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsWithResponse call

func (PostAdminRealmsRealmOrganizationsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmOrganizationsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmOrganizationsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmPartialExportParams

type PostAdminRealmsRealmPartialExportParams struct {
	ExportClients        *bool `form:"exportClients,omitempty" json:"exportClients,omitempty"`
	ExportGroupsAndRoles *bool `form:"exportGroupsAndRoles,omitempty" json:"exportGroupsAndRoles,omitempty"`
}

PostAdminRealmsRealmPartialExportParams defines parameters for PostAdminRealmsRealmPartialExport.

type PostAdminRealmsRealmPartialExportResponse

type PostAdminRealmsRealmPartialExportResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RealmRepresentation
}

func ParsePostAdminRealmsRealmPartialExportResponse

func ParsePostAdminRealmsRealmPartialExportResponse(rsp *http.Response) (*PostAdminRealmsRealmPartialExportResponse, error)

ParsePostAdminRealmsRealmPartialExportResponse parses an HTTP response from a PostAdminRealmsRealmPartialExportWithResponse call

func (PostAdminRealmsRealmPartialExportResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmPartialExportResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmPartialExportResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmPartialImportJSONBody

type PostAdminRealmsRealmPartialImportJSONBody = openapi_types.File

PostAdminRealmsRealmPartialImportJSONBody defines parameters for PostAdminRealmsRealmPartialImport.

type PostAdminRealmsRealmPartialImportJSONRequestBody

type PostAdminRealmsRealmPartialImportJSONRequestBody = PostAdminRealmsRealmPartialImportJSONBody

PostAdminRealmsRealmPartialImportJSONRequestBody defines body for PostAdminRealmsRealmPartialImport for application/json ContentType.

type PostAdminRealmsRealmPartialImportResponse

type PostAdminRealmsRealmPartialImportResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
}

func ParsePostAdminRealmsRealmPartialImportResponse

func ParsePostAdminRealmsRealmPartialImportResponse(rsp *http.Response) (*PostAdminRealmsRealmPartialImportResponse, error)

ParsePostAdminRealmsRealmPartialImportResponse parses an HTTP response from a PostAdminRealmsRealmPartialImportWithResponse call

func (PostAdminRealmsRealmPartialImportResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmPartialImportResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmPartialImportResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmPushRevocationResponse

type PostAdminRealmsRealmPushRevocationResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRequestResult
}

func ParsePostAdminRealmsRealmPushRevocationResponse

func ParsePostAdminRealmsRealmPushRevocationResponse(rsp *http.Response) (*PostAdminRealmsRealmPushRevocationResponse, error)

ParsePostAdminRealmsRealmPushRevocationResponse parses an HTTP response from a PostAdminRealmsRealmPushRevocationWithResponse call

func (PostAdminRealmsRealmPushRevocationResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmPushRevocationResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmPushRevocationResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody

type PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody = []RoleRepresentation

PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody defines parameters for PostAdminRealmsRealmRolesByIDRoleIDComposites.

type PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody

type PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody = PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody

PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody defines body for PostAdminRealmsRealmRolesByIDRoleIDComposites for application/json ContentType.

type PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse

type PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmRolesByIDRoleIDCompositesResponse

func ParsePostAdminRealmsRealmRolesByIDRoleIDCompositesResponse(rsp *http.Response) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)

ParsePostAdminRealmsRealmRolesByIDRoleIDCompositesResponse parses an HTTP response from a PostAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse call

func (PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmRolesJSONRequestBody

type PostAdminRealmsRealmRolesJSONRequestBody = RoleRepresentation

PostAdminRealmsRealmRolesJSONRequestBody defines body for PostAdminRealmsRealmRoles for application/json ContentType.

type PostAdminRealmsRealmRolesResponse

type PostAdminRealmsRealmRolesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmRolesResponse

func ParsePostAdminRealmsRealmRolesResponse(rsp *http.Response) (*PostAdminRealmsRealmRolesResponse, error)

ParsePostAdminRealmsRealmRolesResponse parses an HTTP response from a PostAdminRealmsRealmRolesWithResponse call

func (PostAdminRealmsRealmRolesResponse) ContentType

func (r PostAdminRealmsRealmRolesResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmRolesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmRolesResponse) StatusCode

func (r PostAdminRealmsRealmRolesResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmRolesRoleNameCompositesJSONBody

type PostAdminRealmsRealmRolesRoleNameCompositesJSONBody = []RoleRepresentation

PostAdminRealmsRealmRolesRoleNameCompositesJSONBody defines parameters for PostAdminRealmsRealmRolesRoleNameComposites.

type PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody

type PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody = PostAdminRealmsRealmRolesRoleNameCompositesJSONBody

PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody defines body for PostAdminRealmsRealmRolesRoleNameComposites for application/json ContentType.

type PostAdminRealmsRealmRolesRoleNameCompositesResponse

type PostAdminRealmsRealmRolesRoleNameCompositesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmRolesRoleNameCompositesResponse

func ParsePostAdminRealmsRealmRolesRoleNameCompositesResponse(rsp *http.Response) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)

ParsePostAdminRealmsRealmRolesRoleNameCompositesResponse parses an HTTP response from a PostAdminRealmsRealmRolesRoleNameCompositesWithResponse call

func (PostAdminRealmsRealmRolesRoleNameCompositesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmRolesRoleNameCompositesResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmTestSMTPConnectionFormdataBody

type PostAdminRealmsRealmTestSMTPConnectionFormdataBody struct {
	Config *string `form:"config,omitempty" json:"config,omitempty"`
}

PostAdminRealmsRealmTestSMTPConnectionFormdataBody defines parameters for PostAdminRealmsRealmTestSMTPConnection.

type PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody

type PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody PostAdminRealmsRealmTestSMTPConnectionFormdataBody

PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody defines body for PostAdminRealmsRealmTestSMTPConnection for application/x-www-form-urlencoded ContentType.

type PostAdminRealmsRealmTestSMTPConnectionJSONBody

type PostAdminRealmsRealmTestSMTPConnectionJSONBody map[string]string

PostAdminRealmsRealmTestSMTPConnectionJSONBody defines parameters for PostAdminRealmsRealmTestSMTPConnection.

type PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody

type PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody PostAdminRealmsRealmTestSMTPConnectionJSONBody

PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody defines body for PostAdminRealmsRealmTestSMTPConnection for application/json ContentType.

type PostAdminRealmsRealmTestSMTPConnectionResponse

type PostAdminRealmsRealmTestSMTPConnectionResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmTestSMTPConnectionResponse

func ParsePostAdminRealmsRealmTestSMTPConnectionResponse(rsp *http.Response) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)

ParsePostAdminRealmsRealmTestSMTPConnectionResponse parses an HTTP response from a PostAdminRealmsRealmTestSMTPConnectionWithResponse call

func (PostAdminRealmsRealmTestSMTPConnectionResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmTestSMTPConnectionResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmTestSMTPConnectionResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersJSONRequestBody

type PostAdminRealmsRealmUsersJSONRequestBody = UserRepresentation

PostAdminRealmsRealmUsersJSONRequestBody defines body for PostAdminRealmsRealmUsers for application/json ContentType.

type PostAdminRealmsRealmUsersResponse

type PostAdminRealmsRealmUsersResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersResponse

func ParsePostAdminRealmsRealmUsersResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersResponse, error)

ParsePostAdminRealmsRealmUsersResponse parses an HTTP response from a PostAdminRealmsRealmUsersWithResponse call

func (PostAdminRealmsRealmUsersResponse) ContentType

func (r PostAdminRealmsRealmUsersResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersResponse) StatusCode

func (r PostAdminRealmsRealmUsersResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse

type PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse

func ParsePostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse, error)

ParsePostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse call

func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse

type PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse

func ParsePostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse, error)

ParsePostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse call

func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody

type PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody = FederatedIdentityRepresentation

PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody defines body for PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider for application/json ContentType.

type PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse

type PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse

func ParsePostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)

ParsePostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse call

func (PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDImpersonationResponse

type PostAdminRealmsRealmUsersUserIDImpersonationResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
	JSON400      *ErrorRepresentation
}

func ParsePostAdminRealmsRealmUsersUserIDImpersonationResponse

func ParsePostAdminRealmsRealmUsersUserIDImpersonationResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDImpersonationResponse, error)

ParsePostAdminRealmsRealmUsersUserIDImpersonationResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDImpersonationWithResponse call

func (PostAdminRealmsRealmUsersUserIDImpersonationResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDImpersonationResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDImpersonationResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDLogoutResponse

type PostAdminRealmsRealmUsersUserIDLogoutResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersUserIDLogoutResponse

func ParsePostAdminRealmsRealmUsersUserIDLogoutResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDLogoutResponse, error)

ParsePostAdminRealmsRealmUsersUserIDLogoutResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDLogoutWithResponse call

func (PostAdminRealmsRealmUsersUserIDLogoutResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDLogoutResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDLogoutResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody

type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody = []RoleRepresentation

PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody defines parameters for PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID.

type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody

type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody = PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody

PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody defines body for PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID for application/json ContentType.

type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse

func ParsePostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)

ParsePostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse call

func (PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody

type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody = []RoleRepresentation

PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody defines parameters for PostAdminRealmsRealmUsersUserIDRoleMappingsRealm.

type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody

type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody = PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody

PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody defines body for PostAdminRealmsRealmUsersUserIDRoleMappingsRealm for application/json ContentType.

type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse

func ParsePostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse(rsp *http.Response) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)

ParsePostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse parses an HTTP response from a PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse call

func (PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams

type PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams struct {
	// NotBefore Optional value representing the time to schedule the first workflow step. The value is either an integer representing the seconds from now, an integer followed by 'ms' representing milliseconds from now, or an ISO-8601 date string.
	NotBefore *string `form:"notBefore,omitempty" json:"notBefore,omitempty"`
}

PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams defines parameters for PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID.

type PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse

type PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse

func ParsePostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse(rsp *http.Response) (*PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse, error)

ParsePostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse parses an HTTP response from a PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse call

func (PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse

type PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse

func ParsePostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse(rsp *http.Response) (*PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse, error)

ParsePostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse parses an HTTP response from a PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse call

func (PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmWorkflowsJSONRequestBody

type PostAdminRealmsRealmWorkflowsJSONRequestBody = WorkflowRepresentation

PostAdminRealmsRealmWorkflowsJSONRequestBody defines body for PostAdminRealmsRealmWorkflows for application/json ContentType.

type PostAdminRealmsRealmWorkflowsMigrateParams

type PostAdminRealmsRealmWorkflowsMigrateParams struct {
	// From A String representing the id of the step to migrate from
	From *string `form:"from,omitempty" json:"from,omitempty"`

	// To A String representing the id of the step to migrate to
	To *string `form:"to,omitempty" json:"to,omitempty"`
}

PostAdminRealmsRealmWorkflowsMigrateParams defines parameters for PostAdminRealmsRealmWorkflowsMigrate.

type PostAdminRealmsRealmWorkflowsMigrateResponse

type PostAdminRealmsRealmWorkflowsMigrateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmWorkflowsMigrateResponse

func ParsePostAdminRealmsRealmWorkflowsMigrateResponse(rsp *http.Response) (*PostAdminRealmsRealmWorkflowsMigrateResponse, error)

ParsePostAdminRealmsRealmWorkflowsMigrateResponse parses an HTTP response from a PostAdminRealmsRealmWorkflowsMigrateWithResponse call

func (PostAdminRealmsRealmWorkflowsMigrateResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmWorkflowsMigrateResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmWorkflowsMigrateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsRealmWorkflowsResponse

type PostAdminRealmsRealmWorkflowsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsRealmWorkflowsResponse

func ParsePostAdminRealmsRealmWorkflowsResponse(rsp *http.Response) (*PostAdminRealmsRealmWorkflowsResponse, error)

ParsePostAdminRealmsRealmWorkflowsResponse parses an HTTP response from a PostAdminRealmsRealmWorkflowsWithResponse call

func (PostAdminRealmsRealmWorkflowsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsRealmWorkflowsResponse) Status

Status returns HTTPResponse.Status

func (PostAdminRealmsRealmWorkflowsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PostAdminRealmsResponse

type PostAdminRealmsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePostAdminRealmsResponse

func ParsePostAdminRealmsResponse(rsp *http.Response) (*PostAdminRealmsResponse, error)

ParsePostAdminRealmsResponse parses an HTTP response from a PostAdminRealmsWithResponse call

func (PostAdminRealmsResponse) ContentType

func (r PostAdminRealmsResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PostAdminRealmsResponse) Status

func (r PostAdminRealmsResponse) Status() string

Status returns HTTPResponse.Status

func (PostAdminRealmsResponse) StatusCode

func (r PostAdminRealmsResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type PropertyConfig

type PropertyConfig struct {
	Applicable *bool       `json:"applicable,omitempty"`
	Value      interface{} `json:"value,omitempty"`
}

PropertyConfig defines model for PropertyConfig.

type ProtocolMapperEvaluationRepresentation

type ProtocolMapperEvaluationRepresentation struct {
	ContainerID    *string `json:"containerId,omitempty"`
	ContainerName  *string `json:"containerName,omitempty"`
	ContainerType  *string `json:"containerType,omitempty"`
	MapperID       *string `json:"mapperId,omitempty"`
	MapperName     *string `json:"mapperName,omitempty"`
	ProtocolMapper *string `json:"protocolMapper,omitempty"`
}

ProtocolMapperEvaluationRepresentation defines model for ProtocolMapperEvaluationRepresentation.

type ProtocolMapperRepresentation

type ProtocolMapperRepresentation struct {
	Config *map[string]string `json:"config,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ConsentRequired *bool `json:"consentRequired,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ConsentText    *string `json:"consentText,omitempty"`
	ID             *string `json:"id,omitempty"`
	Name           *string `json:"name,omitempty"`
	Protocol       *string `json:"protocol,omitempty"`
	ProtocolMapper *string `json:"protocolMapper,omitempty"`
}

ProtocolMapperRepresentation defines model for ProtocolMapperRepresentation.

type PublishedRealmRepresentation

type PublishedRealmRepresentation struct {
	AccountService  *string `json:"account-service,omitempty"`
	PublicKey       *string `json:"public_key,omitempty"`
	Realm           *string `json:"realm,omitempty"`
	TokenService    *string `json:"token-service,omitempty"`
	TokensNotBefore *int32  `json:"tokens-not-before,omitempty"`
}

PublishedRealmRepresentation defines model for PublishedRealmRepresentation.

type PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody

type PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody = AuthenticatorConfigRepresentation

PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody defines body for PutAdminRealmsRealmAuthenticationConfigID for application/json ContentType.

type PutAdminRealmsRealmAuthenticationConfigIDResponse

type PutAdminRealmsRealmAuthenticationConfigIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmAuthenticationConfigIDResponse

func ParsePutAdminRealmsRealmAuthenticationConfigIDResponse(rsp *http.Response) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)

ParsePutAdminRealmsRealmAuthenticationConfigIDResponse parses an HTTP response from a PutAdminRealmsRealmAuthenticationConfigIDWithResponse call

func (PutAdminRealmsRealmAuthenticationConfigIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmAuthenticationConfigIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody

type PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody = AuthenticationExecutionInfoRepresentation

PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody defines body for PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions for application/json ContentType.

type PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse

type PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse

func ParsePutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse(rsp *http.Response) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)

ParsePutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse parses an HTTP response from a PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse call

func (PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody

type PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody = AuthenticationFlowRepresentation

PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody defines body for PutAdminRealmsRealmAuthenticationFlowsID for application/json ContentType.

type PutAdminRealmsRealmAuthenticationFlowsIDResponse

type PutAdminRealmsRealmAuthenticationFlowsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmAuthenticationFlowsIDResponse

func ParsePutAdminRealmsRealmAuthenticationFlowsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)

ParsePutAdminRealmsRealmAuthenticationFlowsIDResponse parses an HTTP response from a PutAdminRealmsRealmAuthenticationFlowsIDWithResponse call

func (PutAdminRealmsRealmAuthenticationFlowsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmAuthenticationFlowsIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody = RequiredActionConfigRepresentation

PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody defines body for PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig for application/json ContentType.

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse

func ParsePutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse(rsp *http.Response) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)

ParsePutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse parses an HTTP response from a PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse call

func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody = RequiredActionProviderRepresentation

PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody defines body for PutAdminRealmsRealmAuthenticationRequiredActionsAlias for application/json ContentType.

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

type PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse

func ParsePutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse(rsp *http.Response) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)

ParsePutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse parses an HTTP response from a PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse call

func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody

type PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody = ClientPoliciesRepresentation

PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody defines body for PutAdminRealmsRealmClientPoliciesPolicies for application/json ContentType.

type PutAdminRealmsRealmClientPoliciesPoliciesResponse

type PutAdminRealmsRealmClientPoliciesPoliciesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientPoliciesPoliciesResponse

func ParsePutAdminRealmsRealmClientPoliciesPoliciesResponse(rsp *http.Response) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)

ParsePutAdminRealmsRealmClientPoliciesPoliciesResponse parses an HTTP response from a PutAdminRealmsRealmClientPoliciesPoliciesWithResponse call

func (PutAdminRealmsRealmClientPoliciesPoliciesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientPoliciesPoliciesResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientPoliciesPoliciesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody

type PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody = ClientProfilesRepresentation

PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody defines body for PutAdminRealmsRealmClientPoliciesProfiles for application/json ContentType.

type PutAdminRealmsRealmClientPoliciesProfilesResponse

type PutAdminRealmsRealmClientPoliciesProfilesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientPoliciesProfilesResponse

func ParsePutAdminRealmsRealmClientPoliciesProfilesResponse(rsp *http.Response) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)

ParsePutAdminRealmsRealmClientPoliciesProfilesResponse parses an HTTP response from a PutAdminRealmsRealmClientPoliciesProfilesWithResponse call

func (PutAdminRealmsRealmClientPoliciesProfilesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientPoliciesProfilesResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientPoliciesProfilesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody

type PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody = ClientScopeRepresentation

PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody defines body for PutAdminRealmsRealmClientScopesClientScopeID for application/json ContentType.

type PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody

type PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody = ProtocolMapperRepresentation

PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody defines body for PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID for application/json ContentType.

type PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

type PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse

func ParsePutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)

ParsePutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse parses an HTTP response from a PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse call

func (PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientScopesClientScopeIDResponse

type PutAdminRealmsRealmClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientScopesClientScopeIDResponse

func ParsePutAdminRealmsRealmClientScopesClientScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)

ParsePutAdminRealmsRealmClientScopesClientScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmClientScopesClientScopeIDWithResponse call

func (PutAdminRealmsRealmClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody

type PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody = ClientScopeRepresentation

PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody defines body for PutAdminRealmsRealmClientTemplatesClientScopeID for application/json ContentType.

type PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody

type PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody = ProtocolMapperRepresentation

PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody defines body for PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID for application/json ContentType.

type PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

type PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse

func ParsePutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)

ParsePutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse parses an HTTP response from a PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse call

func (PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientTemplatesClientScopeIDResponse

type PutAdminRealmsRealmClientTemplatesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientTemplatesClientScopeIDResponse

func ParsePutAdminRealmsRealmClientTemplatesClientScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)

ParsePutAdminRealmsRealmClientTemplatesClientScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmClientTemplatesClientScopeIDWithResponse call

func (PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientTypesJSONRequestBody

type PutAdminRealmsRealmClientTypesJSONRequestBody = ClientTypesRepresentation

PutAdminRealmsRealmClientTypesJSONRequestBody defines body for PutAdminRealmsRealmClientTypes for application/json ContentType.

type PutAdminRealmsRealmClientTypesResponse

type PutAdminRealmsRealmClientTypesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientTypesResponse

func ParsePutAdminRealmsRealmClientTypesResponse(rsp *http.Response) (*PutAdminRealmsRealmClientTypesResponse, error)

ParsePutAdminRealmsRealmClientTypesResponse parses an HTTP response from a PutAdminRealmsRealmClientTypesWithResponse call

func (PutAdminRealmsRealmClientTypesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientTypesResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientTypesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody = ResourceServerRepresentation

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody = ResourceRepresentation

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams struct {
	UnderscoreID *string `form:"_id,omitempty" json:"_id,omitempty"`
	Deep         *bool   `form:"deep,omitempty" json:"deep,omitempty"`
	ExactName    *bool   `form:"exactName,omitempty" json:"exactName,omitempty"`
	First        *int32  `form:"first,omitempty" json:"first,omitempty"`
	MatchingURI  *bool   `form:"matchingUri,omitempty" json:"matchingUri,omitempty"`
	Max          *int32  `form:"max,omitempty" json:"max,omitempty"`
	Name         *string `form:"name,omitempty" json:"name,omitempty"`
	Owner        *string `form:"owner,omitempty" json:"owner,omitempty"`
	Scope        *string `form:"scope,omitempty" json:"scope,omitempty"`
	Type         *string `form:"type,omitempty" json:"type,omitempty"`
	URI          *string `form:"uri,omitempty" json:"uri,omitempty"`
}

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams defines parameters for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID.

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse

func ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse

func ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody = ScopeRepresentation

PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse

func ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse

type PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse

func ParsePutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDJSONRequestBody = ClientRepresentation

PutAdminRealmsRealmClientsClientUUIDJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUID for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse

type PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse

func ParsePutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse

type PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse

func ParsePutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody = ProtocolMapperRepresentation

PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

type PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse

func ParsePutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDResponse

type PutAdminRealmsRealmClientsClientUUIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDResponse

func ParsePutAdminRealmsRealmClientsClientUUIDResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody = RoleRepresentation

PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDRolesRoleName for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse

func ParsePutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse

func ParsePutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse(rsp *http.Response) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)

ParsePutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse parses an HTTP response from a PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse call

func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmComponentsIDJSONRequestBody

type PutAdminRealmsRealmComponentsIDJSONRequestBody = ComponentRepresentation

PutAdminRealmsRealmComponentsIDJSONRequestBody defines body for PutAdminRealmsRealmComponentsID for application/json ContentType.

type PutAdminRealmsRealmComponentsIDResponse

type PutAdminRealmsRealmComponentsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmComponentsIDResponse

func ParsePutAdminRealmsRealmComponentsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmComponentsIDResponse, error)

ParsePutAdminRealmsRealmComponentsIDResponse parses an HTTP response from a PutAdminRealmsRealmComponentsIDWithResponse call

func (PutAdminRealmsRealmComponentsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmComponentsIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmComponentsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse

type PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse

func ParsePutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)

ParsePutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse call

func (PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmDefaultGroupsGroupIDResponse

type PutAdminRealmsRealmDefaultGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmDefaultGroupsGroupIDResponse

func ParsePutAdminRealmsRealmDefaultGroupsGroupIDResponse(rsp *http.Response) (*PutAdminRealmsRealmDefaultGroupsGroupIDResponse, error)

ParsePutAdminRealmsRealmDefaultGroupsGroupIDResponse parses an HTTP response from a PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse call

func (PutAdminRealmsRealmDefaultGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmDefaultGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmDefaultGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse

type PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse

func ParsePutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse(rsp *http.Response) (*PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)

ParsePutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse parses an HTTP response from a PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse call

func (PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmEventsConfigJSONRequestBody

type PutAdminRealmsRealmEventsConfigJSONRequestBody = RealmEventsConfigRepresentation

PutAdminRealmsRealmEventsConfigJSONRequestBody defines body for PutAdminRealmsRealmEventsConfig for application/json ContentType.

type PutAdminRealmsRealmEventsConfigResponse

type PutAdminRealmsRealmEventsConfigResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmEventsConfigResponse

func ParsePutAdminRealmsRealmEventsConfigResponse(rsp *http.Response) (*PutAdminRealmsRealmEventsConfigResponse, error)

ParsePutAdminRealmsRealmEventsConfigResponse parses an HTTP response from a PutAdminRealmsRealmEventsConfigWithResponse call

func (PutAdminRealmsRealmEventsConfigResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmEventsConfigResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmEventsConfigResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmGroupsGroupIDJSONRequestBody

type PutAdminRealmsRealmGroupsGroupIDJSONRequestBody = GroupRepresentation

PutAdminRealmsRealmGroupsGroupIDJSONRequestBody defines body for PutAdminRealmsRealmGroupsGroupID for application/json ContentType.

type PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmGroupsGroupIDManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse

type PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse

func ParsePutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse call

func (PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmGroupsGroupIDResponse

type PutAdminRealmsRealmGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmGroupsGroupIDResponse

func ParsePutAdminRealmsRealmGroupsGroupIDResponse(rsp *http.Response) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)

ParsePutAdminRealmsRealmGroupsGroupIDResponse parses an HTTP response from a PutAdminRealmsRealmGroupsGroupIDWithResponse call

func (PutAdminRealmsRealmGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody

type PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody = IdentityProviderRepresentation

PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody defines body for PutAdminRealmsRealmIdentityProviderInstancesAlias for application/json ContentType.

type PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse

type PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse

func ParsePutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse call

func (PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody

type PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody = IdentityProviderMapperRepresentation

PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody defines body for PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID for application/json ContentType.

type PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

type PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse

func ParsePutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse(rsp *http.Response) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)

ParsePutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse parses an HTTP response from a PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse call

func (PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmIdentityProviderInstancesAliasResponse

type PutAdminRealmsRealmIdentityProviderInstancesAliasResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmIdentityProviderInstancesAliasResponse

func ParsePutAdminRealmsRealmIdentityProviderInstancesAliasResponse(rsp *http.Response) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)

ParsePutAdminRealmsRealmIdentityProviderInstancesAliasResponse parses an HTTP response from a PutAdminRealmsRealmIdentityProviderInstancesAliasWithResponse call

func (PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmJSONRequestBody

type PutAdminRealmsRealmJSONRequestBody = RealmRepresentation

PutAdminRealmsRealmJSONRequestBody defines body for PutAdminRealmsRealm for application/json ContentType.

type PutAdminRealmsRealmLocalizationLocaleKeyResponse

type PutAdminRealmsRealmLocalizationLocaleKeyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmLocalizationLocaleKeyResponse

func ParsePutAdminRealmsRealmLocalizationLocaleKeyResponse(rsp *http.Response) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)

ParsePutAdminRealmsRealmLocalizationLocaleKeyResponse parses an HTTP response from a PutAdminRealmsRealmLocalizationLocaleKeyWithResponse call

func (PutAdminRealmsRealmLocalizationLocaleKeyResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmLocalizationLocaleKeyResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmLocalizationLocaleKeyTextBody

type PutAdminRealmsRealmLocalizationLocaleKeyTextBody = string

PutAdminRealmsRealmLocalizationLocaleKeyTextBody defines parameters for PutAdminRealmsRealmLocalizationLocaleKey.

type PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody

type PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody = PutAdminRealmsRealmLocalizationLocaleKeyTextBody

PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody defines body for PutAdminRealmsRealmLocalizationLocaleKey for text/plain ContentType.

type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody

type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody = GroupRepresentation

PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody defines body for PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID for application/json ContentType.

type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse

type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse

func ParsePutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse(rsp *http.Response) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, error)

ParsePutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse parses an HTTP response from a PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse call

func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse

func ParsePutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse(rsp *http.Response) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)

ParsePutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse parses an HTTP response from a PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse call

func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody

type PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody = OrganizationRepresentation

PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody defines body for PutAdminRealmsRealmOrganizationsOrgID for application/json ContentType.

type PutAdminRealmsRealmOrganizationsOrgIDResponse

type PutAdminRealmsRealmOrganizationsOrgIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmOrganizationsOrgIDResponse

func ParsePutAdminRealmsRealmOrganizationsOrgIDResponse(rsp *http.Response) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)

ParsePutAdminRealmsRealmOrganizationsOrgIDResponse parses an HTTP response from a PutAdminRealmsRealmOrganizationsOrgIDWithResponse call

func (PutAdminRealmsRealmOrganizationsOrgIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmOrganizationsOrgIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmResponse

type PutAdminRealmsRealmResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmResponse

func ParsePutAdminRealmsRealmResponse(rsp *http.Response) (*PutAdminRealmsRealmResponse, error)

ParsePutAdminRealmsRealmResponse parses an HTTP response from a PutAdminRealmsRealmWithResponse call

func (PutAdminRealmsRealmResponse) ContentType

func (r PutAdminRealmsRealmResponse) ContentType() string

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmResponse) StatusCode

func (r PutAdminRealmsRealmResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody

type PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody = RoleRepresentation

PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody defines body for PutAdminRealmsRealmRolesByIDRoleID for application/json ContentType.

type PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse

type PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse

func ParsePutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse call

func (PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmRolesByIDRoleIDResponse

type PutAdminRealmsRealmRolesByIDRoleIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmRolesByIDRoleIDResponse

func ParsePutAdminRealmsRealmRolesByIDRoleIDResponse(rsp *http.Response) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)

ParsePutAdminRealmsRealmRolesByIDRoleIDResponse parses an HTTP response from a PutAdminRealmsRealmRolesByIDRoleIDWithResponse call

func (PutAdminRealmsRealmRolesByIDRoleIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmRolesByIDRoleIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmRolesRoleNameJSONRequestBody

type PutAdminRealmsRealmRolesRoleNameJSONRequestBody = RoleRepresentation

PutAdminRealmsRealmRolesRoleNameJSONRequestBody defines body for PutAdminRealmsRealmRolesRoleName for application/json ContentType.

type PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmRolesRoleNameManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse

type PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse

func ParsePutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse call

func (PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmRolesRoleNameResponse

type PutAdminRealmsRealmRolesRoleNameResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmRolesRoleNameResponse

func ParsePutAdminRealmsRealmRolesRoleNameResponse(rsp *http.Response) (*PutAdminRealmsRealmRolesRoleNameResponse, error)

ParsePutAdminRealmsRealmRolesRoleNameResponse parses an HTTP response from a PutAdminRealmsRealmRolesRoleNameWithResponse call

func (PutAdminRealmsRealmRolesRoleNameResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmRolesRoleNameResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmRolesRoleNameResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody

type PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody = ManagementPermissionReference

PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody defines body for PutAdminRealmsRealmUsersManagementPermissions for application/json ContentType.

type PutAdminRealmsRealmUsersManagementPermissionsResponse

type PutAdminRealmsRealmUsersManagementPermissionsResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ManagementPermissionReference
}

func ParsePutAdminRealmsRealmUsersManagementPermissionsResponse

func ParsePutAdminRealmsRealmUsersManagementPermissionsResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)

ParsePutAdminRealmsRealmUsersManagementPermissionsResponse parses an HTTP response from a PutAdminRealmsRealmUsersManagementPermissionsWithResponse call

func (PutAdminRealmsRealmUsersManagementPermissionsResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersManagementPermissionsResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersManagementPermissionsResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersProfileJSONRequestBody

type PutAdminRealmsRealmUsersProfileJSONRequestBody = UPConfig

PutAdminRealmsRealmUsersProfileJSONRequestBody defines body for PutAdminRealmsRealmUsersProfile for application/json ContentType.

type PutAdminRealmsRealmUsersProfileResponse

type PutAdminRealmsRealmUsersProfileResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UPConfig
}

func ParsePutAdminRealmsRealmUsersProfileResponse

func ParsePutAdminRealmsRealmUsersProfileResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersProfileResponse, error)

ParsePutAdminRealmsRealmUsersProfileResponse parses an HTTP response from a PutAdminRealmsRealmUsersProfileWithResponse call

func (PutAdminRealmsRealmUsersProfileResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersProfileResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersProfileResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse

type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse

func ParsePutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)

ParsePutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithResponse call

func (PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextBody

type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextBody = string

PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextBody defines parameters for PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabel.

type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody

type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody = PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextBody

PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody defines body for PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabel for text/plain ContentType.

type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONBody

type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONBody = []string

PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONBody defines parameters for PutAdminRealmsRealmUsersUserIDDisableCredentialTypes.

type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody

type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody = PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONBody

PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody defines body for PutAdminRealmsRealmUsersUserIDDisableCredentialTypes for application/json ContentType.

type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse

type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse

func ParsePutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)

ParsePutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithResponse call

func (PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONBody

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONBody = []string

PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONBody defines parameters for PutAdminRealmsRealmUsersUserIDExecuteActionsEmail.

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody = PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONBody

PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody defines body for PutAdminRealmsRealmUsersUserIDExecuteActionsEmail for application/json ContentType.

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams struct {
	// ClientID Client id
	ClientID *string `form:"client_id,omitempty" json:"client_id,omitempty"`

	// Lifespan Number of seconds after which the generated token expires
	Lifespan *int32 `form:"lifespan,omitempty" json:"lifespan,omitempty"`

	// RedirectURI Redirect uri
	RedirectURI *string `form:"redirect_uri,omitempty" json:"redirect_uri,omitempty"`
}

PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams defines parameters for PutAdminRealmsRealmUsersUserIDExecuteActionsEmail.

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse

type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse

func ParsePutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)

ParsePutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithResponse call

func (PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse

type PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse

func ParsePutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)

ParsePutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse call

func (PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDJSONRequestBody

type PutAdminRealmsRealmUsersUserIDJSONRequestBody = UserRepresentation

PutAdminRealmsRealmUsersUserIDJSONRequestBody defines body for PutAdminRealmsRealmUsersUserID for application/json ContentType.

type PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams

type PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams struct {
	// ClientID client id
	ClientID *string `form:"client_id,omitempty" json:"client_id,omitempty"`

	// RedirectURI redirect uri
	RedirectURI *string `form:"redirect_uri,omitempty" json:"redirect_uri,omitempty"`
}

PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams defines parameters for PutAdminRealmsRealmUsersUserIDResetPasswordEmail.

type PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse

type PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse

func ParsePutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse, error)

ParsePutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse call

func (PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody

type PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody = CredentialRepresentation

PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody defines body for PutAdminRealmsRealmUsersUserIDResetPassword for application/json ContentType.

type PutAdminRealmsRealmUsersUserIDResetPasswordResponse

type PutAdminRealmsRealmUsersUserIDResetPasswordResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDResetPasswordResponse

func ParsePutAdminRealmsRealmUsersUserIDResetPasswordResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)

ParsePutAdminRealmsRealmUsersUserIDResetPasswordResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDResetPasswordWithResponse call

func (PutAdminRealmsRealmUsersUserIDResetPasswordResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDResetPasswordResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDResetPasswordResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDResponse

type PutAdminRealmsRealmUsersUserIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDResponse

func ParsePutAdminRealmsRealmUsersUserIDResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDResponse, error)

ParsePutAdminRealmsRealmUsersUserIDResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDWithResponse call

func (PutAdminRealmsRealmUsersUserIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams

type PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams struct {
	// ClientID Client id
	ClientID *string `form:"client_id,omitempty" json:"client_id,omitempty"`

	// Lifespan Number of seconds after which the generated token expires
	Lifespan *int32 `form:"lifespan,omitempty" json:"lifespan,omitempty"`

	// RedirectURI Redirect uri
	RedirectURI *string `form:"redirect_uri,omitempty" json:"redirect_uri,omitempty"`
}

PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams defines parameters for PutAdminRealmsRealmUsersUserIDSendVerifyEmail.

type PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse

type PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse

func ParsePutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse, error)

ParsePutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse call

func (PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type PutAdminRealmsRealmWorkflowsIDJSONRequestBody

type PutAdminRealmsRealmWorkflowsIDJSONRequestBody = WorkflowRepresentation

PutAdminRealmsRealmWorkflowsIDJSONRequestBody defines body for PutAdminRealmsRealmWorkflowsID for application/json ContentType.

type PutAdminRealmsRealmWorkflowsIDResponse

type PutAdminRealmsRealmWorkflowsIDResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParsePutAdminRealmsRealmWorkflowsIDResponse

func ParsePutAdminRealmsRealmWorkflowsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmWorkflowsIDResponse, error)

ParsePutAdminRealmsRealmWorkflowsIDResponse parses an HTTP response from a PutAdminRealmsRealmWorkflowsIDWithResponse call

func (PutAdminRealmsRealmWorkflowsIDResponse) ContentType

ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers

func (PutAdminRealmsRealmWorkflowsIDResponse) Status

Status returns HTTPResponse.Status

func (PutAdminRealmsRealmWorkflowsIDResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type RawClient

type RawClient struct {
	// The endpoint of the server conforming to this interface, with scheme,
	// https://api.deepmap.com for example. This can contain a path relative
	// to the server, such as https://api.deepmap.com/dev-test, and all the
	// paths in the swagger spec will be appended to the server.
	Server string

	// Doer for performing requests, typically a *http.Client with any
	// customized settings, such as certificate chains.
	Client HttpRequestDoer

	// A list of callbacks for modifying requests which are generated before sending over
	// the network.
	RequestEditors []RequestEditorFn
}

RawClient which conforms to the OpenAPI3 specification for this service.

func NewClient

func NewClient(server string, opts ...ClientOption) (*RawClient, error)

Creates a new RawClient, with reasonable defaults

func (*RawClient) DeleteAdminRealmsRealm

func (c *RawClient) DeleteAdminRealmsRealm(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAdminEvents

func (c *RawClient) DeleteAdminRealmsRealmAdminEvents(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsers

func (c *RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsers(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID

func (c *RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAuthenticationConfigID

func (c *RawClient) DeleteAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID

func (c *RawClient) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAuthenticationFlowsID

func (c *RawClient) DeleteAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias

func (c *RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig

func (c *RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeID

func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID

func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient

func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm

func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeID

func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID

func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient

func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm

func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUID

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, params *DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDNodesNode

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDNodesNode(ctx context.Context, realm string, clientUUID string, node string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, body DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody

func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmClientsInitialAccessID

func (c *RawClient) DeleteAdminRealmsRealmClientsInitialAccessID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmComponentsID

func (c *RawClient) DeleteAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID

func (c *RawClient) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmDefaultGroupsGroupID

func (c *RawClient) DeleteAdminRealmsRealmDefaultGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID

func (c *RawClient) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmEvents

func (c *RawClient) DeleteAdminRealmsRealmEvents(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmGroupsGroupID

func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID

func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody

func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm

func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody

func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAlias

func (c *RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID

func (c *RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmLocalizationLocale

func (c *RawClient) DeleteAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmLocalizationLocaleKey

func (c *RawClient) DeleteAdminRealmsRealmLocalizationLocaleKey(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgID

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, clientID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID

func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmRolesByIDRoleID

func (c *RawClient) DeleteAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmRolesByIDRoleIDComposites

func (c *RawClient) DeleteAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, body DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBody

func (c *RawClient) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmRolesRoleName

func (c *RawClient) DeleteAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmRolesRoleNameComposites

func (c *RawClient) DeleteAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, body DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmRolesRoleNameCompositesWithBody

func (c *RawClient) DeleteAdminRealmsRealmRolesRoleNameCompositesWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmSessionsSession

func (c *RawClient) DeleteAdminRealmsRealmSessionsSession(ctx context.Context, realm string, session string, params *DeleteAdminRealmsRealmSessionsSessionParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserID

func (c *RawClient) DeleteAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDConsentsClient

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDConsentsClient(ctx context.Context, realm string, userID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider(ctx context.Context, realm string, userID string, provider string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDGroupsGroupID

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDGroupsGroupID(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody

func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) DeleteAdminRealmsRealmWorkflowsID

func (c *RawClient) DeleteAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealms

func (c *RawClient) GetAdminRealms(ctx context.Context, params *GetAdminRealmsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealm

func (c *RawClient) GetAdminRealmsRealm(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAdminEvents

func (c *RawClient) GetAdminRealmsRealmAdminEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmAdminEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID

func (c *RawClient) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationAuthenticatorProviders

func (c *RawClient) GetAdminRealmsRealmAuthenticationAuthenticatorProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders

func (c *RawClient) GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID

func (c *RawClient) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationConfigID

func (c *RawClient) GetAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionID

func (c *RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionID(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID

func (c *RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID(ctx context.Context, realm string, executionID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationFlows

func (c *RawClient) GetAdminRealmsRealmAuthenticationFlows(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions

func (c *RawClient) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationFlowsID

func (c *RawClient) GetAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationFormActionProviders

func (c *RawClient) GetAdminRealmsRealmAuthenticationFormActionProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationFormProviders

func (c *RawClient) GetAdminRealmsRealmAuthenticationFormProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationPerClientConfigDescription

func (c *RawClient) GetAdminRealmsRealmAuthenticationPerClientConfigDescription(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActions

func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAlias

func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig

func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription

func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions

func (c *RawClient) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientPoliciesPolicies

func (c *RawClient) GetAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesPoliciesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientPoliciesProfiles

func (c *RawClient) GetAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, params *GetAdminRealmsRealmClientPoliciesProfilesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientRegistrationPolicyProviders

func (c *RawClient) GetAdminRealmsRealmClientRegistrationPolicyProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopes

func (c *RawClient) GetAdminRealmsRealmClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeID

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailable

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite

func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientSessionStats

func (c *RawClient) GetAdminRealmsRealmClientSessionStats(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplates

func (c *RawClient) GetAdminRealmsRealmClientTemplates(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeID

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocol

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientScopeID string, protocol string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientScopeID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientScopeID string, client string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite

func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientScopeID string, params *GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientTypes

func (c *RawClient) GetAdminRealmsRealmClientTypes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClients

func (c *RawClient) GetAdminRealmsRealmClients(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUID

func (c *RawClient) GetAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProviders

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProviders(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProviders

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProviders(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes(ctx context.Context, realm string, clientUUID string, resourceID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissions

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissions(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResources

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResources(ctx context.Context, realm string, clientUUID string, scopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDCertificatesAttr

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDCertificatesAttr(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecret

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecret(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecretRotated

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecretRotated(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted(ctx context.Context, realm string, clientUUID string, roleContainerID string, params *GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderID

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderID(ctx context.Context, realm string, clientUUID string, providerID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDManagementPermissions

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDManagementPermissions(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessions

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessions(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDOptionalClientScopes

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDOptionalClientScopes(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientUUID string, protocol string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRoles

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRoles(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDRolesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleName

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID(ctx context.Context, realm string, clientUUID string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions(ctx context.Context, realm string, clientUUID string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers(ctx context.Context, realm string, clientUUID string, roleName string, params *GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappings

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappings(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientUUID string, client string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientUUID string, client string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealm

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDServiceAccountUser

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDServiceAccountUser(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDSessionCount

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDSessionCount(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsClientUUIDUserSessions

func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDUserSessions(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDUserSessionsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmClientsInitialAccess

func (c *RawClient) GetAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmComponents

func (c *RawClient) GetAdminRealmsRealmComponents(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmComponentsID

func (c *RawClient) GetAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmComponentsIDSubComponentTypes

func (c *RawClient) GetAdminRealmsRealmComponentsIDSubComponentTypes(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmComponentsIDSubComponentTypesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmCredentialRegistrators

func (c *RawClient) GetAdminRealmsRealmCredentialRegistrators(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmDefaultDefaultClientScopes

func (c *RawClient) GetAdminRealmsRealmDefaultDefaultClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmDefaultGroups

func (c *RawClient) GetAdminRealmsRealmDefaultGroups(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmDefaultOptionalClientScopes

func (c *RawClient) GetAdminRealmsRealmDefaultOptionalClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmEvents

func (c *RawClient) GetAdminRealmsRealmEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmEventsConfig

func (c *RawClient) GetAdminRealmsRealmEventsConfig(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupByPathPath

func (c *RawClient) GetAdminRealmsRealmGroupByPathPath(ctx context.Context, realm string, path string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroups

func (c *RawClient) GetAdminRealmsRealmGroups(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsCount

func (c *RawClient) GetAdminRealmsRealmGroupsCount(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupID

func (c *RawClient) GetAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDChildren

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDManagementPermissions

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDManagementPermissions(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDMembers

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDMembers(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappings

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappings(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, groupID string, clientID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite

func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstances

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstances(ctx context.Context, realm string, params *GetAdminRealmsRealmIdentityProviderInstancesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAlias

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasExport

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasExport(ctx context.Context, realm string, alias string, params *GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappers

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappers(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys

func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmIdentityProviderProvidersProviderID

func (c *RawClient) GetAdminRealmsRealmIdentityProviderProvidersProviderID(ctx context.Context, realm string, providerID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmKeys

func (c *RawClient) GetAdminRealmsRealmKeys(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmLocalization

func (c *RawClient) GetAdminRealmsRealmLocalization(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmLocalizationLocale

func (c *RawClient) GetAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, params *GetAdminRealmsRealmLocalizationLocaleParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmLocalizationLocaleKey

func (c *RawClient) GetAdminRealmsRealmLocalizationLocaleKey(ctx context.Context, realm string, locale string, key string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizations

func (c *RawClient) GetAdminRealmsRealmOrganizations(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsCount

func (c *RawClient) GetAdminRealmsRealmOrganizationsCount(ctx context.Context, realm string, params *GetAdminRealmsRealmOrganizationsCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations

func (c *RawClient) GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations(ctx context.Context, realm string, memberID string, params *GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgID

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroups

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath(ctx context.Context, realm string, orgID string, path string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, orgID string, groupID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, orgID string, groupID string, clientID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailable

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailable(ctx context.Context, realm string, orgID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite(ctx context.Context, realm string, orgID string, groupID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProviders

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProviders(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias(ctx context.Context, realm string, orgID string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups(ctx context.Context, realm string, orgID string, alias string, params *GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDInvitations

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDInvitations(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDInvitationsID

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDInvitationsID(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembers

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersCount

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersCount(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID(ctx context.Context, realm string, orgID string, memberID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations

func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations(ctx context.Context, realm string, orgID string, memberID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRoles

func (c *RawClient) GetAdminRealmsRealmRoles(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesByIDRoleID

func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesByIDRoleIDComposites

func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, params *GetAdminRealmsRealmRolesByIDRoleIDCompositesParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUID

func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUID(ctx context.Context, realm string, roleID string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm

func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions

func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions(ctx context.Context, realm string, roleID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleName

func (c *RawClient) GetAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleNameComposites

func (c *RawClient) GetAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID

func (c *RawClient) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID(ctx context.Context, realm string, roleName string, targetClientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleNameCompositesRealm

func (c *RawClient) GetAdminRealmsRealmRolesRoleNameCompositesRealm(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleNameGroups

func (c *RawClient) GetAdminRealmsRealmRolesRoleNameGroups(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleNameManagementPermissions

func (c *RawClient) GetAdminRealmsRealmRolesRoleNameManagementPermissions(ctx context.Context, realm string, roleName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmRolesRoleNameUsers

func (c *RawClient) GetAdminRealmsRealmRolesRoleNameUsers(ctx context.Context, realm string, roleName string, params *GetAdminRealmsRealmRolesRoleNameUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsers

func (c *RawClient) GetAdminRealmsRealmUsers(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersCount

func (c *RawClient) GetAdminRealmsRealmUsersCount(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersManagementPermissions

func (c *RawClient) GetAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersProfile

func (c *RawClient) GetAdminRealmsRealmUsersProfile(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersProfileMetadata

func (c *RawClient) GetAdminRealmsRealmUsersProfileMetadata(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserID

func (c *RawClient) GetAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypes

func (c *RawClient) GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypes(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDConsents

func (c *RawClient) GetAdminRealmsRealmUsersUserIDConsents(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDCredentials

func (c *RawClient) GetAdminRealmsRealmUsersUserIDCredentials(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDFederatedIdentity

func (c *RawClient) GetAdminRealmsRealmUsersUserIDFederatedIdentity(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDGroups

func (c *RawClient) GetAdminRealmsRealmUsersUserIDGroups(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDGroupsCount

func (c *RawClient) GetAdminRealmsRealmUsersUserIDGroupsCount(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDGroupsCountParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUID

func (c *RawClient) GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUID(ctx context.Context, realm string, userID string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappings

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappings(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, userID string, clientID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, userID string, clientID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealm

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite

func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite(ctx context.Context, realm string, userID string, params *GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDSessions

func (c *RawClient) GetAdminRealmsRealmUsersUserIDSessions(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmUsersUserIDUnmanagedAttributes

func (c *RawClient) GetAdminRealmsRealmUsersUserIDUnmanagedAttributes(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmWorkflows

func (c *RawClient) GetAdminRealmsRealmWorkflows(ctx context.Context, realm string, params *GetAdminRealmsRealmWorkflowsParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmWorkflowsID

func (c *RawClient) GetAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, params *GetAdminRealmsRealmWorkflowsIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) GetAdminRealmsRealmWorkflowsScheduledResourceID

func (c *RawClient) GetAdminRealmsRealmWorkflowsScheduledResourceID(ctx context.Context, realm string, resourceID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealms

func (c *RawClient) PostAdminRealms(ctx context.Context, body PostAdminRealmsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationConfig

func (c *RawClient) PostAdminRealmsRealmAuthenticationConfig(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationConfigWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationExecutions

func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutions(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig

func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig(ctx context.Context, realm string, executionID string, body PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBody(ctx context.Context, realm string, executionID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority

func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority

func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority(ctx context.Context, realm string, executionID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlows

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlows(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredAction

func (c *RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredAction(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBody

func (c *RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority

func (c *RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority

func (c *RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientDescriptionConverter

func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverter(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientDescriptionConverterWithBody

func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverterWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientDescriptionConverterWithTextBody

func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverterWithTextBody(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterTextRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopes

func (c *RawClient) PostAdminRealmsRealmClientScopes(ctx context.Context, realm string, body PostAdminRealmsRealmClientScopesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBody

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBody

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody

func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientScopesWithBody

func (c *RawClient) PostAdminRealmsRealmClientScopesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplates

func (c *RawClient) PostAdminRealmsRealmClientTemplates(ctx context.Context, realm string, body PostAdminRealmsRealmClientTemplatesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBody

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBody

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody

func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientTemplatesWithBody

func (c *RawClient) PostAdminRealmsRealmClientTemplatesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClients

func (c *RawClient) PostAdminRealmsRealmClients(ctx context.Context, realm string, body PostAdminRealmsRealmClientsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBody(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBody(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBody(ctx context.Context, realm string, clientUUID string, attr string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate(ctx context.Context, realm string, clientUUID string, attr string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDClientSecret

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDClientSecret(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDNodes

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDNodes(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDNodesWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDNodesWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDPushRevocation

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDPushRevocation(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken(ctx context.Context, realm string, clientUUID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRoles

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRoles(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, body PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRolesWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRolesWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientUUID string, client string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody

func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsInitialAccess

func (c *RawClient) PostAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, body PostAdminRealmsRealmClientsInitialAccessJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsInitialAccessWithBody

func (c *RawClient) PostAdminRealmsRealmClientsInitialAccessWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmClientsWithBody

func (c *RawClient) PostAdminRealmsRealmClientsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmComponents

func (c *RawClient) PostAdminRealmsRealmComponents(ctx context.Context, realm string, body PostAdminRealmsRealmComponentsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmComponentsWithBody

func (c *RawClient) PostAdminRealmsRealmComponentsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroups

func (c *RawClient) PostAdminRealmsRealmGroups(ctx context.Context, realm string, body PostAdminRealmsRealmGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsGroupIDChildren

func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsGroupIDChildrenWithBody

func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDChildrenWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID

func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody

func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm

func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody

func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmGroupsWithBody

func (c *RawClient) PostAdminRealmsRealmGroupsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderImportConfig

func (c *RawClient) PostAdminRealmsRealmIdentityProviderImportConfig(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderImportConfigWithBody

func (c *RawClient) PostAdminRealmsRealmIdentityProviderImportConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderInstances

func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstances(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderInstancesAliasMappers

func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstancesAliasMappers(ctx context.Context, realm string, alias string, body PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBody

func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderInstancesWithBody

func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstancesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmIdentityProviderUploadCertificate

func (c *RawClient) PostAdminRealmsRealmIdentityProviderUploadCertificate(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmLocalizationLocale

func (c *RawClient) PostAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, body PostAdminRealmsRealmLocalizationLocaleJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmLocalizationLocaleWithBody

func (c *RawClient) PostAdminRealmsRealmLocalizationLocaleWithBody(ctx context.Context, realm string, locale string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmLogoutAll

func (c *RawClient) PostAdminRealmsRealmLogoutAll(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizations

func (c *RawClient) PostAdminRealmsRealmOrganizations(ctx context.Context, realm string, body PostAdminRealmsRealmOrganizationsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroups

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, clientID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, orgID string, groupID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend(ctx context.Context, realm string, orgID string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembers

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBody(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBody(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmOrganizationsWithBody

func (c *RawClient) PostAdminRealmsRealmOrganizationsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmPartialExport

func (c *RawClient) PostAdminRealmsRealmPartialExport(ctx context.Context, realm string, params *PostAdminRealmsRealmPartialExportParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmPartialImport

func (c *RawClient) PostAdminRealmsRealmPartialImport(ctx context.Context, realm string, body PostAdminRealmsRealmPartialImportJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmPartialImportWithBody

func (c *RawClient) PostAdminRealmsRealmPartialImportWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmPushRevocation

func (c *RawClient) PostAdminRealmsRealmPushRevocation(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmRoles

func (c *RawClient) PostAdminRealmsRealmRoles(ctx context.Context, realm string, body PostAdminRealmsRealmRolesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmRolesByIDRoleIDComposites

func (c *RawClient) PostAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, body PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBody

func (c *RawClient) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmRolesRoleNameComposites

func (c *RawClient) PostAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, body PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmRolesRoleNameCompositesWithBody

func (c *RawClient) PostAdminRealmsRealmRolesRoleNameCompositesWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmRolesWithBody

func (c *RawClient) PostAdminRealmsRealmRolesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmTestSMTPConnection

func (c *RawClient) PostAdminRealmsRealmTestSMTPConnection(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmTestSMTPConnectionWithBody

func (c *RawClient) PostAdminRealmsRealmTestSMTPConnectionWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmTestSMTPConnectionWithFormdataBody

func (c *RawClient) PostAdminRealmsRealmTestSMTPConnectionWithFormdataBody(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsers

func (c *RawClient) PostAdminRealmsRealmUsers(ctx context.Context, realm string, body PostAdminRealmsRealmUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialID

func (c *RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialID(ctx context.Context, realm string, userID string, credentialID string, newPreviousCredentialID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst

func (c *RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst(ctx context.Context, realm string, userID string, credentialID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider

func (c *RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider(ctx context.Context, realm string, userID string, provider string, body PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBody

func (c *RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBody(ctx context.Context, realm string, userID string, provider string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDImpersonation

func (c *RawClient) PostAdminRealmsRealmUsersUserIDImpersonation(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDLogout

func (c *RawClient) PostAdminRealmsRealmUsersUserIDLogout(ctx context.Context, realm string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID

func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody

func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, userID string, clientID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsRealm

func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody

func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmUsersWithBody

func (c *RawClient) PostAdminRealmsRealmUsersWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmWorkflows

func (c *RawClient) PostAdminRealmsRealmWorkflows(ctx context.Context, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID

func (c *RawClient) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, params *PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID

func (c *RawClient) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID(ctx context.Context, realm string, id string, pType map[string]interface{}, resourceID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmWorkflowsMigrate

func (c *RawClient) PostAdminRealmsRealmWorkflowsMigrate(ctx context.Context, realm string, params *PostAdminRealmsRealmWorkflowsMigrateParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsRealmWorkflowsWithBody

func (c *RawClient) PostAdminRealmsRealmWorkflowsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PostAdminRealmsWithBody

func (c *RawClient) PostAdminRealmsWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealm

func (c *RawClient) PutAdminRealmsRealm(ctx context.Context, realm string, body PutAdminRealmsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationConfigID

func (c *RawClient) PutAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationConfigIDWithBody

func (c *RawClient) PutAdminRealmsRealmAuthenticationConfigIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions

func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, body PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBody

func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBody(ctx context.Context, realm string, flowAlias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationFlowsID

func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationFlowsIDWithBody

func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAlias

func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig

func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBody

func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBody

func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientPoliciesPolicies

func (c *RawClient) PutAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientPoliciesPoliciesWithBody

func (c *RawClient) PutAdminRealmsRealmClientPoliciesPoliciesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientPoliciesProfiles

func (c *RawClient) PutAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientPoliciesProfilesWithBody

func (c *RawClient) PutAdminRealmsRealmClientPoliciesProfilesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientScopesClientScopeID

func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID

func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientScopesClientScopeIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeIDWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientTemplatesClientScopeID

func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, body PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID

func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientScopeID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientTypes

func (c *RawClient) PutAdminRealmsRealmClientTypes(ctx context.Context, realm string, body PutAdminRealmsRealmClientTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientTypesWithBody

func (c *RawClient) PutAdminRealmsRealmClientTypesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUID

func (c *RawClient) PutAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBody(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBody(ctx context.Context, realm string, clientUUID string, scopeID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDManagementPermissions

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDManagementPermissions(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, body PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientUUID string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleName

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBody(ctx context.Context, realm string, clientUUID string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmClientsClientUUIDWithBody

func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDWithBody(ctx context.Context, realm string, clientUUID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmComponentsID

func (c *RawClient) PutAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmComponentsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmComponentsIDWithBody

func (c *RawClient) PutAdminRealmsRealmComponentsIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID

func (c *RawClient) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmDefaultGroupsGroupID

func (c *RawClient) PutAdminRealmsRealmDefaultGroupsGroupID(ctx context.Context, realm string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID

func (c *RawClient) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmEventsConfig

func (c *RawClient) PutAdminRealmsRealmEventsConfig(ctx context.Context, realm string, body PutAdminRealmsRealmEventsConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmEventsConfigWithBody

func (c *RawClient) PutAdminRealmsRealmEventsConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmGroupsGroupID

func (c *RawClient) PutAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmGroupsGroupIDManagementPermissions

func (c *RawClient) PutAdminRealmsRealmGroupsGroupIDManagementPermissions(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmGroupsGroupIDWithBody

func (c *RawClient) PutAdminRealmsRealmGroupsGroupIDWithBody(ctx context.Context, realm string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAlias

func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions

func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID

func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, body PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBody

func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBody(ctx context.Context, realm string, alias string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBody

func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBody(ctx context.Context, realm string, alias string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithBody

func (c *RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithBody(ctx context.Context, realm string, locale string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBody

func (c *RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBody(ctx context.Context, realm string, locale string, key string, body PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmOrganizationsOrgID

func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, body PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID

func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, body PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID

func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID(ctx context.Context, realm string, orgID string, groupID string, userID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBody

func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBody(ctx context.Context, realm string, orgID string, groupID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDWithBody

func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDWithBody(ctx context.Context, realm string, orgID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesByIDRoleID

func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions

func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesByIDRoleIDWithBody

func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleIDWithBody(ctx context.Context, realm string, roleID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesRoleName

func (c *RawClient) PutAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesRoleNameManagementPermissions

func (c *RawClient) PutAdminRealmsRealmRolesRoleNameManagementPermissions(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmRolesRoleNameWithBody

func (c *RawClient) PutAdminRealmsRealmRolesRoleNameWithBody(ctx context.Context, realm string, roleName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersManagementPermissions

func (c *RawClient) PutAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, body PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersManagementPermissionsWithBody

func (c *RawClient) PutAdminRealmsRealmUsersManagementPermissionsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersProfile

func (c *RawClient) PutAdminRealmsRealmUsersProfile(ctx context.Context, realm string, body PutAdminRealmsRealmUsersProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersProfileWithBody

func (c *RawClient) PutAdminRealmsRealmUsersProfileWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserID

func (c *RawClient) PutAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBody

func (c *RawClient) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBody(ctx context.Context, realm string, userID string, credentialID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBody

func (c *RawClient) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBody(ctx context.Context, realm string, userID string, credentialID string, body PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDDisableCredentialTypes

func (c *RawClient) PutAdminRealmsRealmUsersUserIDDisableCredentialTypes(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBody

func (c *RawClient) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBody

func (c *RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBody(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDGroupsGroupID

func (c *RawClient) PutAdminRealmsRealmUsersUserIDGroupsGroupID(ctx context.Context, realm string, userID string, groupID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDResetPassword

func (c *RawClient) PutAdminRealmsRealmUsersUserIDResetPassword(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDResetPasswordEmail

func (c *RawClient) PutAdminRealmsRealmUsersUserIDResetPasswordEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDResetPasswordWithBody

func (c *RawClient) PutAdminRealmsRealmUsersUserIDResetPasswordWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDSendVerifyEmail

func (c *RawClient) PutAdminRealmsRealmUsersUserIDSendVerifyEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmUsersUserIDWithBody

func (c *RawClient) PutAdminRealmsRealmUsersUserIDWithBody(ctx context.Context, realm string, userID string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmWithBody

func (c *RawClient) PutAdminRealmsRealmWithBody(ctx context.Context, realm string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmWorkflowsID

func (c *RawClient) PutAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmWorkflowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*RawClient) PutAdminRealmsRealmWorkflowsIDWithBody

func (c *RawClient) PutAdminRealmsRealmWorkflowsIDWithBody(ctx context.Context, realm string, id string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

type RealmEventsConfigRepresentation

type RealmEventsConfigRepresentation struct {
	AdminEventsDetailsEnabled *bool     `json:"adminEventsDetailsEnabled,omitempty"`
	AdminEventsEnabled        *bool     `json:"adminEventsEnabled,omitempty"`
	EnabledEventTypes         *[]string `json:"enabledEventTypes,omitempty"`
	EventsEnabled             *bool     `json:"eventsEnabled,omitempty"`
	EventsExpiration          *int64    `json:"eventsExpiration,omitempty"`
	EventsListeners           *[]string `json:"eventsListeners,omitempty"`
}

RealmEventsConfigRepresentation defines model for RealmEventsConfigRepresentation.

type RealmRepresentation

type RealmRepresentation struct {
	AccessCodeLifespan                  *int32                `json:"accessCodeLifespan,omitempty"`
	AccessCodeLifespanLogin             *int32                `json:"accessCodeLifespanLogin,omitempty"`
	AccessCodeLifespanUserAction        *int32                `json:"accessCodeLifespanUserAction,omitempty"`
	AccessTokenLifespan                 *int32                `json:"accessTokenLifespan,omitempty"`
	AccessTokenLifespanForImplicitFlow  *int32                `json:"accessTokenLifespanForImplicitFlow,omitempty"`
	AccountTheme                        *string               `json:"accountTheme,omitempty"`
	ActionTokenGeneratedByAdminLifespan *int32                `json:"actionTokenGeneratedByAdminLifespan,omitempty"`
	ActionTokenGeneratedByUserLifespan  *int32                `json:"actionTokenGeneratedByUserLifespan,omitempty"`
	AdminEventsDetailsEnabled           *bool                 `json:"adminEventsDetailsEnabled,omitempty"`
	AdminEventsEnabled                  *bool                 `json:"adminEventsEnabled,omitempty"`
	AdminPermissionsClient              *ClientRepresentation `json:"adminPermissionsClient,omitempty"`
	AdminPermissionsEnabled             *bool                 `json:"adminPermissionsEnabled,omitempty"`
	AdminTheme                          *string               `json:"adminTheme,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ApplicationScopeMappings *map[string][]ScopeMappingRepresentation `json:"applicationScopeMappings,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Applications           *[]ApplicationRepresentation         `json:"applications,omitempty"`
	Attributes             *map[string]string                   `json:"attributes,omitempty"`
	AuthenticationFlows    *[]AuthenticationFlowRepresentation  `json:"authenticationFlows,omitempty"`
	AuthenticatorConfig    *[]AuthenticatorConfigRepresentation `json:"authenticatorConfig,omitempty"`
	BrowserFlow            *string                              `json:"browserFlow,omitempty"`
	BrowserSecurityHeaders *map[string]string                   `json:"browserSecurityHeaders,omitempty"`
	BruteForceProtected    *bool                                `json:"bruteForceProtected,omitempty"`
	BruteForceStrategy     *BruteForceStrategy                  `json:"bruteForceStrategy,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Certificate                     *string                                  `json:"certificate,omitempty"`
	ClientAuthenticationFlow        *string                                  `json:"clientAuthenticationFlow,omitempty"`
	ClientOfflineSessionIdleTimeout *int32                                   `json:"clientOfflineSessionIdleTimeout,omitempty"`
	ClientOfflineSessionMaxLifespan *int32                                   `json:"clientOfflineSessionMaxLifespan,omitempty"`
	ClientPolicies                  *ClientPoliciesRepresentation            `json:"clientPolicies,omitempty"`
	ClientProfiles                  *ClientProfilesRepresentation            `json:"clientProfiles,omitempty"`
	ClientScopeMappings             *map[string][]ScopeMappingRepresentation `json:"clientScopeMappings,omitempty"`
	ClientScopes                    *[]ClientScopeRepresentation             `json:"clientScopes,omitempty"`
	ClientSessionIdleTimeout        *int32                                   `json:"clientSessionIdleTimeout,omitempty"`
	ClientSessionMaxLifespan        *int32                                   `json:"clientSessionMaxLifespan,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ClientTemplates *[]ClientTemplateRepresentation `json:"clientTemplates,omitempty"`
	Clients         *[]ClientRepresentation         `json:"clients,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	CodeSecret                  *string                                                `json:"codeSecret,omitempty"`
	Components                  *MultivaluedHashMapStringComponentExportRepresentation `json:"components,omitempty"`
	DefaultDefaultClientScopes  *[]string                                              `json:"defaultDefaultClientScopes,omitempty"`
	DefaultGroups               *[]string                                              `json:"defaultGroups,omitempty"`
	DefaultLocale               *string                                                `json:"defaultLocale,omitempty"`
	DefaultOptionalClientScopes *[]string                                              `json:"defaultOptionalClientScopes,omitempty"`
	DefaultRole                 *RoleRepresentation                                    `json:"defaultRole,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	DefaultRoles                 *[]string                               `json:"defaultRoles,omitempty"`
	DefaultSignatureAlgorithm    *string                                 `json:"defaultSignatureAlgorithm,omitempty"`
	DirectGrantFlow              *string                                 `json:"directGrantFlow,omitempty"`
	DisplayName                  *string                                 `json:"displayName,omitempty"`
	DisplayNameHTML              *string                                 `json:"displayNameHtml,omitempty"`
	DockerAuthenticationFlow     *string                                 `json:"dockerAuthenticationFlow,omitempty"`
	DuplicateEmailsAllowed       *bool                                   `json:"duplicateEmailsAllowed,omitempty"`
	EditUsernameAllowed          *bool                                   `json:"editUsernameAllowed,omitempty"`
	EmailTheme                   *string                                 `json:"emailTheme,omitempty"`
	Enabled                      *bool                                   `json:"enabled,omitempty"`
	EnabledEventTypes            *[]string                               `json:"enabledEventTypes,omitempty"`
	EventsEnabled                *bool                                   `json:"eventsEnabled,omitempty"`
	EventsExpiration             *int64                                  `json:"eventsExpiration,omitempty"`
	EventsListeners              *[]string                               `json:"eventsListeners,omitempty"`
	FailureFactor                *int32                                  `json:"failureFactor,omitempty"`
	FederatedUsers               *[]UserRepresentation                   `json:"federatedUsers,omitempty"`
	FirstBrokerLoginFlow         *string                                 `json:"firstBrokerLoginFlow,omitempty"`
	Groups                       *[]GroupRepresentation                  `json:"groups,omitempty"`
	ID                           *string                                 `json:"id,omitempty"`
	IdentityProviderMappers      *[]IdentityProviderMapperRepresentation `json:"identityProviderMappers,omitempty"`
	IdentityProviders            *[]IdentityProviderRepresentation       `json:"identityProviders,omitempty"`
	InternationalizationEnabled  *bool                                   `json:"internationalizationEnabled,omitempty"`
	KeycloakVersion              *string                                 `json:"keycloakVersion,omitempty"`
	LocalizationTexts            *map[string]map[string]string           `json:"localizationTexts,omitempty"`
	LoginTheme                   *string                                 `json:"loginTheme,omitempty"`
	LoginWithEmailAllowed        *bool                                   `json:"loginWithEmailAllowed,omitempty"`
	MaxDeltaTimeSeconds          *int32                                  `json:"maxDeltaTimeSeconds,omitempty"`
	MaxFailureWaitSeconds        *int32                                  `json:"maxFailureWaitSeconds,omitempty"`
	MaxSecondaryAuthFailures     *int32                                  `json:"maxSecondaryAuthFailures,omitempty"`
	MaxTemporaryLockouts         *int32                                  `json:"maxTemporaryLockouts,omitempty"`
	MinimumQuickLoginWaitSeconds *int32                                  `json:"minimumQuickLoginWaitSeconds,omitempty"`
	NotBefore                    *int32                                  `json:"notBefore,omitempty"`
	Oauth2DeviceCodeLifespan     *int32                                  `json:"oauth2DeviceCodeLifespan,omitempty"`
	Oauth2DevicePollingInterval  *int32                                  `json:"oauth2DevicePollingInterval,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	OauthClients                     *[]OAuthClientRepresentation  `json:"oauthClients,omitempty"`
	OfflineSessionIdleTimeout        *int32                        `json:"offlineSessionIdleTimeout,omitempty"`
	OfflineSessionMaxLifespan        *int32                        `json:"offlineSessionMaxLifespan,omitempty"`
	OfflineSessionMaxLifespanEnabled *bool                         `json:"offlineSessionMaxLifespanEnabled,omitempty"`
	Organizations                    *[]OrganizationRepresentation `json:"organizations,omitempty"`
	OrganizationsEnabled             *bool                         `json:"organizationsEnabled,omitempty"`
	OtpPolicyAlgorithm               *string                       `json:"otpPolicyAlgorithm,omitempty"`
	OtpPolicyCodeReusable            *bool                         `json:"otpPolicyCodeReusable,omitempty"`
	OtpPolicyDigits                  *int32                        `json:"otpPolicyDigits,omitempty"`
	OtpPolicyInitialCounter          *int32                        `json:"otpPolicyInitialCounter,omitempty"`
	OtpPolicyLookAheadWindow         *int32                        `json:"otpPolicyLookAheadWindow,omitempty"`
	OtpPolicyPeriod                  *int32                        `json:"otpPolicyPeriod,omitempty"`
	OtpPolicyType                    *string                       `json:"otpPolicyType,omitempty"`
	OtpSupportedApplications         *[]string                     `json:"otpSupportedApplications,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	PasswordCredentialGrantAllowed *bool   `json:"passwordCredentialGrantAllowed,omitempty"`
	PasswordPolicy                 *string `json:"passwordPolicy,omitempty"`
	PermanentLockout               *bool   `json:"permanentLockout,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	PrivateKey      *string                         `json:"privateKey,omitempty"`
	ProtocolMappers *[]ProtocolMapperRepresentation `json:"protocolMappers,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	PublicKey                   *string `json:"publicKey,omitempty"`
	QuickLoginCheckMilliSeconds *int64  `json:"quickLoginCheckMilliSeconds,omitempty"`
	Realm                       *string `json:"realm,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	RealmCacheEnabled           *bool                                   `json:"realmCacheEnabled,omitempty"`
	RefreshTokenMaxReuse        *int32                                  `json:"refreshTokenMaxReuse,omitempty"`
	RegistrationAllowed         *bool                                   `json:"registrationAllowed,omitempty"`
	RegistrationEmailAsUsername *bool                                   `json:"registrationEmailAsUsername,omitempty"`
	RegistrationFlow            *string                                 `json:"registrationFlow,omitempty"`
	RememberMe                  *bool                                   `json:"rememberMe,omitempty"`
	RequiredActions             *[]RequiredActionProviderRepresentation `json:"requiredActions,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	RequiredCredentials  *[]string                     `json:"requiredCredentials,omitempty"`
	ResetCredentialsFlow *string                       `json:"resetCredentialsFlow,omitempty"`
	ResetPasswordAllowed *bool                         `json:"resetPasswordAllowed,omitempty"`
	RevokeRefreshToken   *bool                         `json:"revokeRefreshToken,omitempty"`
	Roles                *RolesRepresentation          `json:"roles,omitempty"`
	ScimAPIEnabled       *bool                         `json:"scimApiEnabled,omitempty"`
	ScopeMappings        *[]ScopeMappingRepresentation `json:"scopeMappings,omitempty"`
	SMTPServer           *map[string]string            `json:"smtpServer,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Social *bool `json:"social,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	SocialProviders                 *map[string]string `json:"socialProviders,omitempty"`
	SslRequired                     *string            `json:"sslRequired,omitempty"`
	SsoSessionIdleTimeout           *int32             `json:"ssoSessionIdleTimeout,omitempty"`
	SsoSessionIdleTimeoutRememberMe *int32             `json:"ssoSessionIdleTimeoutRememberMe,omitempty"`
	SsoSessionMaxLifespan           *int32             `json:"ssoSessionMaxLifespan,omitempty"`
	SsoSessionMaxLifespanRememberMe *int32             `json:"ssoSessionMaxLifespanRememberMe,omitempty"`
	SupportedLocales                *[]string          `json:"supportedLocales,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UpdateProfileOnInitialSocialLogin *bool `json:"updateProfileOnInitialSocialLogin,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	UserCacheEnabled                                          *bool                                   `json:"userCacheEnabled,omitempty"`
	UserFederationMappers                                     *[]UserFederationMapperRepresentation   `json:"userFederationMappers,omitempty"`
	UserFederationProviders                                   *[]UserFederationProviderRepresentation `json:"userFederationProviders,omitempty"`
	UserManagedAccessAllowed                                  *bool                                   `json:"userManagedAccessAllowed,omitempty"`
	Users                                                     *[]UserRepresentation                   `json:"users,omitempty"`
	VerifiableCredentialsEnabled                              *bool                                   `json:"verifiableCredentialsEnabled,omitempty"`
	VerifyEmail                                               *bool                                   `json:"verifyEmail,omitempty"`
	WaitIncrementSeconds                                      *int32                                  `json:"waitIncrementSeconds,omitempty"`
	WebAuthnPolicyAcceptableAaguids                           *[]string                               `json:"webAuthnPolicyAcceptableAaguids,omitempty"`
	WebAuthnPolicyAttestationConveyancePreference             *string                                 `json:"webAuthnPolicyAttestationConveyancePreference,omitempty"`
	WebAuthnPolicyAuthenticatorAttachment                     *string                                 `json:"webAuthnPolicyAuthenticatorAttachment,omitempty"`
	WebAuthnPolicyAvoidSameAuthenticatorRegister              *bool                                   `json:"webAuthnPolicyAvoidSameAuthenticatorRegister,omitempty"`
	WebAuthnPolicyCreateTimeout                               *int32                                  `json:"webAuthnPolicyCreateTimeout,omitempty"`
	WebAuthnPolicyExtraOrigins                                *[]string                               `json:"webAuthnPolicyExtraOrigins,omitempty"`
	WebAuthnPolicyPasswordlessAcceptableAaguids               *[]string                               `json:"webAuthnPolicyPasswordlessAcceptableAaguids,omitempty"`
	WebAuthnPolicyPasswordlessAttestationConveyancePreference *string                                 `json:"webAuthnPolicyPasswordlessAttestationConveyancePreference,omitempty"`
	WebAuthnPolicyPasswordlessAuthenticatorAttachment         *string                                 `json:"webAuthnPolicyPasswordlessAuthenticatorAttachment,omitempty"`
	WebAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister  *bool                                   `json:"webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister,omitempty"`
	WebAuthnPolicyPasswordlessCreateTimeout                   *int32                                  `json:"webAuthnPolicyPasswordlessCreateTimeout,omitempty"`
	WebAuthnPolicyPasswordlessExtraOrigins                    *[]string                               `json:"webAuthnPolicyPasswordlessExtraOrigins,omitempty"`
	WebAuthnPolicyPasswordlessMediation                       *string                                 `json:"webAuthnPolicyPasswordlessMediation,omitempty"`
	WebAuthnPolicyPasswordlessPasskeysEnabled                 *bool                                   `json:"webAuthnPolicyPasswordlessPasskeysEnabled,omitempty"`
	WebAuthnPolicyPasswordlessRequireResidentKey              *string                                 `json:"webAuthnPolicyPasswordlessRequireResidentKey,omitempty"`
	WebAuthnPolicyPasswordlessResidentKey                     *string                                 `json:"webAuthnPolicyPasswordlessResidentKey,omitempty"`
	WebAuthnPolicyPasswordlessRpEntityName                    *string                                 `json:"webAuthnPolicyPasswordlessRpEntityName,omitempty"`
	WebAuthnPolicyPasswordlessRpID                            *string                                 `json:"webAuthnPolicyPasswordlessRpId,omitempty"`
	WebAuthnPolicyPasswordlessSignatureAlgorithms             *[]string                               `json:"webAuthnPolicyPasswordlessSignatureAlgorithms,omitempty"`
	WebAuthnPolicyPasswordlessUserVerificationRequirement     *string                                 `json:"webAuthnPolicyPasswordlessUserVerificationRequirement,omitempty"`
	WebAuthnPolicyRequireResidentKey                          *string                                 `json:"webAuthnPolicyRequireResidentKey,omitempty"`
	WebAuthnPolicyResidentKey                                 *string                                 `json:"webAuthnPolicyResidentKey,omitempty"`
	WebAuthnPolicyRpEntityName                                *string                                 `json:"webAuthnPolicyRpEntityName,omitempty"`
	WebAuthnPolicyRpID                                        *string                                 `json:"webAuthnPolicyRpId,omitempty"`
	WebAuthnPolicySignatureAlgorithms                         *[]string                               `json:"webAuthnPolicySignatureAlgorithms,omitempty"`
	WebAuthnPolicyUserVerificationRequirement                 *string                                 `json:"webAuthnPolicyUserVerificationRequirement,omitempty"`
}

RealmRepresentation defines model for RealmRepresentation.

type RequestEditorFn

type RequestEditorFn func(ctx context.Context, req *http.Request) error

RequestEditorFn is the function signature for the RequestEditor callback function

type RequiredActionConfigInfoRepresentation

type RequiredActionConfigInfoRepresentation struct {
	Properties *[]ConfigPropertyRepresentation `json:"properties,omitempty"`
}

RequiredActionConfigInfoRepresentation defines model for RequiredActionConfigInfoRepresentation.

type RequiredActionConfigRepresentation

type RequiredActionConfigRepresentation struct {
	Config *map[string]string `json:"config,omitempty"`
}

RequiredActionConfigRepresentation defines model for RequiredActionConfigRepresentation.

type RequiredActionProviderRepresentation

type RequiredActionProviderRepresentation struct {
	Alias         *string            `json:"alias,omitempty"`
	Config        *map[string]string `json:"config,omitempty"`
	DefaultAction *bool              `json:"defaultAction,omitempty"`
	Enabled       *bool              `json:"enabled,omitempty"`
	Name          *string            `json:"name,omitempty"`
	Priority      *int32             `json:"priority,omitempty"`
	ProviderID    *string            `json:"providerId,omitempty"`
}

RequiredActionProviderRepresentation defines model for RequiredActionProviderRepresentation.

type ResourceOwnerRepresentation

type ResourceOwnerRepresentation struct {
	ID   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

ResourceOwnerRepresentation defines model for ResourceOwnerRepresentation.

type ResourceRepresentation

type ResourceRepresentation struct {
	UnderscoreID       *string                      `json:"_id,omitempty"`
	Attributes         *map[string][]string         `json:"attributes,omitempty"`
	DisplayName        *string                      `json:"displayName,omitempty"`
	IconURI            *string                      `json:"icon_uri,omitempty"`
	Name               *string                      `json:"name,omitempty"`
	Owner              *ResourceOwnerRepresentation `json:"owner,omitempty"`
	OwnerManagedAccess *bool                        `json:"ownerManagedAccess,omitempty"`
	Scopes             *[]ScopeRepresentation       `json:"scopes,omitempty"`
	ScopesUma          *[]ScopeRepresentation       `json:"scopesUma,omitempty"`
	Type               *string                      `json:"type,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	URI  *string   `json:"uri,omitempty"`
	Uris *[]string `json:"uris,omitempty"`
}

ResourceRepresentation defines model for ResourceRepresentation.

type ResourceServerRepresentation

type ResourceServerRepresentation struct {
	AllowRemoteResourceManagement *bool                     `json:"allowRemoteResourceManagement,omitempty"`
	AuthorizationSchema           *AuthorizationSchema      `json:"authorizationSchema,omitempty"`
	ClientID                      *string                   `json:"clientId,omitempty"`
	DecisionStrategy              *DecisionStrategy         `json:"decisionStrategy,omitempty"`
	ID                            *string                   `json:"id,omitempty"`
	Name                          *string                   `json:"name,omitempty"`
	Policies                      *[]PolicyRepresentation   `json:"policies,omitempty"`
	PolicyEnforcementMode         *PolicyEnforcementMode    `json:"policyEnforcementMode,omitempty"`
	Resources                     *[]ResourceRepresentation `json:"resources,omitempty"`
	Scopes                        *[]ScopeRepresentation    `json:"scopes,omitempty"`
}

ResourceServerRepresentation defines model for ResourceServerRepresentation.

type ResourceType

type ResourceType struct {
	GroupType    *string              `json:"groupType,omitempty"`
	ScopeAliases *map[string][]string `json:"scopeAliases,omitempty"`
	Scopes       *[]string            `json:"scopes,omitempty"`
	Type         *string              `json:"type,omitempty"`
}

ResourceType defines model for ResourceType.

type RoleRepresentation

type RoleRepresentation struct {
	Attributes  *map[string][]string `json:"attributes,omitempty"`
	ClientRole  *bool                `json:"clientRole,omitempty"`
	Composite   *bool                `json:"composite,omitempty"`
	Composites  *Composites          `json:"composites,omitempty"`
	ContainerID *string              `json:"containerId,omitempty"`
	Description *string              `json:"description,omitempty"`
	ID          *string              `json:"id,omitempty"`
	Name        *string              `json:"name,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ScopeParamRequired *bool `json:"scopeParamRequired,omitempty"`
}

RoleRepresentation defines model for RoleRepresentation.

type RolesRepresentation

type RolesRepresentation struct {
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	Application *map[string][]RoleRepresentation `json:"application,omitempty"`
	Client      *map[string][]RoleRepresentation `json:"client,omitempty"`
	Realm       *[]RoleRepresentation            `json:"realm,omitempty"`
}

RolesRepresentation defines model for RolesRepresentation.

type SamlExampleResponse

type SamlExampleResponse struct {
	SamlResponse *string `json:"samlResponse,omitempty"`
}

SamlExampleResponse defines model for SamlExampleResponse.

type ScopeMappingRepresentation

type ScopeMappingRepresentation struct {
	Client      *string `json:"client,omitempty"`
	ClientScope *string `json:"clientScope,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ClientTemplate *string   `json:"clientTemplate,omitempty"`
	Roles          *[]string `json:"roles,omitempty"`
	Self           *string   `json:"self,omitempty"`
}

ScopeMappingRepresentation defines model for ScopeMappingRepresentation.

type ScopeRepresentation

type ScopeRepresentation struct {
	DisplayName *string                   `json:"displayName,omitempty"`
	IconURI     *string                   `json:"iconUri,omitempty"`
	ID          *string                   `json:"id,omitempty"`
	Name        *string                   `json:"name,omitempty"`
	Policies    *[]PolicyRepresentation   `json:"policies,omitempty"`
	Resources   *[]ResourceRepresentation `json:"resources,omitempty"`
}

ScopeRepresentation defines model for ScopeRepresentation.

type SocialLinkRepresentation

type SocialLinkRepresentation struct {
	SocialProvider *string `json:"socialProvider,omitempty"`
	SocialUserID   *string `json:"socialUserId,omitempty"`
	SocialUsername *string `json:"socialUsername,omitempty"`
}

SocialLinkRepresentation defines model for SocialLinkRepresentation.

type Status

type Status string

Status defines model for Status.

const (
	StatusEXPIRED Status = "EXPIRED"
	StatusPENDING Status = "PENDING"
)

Defines values for Status.

func (Status) Valid

func (e Status) Valid() bool

Valid indicates whether the value is a known member of the Status enum.

type StepExecutionStatus

type StepExecutionStatus string

StepExecutionStatus defines model for StepExecutionStatus.

const (
	StepExecutionStatusCOMPLETED StepExecutionStatus = "COMPLETED"
	StepExecutionStatusPENDING   StepExecutionStatus = "PENDING"
)

Defines values for StepExecutionStatus.

func (StepExecutionStatus) Valid

func (e StepExecutionStatus) Valid() bool

Valid indicates whether the value is a known member of the StepExecutionStatus enum.

type UPAttribute

type UPAttribute struct {
	Annotations  *map[string]interface{}            `json:"annotations,omitempty"`
	DefaultValue *string                            `json:"defaultValue,omitempty"`
	DisplayName  *string                            `json:"displayName,omitempty"`
	Group        *string                            `json:"group,omitempty"`
	Multivalued  *bool                              `json:"multivalued,omitempty"`
	Name         *string                            `json:"name,omitempty"`
	Permissions  *UPAttributePermissions            `json:"permissions,omitempty"`
	Required     *UPAttributeRequired               `json:"required,omitempty"`
	Selector     *UPAttributeSelector               `json:"selector,omitempty"`
	Validations  *map[string]map[string]interface{} `json:"validations,omitempty"`
}

UPAttribute defines model for UPAttribute.

type UPAttributePermissions

type UPAttributePermissions struct {
	Edit *[]string `json:"edit,omitempty"`
	View *[]string `json:"view,omitempty"`
}

UPAttributePermissions defines model for UPAttributePermissions.

type UPAttributeRequired

type UPAttributeRequired struct {
	Roles  *[]string `json:"roles,omitempty"`
	Scopes *[]string `json:"scopes,omitempty"`
}

UPAttributeRequired defines model for UPAttributeRequired.

type UPAttributeSelector

type UPAttributeSelector struct {
	Scopes *[]string `json:"scopes,omitempty"`
}

UPAttributeSelector defines model for UPAttributeSelector.

type UPConfig

type UPConfig struct {
	Attributes               *[]UPAttribute            `json:"attributes,omitempty"`
	Groups                   *[]UPGroup                `json:"groups,omitempty"`
	UnmanagedAttributePolicy *UnmanagedAttributePolicy `json:"unmanagedAttributePolicy,omitempty"`
}

UPConfig defines model for UPConfig.

type UPGroup

type UPGroup struct {
	Annotations        *map[string]interface{} `json:"annotations,omitempty"`
	DisplayDescription *string                 `json:"displayDescription,omitempty"`
	DisplayHeader      *string                 `json:"displayHeader,omitempty"`
	Name               *string                 `json:"name,omitempty"`
}

UPGroup defines model for UPGroup.

type UnmanagedAttributePolicy

type UnmanagedAttributePolicy string

UnmanagedAttributePolicy defines model for UnmanagedAttributePolicy.

const (
	ADMINEDIT UnmanagedAttributePolicy = "ADMIN_EDIT"
	ADMINVIEW UnmanagedAttributePolicy = "ADMIN_VIEW"
	ENABLED   UnmanagedAttributePolicy = "ENABLED"
)

Defines values for UnmanagedAttributePolicy.

func (UnmanagedAttributePolicy) Valid

func (e UnmanagedAttributePolicy) Valid() bool

Valid indicates whether the value is a known member of the UnmanagedAttributePolicy enum.

type User

type User struct {
	ID            string `json:"id,omitempty"`
	Username      string `json:"username,omitempty"`
	Email         string `json:"email,omitempty"`
	FirstName     string `json:"firstName,omitempty"`
	LastName      string `json:"lastName,omitempty"`
	Enabled       bool   `json:"enabled,omitempty"`
	EmailVerified bool   `json:"emailVerified,omitempty"`
}

User is a typed, trimmed view of a Keycloak user (UserRepresentation) covering the fields most consumers need when listing users.

type UserConsentRepresentation

type UserConsentRepresentation struct {
	ClientID            *string   `json:"clientId,omitempty"`
	CreatedDate         *int64    `json:"createdDate,omitempty"`
	GrantedClientScopes *[]string `json:"grantedClientScopes,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	GrantedRealmRoles *[]string `json:"grantedRealmRoles,omitempty"`
	LastUpdatedDate   *int64    `json:"lastUpdatedDate,omitempty"`
}

UserConsentRepresentation defines model for UserConsentRepresentation.

type UserFederationMapperRepresentation

type UserFederationMapperRepresentation struct {
	Config                        *map[string]string `json:"config,omitempty"`
	FederationMapperType          *string            `json:"federationMapperType,omitempty"`
	FederationProviderDisplayName *string            `json:"federationProviderDisplayName,omitempty"`
	ID                            *string            `json:"id,omitempty"`
	Name                          *string            `json:"name,omitempty"`
}

UserFederationMapperRepresentation defines model for UserFederationMapperRepresentation.

type UserFederationProviderRepresentation

type UserFederationProviderRepresentation struct {
	ChangedSyncPeriod *int32             `json:"changedSyncPeriod,omitempty"`
	Config            *map[string]string `json:"config,omitempty"`
	DisplayName       *string            `json:"displayName,omitempty"`
	FullSyncPeriod    *int32             `json:"fullSyncPeriod,omitempty"`
	ID                *string            `json:"id,omitempty"`
	LastSync          *int32             `json:"lastSync,omitempty"`
	Priority          *int32             `json:"priority,omitempty"`
	ProviderName      *string            `json:"providerName,omitempty"`
}

UserFederationProviderRepresentation defines model for UserFederationProviderRepresentation.

type UserProfileAttributeGroupMetadata

type UserProfileAttributeGroupMetadata struct {
	Annotations        *map[string]interface{} `json:"annotations,omitempty"`
	DisplayDescription *string                 `json:"displayDescription,omitempty"`
	DisplayHeader      *string                 `json:"displayHeader,omitempty"`
	Name               *string                 `json:"name,omitempty"`
}

UserProfileAttributeGroupMetadata defines model for UserProfileAttributeGroupMetadata.

type UserProfileAttributeMetadata

type UserProfileAttributeMetadata struct {
	Annotations  *map[string]interface{}            `json:"annotations,omitempty"`
	DefaultValue *string                            `json:"defaultValue,omitempty"`
	DisplayName  *string                            `json:"displayName,omitempty"`
	Group        *string                            `json:"group,omitempty"`
	Multivalued  *bool                              `json:"multivalued,omitempty"`
	Name         *string                            `json:"name,omitempty"`
	ReadOnly     *bool                              `json:"readOnly,omitempty"`
	Required     *bool                              `json:"required,omitempty"`
	Validators   *map[string]map[string]interface{} `json:"validators,omitempty"`
}

UserProfileAttributeMetadata defines model for UserProfileAttributeMetadata.

type UserProfileMetadata

type UserProfileMetadata struct {
	Attributes *[]UserProfileAttributeMetadata      `json:"attributes,omitempty"`
	Groups     *[]UserProfileAttributeGroupMetadata `json:"groups,omitempty"`
}

UserProfileMetadata defines model for UserProfileMetadata.

type UserRepresentation

type UserRepresentation struct {
	Access *map[string]bool `json:"access,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	ApplicationRoles            *map[string][]string                        `json:"applicationRoles,omitempty"`
	Attributes                  *map[string][]string                        `json:"attributes,omitempty"`
	ClientConsents              *[]UserConsentRepresentation                `json:"clientConsents,omitempty"`
	ClientRoles                 *map[string][]string                        `json:"clientRoles,omitempty"`
	CreatedTimestamp            *int64                                      `json:"createdTimestamp,omitempty"`
	Credentials                 *[]CredentialRepresentation                 `json:"credentials,omitempty"`
	DisableableCredentialTypes  *[]string                                   `json:"disableableCredentialTypes,omitempty"`
	Email                       *string                                     `json:"email,omitempty"`
	EmailVerified               *bool                                       `json:"emailVerified,omitempty"`
	Enabled                     *bool                                       `json:"enabled,omitempty"`
	FederatedIdentities         *[]FederatedIdentityRepresentation          `json:"federatedIdentities,omitempty"`
	FederationLink              *string                                     `json:"federationLink,omitempty"`
	FirstName                   *string                                     `json:"firstName,omitempty"`
	Groups                      *[]string                                   `json:"groups,omitempty"`
	ID                          *string                                     `json:"id,omitempty"`
	IssuedVerifiableCredentials *[]IssuedVerifiableCredentialRepresentation `json:"issuedVerifiableCredentials,omitempty"`
	LastName                    *string                                     `json:"lastName,omitempty"`
	NotBefore                   *int32                                      `json:"notBefore,omitempty"`
	Origin                      *string                                     `json:"origin,omitempty"`
	RealmRoles                  *[]string                                   `json:"realmRoles,omitempty"`
	RequiredActions             *[]string                                   `json:"requiredActions,omitempty"`
	Self                        *string                                     `json:"self,omitempty"`
	ServiceAccountClientID      *string                                     `json:"serviceAccountClientId,omitempty"`
	// Deprecated: this property has been marked as deprecated upstream, but no `x-deprecated-reason` was set
	SocialLinks           *[]SocialLinkRepresentation               `json:"socialLinks,omitempty"`
	Totp                  *bool                                     `json:"totp,omitempty"`
	UserProfileMetadata   *UserProfileMetadata                      `json:"userProfileMetadata,omitempty"`
	Username              *string                                   `json:"username,omitempty"`
	VerifiableCredentials *[]UserVerifiableCredentialRepresentation `json:"verifiableCredentials,omitempty"`
}

UserRepresentation defines model for UserRepresentation.

type UserSessionRepresentation

type UserSessionRepresentation struct {
	Clients       *map[string]string `json:"clients,omitempty"`
	ID            *string            `json:"id,omitempty"`
	IPAddress     *string            `json:"ipAddress,omitempty"`
	LastAccess    *int64             `json:"lastAccess,omitempty"`
	RememberMe    *bool              `json:"rememberMe,omitempty"`
	Start         *int64             `json:"start,omitempty"`
	TransientUser *bool              `json:"transientUser,omitempty"`
	UserID        *string            `json:"userId,omitempty"`
	Username      *string            `json:"username,omitempty"`
}

UserSessionRepresentation defines model for UserSessionRepresentation.

type UserVerifiableCredentialRepresentation

type UserVerifiableCredentialRepresentation struct {
	CreatedDate               *int64               `json:"createdDate,omitempty"`
	CredentialConfigurationID *string              `json:"credentialConfigurationId,omitempty"`
	CredentialScopeName       *string              `json:"credentialScopeName,omitempty"`
	Revision                  *string              `json:"revision,omitempty"`
	UpdatedDate               *int64               `json:"updatedDate,omitempty"`
	UserAttributes            *map[string][]string `json:"userAttributes,omitempty"`
}

UserVerifiableCredentialRepresentation defines model for UserVerifiableCredentialRepresentation.

type VerifiableCredentialOfferActionConfig

type VerifiableCredentialOfferActionConfig struct {
	ClientID                  *string `json:"clientId,omitempty"`
	CredentialConfigurationID *string `json:"credentialConfigurationId,omitempty"`
	PreAuthorized             *bool   `json:"preAuthorized,omitempty"`
}

VerifiableCredentialOfferActionConfig defines model for VerifiableCredentialOfferActionConfig.

type WorkflowConcurrencyRepresentation

type WorkflowConcurrencyRepresentation struct {
	CancelInProgress  *string `json:"cancel-in-progress,omitempty"`
	RestartInProgress *string `json:"restart-in-progress,omitempty"`
}

WorkflowConcurrencyRepresentation defines model for WorkflowConcurrencyRepresentation.

type WorkflowRepresentation

type WorkflowRepresentation struct {
	CancelInProgress  *string                            `json:"cancelInProgress,omitempty"`
	Concurrency       *WorkflowConcurrencyRepresentation `json:"concurrency,omitempty"`
	Enabled           *bool                              `json:"enabled,omitempty"`
	ID                *string                            `json:"id,omitempty"`
	If                *string                            `json:"if,omitempty"`
	Name              *string                            `json:"name,omitempty"`
	On                *string                            `json:"on,omitempty"`
	RestartInProgress *string                            `json:"restartInProgress,omitempty"`
	Schedule          *WorkflowScheduleRepresentation    `json:"schedule,omitempty"`
	State             *WorkflowStateRepresentation       `json:"state,omitempty"`
	Steps             *[]WorkflowStepRepresentation      `json:"steps,omitempty"`
	With              *MultivaluedHashMapStringString    `json:"with,omitempty"`
}

WorkflowRepresentation defines model for WorkflowRepresentation.

type WorkflowScheduleRepresentation

type WorkflowScheduleRepresentation struct {
	After     *string `json:"after,omitempty"`
	BatchSize *int32  `json:"batch-size,omitempty"`
}

WorkflowScheduleRepresentation defines model for WorkflowScheduleRepresentation.

type WorkflowStateRepresentation

type WorkflowStateRepresentation struct {
	Errors *[]string `json:"errors,omitempty"`
}

WorkflowStateRepresentation defines model for WorkflowStateRepresentation.

type WorkflowStepRepresentation

type WorkflowStepRepresentation struct {
	After       *string                         `json:"after,omitempty"`
	Config      *MultivaluedHashMapStringString `json:"config,omitempty"`
	ID          *string                         `json:"id,omitempty"`
	ScheduledAt *int64                          `json:"scheduled-at,omitempty"`
	Status      *StepExecutionStatus            `json:"status,omitempty"`
	Uses        *string                         `json:"uses,omitempty"`
}

WorkflowStepRepresentation defines model for WorkflowStepRepresentation.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL