Documentation
¶
Overview ¶
Package kcadmin is a typed Go client for the Keycloak Admin REST API.
It is built from three layers:
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`.
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.
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 ¶
- Variables
- func ClientCredentialsTokenSource(ctx context.Context, baseURL, realm, clientID, clientSecret string, ...) oauth2.TokenSource
- func NewAuthedHTTPClient(ctx context.Context, ts oauth2.TokenSource) *http.Client
- func NewDeleteAdminRealmsRealmAdminEventsRequest(server string, realm string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersRequest(server string, realm string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest(server string, realm string, userID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAuthenticationConfigIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest(server string, realm string, executionID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAuthenticationFlowsIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest(server string, realm string, alias string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmAuthenticationRequiredActionsAliasRequest(server string, realm string, alias string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDNodesNodeRequest(server string, realm string, clientUUID string, node string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest(server string, realm string, clientUUID string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest(server string, realm string, clientUUID string, client string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientUUID string, client string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmClientsInitialAccessIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmComponentsIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmDefaultGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmEventsRequest(server string, realm string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, groupID string, clientID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, groupID string, clientID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, groupID string, contentType string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest(server string, realm string, alias string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmIdentityProviderInstancesAliasRequest(server string, realm string, alias string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmLocalizationLocaleKeyRequest(server string, realm string, locale string, key string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmLocalizationLocaleRequest(server string, realm string, locale string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest(server string, realm string, orgID string, groupID string, userID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, orgID string, groupID string, clientID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, orgID string, groupID string, clientID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest(server string, realm string, orgID string, alias string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest(server string, realm string, orgID string, id string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest(server string, realm string, orgID string, memberID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmOrganizationsOrgIDRequest(server string, realm string, orgID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRequest(server string, realm string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequest(server string, realm string, roleID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRolesByIDRoleIDRequest(server string, realm string, roleID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequest(server string, realm string, roleName string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRolesRoleNameCompositesRequestWithBody(server string, realm string, roleName string, contentType string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmRolesRoleNameRequest(server string, realm string, roleName string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmSessionsSessionRequest(server string, realm string, session string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDConsentsClientRequest(server string, realm string, userID string, client string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDRequest(server string, realm string, userID string, credentialID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest(server string, realm string, userID string, provider string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDGroupsGroupIDRequest(server string, realm string, userID string, groupID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDRequest(server string, realm string, userID string) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest(server string, realm string, userID string, clientID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, userID string, clientID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewDeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)
- func NewDeleteAdminRealmsRealmWorkflowsIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmAdminEventsRequest(server string, realm string, params *GetAdminRealmsRealmAdminEventsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationAuthenticatorProvidersRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDRequest(server string, realm string, providerID string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationConfigIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDRequest(server string, realm string, executionID string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationExecutionsExecutionIDRequest(server string, realm string, executionID string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest(server string, realm string, flowAlias string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationFlowsIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationFlowsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationFormActionProvidersRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationFormProvidersRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationPerClientConfigDescriptionRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationRequiredActionsAliasRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationRequiredActionsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientPoliciesPoliciesRequest(server string, realm string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientPoliciesProfilesRequest(server string, realm string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientRegistrationPolicyProvidersRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolRequest(server string, realm string, clientScopeID string, protocol string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeRequest(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientScopesRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientSessionStatsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolRequest(server string, realm string, clientScopeID string, protocol string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeRequest(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTemplatesRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientTypesRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesRequest(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsRequest(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesRequest(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesRequest(server string, realm string, clientUUID string, scopeID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDCertificatesAttrRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDClientSecretRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDClientSecretRotatedRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDDefaultClientScopesRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedRequest(server string, realm string, clientUUID string, roleContainerID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedRequest(server string, realm string, clientUUID string, roleContainerID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDRequest(server string, realm string, clientUUID string, providerID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionCountRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDOfflineSessionsRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDOptionalClientScopesRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest(server string, realm string, clientUUID string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolRequest(server string, realm string, clientUUID string, protocol string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest(server string, realm string, clientUUID string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableRequest(server string, realm string, clientUUID string, client string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeRequest(server string, realm string, clientUUID string, client string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest(server string, realm string, clientUUID string, client string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDScopeMappingsRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDServiceAccountUserRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDSessionCountRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDTestNodesAvailableRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsClientUUIDUserSessionsRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsInitialAccessRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmClientsRequest(server string, realm string, params *GetAdminRealmsRealmClientsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmComponentsIDRequest(server string, realm string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmComponentsIDSubComponentTypesRequest(server string, realm string, id string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmComponentsRequest(server string, realm string, params *GetAdminRealmsRealmComponentsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmCredentialRegistratorsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmDefaultDefaultClientScopesRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmDefaultGroupsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmEventsConfigRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmEventsRequest(server string, realm string, params *GetAdminRealmsRealmEventsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupByPathPathRequest(server string, realm string, path string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsCountRequest(server string, realm string, params *GetAdminRealmsRealmGroupsCountParams) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDChildrenRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDMembersRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest(server string, realm string, groupID string, clientID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest(server string, realm string, groupID string, clientID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, groupID string, clientID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsGroupIDRoleMappingsRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmGroupsRequest(server string, realm string, params *GetAdminRealmsRealmGroupsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasExportRequest(server string, realm string, alias string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest(server string, realm string, alias string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesAliasRequest(server string, realm string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderInstancesRequest(server string, realm string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmIdentityProviderProvidersProviderIDRequest(server string, realm string, providerID string) (*http.Request, error)
- func NewGetAdminRealmsRealmKeysRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmLocalizationLocaleKeyRequest(server string, realm string, locale string, key string) (*http.Request, error)
- func NewGetAdminRealmsRealmLocalizationLocaleRequest(server string, realm string, locale string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmLocalizationRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsCountRequest(server string, realm string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsRequest(server string, realm string, memberID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathRequest(server string, realm string, orgID string, path string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableRequest(server string, realm string, orgID string, groupID string, clientID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeRequest(server string, realm string, orgID string, groupID string, clientID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, orgID string, groupID string, clientID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRequest(server string, realm string, orgID string, groupID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDGroupsRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsRequest(server string, realm string, orgID string, alias string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasRequest(server string, realm string, orgID string, alias string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest(server string, realm string, orgID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsIDRequest(server string, realm string, orgID string, id string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDInvitationsRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDMembersCountRequest(server string, realm string, orgID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsRequest(server string, realm string, orgID string, memberID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsRequest(server string, realm string, orgID string, memberID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDRequest(server string, realm string, orgID string, memberID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDMembersRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsOrgIDRequest(server string, realm string, orgID string) (*http.Request, error)
- func NewGetAdminRealmsRealmOrganizationsRequest(server string, realm string, params *GetAdminRealmsRealmOrganizationsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDRequest(server string, realm string, roleID string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRealmRequest(server string, realm string, roleID string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesByIDRoleIDCompositesRequest(server string, realm string, roleID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest(server string, realm string, roleID string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesByIDRoleIDRequest(server string, realm string, roleID string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRequest(server string, realm string, params *GetAdminRealmsRealmRolesParams) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDRequest(server string, realm string, roleName string, targetClientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameCompositesRealmRequest(server string, realm string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameCompositesRequest(server string, realm string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameGroupsRequest(server string, realm string, roleName string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameManagementPermissionsRequest(server string, realm string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameRequest(server string, realm string, roleName string) (*http.Request, error)
- func NewGetAdminRealmsRealmRolesRoleNameUsersRequest(server string, realm string, roleName string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersCountRequest(server string, realm string, params *GetAdminRealmsRealmUsersCountParams) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersManagementPermissionsRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersProfileMetadataRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersProfileRequest(server string, realm string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersRequest(server string, realm string, params *GetAdminRealmsRealmUsersParams) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDConsentsRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDCredentialsRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDFederatedIdentityRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDGroupsCountRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDGroupsRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDRequest(server string, realm string, userID string, clientUUID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableRequest(server string, realm string, userID string, clientID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeRequest(server string, realm string, userID string, clientID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest(server string, realm string, userID string, clientID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDRoleMappingsRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDSessionsRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmUsersUserIDUnmanagedAttributesRequest(server string, realm string, userID string) (*http.Request, error)
- func NewGetAdminRealmsRealmWorkflowsIDRequest(server string, realm string, id string, ...) (*http.Request, error)
- func NewGetAdminRealmsRealmWorkflowsRequest(server string, realm string, params *GetAdminRealmsRealmWorkflowsParams) (*http.Request, error)
- func NewGetAdminRealmsRealmWorkflowsScheduledResourceIDRequest(server string, realm string, resourceID string) (*http.Request, error)
- func NewGetAdminRealmsRequest(server string, params *GetAdminRealmsParams) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationConfigRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationConfigRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequest(server string, realm string, executionID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigRequestWithBody(server string, realm string, executionID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityRequest(server string, realm string, executionID string) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityRequest(server string, realm string, executionID string) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationExecutionsRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationExecutionsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequest(server string, realm string, flowAlias string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyRequestWithBody(server string, realm string, flowAlias string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequest(server string, realm string, flowAlias string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionRequestWithBody(server string, realm string, flowAlias string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequest(server string, realm string, flowAlias string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowRequestWithBody(server string, realm string, flowAlias string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationFlowsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationRegisterRequiredActionRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityRequest(server string, realm string, alias string) (*http.Request, error)
- func NewPostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityRequest(server string, realm string, alias string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientDescriptionConverterRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientDescriptionConverterRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmClientDescriptionConverterRequestWithTextBody(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientScopesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequest(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientScopeID string, client string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientTemplatesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceRequestWithBody(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequest(server string, realm string, clientUUID string, attr string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadRequestWithBody(server string, realm string, clientUUID string, attr string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequest(server string, realm string, clientUUID string, attr string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadRequestWithBody(server string, realm string, clientUUID string, attr string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadRequest(server string, realm string, clientUUID string, attr string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDClientSecretRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDNodesRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDNodesRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDPushRevocationRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenRequest(server string, realm string, clientUUID string) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDRolesRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDRolesRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRequestWithBody(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequest(server string, realm string, clientUUID string, client string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientRequestWithBody(server string, realm string, clientUUID string, client string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsInitialAccessRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsInitialAccessRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsRequest(server string, realm string, body PostAdminRealmsRealmClientsJSONRequestBody) (*http.Request, error)
- func NewPostAdminRealmsRealmClientsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmComponentsRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmComponentsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsGroupIDChildrenRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsGroupIDChildrenRequestWithBody(server string, realm string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, groupID string, clientID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, groupID string, clientID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsRequest(server string, realm string, body PostAdminRealmsRealmGroupsJSONRequestBody) (*http.Request, error)
- func NewPostAdminRealmsRealmGroupsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderImportConfigRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderImportConfigRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequest(server string, realm string, alias string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderInstancesAliasMappersRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderInstancesRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderInstancesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmIdentityProviderUploadCertificateRequest(server string, realm string) (*http.Request, error)
- func NewPostAdminRealmsRealmLocalizationLocaleRequest(server string, realm string, locale string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmLocalizationLocaleRequestWithBody(server string, realm string, locale string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmLogoutAllRequest(server string, realm string) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequest(server string, realm string, orgID string, groupID string, clientID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, orgID string, groupID string, clientID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDGroupsRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendRequest(server string, realm string, orgID string, id string) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserRequestWithFormdataBody(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserRequestWithFormdataBody(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsOrgIDMembersRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmOrganizationsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmPartialExportRequest(server string, realm string, params *PostAdminRealmsRealmPartialExportParams) (*http.Request, error)
- func NewPostAdminRealmsRealmPartialImportRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmPartialImportRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmPushRevocationRequest(server string, realm string) (*http.Request, error)
- func NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequest(server string, realm string, roleID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmRolesByIDRoleIDCompositesRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmRolesRequest(server string, realm string, body PostAdminRealmsRealmRolesJSONRequestBody) (*http.Request, error)
- func NewPostAdminRealmsRealmRolesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmRolesRoleNameCompositesRequest(server string, realm string, roleName string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmRolesRoleNameCompositesRequestWithBody(server string, realm string, roleName string, contentType string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmTestSMTPConnectionRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmTestSMTPConnectionRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmTestSMTPConnectionRequestWithFormdataBody(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersRequest(server string, realm string, body PostAdminRealmsRealmUsersJSONRequestBody) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDRequest(server string, realm string, userID string, credentialID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstRequest(server string, realm string, userID string, credentialID string) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequest(server string, realm string, userID string, provider string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDFederatedIdentityProviderRequestWithBody(server string, realm string, userID string, provider string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDImpersonationRequest(server string, realm string, userID string) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDLogoutRequest(server string, realm string, userID string) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequest(server string, realm string, userID string, clientID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDRequestWithBody(server string, realm string, userID string, clientID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmUsersUserIDRoleMappingsRealmRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDRequest(server string, realm string, id string, pType map[string]interface{}, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDRequest(server string, realm string, id string, pType map[string]interface{}, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmWorkflowsMigrateRequest(server string, realm string, ...) (*http.Request, error)
- func NewPostAdminRealmsRealmWorkflowsRequest(server string, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody) (*http.Request, error)
- func NewPostAdminRealmsRealmWorkflowsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPostAdminRealmsRequest(server string, body PostAdminRealmsJSONRequestBody) (*http.Request, error)
- func NewPostAdminRealmsRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationConfigIDRequest(server string, realm string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationConfigIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequest(server string, realm string, flowAlias string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsRequestWithBody(server string, realm string, flowAlias string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationFlowsIDRequest(server string, realm string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationFlowsIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequest(server string, realm string, alias string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequest(server string, realm string, alias string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmAuthenticationRequiredActionsAliasRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmClientPoliciesPoliciesRequest(server string, realm string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientPoliciesPoliciesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmClientPoliciesProfilesRequest(server string, realm string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientPoliciesProfilesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDRequestWithBody(server string, realm string, clientScopeID string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientScopesClientScopeIDRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequest(server string, realm string, clientScopeID string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDRequestWithBody(server string, realm string, clientScopeID string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequest(server string, realm string, clientScopeID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientTemplatesClientScopeIDRequestWithBody(server string, realm string, clientScopeID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientTypesRequest(server string, realm string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientTypesRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequest(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDRequestWithBody(server string, realm string, clientUUID string, resourceID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequest(server string, realm string, clientUUID string, scopeID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDRequestWithBody(server string, realm string, clientUUID string, scopeID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDManagementPermissionsRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDRequest(server string, realm string, clientUUID string, clientScopeID string) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequest(server string, realm string, clientUUID string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDRequestWithBody(server string, realm string, clientUUID string, id string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDRequest(server string, realm string, clientUUID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDRequestWithBody(server string, realm string, clientUUID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsRequestWithBody(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequest(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmClientsClientUUIDRolesRoleNameRequestWithBody(server string, realm string, clientUUID string, roleName string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmComponentsIDRequest(server string, realm string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmComponentsIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewPutAdminRealmsRealmDefaultGroupsGroupIDRequest(server string, realm string, groupID string) (*http.Request, error)
- func NewPutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDRequest(server string, realm string, clientScopeID string) (*http.Request, error)
- func NewPutAdminRealmsRealmEventsConfigRequest(server string, realm string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmEventsConfigRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmGroupsGroupIDManagementPermissionsRequestWithBody(server string, realm string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmGroupsGroupIDRequest(server string, realm string, groupID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmGroupsGroupIDRequestWithBody(server string, realm string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequest(server string, realm string, alias string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequest(server string, realm string, alias string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDRequestWithBody(server string, realm string, alias string, id string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequest(server string, realm string, alias string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmIdentityProviderInstancesAliasRequestWithBody(server string, realm string, alias string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithBody(server string, realm string, locale string, key string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmLocalizationLocaleKeyRequestWithTextBody(server string, realm string, locale string, key string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDRequest(server string, realm string, orgID string, groupID string, userID string) (*http.Request, error)
- func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequest(server string, realm string, orgID string, groupID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRequestWithBody(server string, realm string, orgID string, groupID string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmOrganizationsOrgIDRequest(server string, realm string, orgID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmOrganizationsOrgIDRequestWithBody(server string, realm string, orgID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmRequest(server string, realm string, body PutAdminRealmsRealmJSONRequestBody) (*http.Request, error)
- func NewPutAdminRealmsRealmRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequest(server string, realm string, roleID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesByIDRoleIDRequest(server string, realm string, roleID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesByIDRoleIDRequestWithBody(server string, realm string, roleID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequest(server string, realm string, roleName string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesRoleNameManagementPermissionsRequestWithBody(server string, realm string, roleName string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesRoleNameRequest(server string, realm string, roleName string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmRolesRoleNameRequestWithBody(server string, realm string, roleName string, contentType string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersManagementPermissionsRequest(server string, realm string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersManagementPermissionsRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersProfileRequest(server string, realm string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersProfileRequestWithBody(server string, realm string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithBody(server string, realm string, userID string, credentialID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelRequestWithTextBody(server string, realm string, userID string, credentialID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDDisableCredentialTypesRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDExecuteActionsEmailRequestWithBody(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDGroupsGroupIDRequest(server string, realm string, userID string, groupID string) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDResetPasswordEmailRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDResetPasswordRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDResetPasswordRequestWithBody(server string, realm string, userID string, contentType string, body io.Reader) (*http.Request, error)
- func NewPutAdminRealmsRealmUsersUserIDSendVerifyEmailRequest(server string, realm string, userID string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmWorkflowsIDRequest(server string, realm string, id string, ...) (*http.Request, error)
- func NewPutAdminRealmsRealmWorkflowsIDRequestWithBody(server string, realm string, id string, contentType string, body io.Reader) (*http.Request, error)
- func PasswordTokenSource(ctx context.Context, baseURL, realm, clientID, username, password string) oauth2.TokenSource
- func TokenURL(baseURL, realm string) string
- type APIError
- type AbstractPolicyRepresentation
- type Access
- type AccessToken
- type AdminEventRepresentation
- type ApplicationRepresentation
- type AuthDetailsRepresentation
- type AuthenticationExecutionExportRepresentation
- type AuthenticationExecutionInfoRepresentation
- type AuthenticationExecutionRepresentation
- type AuthenticationFlowRepresentation
- type AuthenticatorConfigInfoRepresentation
- type AuthenticatorConfigRepresentation
- type Authorization
- type AuthorizationDetailsJSONRepresentation
- type AuthorizationSchema
- type BruteForceStrategy
- type CertificateRepresentation
- type ClaimRepresentation
- type Client
- func (c *Client) AddMember(ctx context.Context, realm, orgID, userID string) error
- func (c *Client) GetOrganization(ctx context.Context, realm, orgID string) (*Organization, error)
- func (c *Client) InviteUser(ctx context.Context, realm, orgID string, req InviteUserRequest) error
- func (c *Client) ListMembers(ctx context.Context, realm, orgID string, opts *ListMembersOptions) ([]OrganizationMember, error)
- func (c *Client) ListOrganizations(ctx context.Context, realm string, opts *ListOrganizationsOptions) ([]Organization, error)
- func (c *Client) ListUsers(ctx context.Context, realm string, opts *ListUsersOptions) ([]User, error)
- func (c *Client) Raw() *RawClient
- type ClientInitialAccessCreatePresentation
- type ClientInitialAccessPresentation
- type ClientInterface
- type ClientMappingsRepresentation
- type ClientOption
- type ClientPoliciesRepresentation
- type ClientPolicyConditionRepresentation
- type ClientPolicyExecutorRepresentation
- type ClientPolicyRepresentation
- type ClientProfileRepresentation
- type ClientProfilesRepresentation
- type ClientRepresentation
- type ClientScopeRepresentation
- type ClientTemplateRepresentation
- type ClientTypeRepresentation
- type ClientTypesRepresentation
- type ClientWithResponses
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAdminEventsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAdminEventsResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse(ctx context.Context, realm string, userID string, ...) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationConfigIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse(ctx context.Context, realm string, executionID string, ...) (*DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationFlowsIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*DeleteAdminRealmsRealmClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDNodesNodeWithResponse(ctx context.Context, realm string, clientUUID string, node string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*DeleteAdminRealmsRealmClientsClientUUIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsInitialAccessIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsInitialAccessIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmComponentsIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmDefaultGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, ...) (*DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmEventsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmEventsResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, ...) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, ...) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, ...) (*DeleteAdminRealmsRealmGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, ...) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmLocalizationLocaleKeyWithResponse(ctx context.Context, realm string, locale string, key string, ...) (*DeleteAdminRealmsRealmLocalizationLocaleKeyResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, ...) (*DeleteAdminRealmsRealmLocalizationLocaleResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, userID string, ...) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, ...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse(ctx context.Context, realm string, orgID string, alias string, ...) (*DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse(ctx context.Context, realm string, orgID string, id string, ...) (*DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse(ctx context.Context, realm string, orgID string, memberID string, ...) (*DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, ...) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, ...) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, ...) (*DeleteAdminRealmsRealmRolesByIDRoleIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, ...) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, ...) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, ...) (*DeleteAdminRealmsRealmRolesRoleNameResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmSessionsSessionWithResponse(ctx context.Context, realm string, session string, ...) (*DeleteAdminRealmsRealmSessionsSessionResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDConsentsClientWithResponse(ctx context.Context, realm string, userID string, client string, ...) (*DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDWithResponse(ctx context.Context, realm string, userID string, credentialID string, ...) (*DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse(ctx context.Context, realm string, userID string, provider string, ...) (*DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse(ctx context.Context, realm string, userID string, groupID string, ...) (*DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, ...) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, ...) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, ...) (*DeleteAdminRealmsRealmUsersUserIDResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmResponse, error)
- func (c *ClientWithResponses) DeleteAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmWorkflowsIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAdminEventsWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmAdminEventsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationAuthenticatorProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDWithResponse(ctx context.Context, realm string, providerID string, ...) (*GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationConfigIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDWithResponse(ctx context.Context, realm string, executionID string, id string, ...) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDWithResponse(ctx context.Context, realm string, executionID string, ...) (*GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse(ctx context.Context, realm string, flowAlias string, ...) (*GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFlowsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFlowsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFormActionProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFormActionProvidersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationFormProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationFormProvidersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationRequiredActionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationRequiredActionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientPoliciesPoliciesWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmClientPoliciesPoliciesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientPoliciesProfilesWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmClientPoliciesProfilesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientRegistrationPolicyProvidersWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientScopeID string, protocol string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientScopesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientSessionStatsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientSessionStatsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientScopeID string, protocol string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*GetAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTemplatesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTemplatesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientTypesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientTypesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDCertificatesAttrWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (*GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDClientSecretWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedWithResponse(ctx context.Context, realm string, clientUUID string, roleContainerID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedWithResponse(ctx context.Context, realm string, clientUUID string, roleContainerID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDWithResponse(ctx context.Context, realm string, clientUUID string, providerID string, ...) (*GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOfflineSessionsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, ...) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolWithResponse(ctx context.Context, realm string, clientUUID string, protocol string, ...) (*GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDRolesWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDRolesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDScopeMappingsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDServiceAccountUserWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDSessionCountWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDSessionCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDUserSessionsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*GetAdminRealmsRealmClientsClientUUIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsInitialAccessWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmClientsInitialAccessResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmClientsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, ...) (*GetAdminRealmsRealmClientsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmComponentsIDSubComponentTypesWithResponse(ctx context.Context, realm string, id string, ...) (*GetAdminRealmsRealmComponentsIDSubComponentTypesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmComponentsIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmComponentsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, ...) (*GetAdminRealmsRealmComponentsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmCredentialRegistratorsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmCredentialRegistratorsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmDefaultDefaultClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultDefaultClientScopesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmDefaultGroupsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmDefaultOptionalClientScopesWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmDefaultOptionalClientScopesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmEventsConfigWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmEventsConfigResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmEventsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, ...) (*GetAdminRealmsRealmEventsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupByPathPathWithResponse(ctx context.Context, realm string, path string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmGroupByPathPathResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsCountWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmGroupsCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDChildrenResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDMembersWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDMembersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDRoleMappingsWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, ...) (*GetAdminRealmsRealmGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmGroupsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsParams, ...) (*GetAdminRealmsRealmGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasExportWithResponse(ctx context.Context, realm string, alias string, ...) (*GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, ...) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderInstancesWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmIdentityProviderInstancesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmIdentityProviderProvidersProviderIDWithResponse(ctx context.Context, realm string, providerID string, ...) (*GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmKeysWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmKeysResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmLocalizationLocaleKeyWithResponse(ctx context.Context, realm string, locale string, key string, ...) (*GetAdminRealmsRealmLocalizationLocaleKeyResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, ...) (*GetAdminRealmsRealmLocalizationLocaleResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmLocalizationWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmLocalizationResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsCountWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmOrganizationsCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsWithResponse(ctx context.Context, realm string, memberID string, ...) (*GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathWithResponse(ctx context.Context, realm string, orgID string, path string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse(ctx context.Context, realm string, orgID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsWithResponse(ctx context.Context, realm string, orgID string, alias string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasWithResponse(ctx context.Context, realm string, orgID string, alias string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDWithResponse(ctx context.Context, realm string, orgID string, id string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDInvitationsWithResponse(ctx context.Context, realm string, orgID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersCountWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsWithResponse(ctx context.Context, realm string, orgID string, memberID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsWithResponse(ctx context.Context, realm string, orgID string, memberID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDWithResponse(ctx context.Context, realm string, orgID string, memberID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDMembersWithResponse(ctx context.Context, realm string, orgID string, ...) (*GetAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmOrganizationsOrgIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmOrganizationsWithResponse(ctx context.Context, realm string, ...) (*GetAdminRealmsRealmOrganizationsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDWithResponse(ctx context.Context, realm string, roleID string, clientUUID string, ...) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmWithResponse(ctx context.Context, realm string, roleID string, ...) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, ...) (*GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse(ctx context.Context, realm string, roleID string, ...) (*GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, ...) (*GetAdminRealmsRealmRolesByIDRoleIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDWithResponse(ctx context.Context, realm string, roleName string, targetClientUUID string, ...) (*GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesRealmWithResponse(ctx context.Context, realm string, roleName string, ...) (*GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, ...) (*GetAdminRealmsRealmRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameGroupsWithResponse(ctx context.Context, realm string, roleName string, ...) (*GetAdminRealmsRealmRolesRoleNameGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, roleName string, ...) (*GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameUsersWithResponse(ctx context.Context, realm string, roleName string, ...) (*GetAdminRealmsRealmRolesRoleNameUsersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, ...) (*GetAdminRealmsRealmRolesRoleNameResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmRolesWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, ...) (*GetAdminRealmsRealmRolesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersCountWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersCountParams, ...) (*GetAdminRealmsRealmUsersCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersManagementPermissionsWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersManagementPermissionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersProfileMetadataWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersProfileMetadataResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersProfileWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmUsersProfileResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDConsentsWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDConsentsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDCredentialsWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDCredentialsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDFederatedIdentityWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDGroupsCountWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDGroupsCountResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDGroupsWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDGroupsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDWithResponse(ctx context.Context, realm string, userID string, clientUUID string, ...) (*GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse, ...)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDRoleMappingsWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDRoleMappingsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDSessionsWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDSessionsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDUnmanagedAttributesWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, ...) (*GetAdminRealmsRealmUsersUserIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmUsersWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersParams, ...) (*GetAdminRealmsRealmUsersResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*GetAdminRealmsRealmResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, ...) (*GetAdminRealmsRealmWorkflowsIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmWorkflowsScheduledResourceIDWithResponse(ctx context.Context, realm string, resourceID string, ...) (*GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsRealmWorkflowsWithResponse(ctx context.Context, realm string, params *GetAdminRealmsRealmWorkflowsParams, ...) (*GetAdminRealmsRealmWorkflowsResponse, error)
- func (c *ClientWithResponses) GetAdminRealmsWithResponse(ctx context.Context, params *GetAdminRealmsParams, ...) (*GetAdminRealmsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationConfigWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBodyWithResponse(ctx context.Context, realm string, executionID string, contentType string, ...) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithResponse(ctx context.Context, realm string, executionID string, ...) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityWithResponse(ctx context.Context, realm string, executionID string, ...) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityWithResponse(ctx context.Context, realm string, executionID string, ...) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithResponse(ctx context.Context, realm string, flowAlias string, ...) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithResponse(ctx context.Context, realm string, flowAlias string, ...) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithResponse(ctx context.Context, realm string, flowAlias string, ...) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityWithResponse(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithTextBodyWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmClientScopesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmClientScopesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmClientTemplatesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmClientTemplatesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithResponse(ctx context.Context, realm string, clientUUID string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, ...) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDClientSecretWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDClientSecretResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDNodesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDNodesWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDNodesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDPushRevocationWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDRolesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, ...) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsInitialAccessWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsInitialAccessWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmClientsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmClientsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmClientsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmComponentsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmComponentsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmComponentsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmComponentsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDChildrenWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, ...) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, groupID string, ...) (*PostAdminRealmsRealmGroupsGroupIDChildrenResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, ...) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, ...) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, ...) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmGroupsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmGroupsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmGroupsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderImportConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderImportConfigWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, ...) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse(ctx context.Context, realm string, alias string, ...) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderUploadCertificateWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderUploadCertificateResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmLocalizationLocaleWithBodyWithResponse(ctx context.Context, realm string, locale string, contentType string, ...) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmLocalizationLocaleWithResponse(ctx context.Context, realm string, locale string, ...) (*PostAdminRealmsRealmLocalizationLocaleResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmLogoutAllWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmLogoutAllResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse(ctx context.Context, realm string, orgID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse(ctx context.Context, realm string, orgID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendWithResponse(ctx context.Context, realm string, orgID string, id string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBodyWithResponse(ctx context.Context, realm string, orgID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBodyWithResponse(ctx context.Context, realm string, orgID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersWithResponse(ctx context.Context, realm string, orgID string, ...) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmOrganizationsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmOrganizationsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmPartialExportWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmPartialExportResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmPartialImportWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmPartialImportResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmPartialImportWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmPartialImportResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmPushRevocationWithResponse(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmPushRevocationResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, ...) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, ...) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmRolesRoleNameCompositesWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, ...) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, ...) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmRolesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmRolesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmRolesWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmRolesResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithFormdataBodyWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDWithResponse(ctx context.Context, realm string, userID string, credentialID string, ...) (...)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstWithResponse(ctx context.Context, realm string, userID string, credentialID string, ...) (*PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse, ...)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBodyWithResponse(ctx context.Context, realm string, userID string, provider string, ...) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse(ctx context.Context, realm string, userID string, provider string, ...) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDImpersonationWithResponse(ctx context.Context, realm string, userID string, ...) (*PostAdminRealmsRealmUsersUserIDImpersonationResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDLogoutWithResponse(ctx context.Context, realm string, userID string, ...) (*PostAdminRealmsRealmUsersUserIDLogoutResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBodyWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, ...) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, ...) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, ...) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmUsersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmUsersWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmUsersResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDWithResponse(ctx context.Context, realm string, id string, pType map[string]interface{}, ...) (*PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDWithResponse(ctx context.Context, realm string, id string, pType map[string]interface{}, ...) (*PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsMigrateWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmWorkflowsMigrateResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PostAdminRealmsRealmWorkflowsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsRealmWorkflowsWithResponse(ctx context.Context, realm string, ...) (*PostAdminRealmsRealmWorkflowsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*PostAdminRealmsResponse, error)
- func (c *ClientWithResponses) PostAdminRealmsWithResponse(ctx context.Context, body PostAdminRealmsJSONRequestBody, ...) (*PostAdminRealmsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationConfigIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, ...) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, ...) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBodyWithResponse(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse(ctx context.Context, realm string, flowAlias string, ...) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, ...) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, ...) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, ...) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, ...) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, ...) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, ...) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesPoliciesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesPoliciesWithResponse(ctx context.Context, realm string, ...) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesProfilesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesProfilesWithResponse(ctx context.Context, realm string, ...) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PutAdminRealmsRealmClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PutAdminRealmsRealmClientTemplatesClientScopeIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientTypesWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmClientTypesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientTypesWithResponse(ctx context.Context, realm string, ...) (*PutAdminRealmsRealmClientTypesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (*PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (*PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, id string, ...) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, ...) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDWithBodyWithResponse(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDWithResponse(ctx context.Context, realm string, clientUUID string, ...) (*PutAdminRealmsRealmClientsClientUUIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmComponentsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, ...) (*PutAdminRealmsRealmComponentsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmComponentsIDWithResponse(ctx context.Context, realm string, id string, ...) (*PutAdminRealmsRealmComponentsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmDefaultGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, ...) (*PutAdminRealmsRealmDefaultGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDWithResponse(ctx context.Context, realm string, clientScopeID string, ...) (*PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmEventsConfigWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmEventsConfigResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmEventsConfigWithResponse(ctx context.Context, realm string, ...) (*PutAdminRealmsRealmEventsConfigResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, ...) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse(ctx context.Context, realm string, groupID string, ...) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDWithBodyWithResponse(ctx context.Context, realm string, groupID string, contentType string, ...) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDWithResponse(ctx context.Context, realm string, groupID string, ...) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse(ctx context.Context, realm string, alias string, ...) (...)
- func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBodyWithResponse(ctx context.Context, realm string, alias string, id string, contentType string, ...) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, ...) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBodyWithResponse(ctx context.Context, realm string, alias string, contentType string, ...) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, ...) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmLocalizationLocaleKeyWithBodyWithResponse(ctx context.Context, realm string, locale string, key string, ...) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBodyWithResponse(ctx context.Context, realm string, locale string, key string, ...) (*PutAdminRealmsRealmLocalizationLocaleKeyResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, userID string, ...) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse, ...)
- func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, ...) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDWithBodyWithResponse(ctx context.Context, realm string, orgID string, contentType string, ...) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDWithResponse(ctx context.Context, realm string, orgID string, ...) (*PutAdminRealmsRealmOrganizationsOrgIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, ...) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse(ctx context.Context, realm string, roleID string, ...) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDWithBodyWithResponse(ctx context.Context, realm string, roleID string, contentType string, ...) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDWithResponse(ctx context.Context, realm string, roleID string, ...) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, ...) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, roleName string, ...) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameWithBodyWithResponse(ctx context.Context, realm string, roleName string, contentType string, ...) (*PutAdminRealmsRealmRolesRoleNameResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameWithResponse(ctx context.Context, realm string, roleName string, ...) (*PutAdminRealmsRealmRolesRoleNameResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersManagementPermissionsWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersManagementPermissionsWithResponse(ctx context.Context, realm string, ...) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersProfileWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmUsersProfileResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersProfileWithResponse(ctx context.Context, realm string, ...) (*PutAdminRealmsRealmUsersProfileResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBodyWithResponse(ctx context.Context, realm string, userID string, credentialID string, ...) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBodyWithResponse(ctx context.Context, realm string, userID string, credentialID string, ...) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, ...) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBodyWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDGroupsGroupIDWithResponse(ctx context.Context, realm string, userID string, groupID string, ...) (*PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordEmailWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, ...) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDSendVerifyEmailWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDWithBodyWithResponse(ctx context.Context, realm string, userID string, contentType string, ...) (*PutAdminRealmsRealmUsersUserIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDWithResponse(ctx context.Context, realm string, userID string, ...) (*PutAdminRealmsRealmUsersUserIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmWithBodyWithResponse(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*PutAdminRealmsRealmResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmJSONRequestBody, ...) (*PutAdminRealmsRealmResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmWorkflowsIDWithBodyWithResponse(ctx context.Context, realm string, id string, contentType string, ...) (*PutAdminRealmsRealmWorkflowsIDResponse, error)
- func (c *ClientWithResponses) PutAdminRealmsRealmWorkflowsIDWithResponse(ctx context.Context, realm string, id string, ...) (*PutAdminRealmsRealmWorkflowsIDResponse, error)
- type ClientWithResponsesInterface
- type ComponentExportRepresentation
- type ComponentRepresentation
- type ComponentTypeRepresentation
- type Composites
- type ConfigPropertyRepresentation
- type Confirmation
- type CredentialRepresentation
- type DecisionEffect
- type DecisionStrategy
- type DeleteAdminRealmsRealmAdminEventsResponse
- type DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse
- type DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse
- type DeleteAdminRealmsRealmAuthenticationConfigIDResponse
- type DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse
- type DeleteAdminRealmsRealmAuthenticationFlowsIDResponse
- type DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse
- type DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse
- type DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status() string
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientScopesClientScopeIDResponse
- type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody
- type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody
- type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status() string
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody
- type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody
- type DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) Status() string
- func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status() string
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status() string
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody
- type DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status() string
- func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams
- type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse
- func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse
- func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse
- type DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse
- func (r DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse
- type DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse
- func (r DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse
- type DeleteAdminRealmsRealmClientsClientUUIDResponse
- type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody
- type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody
- type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse
- type DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse
- type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody
- type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody
- type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse
- func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) Status() string
- func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode() int
- type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody
- type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody
- type DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse
- type DeleteAdminRealmsRealmClientsInitialAccessIDResponse
- type DeleteAdminRealmsRealmComponentsIDResponse
- type DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse
- type DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse
- type DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse
- type DeleteAdminRealmsRealmEventsResponse
- type DeleteAdminRealmsRealmGroupsGroupIDResponse
- type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody
- type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody
- type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse
- type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody
- type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody
- type DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse
- type DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse
- type DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse
- type DeleteAdminRealmsRealmLocalizationLocaleKeyResponse
- type DeleteAdminRealmsRealmLocalizationLocaleResponse
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) Status() string
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody
- type DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status() string
- func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
- type DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse
- type DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse
- type DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse
- type DeleteAdminRealmsRealmOrganizationsOrgIDResponse
- type DeleteAdminRealmsRealmResponse
- type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody
- type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody
- type DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse
- type DeleteAdminRealmsRealmRolesByIDRoleIDResponse
- type DeleteAdminRealmsRealmRolesRoleNameCompositesJSONBody
- type DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody
- type DeleteAdminRealmsRealmRolesRoleNameCompositesResponse
- type DeleteAdminRealmsRealmRolesRoleNameResponse
- type DeleteAdminRealmsRealmSessionsSessionParams
- type DeleteAdminRealmsRealmSessionsSessionResponse
- type DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse
- type DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse
- type DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse
- type DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse
- type DeleteAdminRealmsRealmUsersUserIDResponse
- type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody
- type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody
- type DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse
- type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody
- type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody
- type DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse
- type DeleteAdminRealmsRealmWorkflowsIDResponse
- type ErrorRepresentation
- type EvaluationResultRepresentation
- type EventRepresentation
- type FederatedIdentityRepresentation
- type GetAdminRealmsParams
- type GetAdminRealmsRealmAdminEventsParams
- type GetAdminRealmsRealmAdminEventsResponse
- type GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse
- type GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse
- type GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse
- type GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse
- type GetAdminRealmsRealmAuthenticationConfigIDResponse
- type GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse
- type GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse
- type GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse
- type GetAdminRealmsRealmAuthenticationFlowsIDResponse
- type GetAdminRealmsRealmAuthenticationFlowsResponse
- type GetAdminRealmsRealmAuthenticationFormActionProvidersResponse
- type GetAdminRealmsRealmAuthenticationFormProvidersResponse
- type GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse
- type GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse
- func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) ContentType() string
- func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) Status() string
- func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) StatusCode() int
- type GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse
- type GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse
- type GetAdminRealmsRealmAuthenticationRequiredActionsResponse
- type GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse
- type GetAdminRealmsRealmClientPoliciesPoliciesParams
- type GetAdminRealmsRealmClientPoliciesPoliciesResponse
- type GetAdminRealmsRealmClientPoliciesProfilesParams
- type GetAdminRealmsRealmClientPoliciesProfilesResponse
- type GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse
- type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDResponse
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeParams
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeParams
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) Status() string
- func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse
- type GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse
- type GetAdminRealmsRealmClientScopesResponse
- type GetAdminRealmsRealmClientSessionStatsResponse
- type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDResponse
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeParams
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeParams
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status() string
- func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
- type GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse
- type GetAdminRealmsRealmClientTemplatesResponse
- type GetAdminRealmsRealmClientTypesResponse
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse
- type GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse
- type GetAdminRealmsRealmClientsClientUUIDClientSecretResponse
- type GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse
- type GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedParams
- type GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse
- func (r GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse
- type GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse
- type GetAdminRealmsRealmClientsClientUUIDOfflineSessionsParams
- type GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse
- type GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse
- type GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse
- type GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse
- type GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse
- func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDResponse
- type GetAdminRealmsRealmClientsClientUUIDRolesParams
- type GetAdminRealmsRealmClientsClientUUIDRolesResponse
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse
- func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsParams
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse
- func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersParams
- type GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse
- func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeParams
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse
- func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) Status() string
- func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeParams
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse
- type GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse
- type GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse
- type GetAdminRealmsRealmClientsClientUUIDSessionCountResponse
- type GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse
- type GetAdminRealmsRealmClientsClientUUIDUserSessionsParams
- type GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse
- type GetAdminRealmsRealmClientsInitialAccessResponse
- type GetAdminRealmsRealmClientsParams
- type GetAdminRealmsRealmClientsResponse
- type GetAdminRealmsRealmComponentsIDResponse
- type GetAdminRealmsRealmComponentsIDSubComponentTypesParams
- type GetAdminRealmsRealmComponentsIDSubComponentTypesResponse
- type GetAdminRealmsRealmComponentsParams
- type GetAdminRealmsRealmComponentsResponse
- type GetAdminRealmsRealmCredentialRegistratorsResponse
- type GetAdminRealmsRealmDefaultDefaultClientScopesResponse
- type GetAdminRealmsRealmDefaultGroupsResponse
- type GetAdminRealmsRealmDefaultOptionalClientScopesResponse
- type GetAdminRealmsRealmEventsConfigResponse
- type GetAdminRealmsRealmEventsParams
- type GetAdminRealmsRealmEventsResponse
- type GetAdminRealmsRealmGroupByPathPathResponse
- type GetAdminRealmsRealmGroupsCountParams
- type GetAdminRealmsRealmGroupsCountResponse
- type GetAdminRealmsRealmGroupsGroupIDChildrenParams
- type GetAdminRealmsRealmGroupsGroupIDChildrenResponse
- type GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse
- type GetAdminRealmsRealmGroupsGroupIDMembersParams
- type GetAdminRealmsRealmGroupsGroupIDMembersResponse
- type GetAdminRealmsRealmGroupsGroupIDResponse
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse
- func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status() string
- func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeParams
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse
- func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status() string
- func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeParams
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse
- type GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse
- type GetAdminRealmsRealmGroupsParams
- type GetAdminRealmsRealmGroupsResponse
- type GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams
- type GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse
- type GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse
- func (r GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) ContentType() string
- func (r GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status() string
- func (r GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode() int
- type GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse
- type GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse
- type GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse
- type GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse
- type GetAdminRealmsRealmIdentityProviderInstancesAliasResponse
- type GetAdminRealmsRealmIdentityProviderInstancesParams
- type GetAdminRealmsRealmIdentityProviderInstancesResponse
- type GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse
- type GetAdminRealmsRealmKeysResponse
- type GetAdminRealmsRealmLocalizationLocaleKeyResponse
- type GetAdminRealmsRealmLocalizationLocaleParams
- type GetAdminRealmsRealmLocalizationLocaleResponse
- type GetAdminRealmsRealmLocalizationResponse
- type GetAdminRealmsRealmOrganizationsCountParams
- type GetAdminRealmsRealmOrganizationsCountResponse
- type GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsParams
- type GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsParams
- type GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse
- type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsParams
- type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse
- type GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse
- type GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse
- type GetAdminRealmsRealmOrganizationsOrgIDInvitationsParams
- type GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse
- type GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse
- type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsParams
- type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse
- type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsParams
- type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse
- func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) ContentType() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) Status() string
- func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) StatusCode() int
- type GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse
- type GetAdminRealmsRealmOrganizationsOrgIDMembersParams
- type GetAdminRealmsRealmOrganizationsOrgIDMembersResponse
- type GetAdminRealmsRealmOrganizationsOrgIDResponse
- type GetAdminRealmsRealmOrganizationsParams
- type GetAdminRealmsRealmOrganizationsResponse
- type GetAdminRealmsRealmResponse
- type GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse
- type GetAdminRealmsRealmRolesByIDRoleIDCompositesParams
- type GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse
- type GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse
- type GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse
- type GetAdminRealmsRealmRolesByIDRoleIDResponse
- type GetAdminRealmsRealmRolesParams
- type GetAdminRealmsRealmRolesResponse
- type GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse
- func (r GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) ContentType() string
- func (r GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) Status() string
- func (r GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode() int
- type GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse
- type GetAdminRealmsRealmRolesRoleNameCompositesResponse
- type GetAdminRealmsRealmRolesRoleNameGroupsParams
- type GetAdminRealmsRealmRolesRoleNameGroupsResponse
- type GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse
- type GetAdminRealmsRealmRolesRoleNameResponse
- type GetAdminRealmsRealmRolesRoleNameUsersParams
- type GetAdminRealmsRealmRolesRoleNameUsersResponse
- type GetAdminRealmsRealmUsersCountParams
- type GetAdminRealmsRealmUsersCountResponse
- type GetAdminRealmsRealmUsersManagementPermissionsResponse
- type GetAdminRealmsRealmUsersParams
- type GetAdminRealmsRealmUsersProfileMetadataResponse
- type GetAdminRealmsRealmUsersProfileResponse
- type GetAdminRealmsRealmUsersResponse
- type GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse
- func (r GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) ContentType() string
- func (r GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) Status() string
- func (r GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) StatusCode() int
- type GetAdminRealmsRealmUsersUserIDConsentsResponse
- type GetAdminRealmsRealmUsersUserIDCredentialsResponse
- type GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse
- type GetAdminRealmsRealmUsersUserIDGroupsCountParams
- type GetAdminRealmsRealmUsersUserIDGroupsCountResponse
- type GetAdminRealmsRealmUsersUserIDGroupsParams
- type GetAdminRealmsRealmUsersUserIDGroupsResponse
- type GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse
- type GetAdminRealmsRealmUsersUserIDParams
- type GetAdminRealmsRealmUsersUserIDResponse
- type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse
- func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) ContentType() string
- func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) Status() string
- func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) StatusCode() int
- type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeParams
- type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse
- func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) ContentType() string
- func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) Status() string
- func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) StatusCode() int
- type GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse
- type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse
- type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeParams
- type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse
- type GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse
- type GetAdminRealmsRealmUsersUserIDRoleMappingsResponse
- type GetAdminRealmsRealmUsersUserIDSessionsResponse
- type GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse
- type GetAdminRealmsRealmWorkflowsIDParams
- type GetAdminRealmsRealmWorkflowsIDResponse
- type GetAdminRealmsRealmWorkflowsParams
- type GetAdminRealmsRealmWorkflowsResponse
- type GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse
- type GetAdminRealmsResponse
- type GlobalRequestResult
- type GroupRepresentation
- type HttpRequestDoer
- type IDToken
- type IdentityProviderMapperRepresentation
- type IdentityProviderMapperTypeRepresentation
- type IdentityProviderRepresentation
- type InviteUserRequest
- type IssuedVerifiableCredentialRepresentation
- type KeyMetadataRepresentation
- type KeyStoreConfig
- type KeyUse
- type KeysMetadataRepresentation
- type ListMembersOptions
- type ListOrganizationsOptions
- type ListUsersOptions
- type Logic
- type ManagementPermissionReference
- type MappingsRepresentation
- type MemberRepresentation
- type MembershipType
- type MultivaluedHashMapStringComponentExportRepresentation
- type MultivaluedHashMapStringString
- type OAuthClientRepresentation
- type Organization
- type OrganizationDomain
- type OrganizationDomainRepresentation
- type OrganizationInvitationRepresentation
- type OrganizationMember
- type OrganizationRepresentation
- type Permission
- type PolicyEnforcementMode
- type PolicyEvaluationRequest
- type PolicyEvaluationResponse
- type PolicyProviderRepresentation
- type PolicyRepresentation
- type PolicyResultRepresentation
- type PostAdminRealmsJSONBody
- type PostAdminRealmsJSONRequestBody
- type PostAdminRealmsRealmAuthenticationConfigJSONRequestBody
- type PostAdminRealmsRealmAuthenticationConfigResponse
- type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody
- type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse
- type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse
- func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) ContentType() string
- func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) Status() string
- func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) StatusCode() int
- type PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse
- func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) ContentType() string
- func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) Status() string
- func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) StatusCode() int
- type PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody
- type PostAdminRealmsRealmAuthenticationExecutionsResponse
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONBody
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONBody
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse
- func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) ContentType() string
- func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) Status() string
- func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) StatusCode() int
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONBody
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody
- type PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse
- type PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody
- type PostAdminRealmsRealmAuthenticationFlowsResponse
- type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONBody
- type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody
- type PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse
- type PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse
- func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) ContentType() string
- func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) Status() string
- func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) StatusCode() int
- type PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse
- func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) ContentType() string
- func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) Status() string
- func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) StatusCode() int
- type PostAdminRealmsRealmClientDescriptionConverterJSONBody
- type PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody
- type PostAdminRealmsRealmClientDescriptionConverterResponse
- type PostAdminRealmsRealmClientDescriptionConverterTextBody
- type PostAdminRealmsRealmClientDescriptionConverterTextRequestBody
- type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONBody
- type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody
- type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse
- func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) ContentType() string
- func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) Status() string
- func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) StatusCode() int
- type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody
- type PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse
- func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) ContentType() string
- func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) Status() string
- func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
- type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONBody
- type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody
- type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse
- func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
- func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status() string
- func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
- type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONBody
- type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody
- type PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse
- type PostAdminRealmsRealmClientScopesJSONRequestBody
- type PostAdminRealmsRealmClientScopesResponse
- type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) ContentType() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) Status() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) StatusCode() int
- type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) ContentType() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
- type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
- type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody
- type PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status() string
- func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
- type PostAdminRealmsRealmClientTemplatesJSONRequestBody
- type PostAdminRealmsRealmClientTemplatesResponse
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) ContentType() string
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) Status() string
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) StatusCode() int
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) ContentType() string
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) Status() string
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) StatusCode() int
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) ContentType() string
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) Status() string
- func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) StatusCode() int
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse
- func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) ContentType() string
- func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) Status() string
- func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) StatusCode() int
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse
- func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) ContentType() string
- func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) Status() string
- func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) StatusCode() int
- type PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse
- type PostAdminRealmsRealmClientsClientUUIDClientSecretResponse
- type PostAdminRealmsRealmClientsClientUUIDNodesJSONBody
- type PostAdminRealmsRealmClientsClientUUIDNodesJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDNodesResponse
- type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONBody
- type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse
- type PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse
- type PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse
- type PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse
- type PostAdminRealmsRealmClientsClientUUIDRolesJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDRolesResponse
- type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONBody
- type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse
- type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONBody
- type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse
- type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONBody
- type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody
- type PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse
- type PostAdminRealmsRealmClientsInitialAccessJSONRequestBody
- type PostAdminRealmsRealmClientsInitialAccessResponse
- type PostAdminRealmsRealmClientsJSONRequestBody
- type PostAdminRealmsRealmClientsResponse
- type PostAdminRealmsRealmComponentsJSONRequestBody
- type PostAdminRealmsRealmComponentsResponse
- type PostAdminRealmsRealmGroupsGroupIDChildrenJSONRequestBody
- type PostAdminRealmsRealmGroupsGroupIDChildrenResponse
- type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONBody
- type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody
- type PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse
- type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONBody
- type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody
- type PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse
- type PostAdminRealmsRealmGroupsJSONRequestBody
- type PostAdminRealmsRealmGroupsResponse
- type PostAdminRealmsRealmIdentityProviderImportConfigJSONBody
- type PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody
- type PostAdminRealmsRealmIdentityProviderImportConfigResponse
- type PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody
- type PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse
- type PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody
- type PostAdminRealmsRealmIdentityProviderInstancesResponse
- type PostAdminRealmsRealmIdentityProviderUploadCertificateResponse
- type PostAdminRealmsRealmLocalizationLocaleJSONBody
- type PostAdminRealmsRealmLocalizationLocaleJSONRequestBody
- type PostAdminRealmsRealmLocalizationLocaleResponse
- type PostAdminRealmsRealmLogoutAllResponse
- type PostAdminRealmsRealmOrganizationsJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse
- func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
- func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
- func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse
- func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
- func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status() string
- func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse
- type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONBody
- type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse
- type PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse
- type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataBody
- type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse
- type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataBody
- type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse
- type PostAdminRealmsRealmOrganizationsOrgIDMembersJSONBody
- type PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody
- type PostAdminRealmsRealmOrganizationsOrgIDMembersResponse
- type PostAdminRealmsRealmOrganizationsResponse
- type PostAdminRealmsRealmPartialExportParams
- type PostAdminRealmsRealmPartialExportResponse
- type PostAdminRealmsRealmPartialImportJSONBody
- type PostAdminRealmsRealmPartialImportJSONRequestBody
- type PostAdminRealmsRealmPartialImportResponse
- type PostAdminRealmsRealmPushRevocationResponse
- type PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONBody
- type PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody
- type PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse
- type PostAdminRealmsRealmRolesJSONRequestBody
- type PostAdminRealmsRealmRolesResponse
- type PostAdminRealmsRealmRolesRoleNameCompositesJSONBody
- type PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody
- type PostAdminRealmsRealmRolesRoleNameCompositesResponse
- type PostAdminRealmsRealmTestSMTPConnectionFormdataBody
- type PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody
- type PostAdminRealmsRealmTestSMTPConnectionJSONBody
- type PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody
- type PostAdminRealmsRealmTestSMTPConnectionResponse
- type PostAdminRealmsRealmUsersJSONRequestBody
- type PostAdminRealmsRealmUsersResponse
- type PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse
- func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) ContentType() string
- func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) Status() string
- func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) StatusCode() int
- type PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse
- func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) ContentType() string
- func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) Status() string
- func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) StatusCode() int
- type PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody
- type PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse
- type PostAdminRealmsRealmUsersUserIDImpersonationResponse
- type PostAdminRealmsRealmUsersUserIDLogoutResponse
- type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONBody
- type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody
- type PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse
- type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONBody
- type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody
- type PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse
- type PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDParams
- type PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse
- type PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse
- type PostAdminRealmsRealmWorkflowsJSONRequestBody
- type PostAdminRealmsRealmWorkflowsMigrateParams
- type PostAdminRealmsRealmWorkflowsMigrateResponse
- type PostAdminRealmsRealmWorkflowsResponse
- type PostAdminRealmsResponse
- type PropertyConfig
- type ProtocolMapperEvaluationRepresentation
- type ProtocolMapperRepresentation
- type PublishedRealmRepresentation
- type PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody
- type PutAdminRealmsRealmAuthenticationConfigIDResponse
- type PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody
- type PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse
- type PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody
- type PutAdminRealmsRealmAuthenticationFlowsIDResponse
- type PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody
- type PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse
- type PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody
- type PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse
- type PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody
- type PutAdminRealmsRealmClientPoliciesPoliciesResponse
- type PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody
- type PutAdminRealmsRealmClientPoliciesProfilesResponse
- type PutAdminRealmsRealmClientScopesClientScopeIDJSONRequestBody
- type PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody
- type PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse
- func (r PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
- func (r PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status() string
- func (r PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
- type PutAdminRealmsRealmClientScopesClientScopeIDResponse
- type PutAdminRealmsRealmClientTemplatesClientScopeIDJSONRequestBody
- type PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody
- type PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse
- func (r PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
- func (r PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status() string
- func (r PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
- type PutAdminRealmsRealmClientTemplatesClientScopeIDResponse
- type PutAdminRealmsRealmClientTypesJSONRequestBody
- type PutAdminRealmsRealmClientTypesResponse
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse
- func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType() string
- func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status() string
- func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode() int
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse
- func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType() string
- func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status() string
- func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode() int
- type PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse
- func (r PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) ContentType() string
- func (r PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status() string
- func (r PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode() int
- type PutAdminRealmsRealmClientsClientUUIDJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse
- type PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse
- func (r PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) ContentType() string
- func (r PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status() string
- func (r PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode() int
- type PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse
- type PutAdminRealmsRealmClientsClientUUIDResponse
- type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse
- func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) ContentType() string
- func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status() string
- func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode() int
- type PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse
- type PutAdminRealmsRealmComponentsIDJSONRequestBody
- type PutAdminRealmsRealmComponentsIDResponse
- type PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse
- type PutAdminRealmsRealmDefaultGroupsGroupIDResponse
- type PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse
- type PutAdminRealmsRealmEventsConfigJSONRequestBody
- type PutAdminRealmsRealmEventsConfigResponse
- type PutAdminRealmsRealmGroupsGroupIDJSONRequestBody
- type PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse
- type PutAdminRealmsRealmGroupsGroupIDResponse
- type PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody
- type PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse
- func (r PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) ContentType() string
- func (r PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status() string
- func (r PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode() int
- type PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody
- type PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse
- type PutAdminRealmsRealmIdentityProviderInstancesAliasResponse
- type PutAdminRealmsRealmJSONRequestBody
- type PutAdminRealmsRealmLocalizationLocaleKeyResponse
- type PutAdminRealmsRealmLocalizationLocaleKeyTextBody
- type PutAdminRealmsRealmLocalizationLocaleKeyTextRequestBody
- type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody
- type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse
- type PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse
- type PutAdminRealmsRealmOrganizationsOrgIDJSONRequestBody
- type PutAdminRealmsRealmOrganizationsOrgIDResponse
- type PutAdminRealmsRealmResponse
- type PutAdminRealmsRealmRolesByIDRoleIDJSONRequestBody
- type PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse
- type PutAdminRealmsRealmRolesByIDRoleIDResponse
- type PutAdminRealmsRealmRolesRoleNameJSONRequestBody
- type PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse
- type PutAdminRealmsRealmRolesRoleNameResponse
- type PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody
- type PutAdminRealmsRealmUsersManagementPermissionsResponse
- type PutAdminRealmsRealmUsersProfileJSONRequestBody
- type PutAdminRealmsRealmUsersProfileResponse
- type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse
- type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextBody
- type PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody
- type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONBody
- type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody
- type PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse
- type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONBody
- type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody
- type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams
- type PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse
- type PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse
- type PutAdminRealmsRealmUsersUserIDJSONRequestBody
- type PutAdminRealmsRealmUsersUserIDResetPasswordEmailParams
- type PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse
- type PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody
- type PutAdminRealmsRealmUsersUserIDResetPasswordResponse
- type PutAdminRealmsRealmUsersUserIDResponse
- type PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams
- type PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse
- type PutAdminRealmsRealmWorkflowsIDJSONRequestBody
- type PutAdminRealmsRealmWorkflowsIDResponse
- type RawClient
- func (c *RawClient) DeleteAdminRealmsRealm(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAdminEvents(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsers(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID(ctx context.Context, realm string, executionID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDNodesNode(ctx context.Context, realm string, clientUUID string, node string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmClientsInitialAccessID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmDefaultGroupsGroupID(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmEvents(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, groupID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmLocalizationLocaleKey(ctx context.Context, realm string, locale string, key string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID(ctx context.Context, realm string, orgID string, groupID string, userID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias(ctx context.Context, realm string, orgID string, alias string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID(ctx context.Context, realm string, orgID string, id string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID(ctx context.Context, realm string, orgID string, memberID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithBody(ctx context.Context, realm string, roleID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmRolesRoleNameCompositesWithBody(ctx context.Context, realm string, roleName string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmSessionsSession(ctx context.Context, realm string, session string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDConsentsClient(ctx context.Context, realm string, userID string, client string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID(ctx context.Context, realm string, userID string, credentialID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider(ctx context.Context, realm string, userID string, provider string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDGroupsGroupID(ctx context.Context, realm string, userID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody(ctx context.Context, realm string, userID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) DeleteAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealms(ctx context.Context, params *GetAdminRealmsParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealm(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAdminEvents(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationAuthenticatorProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID(ctx context.Context, realm string, providerID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionID(ctx context.Context, realm string, executionID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID(ctx context.Context, realm string, executionID string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationFlows(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationFormActionProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationFormProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationPerClientConfigDescription(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientRegistrationPolicyProviders(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientScopeID string, protocol string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientSessionStats(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplates(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientScopeID string, protocol string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientTypes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClients(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProviders(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearch(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProviders(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearch(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributes(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissions(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopes(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearch(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissions(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResources(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDCertificatesAttr(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecret(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecretRotated(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessToken(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDToken(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponse(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfo(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappers(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGranted(ctx context.Context, realm string, clientUUID string, roleContainerID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGranted(ctx context.Context, realm string, clientUUID string, roleContainerID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderID(ctx context.Context, realm string, clientUUID string, providerID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDManagementPermissions(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessions(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDOptionalClientScopes(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol(ctx context.Context, realm string, clientUUID string, protocol string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRoles(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappings(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientComposite(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmComposite(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDServiceAccountUser(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDSessionCount(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDUserSessions(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmComponents(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmComponentsIDSubComponentTypes(ctx context.Context, realm string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmCredentialRegistrators(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmDefaultDefaultClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmDefaultGroups(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmDefaultOptionalClientScopes(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmEventsConfig(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupByPathPath(ctx context.Context, realm string, path string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroups(ctx context.Context, realm string, params *GetAdminRealmsRealmGroupsParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsCount(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDManagementPermissions(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDMembers(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappings(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmComposite(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstances(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasExport(ctx context.Context, realm string, alias string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappers(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmIdentityProviderProvidersProviderID(ctx context.Context, realm string, providerID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmKeys(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmLocalization(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmLocalizationLocaleKey(ctx context.Context, realm string, locale string, key string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizations(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsCount(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizations(ctx context.Context, realm string, memberID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath(ctx context.Context, realm string, orgID string, path string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailable(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmComposite(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProviders(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias(ctx context.Context, realm string, orgID string, alias string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups(ctx context.Context, realm string, orgID string, alias string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDInvitations(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDInvitationsID(ctx context.Context, realm string, orgID string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersCount(ctx context.Context, realm string, orgID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID(ctx context.Context, realm string, orgID string, memberID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups(ctx context.Context, realm string, orgID string, memberID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations(ctx context.Context, realm string, orgID string, memberID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRoles(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUID(ctx context.Context, realm string, roleID string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID(ctx context.Context, realm string, roleName string, targetClientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleNameCompositesRealm(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleNameGroups(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleNameManagementPermissions(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmRolesRoleNameUsers(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsers(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersCount(ctx context.Context, realm string, params *GetAdminRealmsRealmUsersCountParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersProfile(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersProfileMetadata(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypes(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDConsents(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDCredentials(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDFederatedIdentity(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDGroups(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDGroupsCount(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUID(ctx context.Context, realm string, userID string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappings(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmComposite(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDSessions(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmUsersUserIDUnmanagedAttributes(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmWorkflows(ctx context.Context, realm string, params *GetAdminRealmsRealmWorkflowsParams, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, ...) (*http.Response, error)
- func (c *RawClient) GetAdminRealmsRealmWorkflowsScheduledResourceID(ctx context.Context, realm string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealms(ctx context.Context, body PostAdminRealmsJSONRequestBody, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationConfig(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutions(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfig(ctx context.Context, realm string, executionID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithBody(ctx context.Context, realm string, executionID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority(ctx context.Context, realm string, executionID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority(ctx context.Context, realm string, executionID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationExecutionsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlows(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopy(ctx context.Context, realm string, flowAlias string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithBody(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution(ctx context.Context, realm string, flowAlias string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBody(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlow(ctx context.Context, realm string, flowAlias string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithBody(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredAction(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority(ctx context.Context, realm string, alias string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverter(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverterWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverterWithTextBody(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopes(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModels(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientScopesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplates(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModels(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientScopeID string, client string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientTemplatesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClients(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImport(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermission(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluate(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicy(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluate(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithBody(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScope(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBody(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownload(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithBody(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate(ctx context.Context, realm string, clientUUID string, attr string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDClientSecret(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDNodes(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDNodesWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModels(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDPushRevocation(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRoles(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDRolesWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody(ctx context.Context, realm string, clientUUID string, client string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealm(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsInitialAccessWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmClientsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmComponents(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmComponentsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroups(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDChildrenWithBody(ctx context.Context, realm string, groupID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, groupID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, groupID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmGroupsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderImportConfig(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderImportConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstances(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstancesAliasMappers(ctx context.Context, realm string, alias string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithBody(ctx context.Context, realm string, alias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderInstancesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmIdentityProviderUploadCertificate(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmLocalizationLocale(ctx context.Context, realm string, locale string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmLocalizationLocaleWithBody(ctx context.Context, realm string, locale string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmLogoutAll(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizations(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBody(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientID(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithBody(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBody(ctx context.Context, realm string, orgID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDIdentityProviders(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithBody(ctx context.Context, realm string, orgID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend(ctx context.Context, realm string, orgID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithBody(ctx context.Context, realm string, orgID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBody(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBody(ctx context.Context, realm string, orgID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBody(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersWithBody(ctx context.Context, realm string, orgID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmOrganizationsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmPartialExport(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmPartialImport(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmPartialImportWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmPushRevocation(ctx context.Context, realm string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmRoles(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmRolesByIDRoleIDComposites(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithBody(ctx context.Context, realm string, roleID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmRolesRoleNameCompositesWithBody(ctx context.Context, realm string, roleName string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmRolesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmTestSMTPConnection(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmTestSMTPConnectionWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmTestSMTPConnectionWithFormdataBody(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsers(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialID(ctx context.Context, realm string, userID string, credentialID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst(ctx context.Context, realm string, userID string, credentialID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider(ctx context.Context, realm string, userID string, provider string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBody(ctx context.Context, realm string, userID string, provider string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDImpersonation(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDLogout(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody(ctx context.Context, realm string, userID string, clientID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsRealm(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithBody(ctx context.Context, realm string, userID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmUsersWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmWorkflows(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID(ctx context.Context, realm string, id string, pType map[string]interface{}, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID(ctx context.Context, realm string, id string, pType map[string]interface{}, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmWorkflowsMigrate(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsRealmWorkflowsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PostAdminRealmsWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealm(ctx context.Context, realm string, body PutAdminRealmsRealmJSONRequestBody, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationConfigID(ctx context.Context, realm string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationConfigIDWithBody(ctx context.Context, realm string, id string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBody(ctx context.Context, realm string, flowAlias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsID(ctx context.Context, realm string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsIDWithBody(ctx context.Context, realm string, id string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAlias(ctx context.Context, realm string, alias string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfig(ctx context.Context, realm string, alias string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithBody(ctx context.Context, realm string, alias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBody(ctx context.Context, realm string, alias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientPoliciesPoliciesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientPoliciesProfilesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientScopesClientScopeIDWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientScopeID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBody(ctx context.Context, realm string, clientScopeID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientTypes(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientTypesWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUID(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServer(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithBody(ctx context.Context, realm string, clientUUID string, resourceID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeID(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithBody(ctx context.Context, realm string, clientUUID string, scopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDManagementPermissions(ctx context.Context, realm string, clientUUID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientUUID string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID(ctx context.Context, realm string, clientUUID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBody(ctx context.Context, realm string, clientUUID string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleName(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithBody(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBody(ctx context.Context, realm string, clientUUID string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDWithBody(ctx context.Context, realm string, clientUUID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmComponentsID(ctx context.Context, realm string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmComponentsIDWithBody(ctx context.Context, realm string, id string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmDefaultGroupsGroupID(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID(ctx context.Context, realm string, clientScopeID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmEventsConfig(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmEventsConfigWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmGroupsGroupID(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmGroupsGroupIDManagementPermissions(ctx context.Context, realm string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithBody(ctx context.Context, realm string, groupID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmGroupsGroupIDWithBody(ctx context.Context, realm string, groupID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAlias(ctx context.Context, realm string, alias string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions(ctx context.Context, realm string, alias string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithBody(ctx context.Context, realm string, alias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID(ctx context.Context, realm string, alias string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBody(ctx context.Context, realm string, alias string, id string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBody(ctx context.Context, realm string, alias string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithBody(ctx context.Context, realm string, locale string, key string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBody(ctx context.Context, realm string, locale string, key string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgID(ctx context.Context, realm string, orgID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupID(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID(ctx context.Context, realm string, orgID string, groupID string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBody(ctx context.Context, realm string, orgID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmOrganizationsOrgIDWithBody(ctx context.Context, realm string, orgID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleID(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissions(ctx context.Context, realm string, roleID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithBody(ctx context.Context, realm string, roleID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesByIDRoleIDWithBody(ctx context.Context, realm string, roleID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesRoleName(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesRoleNameManagementPermissions(ctx context.Context, realm string, roleName string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithBody(ctx context.Context, realm string, roleName string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmRolesRoleNameWithBody(ctx context.Context, realm string, roleName string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersManagementPermissionsWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersProfile(ctx context.Context, realm string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersProfileWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserID(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithBody(ctx context.Context, realm string, userID string, credentialID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBody(ctx context.Context, realm string, userID string, credentialID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDDisableCredentialTypes(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithBody(ctx context.Context, realm string, userID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmail(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBody(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDGroupsGroupID(ctx context.Context, realm string, userID string, groupID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDResetPassword(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDResetPasswordEmail(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDResetPasswordWithBody(ctx context.Context, realm string, userID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDSendVerifyEmail(ctx context.Context, realm string, userID string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmUsersUserIDWithBody(ctx context.Context, realm string, userID string, contentType string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmWithBody(ctx context.Context, realm string, contentType string, body io.Reader, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, ...) (*http.Response, error)
- func (c *RawClient) PutAdminRealmsRealmWorkflowsIDWithBody(ctx context.Context, realm string, id string, contentType string, ...) (*http.Response, error)
- type RealmEventsConfigRepresentation
- type RealmRepresentation
- type RequestEditorFn
- type RequiredActionConfigInfoRepresentation
- type RequiredActionConfigRepresentation
- type RequiredActionProviderRepresentation
- type ResourceOwnerRepresentation
- type ResourceRepresentation
- type ResourceServerRepresentation
- type ResourceType
- type RoleRepresentation
- type RolesRepresentation
- type SamlExampleResponse
- type ScopeMappingRepresentation
- type ScopeRepresentation
- type SocialLinkRepresentation
- type Status
- type StepExecutionStatus
- type UPAttribute
- type UPAttributePermissions
- type UPAttributeRequired
- type UPAttributeSelector
- type UPConfig
- type UPGroup
- type UnmanagedAttributePolicy
- type User
- type UserConsentRepresentation
- type UserFederationMapperRepresentation
- type UserFederationProviderRepresentation
- type UserProfileAttributeGroupMetadata
- type UserProfileAttributeMetadata
- type UserProfileMetadata
- type UserRepresentation
- type UserSessionRepresentation
- type UserVerifiableCredentialRepresentation
- type VerifiableCredentialOfferActionConfig
- type WorkflowConcurrencyRepresentation
- type WorkflowRepresentation
- type WorkflowScheduleRepresentation
- type WorkflowStateRepresentation
- type WorkflowStepRepresentation
Constants ¶
This section is empty.
Variables ¶
var ( // ErrBadRequest maps to HTTP 400. ErrBadRequest = errors.New("kcadmin: bad request") 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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
NewGetAdminRealmsRealmDefaultGroupsRequest generates requests for GetAdminRealmsRealmDefaultGroups
func NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest ¶
func NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest(server string, realm string) (*http.Request, error)
NewGetAdminRealmsRealmDefaultOptionalClientScopesRequest generates requests for GetAdminRealmsRealmDefaultOptionalClientScopes
func NewGetAdminRealmsRealmEventsConfigRequest ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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.
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 ¶
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 ¶
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 ¶
GetOrganization returns a single organization by id.
func (*Client) InviteUser ¶
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.
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 ¶
ClientOption allows setting custom parameters during construction
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) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)
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) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)
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) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)
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) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)
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) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
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) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)
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) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, body DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
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) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
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) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, body DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
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) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
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) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)
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) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, body DeleteAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
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) DeleteAdminRealmsRealmRolesRoleNameCompositesWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, body DeleteAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmRolesRoleNameCompositesResponse, error)
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) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
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) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse ¶
func (c *ClientWithResponses) DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, body DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
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) PostAdminRealmsRealmAuthenticationConfigWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationConfigWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationConfigResponse, error)
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) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigWithResponse(ctx context.Context, realm string, executionID string, body PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse, error)
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) PostAdminRealmsRealmAuthenticationExecutionsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationExecutionsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationExecutionsResponse, error)
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) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyWithResponse(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse, error)
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) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithResponse(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse, error)
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) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowWithResponse(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse, error)
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) PostAdminRealmsRealmAuthenticationFlowsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationFlowsWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationFlowsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationFlowsResponse, error)
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) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse, error)
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) PostAdminRealmsRealmClientDescriptionConverterWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)
func (*ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithTextBodyWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientDescriptionConverterWithTextBodyWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterTextRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientDescriptionConverterResponse, error)
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) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse, error)
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) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse, error)
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) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse, error)
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) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse, error)
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) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse, error)
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) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse, error)
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) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientScopeID string, client string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse, error)
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) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceWithResponse(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadWithResponse(ctx context.Context, realm string, clientUUID string, attr string, body PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithResponse(ctx context.Context, realm string, clientUUID string, client string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse, error)
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) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmWithResponse(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse, error)
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) PostAdminRealmsRealmClientsInitialAccessWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmClientsInitialAccessWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmClientsInitialAccessJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmClientsInitialAccessResponse, error)
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) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, groupID string, clientID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
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) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, groupID string, body PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse, error)
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) PostAdminRealmsRealmIdentityProviderImportConfigWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderImportConfigWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderImportConfigResponse, error)
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) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesAliasMappersWithResponse(ctx context.Context, realm string, alias string, body PostAdminRealmsRealmIdentityProviderInstancesAliasMappersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse, error)
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) PostAdminRealmsRealmIdentityProviderInstancesWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmIdentityProviderInstancesWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderInstancesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmIdentityProviderInstancesResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithResponse(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, clientID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, orgID string, groupID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDGroupsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBodyWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBodyWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBodyWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithFormdataBodyWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse, error)
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) PostAdminRealmsRealmOrganizationsOrgIDMembersWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmOrganizationsOrgIDMembersWithResponse(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmOrganizationsOrgIDMembersResponse, error)
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) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmRolesByIDRoleIDCompositesWithResponse(ctx context.Context, realm string, roleID string, body PostAdminRealmsRealmRolesByIDRoleIDCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse, error)
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) PostAdminRealmsRealmRolesRoleNameCompositesWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmRolesRoleNameCompositesWithResponse(ctx context.Context, realm string, roleName string, body PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmRolesRoleNameCompositesResponse, error)
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) PostAdminRealmsRealmTestSMTPConnectionWithFormdataBodyWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithFormdataBodyWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionFormdataRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)
func (*ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmTestSMTPConnectionWithResponse(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmTestSMTPConnectionResponse, error)
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) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithResponse(ctx context.Context, realm string, userID string, provider string, body PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse, error)
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) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithResponse(ctx context.Context, realm string, userID string, clientID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse, error)
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) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse ¶
func (c *ClientWithResponses) PostAdminRealmsRealmUsersUserIDRoleMappingsRealmWithResponse(ctx context.Context, realm string, userID string, body PostAdminRealmsRealmUsersUserIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse, error)
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) PutAdminRealmsRealmAuthenticationConfigIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationConfigIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationConfigIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationConfigIDResponse, error)
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) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithResponse(ctx context.Context, realm string, flowAlias string, body PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse, error)
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) PutAdminRealmsRealmAuthenticationFlowsIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationFlowsIDWithResponse(ctx context.Context, realm string, id string, body PutAdminRealmsRealmAuthenticationFlowsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationFlowsIDResponse, error)
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) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse, error)
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) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmAuthenticationRequiredActionsAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse, error)
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) PutAdminRealmsRealmClientPoliciesPoliciesWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesPoliciesWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesPoliciesResponse, error)
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) PutAdminRealmsRealmClientPoliciesProfilesWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientPoliciesProfilesWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientPoliciesProfilesResponse, error)
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) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse, error)
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) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientScopeID string, id string, body PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse, error)
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) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDWithResponse(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse, error)
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) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDWithResponse(ctx context.Context, realm string, clientUUID string, scopeID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse, error)
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) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithResponse(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse, error)
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) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, body PutAdminRealmsRealmClientsClientUUIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse, error)
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) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithResponse(ctx context.Context, realm string, clientUUID string, id string, body PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse, error)
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) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, clientUUID string, roleName string, body PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse, error)
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) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmGroupsGroupIDManagementPermissionsWithResponse(ctx context.Context, realm string, groupID string, body PutAdminRealmsRealmGroupsGroupIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse, error)
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) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse, error)
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) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithResponse(ctx context.Context, realm string, alias string, id string, body PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse, error)
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) PutAdminRealmsRealmIdentityProviderInstancesAliasWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmIdentityProviderInstancesAliasWithResponse(ctx context.Context, realm string, alias string, body PutAdminRealmsRealmIdentityProviderInstancesAliasJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmIdentityProviderInstancesAliasResponse, error)
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) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithResponse(ctx context.Context, realm string, orgID string, groupID string, body PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse, error)
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) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsWithResponse(ctx context.Context, realm string, roleID string, body PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse, error)
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) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmRolesRoleNameManagementPermissionsWithResponse(ctx context.Context, realm string, roleName string, body PutAdminRealmsRealmRolesRoleNameManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse, error)
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) PutAdminRealmsRealmUsersManagementPermissionsWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmUsersManagementPermissionsWithResponse(ctx context.Context, realm string, body PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersManagementPermissionsResponse, error)
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) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBodyWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelWithTextBodyWithResponse(ctx context.Context, realm string, userID string, credentialID string, body PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelTextRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse, error)
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) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDDisableCredentialTypesWithResponse(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDDisableCredentialTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse, error)
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) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithResponse(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, body PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse, error)
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) PutAdminRealmsRealmUsersUserIDResetPasswordWithResponse ¶
func (c *ClientWithResponses) PutAdminRealmsRealmUsersUserIDResetPasswordWithResponse(ctx context.Context, realm string, userID string, body PutAdminRealmsRealmUsersUserIDResetPasswordJSONRequestBody, reqEditors ...RequestEditorFn) (*PutAdminRealmsRealmUsersUserIDResetPasswordResponse, error)
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 ¶
func ParseDeleteAdminRealmsRealmAdminEventsResponse ¶
func ParseDeleteAdminRealmsRealmAdminEventsResponse(rsp *http.Response) (*DeleteAdminRealmsRealmAdminEventsResponse, error)
ParseDeleteAdminRealmsRealmAdminEventsResponse parses an HTTP response from a DeleteAdminRealmsRealmAdminEventsWithResponse call
func (DeleteAdminRealmsRealmAdminEventsResponse) ContentType ¶
func (r DeleteAdminRealmsRealmAdminEventsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAdminEventsResponse) Status ¶
func (r DeleteAdminRealmsRealmAdminEventsResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAdminEventsResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAdminEventsResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) Status ¶
func (r DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAttackDetectionBruteForceUsersResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) Status ¶
func (r DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAuthenticationConfigIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAuthenticationConfigIDResponse) Status ¶
func (r DeleteAdminRealmsRealmAuthenticationConfigIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) Status ¶
func (r DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status ¶
func (r DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status ¶
func (r DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType() string
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 ¶
func (r DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDNodesNodeResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType() string
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmClientsInitialAccessIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmClientsInitialAccessIDResponse) Status ¶
func (r DeleteAdminRealmsRealmClientsInitialAccessIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmClientsInitialAccessIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmClientsInitialAccessIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmComponentsIDResponse ¶
func ParseDeleteAdminRealmsRealmComponentsIDResponse ¶
func ParseDeleteAdminRealmsRealmComponentsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmComponentsIDResponse, error)
ParseDeleteAdminRealmsRealmComponentsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmComponentsIDWithResponse call
func (DeleteAdminRealmsRealmComponentsIDResponse) ContentType ¶
func (r DeleteAdminRealmsRealmComponentsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmComponentsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmComponentsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmComponentsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmComponentsIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) Status ¶
func (r DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmDefaultGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) Status ¶
func (r DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmEventsResponse ¶
func ParseDeleteAdminRealmsRealmEventsResponse ¶
func ParseDeleteAdminRealmsRealmEventsResponse(rsp *http.Response) (*DeleteAdminRealmsRealmEventsResponse, error)
ParseDeleteAdminRealmsRealmEventsResponse parses an HTTP response from a DeleteAdminRealmsRealmEventsWithResponse call
func (DeleteAdminRealmsRealmEventsResponse) ContentType ¶
func (r DeleteAdminRealmsRealmEventsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmEventsResponse) Status ¶
func (r DeleteAdminRealmsRealmEventsResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmEventsResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmEventsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmGroupsGroupIDResponse ¶
func ParseDeleteAdminRealmsRealmGroupsGroupIDResponse ¶
func ParseDeleteAdminRealmsRealmGroupsGroupIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmGroupsGroupIDResponse, error)
ParseDeleteAdminRealmsRealmGroupsGroupIDResponse parses an HTTP response from a DeleteAdminRealmsRealmGroupsGroupIDWithResponse call
func (DeleteAdminRealmsRealmGroupsGroupIDResponse) ContentType ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmGroupsGroupIDResponse) Status ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmGroupsGroupIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status ¶
func (r DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status ¶
func (r DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) Status ¶
func (r DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmLocalizationLocaleResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmLocalizationLocaleResponse) Status ¶
func (r DeleteAdminRealmsRealmLocalizationLocaleResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmLocalizationLocaleResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmLocalizationLocaleResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) ContentType() string
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmOrganizationsOrgIDResponse) Status ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmResponse ¶
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 ¶
func (r DeleteAdminRealmsRealmResponse) Status() string
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 ¶
func (r DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status ¶
func (r DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmRolesByIDRoleIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmRolesByIDRoleIDResponse) Status ¶
func (r DeleteAdminRealmsRealmRolesByIDRoleIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) Status ¶
func (r DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmRolesRoleNameResponse ¶
func ParseDeleteAdminRealmsRealmRolesRoleNameResponse ¶
func ParseDeleteAdminRealmsRealmRolesRoleNameResponse(rsp *http.Response) (*DeleteAdminRealmsRealmRolesRoleNameResponse, error)
ParseDeleteAdminRealmsRealmRolesRoleNameResponse parses an HTTP response from a DeleteAdminRealmsRealmRolesRoleNameWithResponse call
func (DeleteAdminRealmsRealmRolesRoleNameResponse) ContentType ¶
func (r DeleteAdminRealmsRealmRolesRoleNameResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmRolesRoleNameResponse) Status ¶
func (r DeleteAdminRealmsRealmRolesRoleNameResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmRolesRoleNameResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmRolesRoleNameResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmSessionsSessionResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmSessionsSessionResponse) Status ¶
func (r DeleteAdminRealmsRealmSessionsSessionResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmSessionsSessionResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmSessionsSessionResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDConsentsClientResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmUsersUserIDResponse ¶
func ParseDeleteAdminRealmsRealmUsersUserIDResponse ¶
func ParseDeleteAdminRealmsRealmUsersUserIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmUsersUserIDResponse, error)
ParseDeleteAdminRealmsRealmUsersUserIDResponse parses an HTTP response from a DeleteAdminRealmsRealmUsersUserIDWithResponse call
func (DeleteAdminRealmsRealmUsersUserIDResponse) ContentType ¶
func (r DeleteAdminRealmsRealmUsersUserIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status ¶
func (r DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type DeleteAdminRealmsRealmWorkflowsIDResponse ¶
func ParseDeleteAdminRealmsRealmWorkflowsIDResponse ¶
func ParseDeleteAdminRealmsRealmWorkflowsIDResponse(rsp *http.Response) (*DeleteAdminRealmsRealmWorkflowsIDResponse, error)
ParseDeleteAdminRealmsRealmWorkflowsIDResponse parses an HTTP response from a DeleteAdminRealmsRealmWorkflowsIDWithResponse call
func (DeleteAdminRealmsRealmWorkflowsIDResponse) ContentType ¶
func (r DeleteAdminRealmsRealmWorkflowsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (DeleteAdminRealmsRealmWorkflowsIDResponse) Status ¶
func (r DeleteAdminRealmsRealmWorkflowsIDResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteAdminRealmsRealmWorkflowsIDResponse) StatusCode ¶
func (r DeleteAdminRealmsRealmWorkflowsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAdminEventsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAdminEventsResponse) Status ¶
func (r GetAdminRealmsRealmAdminEventsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAdminEventsResponse) StatusCode ¶
func (r GetAdminRealmsRealmAdminEventsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) Status ¶
func (r GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmAttackDetectionBruteForceUsersUserIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationAuthenticatorProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationClientAuthenticatorProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationConfigDescriptionProviderIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationConfigIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationConfigIDResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationConfigIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationExecutionsExecutionIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationFlowsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationFlowsIDResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationFlowsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationFlowsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationFlowsResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationFlowsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationFlowsResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationFlowsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationFormActionProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationFormProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationFormProvidersResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationFormProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationFormProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationFormProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationPerClientConfigDescriptionResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescriptionResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationRequiredActionsResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationRequiredActionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationRequiredActionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) Status ¶
func (r GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmAuthenticationUnregisteredRequiredActionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientPoliciesPoliciesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientPoliciesPoliciesResponse) Status ¶
func (r GetAdminRealmsRealmClientPoliciesPoliciesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientPoliciesPoliciesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientPoliciesPoliciesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientPoliciesProfilesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientPoliciesProfilesResponse) Status ¶
func (r GetAdminRealmsRealmClientPoliciesProfilesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientPoliciesProfilesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientPoliciesProfilesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) Status ¶
func (r GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientRegistrationPolicyProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientScopesResponse) Status ¶
func (r GetAdminRealmsRealmClientScopesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientScopesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientScopesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientSessionStatsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientSessionStatsResponse) Status ¶
func (r GetAdminRealmsRealmClientSessionStatsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientSessionStatsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientSessionStatsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersProtocolProtocolResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTemplatesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTemplatesResponse) Status ¶
func (r GetAdminRealmsRealmClientTemplatesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTemplatesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTemplatesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientTypesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientTypesResponse) Status ¶
func (r GetAdminRealmsRealmClientTypesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientTypesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientTypesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionSearchResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicySearchResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDAttributesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDScopesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceSearchResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResourcesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDCertificatesAttrResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDClientSecretResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDClientSecretRotatedResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDDefaultClientScopesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleAccessTokenResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleIDTokenResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleSamlResponseResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesGenerateExampleUserinfoResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesProtocolMappersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDGrantedResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDEvaluateScopesScopeMappingsRoleContainerIDNotGrantedResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDInstallationProvidersProviderIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDOfflineSessionCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDOfflineSessionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDOptionalClientScopesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocolResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDScopeMappingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDServiceAccountUserResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDSessionCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDTestNodesAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) Status ¶
func (r GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsClientUUIDUserSessionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsInitialAccessResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsInitialAccessResponse) Status ¶
func (r GetAdminRealmsRealmClientsInitialAccessResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmClientsInitialAccessResponse) StatusCode ¶
func (r GetAdminRealmsRealmClientsInitialAccessResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmClientsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmClientsResponse) Status ¶
func (r GetAdminRealmsRealmClientsResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmComponentsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmComponentsIDResponse) Status ¶
func (r GetAdminRealmsRealmComponentsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmComponentsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmComponentsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) Status ¶
func (r GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) StatusCode ¶
func (r GetAdminRealmsRealmComponentsIDSubComponentTypesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmComponentsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmComponentsResponse) Status ¶
func (r GetAdminRealmsRealmComponentsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmComponentsResponse) StatusCode ¶
func (r GetAdminRealmsRealmComponentsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmCredentialRegistratorsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmCredentialRegistratorsResponse) Status ¶
func (r GetAdminRealmsRealmCredentialRegistratorsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmCredentialRegistratorsResponse) StatusCode ¶
func (r GetAdminRealmsRealmCredentialRegistratorsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmDefaultDefaultClientScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmDefaultDefaultClientScopesResponse) Status ¶
func (r GetAdminRealmsRealmDefaultDefaultClientScopesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmDefaultDefaultClientScopesResponse) StatusCode ¶
func (r GetAdminRealmsRealmDefaultDefaultClientScopesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmDefaultGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmDefaultGroupsResponse) Status ¶
func (r GetAdminRealmsRealmDefaultGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmDefaultGroupsResponse) StatusCode ¶
func (r GetAdminRealmsRealmDefaultGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmDefaultOptionalClientScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmDefaultOptionalClientScopesResponse) Status ¶
func (r GetAdminRealmsRealmDefaultOptionalClientScopesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmDefaultOptionalClientScopesResponse) StatusCode ¶
func (r GetAdminRealmsRealmDefaultOptionalClientScopesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmEventsConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmEventsConfigResponse) Status ¶
func (r GetAdminRealmsRealmEventsConfigResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmEventsConfigResponse) StatusCode ¶
func (r GetAdminRealmsRealmEventsConfigResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmEventsResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmGroupByPathPathResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupByPathPathResponse) Status ¶
func (r GetAdminRealmsRealmGroupByPathPathResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupByPathPathResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupByPathPathResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsCountResponse) Status ¶
func (r GetAdminRealmsRealmGroupsCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDChildrenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDChildrenResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDChildrenResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDChildrenResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDChildrenResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDMembersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDMembersResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDMembersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDMembersResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDMembersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) Status ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) StatusCode ¶
func (r GetAdminRealmsRealmGroupsGroupIDRoleMappingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmGroupsResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasExportResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeysResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderInstancesResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderInstancesResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderInstancesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) Status ¶
func (r GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmIdentityProviderProvidersProviderIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmKeysResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmLocalizationLocaleKeyResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmLocalizationLocaleKeyResponse) Status ¶
func (r GetAdminRealmsRealmLocalizationLocaleKeyResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode ¶
func (r GetAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmLocalizationLocaleResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmLocalizationLocaleResponse) Status ¶
func (r GetAdminRealmsRealmLocalizationLocaleResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmLocalizationLocaleResponse) StatusCode ¶
func (r GetAdminRealmsRealmLocalizationLocaleResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmLocalizationResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmLocalizationResponse) Status ¶
func (r GetAdminRealmsRealmLocalizationResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmLocalizationResponse) StatusCode ¶
func (r GetAdminRealmsRealmLocalizationResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsCountResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsMembersMemberIDOrganizationsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPathResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDInvitationsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDInvitationsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizationsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDMembersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsOrgIDResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmOrganizationsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmOrganizationsResponse) Status ¶
func (r GetAdminRealmsRealmOrganizationsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmOrganizationsResponse) StatusCode ¶
func (r GetAdminRealmsRealmOrganizationsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) Status ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesClientsClientUUIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) Status ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesByIDRoleIDResponse) Status ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) Status ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesRoleNameCompositesResponse) Status ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesRoleNameGroupsResponse) Status ¶
func (r GetAdminRealmsRealmRolesRoleNameGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesRoleNameGroupsResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesRoleNameGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesRoleNameResponse) Status ¶
func (r GetAdminRealmsRealmRolesRoleNameResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesRoleNameResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesRoleNameResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmRolesRoleNameUsersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmRolesRoleNameUsersResponse) Status ¶
func (r GetAdminRealmsRealmRolesRoleNameUsersResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmRolesRoleNameUsersResponse) StatusCode ¶
func (r GetAdminRealmsRealmRolesRoleNameUsersResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersCountResponse) Status ¶
func (r GetAdminRealmsRealmUsersCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersManagementPermissionsResponse) Status ¶
func (r GetAdminRealmsRealmUsersManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersManagementPermissionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersManagementPermissionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersProfileMetadataResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersProfileMetadataResponse) Status ¶
func (r GetAdminRealmsRealmUsersProfileMetadataResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersProfileMetadataResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersProfileMetadataResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersProfileResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersProfileResponse) Status ¶
func (r GetAdminRealmsRealmUsersProfileResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersProfileResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersProfileResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersResponse) Status() string
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 ¶
func (r GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmUsersUserIDConfiguredUserStorageCredentialTypesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDConsentsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDConsentsResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDConsentsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDConsentsResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDConsentsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDCredentialsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDCredentialsResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDCredentialsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDCredentialsResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDCredentialsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDFederatedIdentityResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDGroupsCountResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDGroupsCountResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDGroupsCountResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDGroupsCountResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDGroupsCountResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDGroupsResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDGroupsResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDGroupsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDOfflineSessionsClientUUIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) ContentType() string
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailableResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmCompositeResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDRoleMappingsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDSessionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDSessionsResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDSessionsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDSessionsResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDSessionsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) Status ¶
func (r GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) StatusCode ¶
func (r GetAdminRealmsRealmUsersUserIDUnmanagedAttributesResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmWorkflowsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmWorkflowsIDResponse) Status ¶
func (r GetAdminRealmsRealmWorkflowsIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmWorkflowsIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmWorkflowsIDResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmWorkflowsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmWorkflowsResponse) Status ¶
func (r GetAdminRealmsRealmWorkflowsResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmWorkflowsResponse) StatusCode ¶
func (r GetAdminRealmsRealmWorkflowsResponse) StatusCode() int
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 ¶
func (r GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) Status ¶
func (r GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) Status() string
Status returns HTTPResponse.Status
func (GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) StatusCode ¶
func (r GetAdminRealmsRealmWorkflowsScheduledResourceIDResponse) StatusCode() int
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 ¶
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 ¶
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 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 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 ¶
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 ¶
func (r PostAdminRealmsRealmAuthenticationConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationConfigResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationConfigResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationConfigResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationConfigResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriorityResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriorityResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationExecutionsResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationExecutionsResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationExecutionsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyJSONBody ¶
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 ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasCopyResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsFlowResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationFlowsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationFlowsResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationFlowsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationFlowsResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationFlowsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONBody ¶
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 ¶
func (r PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationRegisterRequiredActionResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriorityResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) Status ¶
func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) StatusCode ¶
func (r PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriorityResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientDescriptionConverterResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientDescriptionConverterResponse) Status ¶
func (r PostAdminRealmsRealmClientDescriptionConverterResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientDescriptionConverterResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientDescriptionConverterResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) Status ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersAddModelsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmClientScopesJSONRequestBody ¶
type PostAdminRealmsRealmClientScopesJSONRequestBody = ClientScopeRepresentation
PostAdminRealmsRealmClientScopesJSONRequestBody defines body for PostAdminRealmsRealmClientScopes for application/json ContentType.
type PostAdminRealmsRealmClientScopesResponse ¶
func ParsePostAdminRealmsRealmClientScopesResponse ¶
func ParsePostAdminRealmsRealmClientScopesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientScopesResponse, error)
ParsePostAdminRealmsRealmClientScopesResponse parses an HTTP response from a PostAdminRealmsRealmClientScopesWithResponse call
func (PostAdminRealmsRealmClientScopesResponse) ContentType ¶
func (r PostAdminRealmsRealmClientScopesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientScopesResponse) Status ¶
func (r PostAdminRealmsRealmClientScopesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientScopesResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientScopesResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) Status ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersAddModelsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmClientTemplatesJSONRequestBody ¶
type PostAdminRealmsRealmClientTemplatesJSONRequestBody = ClientScopeRepresentation
PostAdminRealmsRealmClientTemplatesJSONRequestBody defines body for PostAdminRealmsRealmClientTemplates for application/json ContentType.
type PostAdminRealmsRealmClientTemplatesResponse ¶
func ParsePostAdminRealmsRealmClientTemplatesResponse ¶
func ParsePostAdminRealmsRealmClientTemplatesResponse(rsp *http.Response) (*PostAdminRealmsRealmClientTemplatesResponse, error)
ParsePostAdminRealmsRealmClientTemplatesResponse parses an HTTP response from a PostAdminRealmsRealmClientTemplatesWithResponse call
func (PostAdminRealmsRealmClientTemplatesResponse) ContentType ¶
func (r PostAdminRealmsRealmClientTemplatesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientTemplatesResponse) Status ¶
func (r PostAdminRealmsRealmClientTemplatesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientTemplatesResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientTemplatesResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerImportResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionEvaluateResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyEvaluateResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateAndDownloadResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerateResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificateResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDClientSecretResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmClientsClientUUIDNodesJSONBody ¶
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDNodesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDNodesResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDNodesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDNodesResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDNodesResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDProtocolMappersModelsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDPushRevocationResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDRegistrationAccessTokenResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDRolesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDRolesResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDRolesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDRolesResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDRolesResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status ¶
func (r PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsClientUUIDScopeMappingsRealmResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmClientsInitialAccessResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsInitialAccessResponse) Status ¶
func (r PostAdminRealmsRealmClientsInitialAccessResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsInitialAccessResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsInitialAccessResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmClientsJSONRequestBody ¶
type PostAdminRealmsRealmClientsJSONRequestBody = ClientRepresentation
PostAdminRealmsRealmClientsJSONRequestBody defines body for PostAdminRealmsRealmClients for application/json ContentType.
type PostAdminRealmsRealmClientsResponse ¶
func ParsePostAdminRealmsRealmClientsResponse ¶
func ParsePostAdminRealmsRealmClientsResponse(rsp *http.Response) (*PostAdminRealmsRealmClientsResponse, error)
ParsePostAdminRealmsRealmClientsResponse parses an HTTP response from a PostAdminRealmsRealmClientsWithResponse call
func (PostAdminRealmsRealmClientsResponse) ContentType ¶
func (r PostAdminRealmsRealmClientsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmClientsResponse) Status ¶
func (r PostAdminRealmsRealmClientsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmClientsResponse) StatusCode ¶
func (r PostAdminRealmsRealmClientsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmComponentsJSONRequestBody ¶
type PostAdminRealmsRealmComponentsJSONRequestBody = ComponentRepresentation
PostAdminRealmsRealmComponentsJSONRequestBody defines body for PostAdminRealmsRealmComponents for application/json ContentType.
type PostAdminRealmsRealmComponentsResponse ¶
func ParsePostAdminRealmsRealmComponentsResponse ¶
func ParsePostAdminRealmsRealmComponentsResponse(rsp *http.Response) (*PostAdminRealmsRealmComponentsResponse, error)
ParsePostAdminRealmsRealmComponentsResponse parses an HTTP response from a PostAdminRealmsRealmComponentsWithResponse call
func (PostAdminRealmsRealmComponentsResponse) ContentType ¶
func (r PostAdminRealmsRealmComponentsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmComponentsResponse) Status ¶
func (r PostAdminRealmsRealmComponentsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmComponentsResponse) StatusCode ¶
func (r PostAdminRealmsRealmComponentsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmGroupsGroupIDChildrenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmGroupsGroupIDChildrenResponse) Status ¶
func (r PostAdminRealmsRealmGroupsGroupIDChildrenResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmGroupsGroupIDChildrenResponse) StatusCode ¶
func (r PostAdminRealmsRealmGroupsGroupIDChildrenResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status ¶
func (r PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status ¶
func (r PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode ¶
func (r PostAdminRealmsRealmGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmGroupsJSONRequestBody ¶
type PostAdminRealmsRealmGroupsJSONRequestBody = GroupRepresentation
PostAdminRealmsRealmGroupsJSONRequestBody defines body for PostAdminRealmsRealmGroups for application/json ContentType.
type PostAdminRealmsRealmGroupsResponse ¶
func ParsePostAdminRealmsRealmGroupsResponse ¶
func ParsePostAdminRealmsRealmGroupsResponse(rsp *http.Response) (*PostAdminRealmsRealmGroupsResponse, error)
ParsePostAdminRealmsRealmGroupsResponse parses an HTTP response from a PostAdminRealmsRealmGroupsWithResponse call
func (PostAdminRealmsRealmGroupsResponse) ContentType ¶
func (r PostAdminRealmsRealmGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmGroupsResponse) Status ¶
func (r PostAdminRealmsRealmGroupsResponse) Status() string
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 ¶
func (r PostAdminRealmsRealmIdentityProviderImportConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmIdentityProviderImportConfigResponse) Status ¶
func (r PostAdminRealmsRealmIdentityProviderImportConfigResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmIdentityProviderImportConfigResponse) StatusCode ¶
func (r PostAdminRealmsRealmIdentityProviderImportConfigResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) Status ¶
func (r PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) StatusCode ¶
func (r PostAdminRealmsRealmIdentityProviderInstancesAliasMappersResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmIdentityProviderInstancesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmIdentityProviderInstancesResponse) Status ¶
func (r PostAdminRealmsRealmIdentityProviderInstancesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmIdentityProviderInstancesResponse) StatusCode ¶
func (r PostAdminRealmsRealmIdentityProviderInstancesResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) Status ¶
func (r PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) StatusCode ¶
func (r PostAdminRealmsRealmIdentityProviderUploadCertificateResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmLocalizationLocaleJSONBody ¶
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 ¶
func (r PostAdminRealmsRealmLocalizationLocaleResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmLocalizationLocaleResponse) Status ¶
func (r PostAdminRealmsRealmLocalizationLocaleResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmLocalizationLocaleResponse) StatusCode ¶
func (r PostAdminRealmsRealmLocalizationLocaleResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmLogoutAllResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmLogoutAllResponse) Status ¶
func (r PostAdminRealmsRealmLogoutAllResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmLogoutAllResponse) StatusCode ¶
func (r PostAdminRealmsRealmLogoutAllResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDGroupsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDIdentityProvidersResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResendResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsOrgIDMembersResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmOrganizationsResponse ¶
func ParsePostAdminRealmsRealmOrganizationsResponse ¶
func ParsePostAdminRealmsRealmOrganizationsResponse(rsp *http.Response) (*PostAdminRealmsRealmOrganizationsResponse, error)
ParsePostAdminRealmsRealmOrganizationsResponse parses an HTTP response from a PostAdminRealmsRealmOrganizationsWithResponse call
func (PostAdminRealmsRealmOrganizationsResponse) ContentType ¶
func (r PostAdminRealmsRealmOrganizationsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmOrganizationsResponse) Status ¶
func (r PostAdminRealmsRealmOrganizationsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmOrganizationsResponse) StatusCode ¶
func (r PostAdminRealmsRealmOrganizationsResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmPartialExportResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmPartialExportResponse) Status ¶
func (r PostAdminRealmsRealmPartialExportResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmPartialExportResponse) StatusCode ¶
func (r PostAdminRealmsRealmPartialExportResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmPartialImportResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmPartialImportResponse) Status ¶
func (r PostAdminRealmsRealmPartialImportResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmPartialImportResponse) StatusCode ¶
func (r PostAdminRealmsRealmPartialImportResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmPushRevocationResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmPushRevocationResponse) Status ¶
func (r PostAdminRealmsRealmPushRevocationResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmPushRevocationResponse) StatusCode ¶
func (r PostAdminRealmsRealmPushRevocationResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status ¶
func (r PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode ¶
func (r PostAdminRealmsRealmRolesByIDRoleIDCompositesResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmRolesJSONRequestBody ¶
type PostAdminRealmsRealmRolesJSONRequestBody = RoleRepresentation
PostAdminRealmsRealmRolesJSONRequestBody defines body for PostAdminRealmsRealmRoles for application/json ContentType.
type PostAdminRealmsRealmRolesResponse ¶
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 ¶
func (r PostAdminRealmsRealmRolesResponse) Status() string
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 ¶
func (r PostAdminRealmsRealmRolesRoleNameCompositesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmRolesRoleNameCompositesResponse) Status ¶
func (r PostAdminRealmsRealmRolesRoleNameCompositesResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode ¶
func (r PostAdminRealmsRealmRolesRoleNameCompositesResponse) StatusCode() int
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 ¶
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 ¶
func (r PostAdminRealmsRealmTestSMTPConnectionResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmTestSMTPConnectionResponse) Status ¶
func (r PostAdminRealmsRealmTestSMTPConnectionResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmTestSMTPConnectionResponse) StatusCode ¶
func (r PostAdminRealmsRealmTestSMTPConnectionResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmUsersJSONRequestBody ¶
type PostAdminRealmsRealmUsersJSONRequestBody = UserRepresentation
PostAdminRealmsRealmUsersJSONRequestBody defines body for PostAdminRealmsRealmUsers for application/json ContentType.
type PostAdminRealmsRealmUsersResponse ¶
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 ¶
func (r PostAdminRealmsRealmUsersResponse) Status() string
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 ¶
func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) Status ¶
func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) StatusCode ¶
func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveAfterNewPreviousCredentialIDResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) ContentType() string
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 ¶
func (r PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirstResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) Status ¶
func (r PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) StatusCode ¶
func (r PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmUsersUserIDImpersonationResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmUsersUserIDImpersonationResponse) Status ¶
func (r PostAdminRealmsRealmUsersUserIDImpersonationResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmUsersUserIDImpersonationResponse) StatusCode ¶
func (r PostAdminRealmsRealmUsersUserIDImpersonationResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmUsersUserIDLogoutResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmUsersUserIDLogoutResponse) Status ¶
func (r PostAdminRealmsRealmUsersUserIDLogoutResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmUsersUserIDLogoutResponse) StatusCode ¶
func (r PostAdminRealmsRealmUsersUserIDLogoutResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status ¶
func (r PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode ¶
func (r PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status ¶
func (r PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode ¶
func (r PostAdminRealmsRealmUsersUserIDRoleMappingsRealmResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) Status ¶
func (r PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) StatusCode ¶
func (r PostAdminRealmsRealmWorkflowsIDActivateTypeResourceIDResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) Status ¶
func (r PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) StatusCode ¶
func (r PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceIDResponse) StatusCode() int
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 ¶
func (r PostAdminRealmsRealmWorkflowsMigrateResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmWorkflowsMigrateResponse) Status ¶
func (r PostAdminRealmsRealmWorkflowsMigrateResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmWorkflowsMigrateResponse) StatusCode ¶
func (r PostAdminRealmsRealmWorkflowsMigrateResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsRealmWorkflowsResponse ¶
func ParsePostAdminRealmsRealmWorkflowsResponse ¶
func ParsePostAdminRealmsRealmWorkflowsResponse(rsp *http.Response) (*PostAdminRealmsRealmWorkflowsResponse, error)
ParsePostAdminRealmsRealmWorkflowsResponse parses an HTTP response from a PostAdminRealmsRealmWorkflowsWithResponse call
func (PostAdminRealmsRealmWorkflowsResponse) ContentType ¶
func (r PostAdminRealmsRealmWorkflowsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PostAdminRealmsRealmWorkflowsResponse) Status ¶
func (r PostAdminRealmsRealmWorkflowsResponse) Status() string
Status returns HTTPResponse.Status
func (PostAdminRealmsRealmWorkflowsResponse) StatusCode ¶
func (r PostAdminRealmsRealmWorkflowsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PostAdminRealmsResponse ¶
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 ¶
func (r PutAdminRealmsRealmAuthenticationConfigIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmAuthenticationConfigIDResponse) Status ¶
func (r PutAdminRealmsRealmAuthenticationConfigIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmAuthenticationConfigIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) Status ¶
func (r PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmAuthenticationFlowsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmAuthenticationFlowsIDResponse) Status ¶
func (r PutAdminRealmsRealmAuthenticationFlowsIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmAuthenticationFlowsIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status ¶
func (r PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode ¶
func (r PutAdminRealmsRealmAuthenticationRequiredActionsAliasConfigResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status ¶
func (r PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode ¶
func (r PutAdminRealmsRealmAuthenticationRequiredActionsAliasResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientPoliciesPoliciesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientPoliciesPoliciesResponse) Status ¶
func (r PutAdminRealmsRealmClientPoliciesPoliciesResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientPoliciesPoliciesResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientPoliciesPoliciesResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientPoliciesProfilesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientPoliciesProfilesResponse) Status ¶
func (r PutAdminRealmsRealmClientPoliciesProfilesResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientPoliciesProfilesResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientPoliciesProfilesResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status ¶
func (r PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientScopesClientScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status ¶
func (r PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientTemplatesClientScopeIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmClientTypesJSONRequestBody ¶
type PutAdminRealmsRealmClientTypesJSONRequestBody = ClientTypesRepresentation
PutAdminRealmsRealmClientTypesJSONRequestBody defines body for PutAdminRealmsRealmClientTypes for application/json ContentType.
type PutAdminRealmsRealmClientTypesResponse ¶
func ParsePutAdminRealmsRealmClientTypesResponse ¶
func ParsePutAdminRealmsRealmClientTypesResponse(rsp *http.Response) (*PutAdminRealmsRealmClientTypesResponse, error)
ParsePutAdminRealmsRealmClientTypesResponse parses an HTTP response from a PutAdminRealmsRealmClientTypesWithResponse call
func (PutAdminRealmsRealmClientTypesResponse) ContentType ¶
func (r PutAdminRealmsRealmClientTypesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientTypesResponse) Status ¶
func (r PutAdminRealmsRealmClientTypesResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientTypesResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientTypesResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeScopeIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDManagementPermissionsResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissionsResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status ¶
func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode ¶
func (r PutAdminRealmsRealmClientsClientUUIDRolesRoleNameResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmComponentsIDJSONRequestBody ¶
type PutAdminRealmsRealmComponentsIDJSONRequestBody = ComponentRepresentation
PutAdminRealmsRealmComponentsIDJSONRequestBody defines body for PutAdminRealmsRealmComponentsID for application/json ContentType.
type PutAdminRealmsRealmComponentsIDResponse ¶
func ParsePutAdminRealmsRealmComponentsIDResponse ¶
func ParsePutAdminRealmsRealmComponentsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmComponentsIDResponse, error)
ParsePutAdminRealmsRealmComponentsIDResponse parses an HTTP response from a PutAdminRealmsRealmComponentsIDWithResponse call
func (PutAdminRealmsRealmComponentsIDResponse) ContentType ¶
func (r PutAdminRealmsRealmComponentsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmComponentsIDResponse) Status ¶
func (r PutAdminRealmsRealmComponentsIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmComponentsIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmComponentsIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmDefaultGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmDefaultGroupsGroupIDResponse) Status ¶
func (r PutAdminRealmsRealmDefaultGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmDefaultGroupsGroupIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmDefaultGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) Status ¶
func (r PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmEventsConfigJSONRequestBody ¶
type PutAdminRealmsRealmEventsConfigJSONRequestBody = RealmEventsConfigRepresentation
PutAdminRealmsRealmEventsConfigJSONRequestBody defines body for PutAdminRealmsRealmEventsConfig for application/json ContentType.
type PutAdminRealmsRealmEventsConfigResponse ¶
func ParsePutAdminRealmsRealmEventsConfigResponse ¶
func ParsePutAdminRealmsRealmEventsConfigResponse(rsp *http.Response) (*PutAdminRealmsRealmEventsConfigResponse, error)
ParsePutAdminRealmsRealmEventsConfigResponse parses an HTTP response from a PutAdminRealmsRealmEventsConfigWithResponse call
func (PutAdminRealmsRealmEventsConfigResponse) ContentType ¶
func (r PutAdminRealmsRealmEventsConfigResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmEventsConfigResponse) Status ¶
func (r PutAdminRealmsRealmEventsConfigResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmEventsConfigResponse) StatusCode ¶
func (r PutAdminRealmsRealmEventsConfigResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmGroupsGroupIDManagementPermissionsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmGroupsGroupIDResponse ¶
func ParsePutAdminRealmsRealmGroupsGroupIDResponse ¶
func ParsePutAdminRealmsRealmGroupsGroupIDResponse(rsp *http.Response) (*PutAdminRealmsRealmGroupsGroupIDResponse, error)
ParsePutAdminRealmsRealmGroupsGroupIDResponse parses an HTTP response from a PutAdminRealmsRealmGroupsGroupIDWithResponse call
func (PutAdminRealmsRealmGroupsGroupIDResponse) ContentType ¶
func (r PutAdminRealmsRealmGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmGroupsGroupIDResponse) Status ¶
func (r PutAdminRealmsRealmGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmGroupsGroupIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissionsResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode ¶
func (r PutAdminRealmsRealmIdentityProviderInstancesAliasResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmLocalizationLocaleKeyResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmLocalizationLocaleKeyResponse) Status ¶
func (r PutAdminRealmsRealmLocalizationLocaleKeyResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode ¶
func (r PutAdminRealmsRealmLocalizationLocaleKeyResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) ContentType() string
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 ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmOrganizationsOrgIDResponse) Status ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmOrganizationsOrgIDResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmResponse ¶
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 ¶
func (r PutAdminRealmsRealmResponse) Status() string
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 ¶
func (r PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmRolesByIDRoleIDManagementPermissionsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmRolesByIDRoleIDResponse ¶
func ParsePutAdminRealmsRealmRolesByIDRoleIDResponse ¶
func ParsePutAdminRealmsRealmRolesByIDRoleIDResponse(rsp *http.Response) (*PutAdminRealmsRealmRolesByIDRoleIDResponse, error)
ParsePutAdminRealmsRealmRolesByIDRoleIDResponse parses an HTTP response from a PutAdminRealmsRealmRolesByIDRoleIDWithResponse call
func (PutAdminRealmsRealmRolesByIDRoleIDResponse) ContentType ¶
func (r PutAdminRealmsRealmRolesByIDRoleIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmRolesByIDRoleIDResponse) Status ¶
func (r PutAdminRealmsRealmRolesByIDRoleIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmRolesByIDRoleIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmRolesRoleNameManagementPermissionsResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmRolesRoleNameResponse ¶
func ParsePutAdminRealmsRealmRolesRoleNameResponse ¶
func ParsePutAdminRealmsRealmRolesRoleNameResponse(rsp *http.Response) (*PutAdminRealmsRealmRolesRoleNameResponse, error)
ParsePutAdminRealmsRealmRolesRoleNameResponse parses an HTTP response from a PutAdminRealmsRealmRolesRoleNameWithResponse call
func (PutAdminRealmsRealmRolesRoleNameResponse) ContentType ¶
func (r PutAdminRealmsRealmRolesRoleNameResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmRolesRoleNameResponse) Status ¶
func (r PutAdminRealmsRealmRolesRoleNameResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmRolesRoleNameResponse) StatusCode ¶
func (r PutAdminRealmsRealmRolesRoleNameResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersManagementPermissionsResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersManagementPermissionsResponse) Status ¶
func (r PutAdminRealmsRealmUsersManagementPermissionsResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersManagementPermissionsResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersManagementPermissionsResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersProfileResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersProfileResponse) Status ¶
func (r PutAdminRealmsRealmUsersProfileResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersProfileResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersProfileResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDCredentialsCredentialIDUserLabelResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDDisableCredentialTypesResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDExecuteActionsEmailResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDGroupsGroupIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDResetPasswordEmailResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDResetPasswordResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDResetPasswordResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDResetPasswordResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDResetPasswordResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDResetPasswordResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmUsersUserIDResponse ¶
func ParsePutAdminRealmsRealmUsersUserIDResponse ¶
func ParsePutAdminRealmsRealmUsersUserIDResponse(rsp *http.Response) (*PutAdminRealmsRealmUsersUserIDResponse, error)
ParsePutAdminRealmsRealmUsersUserIDResponse parses an HTTP response from a PutAdminRealmsRealmUsersUserIDWithResponse call
func (PutAdminRealmsRealmUsersUserIDResponse) ContentType ¶
func (r PutAdminRealmsRealmUsersUserIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDResponse) StatusCode() int
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 ¶
func (r PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) Status ¶
func (r PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) StatusCode ¶
func (r PutAdminRealmsRealmUsersUserIDSendVerifyEmailResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type PutAdminRealmsRealmWorkflowsIDJSONRequestBody ¶
type PutAdminRealmsRealmWorkflowsIDJSONRequestBody = WorkflowRepresentation
PutAdminRealmsRealmWorkflowsIDJSONRequestBody defines body for PutAdminRealmsRealmWorkflowsID for application/json ContentType.
type PutAdminRealmsRealmWorkflowsIDResponse ¶
func ParsePutAdminRealmsRealmWorkflowsIDResponse ¶
func ParsePutAdminRealmsRealmWorkflowsIDResponse(rsp *http.Response) (*PutAdminRealmsRealmWorkflowsIDResponse, error)
ParsePutAdminRealmsRealmWorkflowsIDResponse parses an HTTP response from a PutAdminRealmsRealmWorkflowsIDWithResponse call
func (PutAdminRealmsRealmWorkflowsIDResponse) ContentType ¶
func (r PutAdminRealmsRealmWorkflowsIDResponse) ContentType() string
ContentType is a convenience method to retrieve the Content-Type value from the HTTP response headers
func (PutAdminRealmsRealmWorkflowsIDResponse) Status ¶
func (r PutAdminRealmsRealmWorkflowsIDResponse) Status() string
Status returns HTTPResponse.Status
func (PutAdminRealmsRealmWorkflowsIDResponse) StatusCode ¶
func (r PutAdminRealmsRealmWorkflowsIDResponse) StatusCode() int
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 (*RawClient) DeleteAdminRealmsRealmAdminEvents ¶
func (*RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsers ¶
func (*RawClient) DeleteAdminRealmsRealmAttackDetectionBruteForceUsersUserID ¶
func (*RawClient) DeleteAdminRealmsRealmAuthenticationConfigID ¶
func (*RawClient) DeleteAdminRealmsRealmAuthenticationExecutionsExecutionID ¶
func (*RawClient) DeleteAdminRealmsRealmAuthenticationFlowsID ¶
func (*RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAlias ¶
func (*RawClient) DeleteAdminRealmsRealmAuthenticationRequiredActionsAliasConfig ¶
func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeID ¶
func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID ¶
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 (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm ¶
func (c *RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) DeleteAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody ¶
func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeID ¶
func (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID ¶
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 (*RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm ¶
func (c *RawClient) DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body DeleteAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUID ¶
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 (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDClientSecretRotated ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDNodesNode ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleName ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient ¶
func (*RawClient) DeleteAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody ¶
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 (*RawClient) DeleteAdminRealmsRealmClientsInitialAccessID ¶
func (*RawClient) DeleteAdminRealmsRealmComponentsID ¶
func (*RawClient) DeleteAdminRealmsRealmDefaultDefaultClientScopesClientScopeID ¶
func (*RawClient) DeleteAdminRealmsRealmDefaultGroupsGroupID ¶
func (*RawClient) DeleteAdminRealmsRealmDefaultOptionalClientScopesClientScopeID ¶
func (*RawClient) DeleteAdminRealmsRealmEvents ¶
func (*RawClient) DeleteAdminRealmsRealmGroupsGroupID ¶
func (*RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID ¶
func (*RawClient) DeleteAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody ¶
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 (*RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAlias ¶
func (*RawClient) DeleteAdminRealmsRealmIdentityProviderInstancesAliasMappersID ¶
func (*RawClient) DeleteAdminRealmsRealmLocalizationLocale ¶
func (*RawClient) DeleteAdminRealmsRealmLocalizationLocaleKey ¶
func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgID ¶
func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupID ¶
func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID ¶
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 (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm ¶
func (c *RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm(ctx context.Context, realm string, orgID string, groupID string, body DeleteAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias ¶
func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDInvitationsID ¶
func (*RawClient) DeleteAdminRealmsRealmOrganizationsOrgIDMembersMemberID ¶
func (*RawClient) DeleteAdminRealmsRealmRolesByIDRoleID ¶
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 (*RawClient) DeleteAdminRealmsRealmRolesRoleName ¶
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 (*RawClient) DeleteAdminRealmsRealmSessionsSession ¶
func (c *RawClient) DeleteAdminRealmsRealmSessionsSession(ctx context.Context, realm string, session string, params *DeleteAdminRealmsRealmSessionsSessionParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) DeleteAdminRealmsRealmUsersUserID ¶
func (*RawClient) DeleteAdminRealmsRealmUsersUserIDConsentsClient ¶
func (*RawClient) DeleteAdminRealmsRealmUsersUserIDCredentialsCredentialID ¶
func (*RawClient) DeleteAdminRealmsRealmUsersUserIDFederatedIdentityProvider ¶
func (*RawClient) DeleteAdminRealmsRealmUsersUserIDGroupsGroupID ¶
func (*RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID ¶
func (*RawClient) DeleteAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody ¶
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 (*RawClient) DeleteAdminRealmsRealmWorkflowsID ¶
func (*RawClient) GetAdminRealms ¶
func (c *RawClient) GetAdminRealms(ctx context.Context, params *GetAdminRealmsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealm ¶
func (*RawClient) GetAdminRealmsRealmAdminEvents ¶
func (c *RawClient) GetAdminRealmsRealmAdminEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmAdminEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmAttackDetectionBruteForceUsersUserID ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationAuthenticatorProviders ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationClientAuthenticatorProviders ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationConfigDescriptionProviderID ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationConfigID ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionID ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationExecutionsExecutionIDConfigID ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationFlows ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationFlowsID ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationFormActionProviders ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationFormProviders ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationPerClientConfigDescription ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActions ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAlias ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfig ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationRequiredActionsAliasConfigDescription ¶
func (*RawClient) GetAdminRealmsRealmAuthenticationUnregisteredRequiredActions ¶
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 (*RawClient) GetAdminRealmsRealmClientScopes ¶
func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeID ¶
func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels ¶
func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsID ¶
func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDProtocolMappersProtocolProtocol ¶
func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappings ¶
func (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsClientsClient ¶
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 (*RawClient) GetAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmAvailable ¶
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 (*RawClient) GetAdminRealmsRealmClientTemplates ¶
func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeID ¶
func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels ¶
func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsID ¶
func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappings ¶
func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClient ¶
func (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsClientsClientAvailable ¶
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 (*RawClient) GetAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmAvailable ¶
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 (*RawClient) GetAdminRealmsRealmClients ¶
func (c *RawClient) GetAdminRealmsRealmClients(ctx context.Context, realm string, params *GetAdminRealmsRealmClientsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmClientsClientUUID ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServer ¶
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 (*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 (*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 (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch ¶
func (c *RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearch(ctx context.Context, realm string, clientUUID string, params *GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerScopeSearchParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDAuthzResourceServerSettings ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDCertificatesAttr ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecret ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDClientSecretRotated ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDDefaultClientScopes ¶
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 (*RawClient) GetAdminRealmsRealmClientsClientUUIDManagementPermissions ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDOfflineSessionCount ¶
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 (*RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModels ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDProtocolMappersProtocolProtocol ¶
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 (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameComposites ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesClientsTargetClientUUID ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesRealm ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameGroups ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameManagementPermissions ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDRolesRoleNameUsers ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappings ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientAvailable ¶
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 (*RawClient) GetAdminRealmsRealmClientsClientUUIDScopeMappingsRealmAvailable ¶
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 (*RawClient) GetAdminRealmsRealmClientsClientUUIDSessionCount ¶
func (*RawClient) GetAdminRealmsRealmClientsClientUUIDTestNodesAvailable ¶
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 (*RawClient) GetAdminRealmsRealmComponents ¶
func (c *RawClient) GetAdminRealmsRealmComponents(ctx context.Context, realm string, params *GetAdminRealmsRealmComponentsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmComponentsID ¶
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 (*RawClient) GetAdminRealmsRealmDefaultDefaultClientScopes ¶
func (*RawClient) GetAdminRealmsRealmDefaultGroups ¶
func (*RawClient) GetAdminRealmsRealmDefaultOptionalClientScopes ¶
func (*RawClient) GetAdminRealmsRealmEvents ¶
func (c *RawClient) GetAdminRealmsRealmEvents(ctx context.Context, realm string, params *GetAdminRealmsRealmEventsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmEventsConfig ¶
func (*RawClient) GetAdminRealmsRealmGroupByPathPath ¶
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 (*RawClient) GetAdminRealmsRealmGroupsGroupIDChildren ¶
func (c *RawClient) GetAdminRealmsRealmGroupsGroupIDChildren(ctx context.Context, realm string, groupID string, params *GetAdminRealmsRealmGroupsGroupIDChildrenParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmGroupsGroupIDManagementPermissions ¶
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 (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID ¶
func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDAvailable ¶
func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDComposite ¶
func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealm ¶
func (*RawClient) GetAdminRealmsRealmGroupsGroupIDRoleMappingsRealmAvailable ¶
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 (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasExport ¶
func (c *RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasExport(ctx context.Context, realm string, alias string, params *GetAdminRealmsRealmIdentityProviderInstancesAliasExportParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasManagementPermissions ¶
func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMapperTypes ¶
func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappers ¶
func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasMappersID ¶
func (*RawClient) GetAdminRealmsRealmIdentityProviderInstancesAliasReloadKeys ¶
func (*RawClient) GetAdminRealmsRealmIdentityProviderProvidersProviderID ¶
func (*RawClient) GetAdminRealmsRealmKeys ¶
func (*RawClient) GetAdminRealmsRealmLocalization ¶
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 (*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 (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroups ¶
func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroups(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDGroupsParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupByPathPath ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupID ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildren ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembers ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappings ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsClientsClientIDAvailable ¶
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 (*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 (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAlias ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDIdentityProvidersAliasGroups ¶
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 (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembers ¶
func (c *RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembers(ctx context.Context, realm string, orgID string, params *GetAdminRealmsRealmOrganizationsOrgIDMembersParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersCount ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberID ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDGroups ¶
func (*RawClient) GetAdminRealmsRealmOrganizationsOrgIDMembersMemberIDOrganizations ¶
func (*RawClient) GetAdminRealmsRealmRoles ¶
func (c *RawClient) GetAdminRealmsRealmRoles(ctx context.Context, realm string, params *GetAdminRealmsRealmRolesParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) GetAdminRealmsRealmRolesByIDRoleID ¶
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 (*RawClient) GetAdminRealmsRealmRolesByIDRoleIDCompositesRealm ¶
func (*RawClient) GetAdminRealmsRealmRolesByIDRoleIDManagementPermissions ¶
func (*RawClient) GetAdminRealmsRealmRolesRoleName ¶
func (*RawClient) GetAdminRealmsRealmRolesRoleNameComposites ¶
func (*RawClient) GetAdminRealmsRealmRolesRoleNameCompositesClientsTargetClientUUID ¶
func (*RawClient) GetAdminRealmsRealmRolesRoleNameCompositesRealm ¶
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 (*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 (*RawClient) GetAdminRealmsRealmUsersProfile ¶
func (*RawClient) GetAdminRealmsRealmUsersProfileMetadata ¶
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 (*RawClient) GetAdminRealmsRealmUsersUserIDConsents ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDCredentials ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDFederatedIdentity ¶
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 (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappings ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDAvailable ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDComposite ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealm ¶
func (*RawClient) GetAdminRealmsRealmUsersUserIDRoleMappingsRealmAvailable ¶
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 (*RawClient) GetAdminRealmsRealmUsersUserIDUnmanagedAttributes ¶
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 (*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 (*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 (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDLowerPriority ¶
func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsExecutionIDRaisePriority ¶
func (*RawClient) PostAdminRealmsRealmAuthenticationExecutionsWithBody ¶
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 (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution ¶
func (c *RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecution(ctx context.Context, realm string, flowAlias string, body PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsExecutionWithBody ¶
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 (*RawClient) PostAdminRealmsRealmAuthenticationFlowsWithBody ¶
func (*RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredAction ¶
func (c *RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredAction(ctx context.Context, realm string, body PostAdminRealmsRealmAuthenticationRegisterRequiredActionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmAuthenticationRegisterRequiredActionWithBody ¶
func (*RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasLowerPriority ¶
func (*RawClient) PostAdminRealmsRealmAuthenticationRequiredActionsAliasRaisePriority ¶
func (*RawClient) PostAdminRealmsRealmClientDescriptionConverter ¶
func (c *RawClient) PostAdminRealmsRealmClientDescriptionConverter(ctx context.Context, realm string, body PostAdminRealmsRealmClientDescriptionConverterJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmClientDescriptionConverterWithBody ¶
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) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels ¶
func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsWithBody ¶
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) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm ¶
func (c *RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmClientScopesClientScopeIDScopeMappingsRealmWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientScopesWithBody ¶
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 (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels ¶
func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModels(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDProtocolMappersModelsJSONRequestBody, 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 (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm ¶
func (c *RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealm(ctx context.Context, realm string, clientScopeID string, body PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmClientTemplatesClientScopeIDScopeMappingsRealmWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientTemplatesWithBody ¶
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 (*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 (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPermissionWithBody ¶
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) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerPolicyWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource ¶
func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResource(ctx context.Context, realm string, clientUUID string, params *PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceParams, body PostAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceJSONRequestBody, 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 (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownload ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrDownloadWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrGenerate ¶
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 (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUpload ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDCertificatesAttrUploadCertificate ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDClientSecret ¶
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 (*RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels ¶
func (c *RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModels(ctx context.Context, realm string, clientUUID string, body PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDProtocolMappersAddModelsWithBody ¶
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 (*RawClient) PostAdminRealmsRealmClientsClientUUIDPushRevocation ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRegistrationAccessToken ¶
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 (*RawClient) PostAdminRealmsRealmClientsClientUUIDRolesRoleNameCompositesWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDRolesWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClient ¶
func (*RawClient) PostAdminRealmsRealmClientsClientUUIDScopeMappingsClientsClientWithBody ¶
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 (*RawClient) PostAdminRealmsRealmClientsInitialAccess ¶
func (c *RawClient) PostAdminRealmsRealmClientsInitialAccess(ctx context.Context, realm string, body PostAdminRealmsRealmClientsInitialAccessJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmClientsInitialAccessWithBody ¶
func (*RawClient) PostAdminRealmsRealmClientsWithBody ¶
func (*RawClient) PostAdminRealmsRealmComponents ¶
func (c *RawClient) PostAdminRealmsRealmComponents(ctx context.Context, realm string, body PostAdminRealmsRealmComponentsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmComponentsWithBody ¶
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 (*RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientID ¶
func (*RawClient) PostAdminRealmsRealmGroupsGroupIDRoleMappingsClientsClientIDWithBody ¶
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 (*RawClient) PostAdminRealmsRealmGroupsWithBody ¶
func (*RawClient) PostAdminRealmsRealmIdentityProviderImportConfig ¶
func (c *RawClient) PostAdminRealmsRealmIdentityProviderImportConfig(ctx context.Context, realm string, body PostAdminRealmsRealmIdentityProviderImportConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmIdentityProviderImportConfigWithBody ¶
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 (*RawClient) PostAdminRealmsRealmIdentityProviderInstancesWithBody ¶
func (*RawClient) PostAdminRealmsRealmIdentityProviderUploadCertificate ¶
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 (*RawClient) PostAdminRealmsRealmLogoutAll ¶
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 (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDChildrenWithBody ¶
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 (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDRoleMappingsRealm ¶
func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDGroupsWithBody ¶
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 (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDInvitationsIDResend ¶
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 (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBody ¶
func (c *RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserWithFormdataBody(ctx context.Context, realm string, orgID string, body PostAdminRealmsRealmOrganizationsOrgIDMembersInviteExistingUserFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmOrganizationsOrgIDMembersInviteUserWithBody ¶
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 (*RawClient) PostAdminRealmsRealmOrganizationsWithBody ¶
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 (*RawClient) PostAdminRealmsRealmPushRevocation ¶
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 (*RawClient) PostAdminRealmsRealmRolesRoleNameComposites ¶
func (c *RawClient) PostAdminRealmsRealmRolesRoleNameComposites(ctx context.Context, realm string, roleName string, body PostAdminRealmsRealmRolesRoleNameCompositesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmRolesRoleNameCompositesWithBody ¶
func (*RawClient) PostAdminRealmsRealmRolesWithBody ¶
func (*RawClient) PostAdminRealmsRealmTestSMTPConnection ¶
func (c *RawClient) PostAdminRealmsRealmTestSMTPConnection(ctx context.Context, realm string, body PostAdminRealmsRealmTestSMTPConnectionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmTestSMTPConnectionWithBody ¶
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 (*RawClient) PostAdminRealmsRealmUsersUserIDCredentialsCredentialIDMoveToFirst ¶
func (*RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProvider ¶
func (*RawClient) PostAdminRealmsRealmUsersUserIDFederatedIdentityProviderWithBody ¶
func (*RawClient) PostAdminRealmsRealmUsersUserIDImpersonation ¶
func (*RawClient) PostAdminRealmsRealmUsersUserIDLogout ¶
func (*RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientID ¶
func (*RawClient) PostAdminRealmsRealmUsersUserIDRoleMappingsClientsClientIDWithBody ¶
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 (*RawClient) PostAdminRealmsRealmUsersWithBody ¶
func (*RawClient) PostAdminRealmsRealmWorkflows ¶
func (c *RawClient) PostAdminRealmsRealmWorkflows(ctx context.Context, realm string, body PostAdminRealmsRealmWorkflowsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmWorkflowsIDActivateTypeResourceID ¶
func (*RawClient) PostAdminRealmsRealmWorkflowsIDDeactivateTypeResourceID ¶
func (*RawClient) PostAdminRealmsRealmWorkflowsMigrate ¶
func (c *RawClient) PostAdminRealmsRealmWorkflowsMigrate(ctx context.Context, realm string, params *PostAdminRealmsRealmWorkflowsMigrateParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PostAdminRealmsRealmWorkflowsWithBody ¶
func (*RawClient) PostAdminRealmsWithBody ¶
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 (*RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions ¶
func (c *RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutions(ctx context.Context, realm string, flowAlias string, body PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmAuthenticationFlowsFlowAliasExecutionsWithBody ¶
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 (*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 (*RawClient) PutAdminRealmsRealmAuthenticationRequiredActionsAliasWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientPoliciesPolicies ¶
func (c *RawClient) PutAdminRealmsRealmClientPoliciesPolicies(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesPoliciesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmClientPoliciesPoliciesWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientPoliciesProfiles ¶
func (c *RawClient) PutAdminRealmsRealmClientPoliciesProfiles(ctx context.Context, realm string, body PutAdminRealmsRealmClientPoliciesProfilesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmClientPoliciesProfilesWithBody ¶
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 (*RawClient) PutAdminRealmsRealmClientScopesClientScopeIDProtocolMappersModelsIDWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientScopesClientScopeIDWithBody ¶
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) PutAdminRealmsRealmClientTemplatesClientScopeIDWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientTypes ¶
func (c *RawClient) PutAdminRealmsRealmClientTypes(ctx context.Context, realm string, body PutAdminRealmsRealmClientTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmClientTypesWithBody ¶
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) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID ¶
func (c *RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceID(ctx context.Context, realm string, clientUUID string, resourceID string, params *PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDParams, body PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerResourceResourceIDJSONRequestBody, 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 (*RawClient) PutAdminRealmsRealmClientsClientUUIDAuthzResourceServerWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientsClientUUIDDefaultClientScopesClientScopeID ¶
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 (*RawClient) PutAdminRealmsRealmClientsClientUUIDOptionalClientScopesClientScopeID ¶
func (*RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsID ¶
func (*RawClient) PutAdminRealmsRealmClientsClientUUIDProtocolMappersModelsIDWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientsClientUUIDRolesRoleName ¶
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) PutAdminRealmsRealmClientsClientUUIDRolesRoleNameWithBody ¶
func (*RawClient) PutAdminRealmsRealmClientsClientUUIDWithBody ¶
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 (*RawClient) PutAdminRealmsRealmDefaultDefaultClientScopesClientScopeID ¶
func (*RawClient) PutAdminRealmsRealmDefaultGroupsGroupID ¶
func (*RawClient) PutAdminRealmsRealmDefaultOptionalClientScopesClientScopeID ¶
func (*RawClient) PutAdminRealmsRealmEventsConfig ¶
func (c *RawClient) PutAdminRealmsRealmEventsConfig(ctx context.Context, realm string, body PutAdminRealmsRealmEventsConfigJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmEventsConfigWithBody ¶
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 (*RawClient) PutAdminRealmsRealmGroupsGroupIDWithBody ¶
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) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersID ¶
func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasMappersIDWithBody ¶
func (*RawClient) PutAdminRealmsRealmIdentityProviderInstancesAliasWithBody ¶
func (*RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithBody ¶
func (*RawClient) PutAdminRealmsRealmLocalizationLocaleKeyWithTextBody ¶
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 (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDMembersUserID ¶
func (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDGroupsGroupIDWithBody ¶
func (*RawClient) PutAdminRealmsRealmOrganizationsOrgIDWithBody ¶
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 (*RawClient) PutAdminRealmsRealmRolesByIDRoleIDWithBody ¶
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 (*RawClient) PutAdminRealmsRealmRolesRoleNameWithBody ¶
func (*RawClient) PutAdminRealmsRealmUsersManagementPermissions ¶
func (c *RawClient) PutAdminRealmsRealmUsersManagementPermissions(ctx context.Context, realm string, body PutAdminRealmsRealmUsersManagementPermissionsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmUsersManagementPermissionsWithBody ¶
func (*RawClient) PutAdminRealmsRealmUsersProfile ¶
func (c *RawClient) PutAdminRealmsRealmUsersProfile(ctx context.Context, realm string, body PutAdminRealmsRealmUsersProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmUsersProfileWithBody ¶
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 (*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 (*RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmail ¶
func (c *RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDExecuteActionsEmailParams, body PutAdminRealmsRealmUsersUserIDExecuteActionsEmailJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmUsersUserIDExecuteActionsEmailWithBody ¶
func (*RawClient) PutAdminRealmsRealmUsersUserIDGroupsGroupID ¶
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 (*RawClient) PutAdminRealmsRealmUsersUserIDSendVerifyEmail ¶
func (c *RawClient) PutAdminRealmsRealmUsersUserIDSendVerifyEmail(ctx context.Context, realm string, userID string, params *PutAdminRealmsRealmUsersUserIDSendVerifyEmailParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*RawClient) PutAdminRealmsRealmUsersUserIDWithBody ¶
func (*RawClient) PutAdminRealmsRealmWithBody ¶
func (*RawClient) PutAdminRealmsRealmWorkflowsID ¶
func (c *RawClient) PutAdminRealmsRealmWorkflowsID(ctx context.Context, realm string, id string, body PutAdminRealmsRealmWorkflowsIDJSONRequestBody, 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 ¶
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 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.