Documentation
¶
Index ¶
- Constants
- type AssignRoleToUser
- type AssignRoleToUserResponse
- type AssociateServiceUserPublicKey
- type AssociateServiceUserPublicKeyResponse
- type CreateApplication
- type CreateApplicationResponse
- type CreatePasswordRule
- type CreatePasswordRuleResponse
- type CreateProject
- type CreateProjectResponse
- type CreateResourceServer
- type CreateResourceServerResponse
- type CreateResourceServerScope
- type CreateResourceServerScopeResponse
- type CreateRole
- type CreateRoleResponse
- type CreateServiceUser
- type CreateServiceUserResponse
- type CreateUser
- type CreateUserResponse
- type CreateVirtualServer
- type CreateVirtualServerAdmin
- type CreateVirtualServerProject
- type CreateVirtualServerProjectApplication
- type CreateVirtualServerProjectResourceServer
- type CreateVirtualServerProjectRole
- type CreateVirtualServerResponse
- type CreateVirtualServerServiceUser
- type DeleteApplication
- type DeleteApplicationResponse
- type DeleteRole
- type DeleteRoleResponse
- type PatchApplication
- type PatchApplicationResponse
- type PatchProject
- type PatchProjectResponse
- type PatchResourceServer
- type PatchResourceServerResponse
- type PatchRole
- type PatchRoleResponse
- type PatchUser
- type PatchUserAppMetadata
- type PatchUserAppMetadataResponse
- type PatchUserMetadata
- type PatchUserMetadataResponse
- type PatchUserResponse
- type PatchVirtualServer
- type PatchVirtualServerResponse
- type RegisterUser
- type RegisterUserResponse
- type RemoveServiceUserPublicKey
- type RemoveServiceUserPublicKeyResponse
- type SetPassword
- type SetPasswordResponse
- type UpdatePasswordRule
- type UpdatePasswordRuleResponse
- type UpdateUserAppMetadata
- type UpdateUserAppMetadataResponse
- type UpdateUserMetadata
- type UpdateUserMetadataResponse
- type VerifyEmail
- type VerifyEmailResponse
Constants ¶
View Source
const ( AdminRoleName = "admin" SystemAdminRoleName = "system-admin" AdminApplicationName = "admin-ui" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AssignRoleToUser ¶
type AssignRoleToUser struct {
VirtualServerName string
ProjectSlug string
UserId uuid.UUID
RoleId uuid.UUID
}
func (AssignRoleToUser) GetRequestName ¶
func (a AssignRoleToUser) GetRequestName() string
func (AssignRoleToUser) IsAllowed ¶
func (a AssignRoleToUser) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (AssignRoleToUser) LogRequest ¶
func (a AssignRoleToUser) LogRequest() bool
func (AssignRoleToUser) LogResponse ¶
func (a AssignRoleToUser) LogResponse() bool
type AssignRoleToUserResponse ¶
type AssignRoleToUserResponse struct{}
func HandleAssignRoleToUser ¶
func HandleAssignRoleToUser(ctx context.Context, command AssignRoleToUser) (*AssignRoleToUserResponse, error)
type AssociateServiceUserPublicKey ¶
type AssociateServiceUserPublicKey struct {
Kid *string
VirtualServerName string
ServiceUserId uuid.UUID
PublicKey string
}
func (AssociateServiceUserPublicKey) GetRequestName ¶
func (a AssociateServiceUserPublicKey) GetRequestName() string
func (AssociateServiceUserPublicKey) IsAllowed ¶
func (a AssociateServiceUserPublicKey) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (AssociateServiceUserPublicKey) LogRequest ¶
func (a AssociateServiceUserPublicKey) LogRequest() bool
func (AssociateServiceUserPublicKey) LogResponse ¶
func (a AssociateServiceUserPublicKey) LogResponse() bool
type AssociateServiceUserPublicKeyResponse ¶
func HandleAssociateServiceUserPublicKey ¶
func HandleAssociateServiceUserPublicKey(ctx context.Context, command AssociateServiceUserPublicKey) (*AssociateServiceUserPublicKeyResponse, error)
type CreateApplication ¶
type CreateApplication struct {
VirtualServerName string
ProjectSlug string
Name string
DisplayName string
Type repositories.ApplicationType
RedirectUris []string
PostLogoutRedirectUris []string
HashedSecret *string
AccessTokenHeaderType string
DeviceFlowEnabled bool
}
func (CreateApplication) GetRequestName ¶
func (c CreateApplication) GetRequestName() string
func (CreateApplication) IsAllowed ¶
func (c CreateApplication) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateApplication) LogRequest ¶
func (c CreateApplication) LogRequest() bool
func (CreateApplication) LogResponse ¶
func (c CreateApplication) LogResponse() bool
type CreateApplicationResponse ¶
func HandleCreateApplication ¶
func HandleCreateApplication(ctx context.Context, command CreateApplication) (*CreateApplicationResponse, error)
type CreatePasswordRule ¶
type CreatePasswordRule struct {
VirtualServerName string
Type repositories.PasswordRuleType
Details map[string]interface{}
}
func (CreatePasswordRule) GetRequestName ¶
func (a CreatePasswordRule) GetRequestName() string
func (CreatePasswordRule) IsAllowed ¶
func (a CreatePasswordRule) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreatePasswordRule) LogRequest ¶
func (a CreatePasswordRule) LogRequest() bool
func (CreatePasswordRule) LogResponse ¶
func (a CreatePasswordRule) LogResponse() bool
type CreatePasswordRuleResponse ¶
type CreatePasswordRuleResponse struct{}
func HandleCreatePasswordRule ¶
func HandleCreatePasswordRule(ctx context.Context, command CreatePasswordRule) (*CreatePasswordRuleResponse, error)
type CreateProject ¶
func (CreateProject) GetRequestName ¶
func (a CreateProject) GetRequestName() string
func (CreateProject) IsAllowed ¶
func (a CreateProject) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateProject) LogRequest ¶
func (a CreateProject) LogRequest() bool
func (CreateProject) LogResponse ¶
func (a CreateProject) LogResponse() bool
type CreateProjectResponse ¶
func HandleCreateProject ¶
func HandleCreateProject(ctx context.Context, command CreateProject) (*CreateProjectResponse, error)
type CreateResourceServer ¶
type CreateResourceServer struct {
VirtualServerName string
ProjectSlug string
Slug string
Name string
Description string
}
func (CreateResourceServer) GetRequestName ¶
func (a CreateResourceServer) GetRequestName() string
func (CreateResourceServer) IsAllowed ¶
func (a CreateResourceServer) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateResourceServer) LogRequest ¶
func (a CreateResourceServer) LogRequest() bool
func (CreateResourceServer) LogResponse ¶
func (a CreateResourceServer) LogResponse() bool
type CreateResourceServerResponse ¶
func HandleCreateResourceServer ¶
func HandleCreateResourceServer(ctx context.Context, command CreateResourceServer) (*CreateResourceServerResponse, error)
type CreateResourceServerScope ¶
type CreateResourceServerScope struct {
VirtualServerName string
ProjectSlug string
ResourceServerId uuid.UUID
Scope string
Name string
Description string
}
func (CreateResourceServerScope) IsAllowed ¶
func (a CreateResourceServerScope) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateResourceServerScope) LogRequest ¶
func (a CreateResourceServerScope) LogRequest() bool
func (CreateResourceServerScope) LogResponse ¶
func (a CreateResourceServerScope) LogResponse() bool
type CreateResourceServerScopeResponse ¶
func HandleCreateResourceServerScope ¶
func HandleCreateResourceServerScope(ctx context.Context, command CreateResourceServerScope) (*CreateResourceServerScopeResponse, error)
type CreateRole ¶
type CreateRole struct {
VirtualServerName string
ProjectSlug string
Name string
Description string
}
func (CreateRole) GetRequestName ¶
func (a CreateRole) GetRequestName() string
func (CreateRole) IsAllowed ¶
func (a CreateRole) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateRole) LogRequest ¶
func (a CreateRole) LogRequest() bool
func (CreateRole) LogResponse ¶
func (a CreateRole) LogResponse() bool
type CreateRoleResponse ¶
func HandleCreateRole ¶
func HandleCreateRole(ctx context.Context, command CreateRole) (*CreateRoleResponse, error)
type CreateServiceUser ¶
func (CreateServiceUser) GetRequestName ¶
func (a CreateServiceUser) GetRequestName() string
func (CreateServiceUser) IsAllowed ¶
func (a CreateServiceUser) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateServiceUser) LogRequest ¶
func (a CreateServiceUser) LogRequest() bool
func (CreateServiceUser) LogResponse ¶
func (a CreateServiceUser) LogResponse() bool
type CreateServiceUserResponse ¶
func HandleCreateServiceUser ¶
func HandleCreateServiceUser(ctx context.Context, command CreateServiceUser) (*CreateServiceUserResponse, error)
type CreateUser ¶
type CreateUser struct {
VirtualServerName string
Username string
DisplayName string
Email string
EmailVerified bool
}
func (CreateUser) GetRequestName ¶
func (a CreateUser) GetRequestName() string
func (CreateUser) IsAllowed ¶
func (a CreateUser) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateUser) LogRequest ¶
func (a CreateUser) LogRequest() bool
func (CreateUser) LogResponse ¶
func (a CreateUser) LogResponse() bool
type CreateUserResponse ¶
func HandleCreateUser ¶
func HandleCreateUser(ctx context.Context, command CreateUser) (*CreateUserResponse, error)
type CreateVirtualServer ¶
type CreateVirtualServer struct {
Name string
DisplayName string
EnableRegistration bool
SigningAlgorithm config.SigningAlgorithm
Require2fa bool
CreateSystemAdminRole bool
Admin *CreateVirtualServerAdmin
ServiceUsers []CreateVirtualServerServiceUser
Projects []CreateVirtualServerProject
}
func (CreateVirtualServer) GetRequestName ¶
func (a CreateVirtualServer) GetRequestName() string
func (CreateVirtualServer) IsAllowed ¶
func (a CreateVirtualServer) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (CreateVirtualServer) LogRequest ¶
func (a CreateVirtualServer) LogRequest() bool
func (CreateVirtualServer) LogResponse ¶
func (a CreateVirtualServer) LogResponse() bool
type CreateVirtualServerProject ¶
type CreateVirtualServerProject struct {
Slug string
Name string
Description string
Applications []CreateVirtualServerProjectApplication
Roles []CreateVirtualServerProjectRole
ResourceServers []CreateVirtualServerProjectResourceServer
}
type CreateVirtualServerResponse ¶
type CreateVirtualServerResponse struct {
Id uuid.UUID
SystemProjectId uuid.UUID
SystemProjectSlug string
AdminUiApplicationId uuid.UUID
AdminRoleId uuid.UUID
}
func HandleCreateVirtualServer ¶
func HandleCreateVirtualServer(ctx context.Context, command CreateVirtualServer) (*CreateVirtualServerResponse, error)
type DeleteApplication ¶
type DeleteApplication struct {
VirtualServerName string
ProjectSlug string
ApplicationId uuid.UUID
}
func (DeleteApplication) GetRequestName ¶
func (a DeleteApplication) GetRequestName() string
func (DeleteApplication) IsAllowed ¶
func (a DeleteApplication) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (DeleteApplication) LogRequest ¶
func (a DeleteApplication) LogRequest() bool
func (DeleteApplication) LogResponse ¶
func (a DeleteApplication) LogResponse() bool
type DeleteApplicationResponse ¶
type DeleteApplicationResponse struct{}
func HandleDeleteApplication ¶
func HandleDeleteApplication(ctx context.Context, command DeleteApplication) (*DeleteApplicationResponse, error)
type DeleteRole ¶ added in v0.3.10
func (DeleteRole) GetRequestName ¶ added in v0.3.10
func (a DeleteRole) GetRequestName() string
func (DeleteRole) IsAllowed ¶ added in v0.3.10
func (a DeleteRole) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (DeleteRole) LogRequest ¶ added in v0.3.10
func (a DeleteRole) LogRequest() bool
func (DeleteRole) LogResponse ¶ added in v0.3.10
func (a DeleteRole) LogResponse() bool
type DeleteRoleResponse ¶ added in v0.3.10
type DeleteRoleResponse struct{}
func HandleDeleteRole ¶ added in v0.3.10
func HandleDeleteRole(ctx context.Context, command DeleteRole) (*DeleteRoleResponse, error)
type PatchApplication ¶
type PatchApplication struct {
VirtualServerName string
ProjectSlug string
ApplicationId uuid.UUID
DisplayName *string
ClaimsMappingScript *string
AccessTokenHeaderType *string
DeviceFlowEnabled *bool
}
func (PatchApplication) GetRequestName ¶
func (a PatchApplication) GetRequestName() string
func (PatchApplication) IsAllowed ¶
func (a PatchApplication) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchApplication) LogRequest ¶
func (a PatchApplication) LogRequest() bool
func (PatchApplication) LogResponse ¶
func (a PatchApplication) LogResponse() bool
type PatchApplicationResponse ¶
type PatchApplicationResponse struct{}
func HandlePatchApplication ¶
func HandlePatchApplication(ctx context.Context, command PatchApplication) (*PatchApplicationResponse, error)
type PatchProject ¶
func (PatchProject) GetRequestName ¶
func (a PatchProject) GetRequestName() string
func (PatchProject) IsAllowed ¶
func (a PatchProject) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchProject) LogRequest ¶
func (a PatchProject) LogRequest() bool
func (PatchProject) LogResponse ¶
func (a PatchProject) LogResponse() bool
type PatchProjectResponse ¶
type PatchProjectResponse struct{}
func HandlePatchProject ¶
func HandlePatchProject(ctx context.Context, command PatchProject) (*PatchProjectResponse, error)
type PatchResourceServer ¶
type PatchResourceServer struct {
VirtualServerName string
ProjectSlug string
ResourceServerId uuid.UUID
Name *string
Description *string
}
func (PatchResourceServer) GetRequestName ¶
func (a PatchResourceServer) GetRequestName() string
func (PatchResourceServer) IsAllowed ¶
func (a PatchResourceServer) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchResourceServer) LogRequest ¶
func (a PatchResourceServer) LogRequest() bool
func (PatchResourceServer) LogResponse ¶
func (a PatchResourceServer) LogResponse() bool
type PatchResourceServerResponse ¶
type PatchResourceServerResponse struct{}
func HandlePatchResourceServer ¶
func HandlePatchResourceServer(ctx context.Context, command PatchResourceServer) (*PatchResourceServerResponse, error)
type PatchRole ¶
type PatchRole struct {
VirtualServerName string
ProjectSlug string
RoleId uuid.UUID
Name *string
Description *string
}
func (PatchRole) GetRequestName ¶
func (PatchRole) IsAllowed ¶
func (a PatchRole) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchRole) LogRequest ¶
func (PatchRole) LogResponse ¶
type PatchRoleResponse ¶
type PatchRoleResponse struct{}
func HandlePatchRole ¶
func HandlePatchRole(ctx context.Context, command PatchRole) (*PatchRoleResponse, error)
type PatchUser ¶
type PatchUser struct {
VirtualServerName string
UserId uuid.UUID
DisplayName *string
EmailVerified *bool
}
func (PatchUser) GetRequestName ¶
func (PatchUser) IsAllowed ¶
func (a PatchUser) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchUser) LogRequest ¶
func (PatchUser) LogResponse ¶
type PatchUserAppMetadata ¶
type PatchUserAppMetadata struct {
VirtualServerName string
UserId uuid.UUID
ApplicationId uuid.UUID
Metadata map[string]any
}
func (PatchUserAppMetadata) GetRequestName ¶
func (a PatchUserAppMetadata) GetRequestName() string
func (PatchUserAppMetadata) IsAllowed ¶
func (a PatchUserAppMetadata) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchUserAppMetadata) LogRequest ¶
func (a PatchUserAppMetadata) LogRequest() bool
func (PatchUserAppMetadata) LogResponse ¶
func (a PatchUserAppMetadata) LogResponse() bool
type PatchUserAppMetadataResponse ¶
type PatchUserAppMetadataResponse struct{}
func HandlePatchUserAppMetadata ¶
func HandlePatchUserAppMetadata(ctx context.Context, command PatchUserAppMetadata) (*PatchUserAppMetadataResponse, error)
type PatchUserMetadata ¶
func (PatchUserMetadata) GetRequestName ¶
func (a PatchUserMetadata) GetRequestName() string
func (PatchUserMetadata) IsAllowed ¶
func (a PatchUserMetadata) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchUserMetadata) LogRequest ¶
func (a PatchUserMetadata) LogRequest() bool
func (PatchUserMetadata) LogResponse ¶
func (a PatchUserMetadata) LogResponse() bool
type PatchUserMetadataResponse ¶
type PatchUserMetadataResponse struct{}
func HandlePatchUserMetadata ¶
func HandlePatchUserMetadata(ctx context.Context, command PatchUserMetadata) (*PatchUserMetadataResponse, error)
type PatchUserResponse ¶
type PatchUserResponse struct{}
func HandlePatchUser ¶
func HandlePatchUser(ctx context.Context, command PatchUser) (*PatchUserResponse, error)
type PatchVirtualServer ¶
type PatchVirtualServer struct {
VirtualServerName string
DisplayName *string
EnableRegistration *bool
Require2fa *bool
RequireEmailVerification *bool
}
func (PatchVirtualServer) GetRequestName ¶
func (a PatchVirtualServer) GetRequestName() string
func (PatchVirtualServer) IsAllowed ¶
func (a PatchVirtualServer) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (PatchVirtualServer) LogRequest ¶
func (a PatchVirtualServer) LogRequest() bool
func (PatchVirtualServer) LogResponse ¶
func (a PatchVirtualServer) LogResponse() bool
type PatchVirtualServerResponse ¶
type PatchVirtualServerResponse struct{}
func HandlePatchVirtualServer ¶
func HandlePatchVirtualServer(ctx context.Context, command PatchVirtualServer) (*PatchVirtualServerResponse, error)
type RegisterUser ¶
type RegisterUserResponse ¶
func HandleRegisterUser ¶
func HandleRegisterUser(ctx context.Context, command RegisterUser) (*RegisterUserResponse, error)
type RemoveServiceUserPublicKey ¶
type RemoveServiceUserPublicKey struct {
VirtualServerName string
ServiceUserId uuid.UUID
PublicKey string
}
func (RemoveServiceUserPublicKey) GetRequestName ¶
func (a RemoveServiceUserPublicKey) GetRequestName() string
func (RemoveServiceUserPublicKey) IsAllowed ¶
func (a RemoveServiceUserPublicKey) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (RemoveServiceUserPublicKey) LogRequest ¶
func (a RemoveServiceUserPublicKey) LogRequest() bool
func (RemoveServiceUserPublicKey) LogResponse ¶
func (a RemoveServiceUserPublicKey) LogResponse() bool
type RemoveServiceUserPublicKeyResponse ¶
type RemoveServiceUserPublicKeyResponse struct{}
func HandleRemoveServiceUserPublicKey ¶
func HandleRemoveServiceUserPublicKey(ctx context.Context, command RemoveServiceUserPublicKey) (*RemoveServiceUserPublicKeyResponse, error)
type SetPassword ¶
func (SetPassword) GetRequestName ¶
func (a SetPassword) GetRequestName() string
func (SetPassword) IsAllowed ¶
func (a SetPassword) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (SetPassword) LogRequest ¶
func (a SetPassword) LogRequest() bool
func (SetPassword) LogResponse ¶
func (a SetPassword) LogResponse() bool
type SetPasswordResponse ¶
type SetPasswordResponse struct{}
func HandleSetPassword ¶
func HandleSetPassword(ctx context.Context, command SetPassword) (*SetPasswordResponse, error)
type UpdatePasswordRule ¶
type UpdatePasswordRule struct {
VirtualServerName string
Type repositories.PasswordRuleType
Details map[string]interface{}
}
type UpdatePasswordRuleResponse ¶
type UpdatePasswordRuleResponse struct{}
func HandleUpdatePasswordRule ¶
func HandleUpdatePasswordRule(ctx context.Context, command UpdatePasswordRule) (*UpdatePasswordRuleResponse, error)
type UpdateUserAppMetadata ¶
type UpdateUserAppMetadata struct {
VirtualServerName string
UserId uuid.UUID
ApplicationId uuid.UUID
Metadata map[string]any
}
func (UpdateUserAppMetadata) GetRequestName ¶
func (a UpdateUserAppMetadata) GetRequestName() string
func (UpdateUserAppMetadata) IsAllowed ¶
func (a UpdateUserAppMetadata) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (UpdateUserAppMetadata) LogRequest ¶
func (a UpdateUserAppMetadata) LogRequest() bool
func (UpdateUserAppMetadata) LogResponse ¶
func (a UpdateUserAppMetadata) LogResponse() bool
type UpdateUserAppMetadataResponse ¶
type UpdateUserAppMetadataResponse struct{}
func HandleUpdateUserAppMetadata ¶
func HandleUpdateUserAppMetadata(ctx context.Context, command UpdateUserAppMetadata) (*UpdateUserAppMetadataResponse, error)
type UpdateUserMetadata ¶
type UpdateUserMetadata struct {
VirtualServerName string
UserId uuid.UUID
Metadata map[string]any
}
func (UpdateUserMetadata) GetRequestName ¶
func (a UpdateUserMetadata) GetRequestName() string
func (UpdateUserMetadata) IsAllowed ¶
func (a UpdateUserMetadata) IsAllowed(ctx context.Context) (behaviours.PolicyResult, error)
func (UpdateUserMetadata) LogRequest ¶
func (a UpdateUserMetadata) LogRequest() bool
func (UpdateUserMetadata) LogResponse ¶
func (a UpdateUserMetadata) LogResponse() bool
type UpdateUserMetadataResponse ¶
type UpdateUserMetadataResponse struct{}
func HandleUpdateUserMetadata ¶
func HandleUpdateUserMetadata(ctx context.Context, command UpdateUserMetadata) (*UpdateUserMetadataResponse, error)
type VerifyEmail ¶
func (VerifyEmail) GetRequestName ¶
func (a VerifyEmail) GetRequestName() string
type VerifyEmailResponse ¶
type VerifyEmailResponse struct {
}
func HandleVerifyEmail ¶
func HandleVerifyEmail(ctx context.Context, command VerifyEmail) (*VerifyEmailResponse, error)
Source Files
¶
- AssignRoleToUser.go
- AssociateServiceUserPublicKey.go
- CreateApplication.go
- CreatePasswordRule.go
- CreateProject.go
- CreateResourceServer.go
- CreateResourceServerScope.go
- CreateRole.go
- CreateServiceUser.go
- CreateUser.go
- CreateVirtualServer.go
- DeleteApplication.go
- DeleteRole.go
- PatchApplication.go
- PatchProject.go
- PatchResourceServer.go
- PatchRole.go
- PatchUser.go
- PatchUserAppMetadata.go
- PatchUserMetadata.go
- PatchVirtualServer.go
- RegisterUser.go
- RemoveServiceUserPublicKey.go
- SetPassword.go
- UpdatePasswordRule.go
- UpdateUserAppMetadata.go
- UpdateUserMetadata.go
- VerifyEmail.go
Click to show internal directories.
Click to hide internal directories.