Versions in this module Expand all Collapse all v1 v1.0.0 May 12, 2023 Changes in this version + const ServerBaseURL + var ContextAPIKeys = contextKey("apiKeys") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextHttpSignatureAuth = contextKey("httpsignature") + var ContextOAuth2 = contextKey("token") + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + func CacheExpires(r *http.Response) time.Time + func Document() string + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultApi DefaultApi + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type AccountRole struct + ForAccount *string + Roles *Role + func NewAccountRole() *AccountRole + func NewAccountRoleWithDefaults() *AccountRole + func (o *AccountRole) GetForAccount() string + func (o *AccountRole) GetForAccountOk() (*string, bool) + func (o *AccountRole) GetRoles() Role + func (o *AccountRole) GetRolesOk() (*Role, bool) + func (o *AccountRole) HasForAccount() bool + func (o *AccountRole) HasRoles() bool + func (o *AccountRole) SetForAccount(v string) + func (o *AccountRole) SetRoles(v Role) + func (o AccountRole) MarshalJSON() ([]byte, error) + type ApiAddIdpRequest struct + ApiService DefaultApi + func (r ApiAddIdpRequest) Configuration(configuration SamlConfiguration) ApiAddIdpRequest + func (r ApiAddIdpRequest) Execute() (SamlConfiguration, *_nethttp.Response, error) + type ApiAddRoleUserRequest struct + ApiService DefaultApi + func (r ApiAddRoleUserRequest) Execute() (RoleMember, *_nethttp.Response, error) + func (r ApiAddRoleUserRequest) Member(member RoleMember) ApiAddRoleUserRequest + type ApiDeleteIdpRequest struct + ApiService DefaultApi + func (r ApiDeleteIdpRequest) Execute() (*_nethttp.Response, error) + type ApiDeleteRoleUserRequest struct + ApiService DefaultApi + func (r ApiDeleteRoleUserRequest) Execute() (*_nethttp.Response, error) + func (r ApiDeleteRoleUserRequest) ForAccount(forAccount string) ApiDeleteRoleUserRequest + func (r ApiDeleteRoleUserRequest) Username(username string) ApiDeleteRoleUserRequest + type ApiErrorResponse struct + Code *int32 + Detail *interface{} + ErrorType *string + Message *string + func NewApiErrorResponse() *ApiErrorResponse + func NewApiErrorResponseWithDefaults() *ApiErrorResponse + func (o *ApiErrorResponse) GetCode() int32 + func (o *ApiErrorResponse) GetCodeOk() (*int32, bool) + func (o *ApiErrorResponse) GetDetail() interface{} + func (o *ApiErrorResponse) GetDetailOk() (*interface{}, bool) + func (o *ApiErrorResponse) GetErrorType() string + func (o *ApiErrorResponse) GetErrorTypeOk() (*string, bool) + func (o *ApiErrorResponse) GetMessage() string + func (o *ApiErrorResponse) GetMessageOk() (*string, bool) + func (o *ApiErrorResponse) HasCode() bool + func (o *ApiErrorResponse) HasDetail() bool + func (o *ApiErrorResponse) HasErrorType() bool + func (o *ApiErrorResponse) HasMessage() bool + func (o *ApiErrorResponse) SetCode(v int32) + func (o *ApiErrorResponse) SetDetail(v interface{}) + func (o *ApiErrorResponse) SetErrorType(v string) + func (o *ApiErrorResponse) SetMessage(v string) + func (o ApiErrorResponse) MarshalJSON() ([]byte, error) + type ApiGetIdpRequest struct + ApiService DefaultApi + func (r ApiGetIdpRequest) Execute() (SamlConfiguration, *_nethttp.Response, error) + type ApiGetRoleRequest struct + ApiService DefaultApi + func (r ApiGetRoleRequest) Execute() (Role, *_nethttp.Response, error) + type ApiGetStatusRequest struct + ApiService DefaultApi + func (r ApiGetStatusRequest) Execute() (StatusResponse, *_nethttp.Response, error) + type ApiHealthCheckRequest struct + ApiService DefaultApi + func (r ApiHealthCheckRequest) Execute() (*_nethttp.Response, error) + type ApiListIdpsRequest struct + ApiService DefaultApi + func (r ApiListIdpsRequest) Execute() ([]string, *_nethttp.Response, error) + type ApiListRoleMembersRequest struct + ApiService DefaultApi + func (r ApiListRoleMembersRequest) Execute() ([]RoleMember, *_nethttp.Response, error) + func (r ApiListRoleMembersRequest) ForAccount(forAccount string) ApiListRoleMembersRequest + type ApiListRolesRequest struct + ApiService DefaultApi + func (r ApiListRolesRequest) Execute() ([]RoleSummary, *_nethttp.Response, error) + type ApiListUserRolesRequest struct + ApiService DefaultApi + func (r ApiListUserRolesRequest) Execute() ([]RoleMembership, *_nethttp.Response, error) + func (r ApiListUserRolesRequest) ForAccount(forAccount string) ApiListUserRolesRequest + func (r ApiListUserRolesRequest) Role(role string) ApiListUserRolesRequest + type ApiMyRolesRequest struct + ApiService DefaultApi + func (r ApiMyRolesRequest) Execute() ([]AccountRole, *_nethttp.Response, error) + type ApiSamlLoginRequest struct + ApiService DefaultApi + func (r ApiSamlLoginRequest) Execute() (TokenResponse, *_nethttp.Response, error) + type ApiSamlSsoRequest struct + ApiService DefaultApi + func (r ApiSamlSsoRequest) Execute() (TokenResponse, *_nethttp.Response, error) + type ApiUpdateIdpRequest struct + ApiService DefaultApi + func (r ApiUpdateIdpRequest) Configuration(configuration SamlConfiguration) ApiUpdateIdpRequest + func (r ApiUpdateIdpRequest) Execute() (SamlConfiguration, *_nethttp.Response, error) + type ApiVersionCheckRequest struct + ApiService DefaultApi + func (r ApiVersionCheckRequest) Execute() (ServiceVersion, *_nethttp.Response, error) + type BasicAuth struct + Password string + UserName string + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + Logger logger.Logger + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type DefaultApi interface + AddIdp func(ctx _context.Context) ApiAddIdpRequest + AddIdpExecute func(r ApiAddIdpRequest) (SamlConfiguration, *_nethttp.Response, error) + AddRoleUser func(ctx _context.Context, rolename string) ApiAddRoleUserRequest + AddRoleUserExecute func(r ApiAddRoleUserRequest) (RoleMember, *_nethttp.Response, error) + DeleteIdp func(ctx _context.Context, name string) ApiDeleteIdpRequest + DeleteIdpExecute func(r ApiDeleteIdpRequest) (*_nethttp.Response, error) + DeleteRoleUser func(ctx _context.Context, rolename string) ApiDeleteRoleUserRequest + DeleteRoleUserExecute func(r ApiDeleteRoleUserRequest) (*_nethttp.Response, error) + GetIdp func(ctx _context.Context, name string) ApiGetIdpRequest + GetIdpExecute func(r ApiGetIdpRequest) (SamlConfiguration, *_nethttp.Response, error) + GetRole func(ctx _context.Context, rolename string) ApiGetRoleRequest + GetRoleExecute func(r ApiGetRoleRequest) (Role, *_nethttp.Response, error) + GetStatus func(ctx _context.Context) ApiGetStatusRequest + GetStatusExecute func(r ApiGetStatusRequest) (StatusResponse, *_nethttp.Response, error) + HealthCheck func(ctx _context.Context) ApiHealthCheckRequest + HealthCheckExecute func(r ApiHealthCheckRequest) (*_nethttp.Response, error) + ListIdps func(ctx _context.Context) ApiListIdpsRequest + ListIdpsExecute func(r ApiListIdpsRequest) ([]string, *_nethttp.Response, error) + ListRoleMembers func(ctx _context.Context, rolename string) ApiListRoleMembersRequest + ListRoleMembersExecute func(r ApiListRoleMembersRequest) ([]RoleMember, *_nethttp.Response, error) + ListRoles func(ctx _context.Context) ApiListRolesRequest + ListRolesExecute func(r ApiListRolesRequest) ([]RoleSummary, *_nethttp.Response, error) + ListUserRoles func(ctx _context.Context, username string) ApiListUserRolesRequest + ListUserRolesExecute func(r ApiListUserRolesRequest) ([]RoleMembership, *_nethttp.Response, error) + MyRoles func(ctx _context.Context) ApiMyRolesRequest + MyRolesExecute func(r ApiMyRolesRequest) ([]AccountRole, *_nethttp.Response, error) + SamlLogin func(ctx _context.Context, idpName string) ApiSamlLoginRequest + SamlLoginExecute func(r ApiSamlLoginRequest) (TokenResponse, *_nethttp.Response, error) + SamlSso func(ctx _context.Context, idpName string) ApiSamlSsoRequest + SamlSsoExecute func(r ApiSamlSsoRequest) (TokenResponse, *_nethttp.Response, error) + UpdateIdp func(ctx _context.Context, name string) ApiUpdateIdpRequest + UpdateIdpExecute func(r ApiUpdateIdpRequest) (SamlConfiguration, *_nethttp.Response, error) + VersionCheck func(ctx _context.Context) ApiVersionCheckRequest + VersionCheckExecute func(r ApiVersionCheckRequest) (ServiceVersion, *_nethttp.Response, error) + type DefaultApiService service + func (a *DefaultApiService) AddIdp(ctx _context.Context) ApiAddIdpRequest + func (a *DefaultApiService) AddIdpExecute(r ApiAddIdpRequest) (SamlConfiguration, *_nethttp.Response, error) + func (a *DefaultApiService) AddRoleUser(ctx _context.Context, rolename string) ApiAddRoleUserRequest + func (a *DefaultApiService) AddRoleUserExecute(r ApiAddRoleUserRequest) (RoleMember, *_nethttp.Response, error) + func (a *DefaultApiService) DeleteIdp(ctx _context.Context, name string) ApiDeleteIdpRequest + func (a *DefaultApiService) DeleteIdpExecute(r ApiDeleteIdpRequest) (*_nethttp.Response, error) + func (a *DefaultApiService) DeleteRoleUser(ctx _context.Context, rolename string) ApiDeleteRoleUserRequest + func (a *DefaultApiService) DeleteRoleUserExecute(r ApiDeleteRoleUserRequest) (*_nethttp.Response, error) + func (a *DefaultApiService) GetIdp(ctx _context.Context, name string) ApiGetIdpRequest + func (a *DefaultApiService) GetIdpExecute(r ApiGetIdpRequest) (SamlConfiguration, *_nethttp.Response, error) + func (a *DefaultApiService) GetRole(ctx _context.Context, rolename string) ApiGetRoleRequest + func (a *DefaultApiService) GetRoleExecute(r ApiGetRoleRequest) (Role, *_nethttp.Response, error) + func (a *DefaultApiService) GetStatus(ctx _context.Context) ApiGetStatusRequest + func (a *DefaultApiService) GetStatusExecute(r ApiGetStatusRequest) (StatusResponse, *_nethttp.Response, error) + func (a *DefaultApiService) HealthCheck(ctx _context.Context) ApiHealthCheckRequest + func (a *DefaultApiService) HealthCheckExecute(r ApiHealthCheckRequest) (*_nethttp.Response, error) + func (a *DefaultApiService) ListIdps(ctx _context.Context) ApiListIdpsRequest + func (a *DefaultApiService) ListIdpsExecute(r ApiListIdpsRequest) ([]string, *_nethttp.Response, error) + func (a *DefaultApiService) ListRoleMembers(ctx _context.Context, rolename string) ApiListRoleMembersRequest + func (a *DefaultApiService) ListRoleMembersExecute(r ApiListRoleMembersRequest) ([]RoleMember, *_nethttp.Response, error) + func (a *DefaultApiService) ListRoles(ctx _context.Context) ApiListRolesRequest + func (a *DefaultApiService) ListRolesExecute(r ApiListRolesRequest) ([]RoleSummary, *_nethttp.Response, error) + func (a *DefaultApiService) ListUserRoles(ctx _context.Context, username string) ApiListUserRolesRequest + func (a *DefaultApiService) ListUserRolesExecute(r ApiListUserRolesRequest) ([]RoleMembership, *_nethttp.Response, error) + func (a *DefaultApiService) MyRoles(ctx _context.Context) ApiMyRolesRequest + func (a *DefaultApiService) MyRolesExecute(r ApiMyRolesRequest) ([]AccountRole, *_nethttp.Response, error) + func (a *DefaultApiService) SamlLogin(ctx _context.Context, idpName string) ApiSamlLoginRequest + func (a *DefaultApiService) SamlLoginExecute(r ApiSamlLoginRequest) (TokenResponse, *_nethttp.Response, error) + func (a *DefaultApiService) SamlSso(ctx _context.Context, idpName string) ApiSamlSsoRequest + func (a *DefaultApiService) SamlSsoExecute(r ApiSamlSsoRequest) (TokenResponse, *_nethttp.Response, error) + func (a *DefaultApiService) UpdateIdp(ctx _context.Context, name string) ApiUpdateIdpRequest + func (a *DefaultApiService) UpdateIdpExecute(r ApiUpdateIdpRequest) (SamlConfiguration, *_nethttp.Response, error) + func (a *DefaultApiService) VersionCheck(ctx _context.Context) ApiVersionCheckRequest + func (a *DefaultApiService) VersionCheckExecute(r ApiVersionCheckRequest) (ServiceVersion, *_nethttp.Response, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type NullableAccountRole struct + func NewNullableAccountRole(val *AccountRole) *NullableAccountRole + func (v *NullableAccountRole) Set(val *AccountRole) + func (v *NullableAccountRole) UnmarshalJSON(src []byte) error + func (v *NullableAccountRole) Unset() + func (v NullableAccountRole) Get() *AccountRole + func (v NullableAccountRole) IsSet() bool + func (v NullableAccountRole) MarshalJSON() ([]byte, error) + type NullableApiErrorResponse struct + func NewNullableApiErrorResponse(val *ApiErrorResponse) *NullableApiErrorResponse + func (v *NullableApiErrorResponse) Set(val *ApiErrorResponse) + func (v *NullableApiErrorResponse) UnmarshalJSON(src []byte) error + func (v *NullableApiErrorResponse) Unset() + func (v NullableApiErrorResponse) Get() *ApiErrorResponse + func (v NullableApiErrorResponse) IsSet() bool + func (v NullableApiErrorResponse) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullablePermission struct + func NewNullablePermission(val *Permission) *NullablePermission + func (v *NullablePermission) Set(val *Permission) + func (v *NullablePermission) UnmarshalJSON(src []byte) error + func (v *NullablePermission) Unset() + func (v NullablePermission) Get() *Permission + func (v NullablePermission) IsSet() bool + func (v NullablePermission) MarshalJSON() ([]byte, error) + type NullableRole struct + func NewNullableRole(val *Role) *NullableRole + func (v *NullableRole) Set(val *Role) + func (v *NullableRole) UnmarshalJSON(src []byte) error + func (v *NullableRole) Unset() + func (v NullableRole) Get() *Role + func (v NullableRole) IsSet() bool + func (v NullableRole) MarshalJSON() ([]byte, error) + type NullableRoleMember struct + func NewNullableRoleMember(val *RoleMember) *NullableRoleMember + func (v *NullableRoleMember) Set(val *RoleMember) + func (v *NullableRoleMember) UnmarshalJSON(src []byte) error + func (v *NullableRoleMember) Unset() + func (v NullableRoleMember) Get() *RoleMember + func (v NullableRoleMember) IsSet() bool + func (v NullableRoleMember) MarshalJSON() ([]byte, error) + type NullableRoleMembership struct + func NewNullableRoleMembership(val *RoleMembership) *NullableRoleMembership + func (v *NullableRoleMembership) Set(val *RoleMembership) + func (v *NullableRoleMembership) UnmarshalJSON(src []byte) error + func (v *NullableRoleMembership) Unset() + func (v NullableRoleMembership) Get() *RoleMembership + func (v NullableRoleMembership) IsSet() bool + func (v NullableRoleMembership) MarshalJSON() ([]byte, error) + type NullableRoleSummary struct + func NewNullableRoleSummary(val *RoleSummary) *NullableRoleSummary + func (v *NullableRoleSummary) Set(val *RoleSummary) + func (v *NullableRoleSummary) UnmarshalJSON(src []byte) error + func (v *NullableRoleSummary) Unset() + func (v NullableRoleSummary) Get() *RoleSummary + func (v NullableRoleSummary) IsSet() bool + func (v NullableRoleSummary) MarshalJSON() ([]byte, error) + type NullableSamlConfiguration struct + func NewNullableSamlConfiguration(val *SamlConfiguration) *NullableSamlConfiguration + func (v *NullableSamlConfiguration) Set(val *SamlConfiguration) + func (v *NullableSamlConfiguration) UnmarshalJSON(src []byte) error + func (v *NullableSamlConfiguration) Unset() + func (v NullableSamlConfiguration) Get() *SamlConfiguration + func (v NullableSamlConfiguration) IsSet() bool + func (v NullableSamlConfiguration) MarshalJSON() ([]byte, error) + type NullableServiceVersion struct + func NewNullableServiceVersion(val *ServiceVersion) *NullableServiceVersion + func (v *NullableServiceVersion) Set(val *ServiceVersion) + func (v *NullableServiceVersion) UnmarshalJSON(src []byte) error + func (v *NullableServiceVersion) Unset() + func (v NullableServiceVersion) Get() *ServiceVersion + func (v NullableServiceVersion) IsSet() bool + func (v NullableServiceVersion) MarshalJSON() ([]byte, error) + type NullableServiceVersionApi struct + func NewNullableServiceVersionApi(val *ServiceVersionApi) *NullableServiceVersionApi + func (v *NullableServiceVersionApi) Set(val *ServiceVersionApi) + func (v *NullableServiceVersionApi) UnmarshalJSON(src []byte) error + func (v *NullableServiceVersionApi) Unset() + func (v NullableServiceVersionApi) Get() *ServiceVersionApi + func (v NullableServiceVersionApi) IsSet() bool + func (v NullableServiceVersionApi) MarshalJSON() ([]byte, error) + type NullableServiceVersionDb struct + func NewNullableServiceVersionDb(val *ServiceVersionDb) *NullableServiceVersionDb + func (v *NullableServiceVersionDb) Set(val *ServiceVersionDb) + func (v *NullableServiceVersionDb) UnmarshalJSON(src []byte) error + func (v *NullableServiceVersionDb) Unset() + func (v NullableServiceVersionDb) Get() *ServiceVersionDb + func (v NullableServiceVersionDb) IsSet() bool + func (v NullableServiceVersionDb) MarshalJSON() ([]byte, error) + type NullableServiceVersionEngine struct + func NewNullableServiceVersionEngine(val *ServiceVersionEngine) *NullableServiceVersionEngine + func (v *NullableServiceVersionEngine) Set(val *ServiceVersionEngine) + func (v *NullableServiceVersionEngine) UnmarshalJSON(src []byte) error + func (v *NullableServiceVersionEngine) Unset() + func (v NullableServiceVersionEngine) Get() *ServiceVersionEngine + func (v NullableServiceVersionEngine) IsSet() bool + func (v NullableServiceVersionEngine) MarshalJSON() ([]byte, error) + type NullableServiceVersionService struct + func NewNullableServiceVersionService(val *ServiceVersionService) *NullableServiceVersionService + func (v *NullableServiceVersionService) Set(val *ServiceVersionService) + func (v *NullableServiceVersionService) UnmarshalJSON(src []byte) error + func (v *NullableServiceVersionService) Unset() + func (v NullableServiceVersionService) Get() *ServiceVersionService + func (v NullableServiceVersionService) IsSet() bool + func (v NullableServiceVersionService) MarshalJSON() ([]byte, error) + type NullableStatusResponse struct + func NewNullableStatusResponse(val *StatusResponse) *NullableStatusResponse + func (v *NullableStatusResponse) Set(val *StatusResponse) + func (v *NullableStatusResponse) UnmarshalJSON(src []byte) error + func (v *NullableStatusResponse) Unset() + func (v NullableStatusResponse) Get() *StatusResponse + func (v NullableStatusResponse) IsSet() bool + func (v NullableStatusResponse) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableTokenResponse struct + func NewNullableTokenResponse(val *TokenResponse) *NullableTokenResponse + func (v *NullableTokenResponse) Set(val *TokenResponse) + func (v *NullableTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableTokenResponse) Unset() + func (v NullableTokenResponse) Get() *TokenResponse + func (v NullableTokenResponse) IsSet() bool + func (v NullableTokenResponse) MarshalJSON() ([]byte, error) + type Permission struct + Action *string + Target *string + func NewPermission() *Permission + func NewPermissionWithDefaults() *Permission + func (o *Permission) GetAction() string + func (o *Permission) GetActionOk() (*string, bool) + func (o *Permission) GetTarget() string + func (o *Permission) GetTargetOk() (*string, bool) + func (o *Permission) HasAction() bool + func (o *Permission) HasTarget() bool + func (o *Permission) SetAction(v string) + func (o *Permission) SetTarget(v string) + func (o Permission) MarshalJSON() ([]byte, error) + type Role struct + CreatedAt *time.Time + Description *string + Immutable *bool + LastUpdated *time.Time + Name string + Permissions *[]Permission + func NewRole(name string) *Role + func NewRoleWithDefaults() *Role + func (o *Role) GetCreatedAt() time.Time + func (o *Role) GetCreatedAtOk() (*time.Time, bool) + func (o *Role) GetDescription() string + func (o *Role) GetDescriptionOk() (*string, bool) + func (o *Role) GetImmutable() bool + func (o *Role) GetImmutableOk() (*bool, bool) + func (o *Role) GetLastUpdated() time.Time + func (o *Role) GetLastUpdatedOk() (*time.Time, bool) + func (o *Role) GetName() string + func (o *Role) GetNameOk() (*string, bool) + func (o *Role) GetPermissions() []Permission + func (o *Role) GetPermissionsOk() (*[]Permission, bool) + func (o *Role) HasCreatedAt() bool + func (o *Role) HasDescription() bool + func (o *Role) HasImmutable() bool + func (o *Role) HasLastUpdated() bool + func (o *Role) HasPermissions() bool + func (o *Role) SetCreatedAt(v time.Time) + func (o *Role) SetDescription(v string) + func (o *Role) SetImmutable(v bool) + func (o *Role) SetLastUpdated(v time.Time) + func (o *Role) SetName(v string) + func (o *Role) SetPermissions(v []Permission) + func (o Role) MarshalJSON() ([]byte, error) + type RoleMember struct + CreatedAt *time.Time + ForAccount string + Username string + func NewRoleMember(username string, forAccount string) *RoleMember + func NewRoleMemberWithDefaults() *RoleMember + func (o *RoleMember) GetCreatedAt() time.Time + func (o *RoleMember) GetCreatedAtOk() (*time.Time, bool) + func (o *RoleMember) GetForAccount() string + func (o *RoleMember) GetForAccountOk() (*string, bool) + func (o *RoleMember) GetUsername() string + func (o *RoleMember) GetUsernameOk() (*string, bool) + func (o *RoleMember) HasCreatedAt() bool + func (o *RoleMember) SetCreatedAt(v time.Time) + func (o *RoleMember) SetForAccount(v string) + func (o *RoleMember) SetUsername(v string) + func (o RoleMember) MarshalJSON() ([]byte, error) + type RoleMembership struct + CreatedAt *time.Time + ForAccount *[]string + Role *string + func NewRoleMembership() *RoleMembership + func NewRoleMembershipWithDefaults() *RoleMembership + func (o *RoleMembership) GetCreatedAt() time.Time + func (o *RoleMembership) GetCreatedAtOk() (*time.Time, bool) + func (o *RoleMembership) GetForAccount() []string + func (o *RoleMembership) GetForAccountOk() (*[]string, bool) + func (o *RoleMembership) GetRole() string + func (o *RoleMembership) GetRoleOk() (*string, bool) + func (o *RoleMembership) HasCreatedAt() bool + func (o *RoleMembership) HasForAccount() bool + func (o *RoleMembership) HasRole() bool + func (o *RoleMembership) SetCreatedAt(v time.Time) + func (o *RoleMembership) SetForAccount(v []string) + func (o *RoleMembership) SetRole(v string) + func (o RoleMembership) MarshalJSON() ([]byte, error) + type RoleSummary struct + CreatedAt *time.Time + Description *string + Name *string + func NewRoleSummary() *RoleSummary + func NewRoleSummaryWithDefaults() *RoleSummary + func (o *RoleSummary) GetCreatedAt() time.Time + func (o *RoleSummary) GetCreatedAtOk() (*time.Time, bool) + func (o *RoleSummary) GetDescription() string + func (o *RoleSummary) GetDescriptionOk() (*string, bool) + func (o *RoleSummary) GetName() string + func (o *RoleSummary) GetNameOk() (*string, bool) + func (o *RoleSummary) HasCreatedAt() bool + func (o *RoleSummary) HasDescription() bool + func (o *RoleSummary) HasName() bool + func (o *RoleSummary) SetCreatedAt(v time.Time) + func (o *RoleSummary) SetDescription(v string) + func (o *RoleSummary) SetName(v string) + func (o RoleSummary) MarshalJSON() ([]byte, error) + type SamlConfiguration struct + AcsHttpsPort *int32 + AcsUrl string + CreatedAt *time.Time + DefaultAccount *string + DefaultRole *string + Enabled bool + IdpAccountAttribute *string + IdpMetadataUrl *string + IdpMetadataXml *string + IdpRoleAttribute *string + IdpUsernameAttribute *string + LastUpdated *time.Time + Name string + RequireExistingUsers *bool + RequireSignedAssertions *bool + RequireSignedResponse *bool + SpEntityId string + func NewSamlConfiguration(name string, enabled bool, spEntityId string, acsUrl string) *SamlConfiguration + func NewSamlConfigurationWithDefaults() *SamlConfiguration + func (o *SamlConfiguration) GetAcsHttpsPort() int32 + func (o *SamlConfiguration) GetAcsHttpsPortOk() (*int32, bool) + func (o *SamlConfiguration) GetAcsUrl() string + func (o *SamlConfiguration) GetAcsUrlOk() (*string, bool) + func (o *SamlConfiguration) GetCreatedAt() time.Time + func (o *SamlConfiguration) GetCreatedAtOk() (*time.Time, bool) + func (o *SamlConfiguration) GetDefaultAccount() string + func (o *SamlConfiguration) GetDefaultAccountOk() (*string, bool) + func (o *SamlConfiguration) GetDefaultRole() string + func (o *SamlConfiguration) GetDefaultRoleOk() (*string, bool) + func (o *SamlConfiguration) GetEnabled() bool + func (o *SamlConfiguration) GetEnabledOk() (*bool, bool) + func (o *SamlConfiguration) GetIdpAccountAttribute() string + func (o *SamlConfiguration) GetIdpAccountAttributeOk() (*string, bool) + func (o *SamlConfiguration) GetIdpMetadataUrl() string + func (o *SamlConfiguration) GetIdpMetadataUrlOk() (*string, bool) + func (o *SamlConfiguration) GetIdpMetadataXml() string + func (o *SamlConfiguration) GetIdpMetadataXmlOk() (*string, bool) + func (o *SamlConfiguration) GetIdpRoleAttribute() string + func (o *SamlConfiguration) GetIdpRoleAttributeOk() (*string, bool) + func (o *SamlConfiguration) GetIdpUsernameAttribute() string + func (o *SamlConfiguration) GetIdpUsernameAttributeOk() (*string, bool) + func (o *SamlConfiguration) GetLastUpdated() time.Time + func (o *SamlConfiguration) GetLastUpdatedOk() (*time.Time, bool) + func (o *SamlConfiguration) GetName() string + func (o *SamlConfiguration) GetNameOk() (*string, bool) + func (o *SamlConfiguration) GetRequireExistingUsers() bool + func (o *SamlConfiguration) GetRequireExistingUsersOk() (*bool, bool) + func (o *SamlConfiguration) GetRequireSignedAssertions() bool + func (o *SamlConfiguration) GetRequireSignedAssertionsOk() (*bool, bool) + func (o *SamlConfiguration) GetRequireSignedResponse() bool + func (o *SamlConfiguration) GetRequireSignedResponseOk() (*bool, bool) + func (o *SamlConfiguration) GetSpEntityId() string + func (o *SamlConfiguration) GetSpEntityIdOk() (*string, bool) + func (o *SamlConfiguration) HasAcsHttpsPort() bool + func (o *SamlConfiguration) HasCreatedAt() bool + func (o *SamlConfiguration) HasDefaultAccount() bool + func (o *SamlConfiguration) HasDefaultRole() bool + func (o *SamlConfiguration) HasIdpAccountAttribute() bool + func (o *SamlConfiguration) HasIdpMetadataUrl() bool + func (o *SamlConfiguration) HasIdpMetadataXml() bool + func (o *SamlConfiguration) HasIdpRoleAttribute() bool + func (o *SamlConfiguration) HasIdpUsernameAttribute() bool + func (o *SamlConfiguration) HasLastUpdated() bool + func (o *SamlConfiguration) HasRequireExistingUsers() bool + func (o *SamlConfiguration) HasRequireSignedAssertions() bool + func (o *SamlConfiguration) HasRequireSignedResponse() bool + func (o *SamlConfiguration) SetAcsHttpsPort(v int32) + func (o *SamlConfiguration) SetAcsUrl(v string) + func (o *SamlConfiguration) SetCreatedAt(v time.Time) + func (o *SamlConfiguration) SetDefaultAccount(v string) + func (o *SamlConfiguration) SetDefaultRole(v string) + func (o *SamlConfiguration) SetEnabled(v bool) + func (o *SamlConfiguration) SetIdpAccountAttribute(v string) + func (o *SamlConfiguration) SetIdpMetadataUrl(v string) + func (o *SamlConfiguration) SetIdpMetadataXml(v string) + func (o *SamlConfiguration) SetIdpRoleAttribute(v string) + func (o *SamlConfiguration) SetIdpUsernameAttribute(v string) + func (o *SamlConfiguration) SetLastUpdated(v time.Time) + func (o *SamlConfiguration) SetName(v string) + func (o *SamlConfiguration) SetRequireExistingUsers(v bool) + func (o *SamlConfiguration) SetRequireSignedAssertions(v bool) + func (o *SamlConfiguration) SetRequireSignedResponse(v bool) + func (o *SamlConfiguration) SetSpEntityId(v string) + func (o SamlConfiguration) MarshalJSON() ([]byte, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string + type ServiceVersion struct + Api *ServiceVersionApi + Db *ServiceVersionDb + Engine *ServiceVersionEngine + Service *ServiceVersionService + func NewServiceVersion() *ServiceVersion + func NewServiceVersionWithDefaults() *ServiceVersion + func (o *ServiceVersion) GetApi() ServiceVersionApi + func (o *ServiceVersion) GetApiOk() (*ServiceVersionApi, bool) + func (o *ServiceVersion) GetDb() ServiceVersionDb + func (o *ServiceVersion) GetDbOk() (*ServiceVersionDb, bool) + func (o *ServiceVersion) GetEngine() ServiceVersionEngine + func (o *ServiceVersion) GetEngineOk() (*ServiceVersionEngine, bool) + func (o *ServiceVersion) GetService() ServiceVersionService + func (o *ServiceVersion) GetServiceOk() (*ServiceVersionService, bool) + func (o *ServiceVersion) HasApi() bool + func (o *ServiceVersion) HasDb() bool + func (o *ServiceVersion) HasEngine() bool + func (o *ServiceVersion) HasService() bool + func (o *ServiceVersion) SetApi(v ServiceVersionApi) + func (o *ServiceVersion) SetDb(v ServiceVersionDb) + func (o *ServiceVersion) SetEngine(v ServiceVersionEngine) + func (o *ServiceVersion) SetService(v ServiceVersionService) + func (o ServiceVersion) MarshalJSON() ([]byte, error) + type ServiceVersionApi struct + Version *string + func NewServiceVersionApi() *ServiceVersionApi + func NewServiceVersionApiWithDefaults() *ServiceVersionApi + func (o *ServiceVersionApi) GetVersion() string + func (o *ServiceVersionApi) GetVersionOk() (*string, bool) + func (o *ServiceVersionApi) HasVersion() bool + func (o *ServiceVersionApi) SetVersion(v string) + func (o ServiceVersionApi) MarshalJSON() ([]byte, error) + type ServiceVersionDb struct + SchemaVersion *string + func NewServiceVersionDb() *ServiceVersionDb + func NewServiceVersionDbWithDefaults() *ServiceVersionDb + func (o *ServiceVersionDb) GetSchemaVersion() string + func (o *ServiceVersionDb) GetSchemaVersionOk() (*string, bool) + func (o *ServiceVersionDb) HasSchemaVersion() bool + func (o *ServiceVersionDb) SetSchemaVersion(v string) + func (o ServiceVersionDb) MarshalJSON() ([]byte, error) + type ServiceVersionEngine struct + Db *string + Version *string + func NewServiceVersionEngine() *ServiceVersionEngine + func NewServiceVersionEngineWithDefaults() *ServiceVersionEngine + func (o *ServiceVersionEngine) GetDb() string + func (o *ServiceVersionEngine) GetDbOk() (*string, bool) + func (o *ServiceVersionEngine) GetVersion() string + func (o *ServiceVersionEngine) GetVersionOk() (*string, bool) + func (o *ServiceVersionEngine) HasDb() bool + func (o *ServiceVersionEngine) HasVersion() bool + func (o *ServiceVersionEngine) SetDb(v string) + func (o *ServiceVersionEngine) SetVersion(v string) + func (o ServiceVersionEngine) MarshalJSON() ([]byte, error) + type ServiceVersionService struct + Version *string + func NewServiceVersionService() *ServiceVersionService + func NewServiceVersionServiceWithDefaults() *ServiceVersionService + func (o *ServiceVersionService) GetVersion() string + func (o *ServiceVersionService) GetVersionOk() (*string, bool) + func (o *ServiceVersionService) HasVersion() bool + func (o *ServiceVersionService) SetVersion(v string) + func (o ServiceVersionService) MarshalJSON() ([]byte, error) + type StatusResponse struct + Busy *bool + Message *string + Up *bool + func NewStatusResponse() *StatusResponse + func NewStatusResponseWithDefaults() *StatusResponse + func (o *StatusResponse) GetBusy() bool + func (o *StatusResponse) GetBusyOk() (*bool, bool) + func (o *StatusResponse) GetMessage() string + func (o *StatusResponse) GetMessageOk() (*string, bool) + func (o *StatusResponse) GetUp() bool + func (o *StatusResponse) GetUpOk() (*bool, bool) + func (o *StatusResponse) HasBusy() bool + func (o *StatusResponse) HasMessage() bool + func (o *StatusResponse) HasUp() bool + func (o *StatusResponse) SetBusy(v bool) + func (o *StatusResponse) SetMessage(v string) + func (o *StatusResponse) SetUp(v bool) + func (o StatusResponse) MarshalJSON() ([]byte, error) + type TokenResponse struct + Token string + func NewTokenResponse(token string) *TokenResponse + func NewTokenResponseWithDefaults() *TokenResponse + func (o *TokenResponse) GetToken() string + func (o *TokenResponse) GetTokenOk() (*string, bool) + func (o *TokenResponse) SetToken(v string) + func (o TokenResponse) MarshalJSON() ([]byte, error)