Versions in this module Expand all Collapse all v0 v0.13.0 Mar 10, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + 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(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + 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 AccessToken struct + Active bool + CreatedAt time.Time + Id string + Token string + ValidUntil time.Time + func NewAccessToken(active bool, createdAt time.Time, id string, token string, ...) *AccessToken + func NewAccessTokenWithDefaults() *AccessToken + func (o *AccessToken) GetActive() bool + func (o *AccessToken) GetActiveOk() (*bool, bool) + func (o *AccessToken) GetCreatedAt() time.Time + func (o *AccessToken) GetCreatedAtOk() (*time.Time, bool) + func (o *AccessToken) GetId() string + func (o *AccessToken) GetIdOk() (*string, bool) + func (o *AccessToken) GetToken() string + func (o *AccessToken) GetTokenOk() (*string, bool) + func (o *AccessToken) GetValidUntil() time.Time + func (o *AccessToken) GetValidUntilOk() (*time.Time, bool) + func (o *AccessToken) SetActive(v bool) + func (o *AccessToken) SetCreatedAt(v time.Time) + func (o *AccessToken) SetId(v string) + func (o *AccessToken) SetToken(v string) + func (o *AccessToken) SetValidUntil(v time.Time) + func (o *AccessToken) UnmarshalJSON(data []byte) (err error) + func (o AccessToken) MarshalJSON() ([]byte, error) + func (o AccessToken) ToMap() (map[string]interface{}, error) + type AccessTokenMetadata struct + Active bool + CreatedAt time.Time + Id string + ValidUntil time.Time + func NewAccessTokenMetadata(active bool, createdAt time.Time, id string, validUntil time.Time) *AccessTokenMetadata + func NewAccessTokenMetadataWithDefaults() *AccessTokenMetadata + func (o *AccessTokenMetadata) GetActive() bool + func (o *AccessTokenMetadata) GetActiveOk() (*bool, bool) + func (o *AccessTokenMetadata) GetCreatedAt() time.Time + func (o *AccessTokenMetadata) GetCreatedAtOk() (*time.Time, bool) + func (o *AccessTokenMetadata) GetId() string + func (o *AccessTokenMetadata) GetIdOk() (*string, bool) + func (o *AccessTokenMetadata) GetValidUntil() time.Time + func (o *AccessTokenMetadata) GetValidUntilOk() (*time.Time, bool) + func (o *AccessTokenMetadata) SetActive(v bool) + func (o *AccessTokenMetadata) SetCreatedAt(v time.Time) + func (o *AccessTokenMetadata) SetId(v string) + func (o *AccessTokenMetadata) SetValidUntil(v time.Time) + func (o *AccessTokenMetadata) UnmarshalJSON(data []byte) (err error) + func (o AccessTokenMetadata) MarshalJSON() ([]byte, error) + func (o AccessTokenMetadata) ToMap() (map[string]interface{}, error) + type ApiCreateAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiCreateAccessTokenRequest) CreateAccessTokenPayload(createAccessTokenPayload CreateAccessTokenPayload) ApiCreateAccessTokenRequest + func (r ApiCreateAccessTokenRequest) Execute() (*AccessToken, error) + type ApiCreateFederatedIdentityProviderRequest struct + ApiService DefaultAPI + func (r ApiCreateFederatedIdentityProviderRequest) CreateFederatedIdentityProviderPayload(createFederatedIdentityProviderPayload CreateFederatedIdentityProviderPayload) ApiCreateFederatedIdentityProviderRequest + func (r ApiCreateFederatedIdentityProviderRequest) Execute() (*CreateFederatedIdentityProviderResponse, error) + type ApiCreateServiceAccountKeyRequest struct + ApiService DefaultAPI + func (r ApiCreateServiceAccountKeyRequest) CreateServiceAccountKeyPayload(createServiceAccountKeyPayload CreateServiceAccountKeyPayload) ApiCreateServiceAccountKeyRequest + func (r ApiCreateServiceAccountKeyRequest) Execute() (*CreateServiceAccountKeyResponse, error) + type ApiCreateServiceAccountRequest struct + ApiService DefaultAPI + func (r ApiCreateServiceAccountRequest) CreateServiceAccountPayload(createServiceAccountPayload CreateServiceAccountPayload) ApiCreateServiceAccountRequest + func (r ApiCreateServiceAccountRequest) Execute() (*ServiceAccount, error) + type ApiCreateShortLivedAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiCreateShortLivedAccessTokenRequest) Assertion(assertion string) ApiCreateShortLivedAccessTokenRequest + func (r ApiCreateShortLivedAccessTokenRequest) Execute() (*CreateShortLivedAccessTokenResponse, error) + func (r ApiCreateShortLivedAccessTokenRequest) GrantType(grantType string) ApiCreateShortLivedAccessTokenRequest + func (r ApiCreateShortLivedAccessTokenRequest) RefreshToken(refreshToken string) ApiCreateShortLivedAccessTokenRequest + type ApiDeleteAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiDeleteAccessTokenRequest) Execute() error + type ApiDeleteServiceAccountKeyRequest struct + ApiService DefaultAPI + func (r ApiDeleteServiceAccountKeyRequest) Execute() error + type ApiDeleteServiceAccountRequest struct + ApiService DefaultAPI + func (r ApiDeleteServiceAccountRequest) Execute() error + type ApiDeleteServiceFederatedIdentityProviderRequest struct + ApiService DefaultAPI + func (r ApiDeleteServiceFederatedIdentityProviderRequest) Execute() error + type ApiGetJWKSRequest struct + ApiService DefaultAPI + func (r ApiGetJWKSRequest) Execute() (*JWKS, error) + type ApiGetServiceAccountKeyRequest struct + ApiService DefaultAPI + func (r ApiGetServiceAccountKeyRequest) Execute() (*GetServiceAccountKeyResponse, error) + func (r ApiGetServiceAccountKeyRequest) Format(format string) ApiGetServiceAccountKeyRequest + type ApiListAccessTokensRequest struct + ApiService DefaultAPI + func (r ApiListAccessTokensRequest) Execute() (*ListAccessTokensResponse, error) + type ApiListFederatedIdentityProvidersRequest struct + ApiService DefaultAPI + func (r ApiListFederatedIdentityProvidersRequest) Execute() (*FederatedListFederatedIdentityProvidersResponse, error) + type ApiListServiceAccountKeysRequest struct + ApiService DefaultAPI + func (r ApiListServiceAccountKeysRequest) Execute() (*ListServiceAccountKeysResponse, error) + type ApiListServiceAccountsRequest struct + ApiService DefaultAPI + func (r ApiListServiceAccountsRequest) Execute() (*ListServiceAccountsResponse, error) + type ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest) Execute() (*CreateFederatedIdentityProviderResponse, error) + func (r ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest) PartialUpdateServiceAccountFederatedIdentityProviderPayload(...) ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest + type ApiPartialUpdateServiceAccountKeyRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateServiceAccountKeyRequest) Execute() (*PartialUpdateServiceAccountKeyResponse, error) + func (r ApiPartialUpdateServiceAccountKeyRequest) PartialUpdateServiceAccountKeyPayload(partialUpdateServiceAccountKeyPayload PartialUpdateServiceAccountKeyPayload) ApiPartialUpdateServiceAccountKeyRequest + type AuthError struct + Error AuthErrorError + func NewAuthError(error_ AuthErrorError) *AuthError + func NewAuthErrorWithDefaults() *AuthError + func (o *AuthError) GetError() AuthErrorError + func (o *AuthError) GetErrorOk() (*AuthErrorError, bool) + func (o *AuthError) SetError(v AuthErrorError) + func (o *AuthError) UnmarshalJSON(data []byte) (err error) + func (o AuthError) MarshalJSON() ([]byte, error) + func (o AuthError) ToMap() (map[string]interface{}, error) + type AuthErrorError struct + Code int32 + Message string + Status string + func NewAuthErrorError(code int32, message string, status string) *AuthErrorError + func NewAuthErrorErrorWithDefaults() *AuthErrorError + func (o *AuthErrorError) GetCode() int32 + func (o *AuthErrorError) GetCodeOk() (*int32, bool) + func (o *AuthErrorError) GetMessage() string + func (o *AuthErrorError) GetMessageOk() (*string, bool) + func (o *AuthErrorError) GetStatus() string + func (o *AuthErrorError) GetStatusOk() (*string, bool) + func (o *AuthErrorError) SetCode(v int32) + func (o *AuthErrorError) SetMessage(v string) + func (o *AuthErrorError) SetStatus(v string) + func (o *AuthErrorError) UnmarshalJSON(data []byte) (err error) + func (o AuthErrorError) MarshalJSON() ([]byte, error) + func (o AuthErrorError) ToMap() (map[string]interface{}, error) + type CreateAccessTokenPayload struct + TtlDays int32 + func NewCreateAccessTokenPayload(ttlDays int32) *CreateAccessTokenPayload + func NewCreateAccessTokenPayloadWithDefaults() *CreateAccessTokenPayload + func (o *CreateAccessTokenPayload) GetTtlDays() int32 + func (o *CreateAccessTokenPayload) GetTtlDaysOk() (*int32, bool) + func (o *CreateAccessTokenPayload) SetTtlDays(v int32) + func (o *CreateAccessTokenPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAccessTokenPayload) MarshalJSON() ([]byte, error) + func (o CreateAccessTokenPayload) ToMap() (map[string]interface{}, error) + type CreateFederatedIdentityProviderPayload struct + Assertions []CreateFederatedIdentityProviderPayloadAssertionsInner + Issuer string + Name string + func NewCreateFederatedIdentityProviderPayload(issuer string, name string) *CreateFederatedIdentityProviderPayload + func NewCreateFederatedIdentityProviderPayloadWithDefaults() *CreateFederatedIdentityProviderPayload + func (o *CreateFederatedIdentityProviderPayload) GetAssertions() []CreateFederatedIdentityProviderPayloadAssertionsInner + func (o *CreateFederatedIdentityProviderPayload) GetAssertionsOk() ([]CreateFederatedIdentityProviderPayloadAssertionsInner, bool) + func (o *CreateFederatedIdentityProviderPayload) GetIssuer() string + func (o *CreateFederatedIdentityProviderPayload) GetIssuerOk() (*string, bool) + func (o *CreateFederatedIdentityProviderPayload) GetName() string + func (o *CreateFederatedIdentityProviderPayload) GetNameOk() (*string, bool) + func (o *CreateFederatedIdentityProviderPayload) HasAssertions() bool + func (o *CreateFederatedIdentityProviderPayload) SetAssertions(v []CreateFederatedIdentityProviderPayloadAssertionsInner) + func (o *CreateFederatedIdentityProviderPayload) SetIssuer(v string) + func (o *CreateFederatedIdentityProviderPayload) SetName(v string) + func (o *CreateFederatedIdentityProviderPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateFederatedIdentityProviderPayload) MarshalJSON() ([]byte, error) + func (o CreateFederatedIdentityProviderPayload) ToMap() (map[string]interface{}, error) + type CreateFederatedIdentityProviderPayloadAssertionsInner struct + Item *string + Operator *string + Value *string + func NewCreateFederatedIdentityProviderPayloadAssertionsInner() *CreateFederatedIdentityProviderPayloadAssertionsInner + func NewCreateFederatedIdentityProviderPayloadAssertionsInnerWithDefaults() *CreateFederatedIdentityProviderPayloadAssertionsInner + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) GetItem() string + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) GetItemOk() (*string, bool) + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) GetOperator() string + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) GetOperatorOk() (*string, bool) + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) GetValue() string + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) GetValueOk() (*string, bool) + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) HasItem() bool + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) HasOperator() bool + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) HasValue() bool + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) SetItem(v string) + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) SetOperator(v string) + func (o *CreateFederatedIdentityProviderPayloadAssertionsInner) SetValue(v string) + func (o CreateFederatedIdentityProviderPayloadAssertionsInner) MarshalJSON() ([]byte, error) + func (o CreateFederatedIdentityProviderPayloadAssertionsInner) ToMap() (map[string]interface{}, error) + type CreateFederatedIdentityProviderResponse struct + Assertions []CreateFederatedIdentityProviderResponseAssertionsInner + CreatedAt time.Time + Issuer string + Name string + UpdatedAt time.Time + func NewCreateFederatedIdentityProviderResponse(assertions []CreateFederatedIdentityProviderResponseAssertionsInner, ...) *CreateFederatedIdentityProviderResponse + func NewCreateFederatedIdentityProviderResponseWithDefaults() *CreateFederatedIdentityProviderResponse + func (o *CreateFederatedIdentityProviderResponse) GetAssertions() []CreateFederatedIdentityProviderResponseAssertionsInner + func (o *CreateFederatedIdentityProviderResponse) GetAssertionsOk() ([]CreateFederatedIdentityProviderResponseAssertionsInner, bool) + func (o *CreateFederatedIdentityProviderResponse) GetCreatedAt() time.Time + func (o *CreateFederatedIdentityProviderResponse) GetCreatedAtOk() (*time.Time, bool) + func (o *CreateFederatedIdentityProviderResponse) GetIssuer() string + func (o *CreateFederatedIdentityProviderResponse) GetIssuerOk() (*string, bool) + func (o *CreateFederatedIdentityProviderResponse) GetName() string + func (o *CreateFederatedIdentityProviderResponse) GetNameOk() (*string, bool) + func (o *CreateFederatedIdentityProviderResponse) GetUpdatedAt() time.Time + func (o *CreateFederatedIdentityProviderResponse) GetUpdatedAtOk() (*time.Time, bool) + func (o *CreateFederatedIdentityProviderResponse) SetAssertions(v []CreateFederatedIdentityProviderResponseAssertionsInner) + func (o *CreateFederatedIdentityProviderResponse) SetCreatedAt(v time.Time) + func (o *CreateFederatedIdentityProviderResponse) SetIssuer(v string) + func (o *CreateFederatedIdentityProviderResponse) SetName(v string) + func (o *CreateFederatedIdentityProviderResponse) SetUpdatedAt(v time.Time) + func (o *CreateFederatedIdentityProviderResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateFederatedIdentityProviderResponse) MarshalJSON() ([]byte, error) + func (o CreateFederatedIdentityProviderResponse) ToMap() (map[string]interface{}, error) + type CreateFederatedIdentityProviderResponseAssertionsInner struct + Item string + Operator string + Value string + func NewCreateFederatedIdentityProviderResponseAssertionsInner(item string, operator string, value string) *CreateFederatedIdentityProviderResponseAssertionsInner + func NewCreateFederatedIdentityProviderResponseAssertionsInnerWithDefaults() *CreateFederatedIdentityProviderResponseAssertionsInner + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) GetItem() string + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) GetItemOk() (*string, bool) + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) GetOperator() string + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) GetOperatorOk() (*string, bool) + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) GetValue() string + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) GetValueOk() (*string, bool) + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) SetItem(v string) + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) SetOperator(v string) + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) SetValue(v string) + func (o *CreateFederatedIdentityProviderResponseAssertionsInner) UnmarshalJSON(data []byte) (err error) + func (o CreateFederatedIdentityProviderResponseAssertionsInner) MarshalJSON() ([]byte, error) + func (o CreateFederatedIdentityProviderResponseAssertionsInner) ToMap() (map[string]interface{}, error) + type CreateServiceAccountKeyPayload struct + Algorithm *string + PublicKey *string + ValidUntil *time.Time + func NewCreateServiceAccountKeyPayload() *CreateServiceAccountKeyPayload + func NewCreateServiceAccountKeyPayloadWithDefaults() *CreateServiceAccountKeyPayload + func (o *CreateServiceAccountKeyPayload) GetAlgorithm() string + func (o *CreateServiceAccountKeyPayload) GetAlgorithmOk() (*string, bool) + func (o *CreateServiceAccountKeyPayload) GetPublicKey() string + func (o *CreateServiceAccountKeyPayload) GetPublicKeyOk() (*string, bool) + func (o *CreateServiceAccountKeyPayload) GetValidUntil() time.Time + func (o *CreateServiceAccountKeyPayload) GetValidUntilOk() (*time.Time, bool) + func (o *CreateServiceAccountKeyPayload) HasAlgorithm() bool + func (o *CreateServiceAccountKeyPayload) HasPublicKey() bool + func (o *CreateServiceAccountKeyPayload) HasValidUntil() bool + func (o *CreateServiceAccountKeyPayload) SetAlgorithm(v string) + func (o *CreateServiceAccountKeyPayload) SetPublicKey(v string) + func (o *CreateServiceAccountKeyPayload) SetValidUntil(v time.Time) + func (o CreateServiceAccountKeyPayload) MarshalJSON() ([]byte, error) + func (o CreateServiceAccountKeyPayload) ToMap() (map[string]interface{}, error) + type CreateServiceAccountKeyResponse struct + Active bool + CreatedAt time.Time + Credentials CreateServiceAccountKeyResponseCredentials + Id string + KeyAlgorithm string + KeyOrigin string + KeyType string + PublicKey string + ValidUntil *time.Time + func NewCreateServiceAccountKeyResponse(active bool, createdAt time.Time, ...) *CreateServiceAccountKeyResponse + func NewCreateServiceAccountKeyResponseWithDefaults() *CreateServiceAccountKeyResponse + func (o *CreateServiceAccountKeyResponse) GetActive() bool + func (o *CreateServiceAccountKeyResponse) GetActiveOk() (*bool, bool) + func (o *CreateServiceAccountKeyResponse) GetCreatedAt() time.Time + func (o *CreateServiceAccountKeyResponse) GetCreatedAtOk() (*time.Time, bool) + func (o *CreateServiceAccountKeyResponse) GetCredentials() CreateServiceAccountKeyResponseCredentials + func (o *CreateServiceAccountKeyResponse) GetCredentialsOk() (*CreateServiceAccountKeyResponseCredentials, bool) + func (o *CreateServiceAccountKeyResponse) GetId() string + func (o *CreateServiceAccountKeyResponse) GetIdOk() (*string, bool) + func (o *CreateServiceAccountKeyResponse) GetKeyAlgorithm() string + func (o *CreateServiceAccountKeyResponse) GetKeyAlgorithmOk() (*string, bool) + func (o *CreateServiceAccountKeyResponse) GetKeyOrigin() string + func (o *CreateServiceAccountKeyResponse) GetKeyOriginOk() (*string, bool) + func (o *CreateServiceAccountKeyResponse) GetKeyType() string + func (o *CreateServiceAccountKeyResponse) GetKeyTypeOk() (*string, bool) + func (o *CreateServiceAccountKeyResponse) GetPublicKey() string + func (o *CreateServiceAccountKeyResponse) GetPublicKeyOk() (*string, bool) + func (o *CreateServiceAccountKeyResponse) GetValidUntil() time.Time + func (o *CreateServiceAccountKeyResponse) GetValidUntilOk() (*time.Time, bool) + func (o *CreateServiceAccountKeyResponse) HasValidUntil() bool + func (o *CreateServiceAccountKeyResponse) SetActive(v bool) + func (o *CreateServiceAccountKeyResponse) SetCreatedAt(v time.Time) + func (o *CreateServiceAccountKeyResponse) SetCredentials(v CreateServiceAccountKeyResponseCredentials) + func (o *CreateServiceAccountKeyResponse) SetId(v string) + func (o *CreateServiceAccountKeyResponse) SetKeyAlgorithm(v string) + func (o *CreateServiceAccountKeyResponse) SetKeyOrigin(v string) + func (o *CreateServiceAccountKeyResponse) SetKeyType(v string) + func (o *CreateServiceAccountKeyResponse) SetPublicKey(v string) + func (o *CreateServiceAccountKeyResponse) SetValidUntil(v time.Time) + func (o *CreateServiceAccountKeyResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateServiceAccountKeyResponse) MarshalJSON() ([]byte, error) + func (o CreateServiceAccountKeyResponse) ToMap() (map[string]interface{}, error) + type CreateServiceAccountKeyResponseCredentials struct + Aud string + Iss string + Kid string + PrivateKey *string + Sub string + func NewCreateServiceAccountKeyResponseCredentials(aud string, iss string, kid string, sub string) *CreateServiceAccountKeyResponseCredentials + func NewCreateServiceAccountKeyResponseCredentialsWithDefaults() *CreateServiceAccountKeyResponseCredentials + func (o *CreateServiceAccountKeyResponseCredentials) GetAud() string + func (o *CreateServiceAccountKeyResponseCredentials) GetAudOk() (*string, bool) + func (o *CreateServiceAccountKeyResponseCredentials) GetIss() string + func (o *CreateServiceAccountKeyResponseCredentials) GetIssOk() (*string, bool) + func (o *CreateServiceAccountKeyResponseCredentials) GetKid() string + func (o *CreateServiceAccountKeyResponseCredentials) GetKidOk() (*string, bool) + func (o *CreateServiceAccountKeyResponseCredentials) GetPrivateKey() string + func (o *CreateServiceAccountKeyResponseCredentials) GetPrivateKeyOk() (*string, bool) + func (o *CreateServiceAccountKeyResponseCredentials) GetSub() string + func (o *CreateServiceAccountKeyResponseCredentials) GetSubOk() (*string, bool) + func (o *CreateServiceAccountKeyResponseCredentials) HasPrivateKey() bool + func (o *CreateServiceAccountKeyResponseCredentials) SetAud(v string) + func (o *CreateServiceAccountKeyResponseCredentials) SetIss(v string) + func (o *CreateServiceAccountKeyResponseCredentials) SetKid(v string) + func (o *CreateServiceAccountKeyResponseCredentials) SetPrivateKey(v string) + func (o *CreateServiceAccountKeyResponseCredentials) SetSub(v string) + func (o *CreateServiceAccountKeyResponseCredentials) UnmarshalJSON(data []byte) (err error) + func (o CreateServiceAccountKeyResponseCredentials) MarshalJSON() ([]byte, error) + func (o CreateServiceAccountKeyResponseCredentials) ToMap() (map[string]interface{}, error) + type CreateServiceAccountPayload struct + Name string + func NewCreateServiceAccountPayload(name string) *CreateServiceAccountPayload + func NewCreateServiceAccountPayloadWithDefaults() *CreateServiceAccountPayload + func (o *CreateServiceAccountPayload) GetName() string + func (o *CreateServiceAccountPayload) GetNameOk() (*string, bool) + func (o *CreateServiceAccountPayload) SetName(v string) + func (o *CreateServiceAccountPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateServiceAccountPayload) MarshalJSON() ([]byte, error) + func (o CreateServiceAccountPayload) ToMap() (map[string]interface{}, error) + type CreateShortLivedAccessTokenResponse struct + AccessToken string + ExpiresIn int32 + RefreshToken string + Scope string + TokenType string + func NewCreateShortLivedAccessTokenResponse(accessToken string, expiresIn int32, refreshToken string, scope string, ...) *CreateShortLivedAccessTokenResponse + func NewCreateShortLivedAccessTokenResponseWithDefaults() *CreateShortLivedAccessTokenResponse + func (o *CreateShortLivedAccessTokenResponse) GetAccessToken() string + func (o *CreateShortLivedAccessTokenResponse) GetAccessTokenOk() (*string, bool) + func (o *CreateShortLivedAccessTokenResponse) GetExpiresIn() int32 + func (o *CreateShortLivedAccessTokenResponse) GetExpiresInOk() (*int32, bool) + func (o *CreateShortLivedAccessTokenResponse) GetRefreshToken() string + func (o *CreateShortLivedAccessTokenResponse) GetRefreshTokenOk() (*string, bool) + func (o *CreateShortLivedAccessTokenResponse) GetScope() string + func (o *CreateShortLivedAccessTokenResponse) GetScopeOk() (*string, bool) + func (o *CreateShortLivedAccessTokenResponse) GetTokenType() string + func (o *CreateShortLivedAccessTokenResponse) GetTokenTypeOk() (*string, bool) + func (o *CreateShortLivedAccessTokenResponse) SetAccessToken(v string) + func (o *CreateShortLivedAccessTokenResponse) SetExpiresIn(v int32) + func (o *CreateShortLivedAccessTokenResponse) SetRefreshToken(v string) + func (o *CreateShortLivedAccessTokenResponse) SetScope(v string) + func (o *CreateShortLivedAccessTokenResponse) SetTokenType(v string) + func (o *CreateShortLivedAccessTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateShortLivedAccessTokenResponse) MarshalJSON() ([]byte, error) + func (o CreateShortLivedAccessTokenResponse) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateAccessToken func(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateAccessTokenRequest + CreateAccessTokenExecute func(r ApiCreateAccessTokenRequest) (*AccessToken, error) + CreateFederatedIdentityProvider func(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateFederatedIdentityProviderRequest + CreateFederatedIdentityProviderExecute func(r ApiCreateFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + CreateServiceAccount func(ctx context.Context, projectId string) ApiCreateServiceAccountRequest + CreateServiceAccountExecute func(r ApiCreateServiceAccountRequest) (*ServiceAccount, error) + CreateServiceAccountKey func(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateServiceAccountKeyRequest + CreateServiceAccountKeyExecute func(r ApiCreateServiceAccountKeyRequest) (*CreateServiceAccountKeyResponse, error) + CreateShortLivedAccessToken func(ctx context.Context) ApiCreateShortLivedAccessTokenRequest + CreateShortLivedAccessTokenExecute func(r ApiCreateShortLivedAccessTokenRequest) (*CreateShortLivedAccessTokenResponse, error) + DeleteAccessToken func(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteAccessTokenRequest + DeleteAccessTokenExecute func(r ApiDeleteAccessTokenRequest) error + DeleteServiceAccount func(ctx context.Context, projectId string, serviceAccountEmail string) ApiDeleteServiceAccountRequest + DeleteServiceAccountExecute func(r ApiDeleteServiceAccountRequest) error + DeleteServiceAccountKey func(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteServiceAccountKeyRequest + DeleteServiceAccountKeyExecute func(r ApiDeleteServiceAccountKeyRequest) error + DeleteServiceFederatedIdentityProvider func(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteServiceFederatedIdentityProviderRequest + DeleteServiceFederatedIdentityProviderExecute func(r ApiDeleteServiceFederatedIdentityProviderRequest) error + GetJWKS func(ctx context.Context, serviceAccountEmail string) ApiGetJWKSRequest + GetJWKSExecute func(r ApiGetJWKSRequest) (*JWKS, error) + GetServiceAccountKey func(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiGetServiceAccountKeyRequest + GetServiceAccountKeyExecute func(r ApiGetServiceAccountKeyRequest) (*GetServiceAccountKeyResponse, error) + ListAccessTokens func(ctx context.Context, projectId string, serviceAccountEmail string) ApiListAccessTokensRequest + ListAccessTokensExecute func(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + ListFederatedIdentityProviders func(ctx context.Context, projectId string, serviceAccountEmail string) ApiListFederatedIdentityProvidersRequest + ListFederatedIdentityProvidersExecute func(r ApiListFederatedIdentityProvidersRequest) (*FederatedListFederatedIdentityProvidersResponse, error) + ListServiceAccountKeys func(ctx context.Context, projectId string, serviceAccountEmail string) ApiListServiceAccountKeysRequest + ListServiceAccountKeysExecute func(r ApiListServiceAccountKeysRequest) (*ListServiceAccountKeysResponse, error) + ListServiceAccounts func(ctx context.Context, projectId string) ApiListServiceAccountsRequest + ListServiceAccountsExecute func(r ApiListServiceAccountsRequest) (*ListServiceAccountsResponse, error) + PartialUpdateServiceAccountFederatedIdentityProvider func(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest + PartialUpdateServiceAccountFederatedIdentityProviderExecute func(r ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + PartialUpdateServiceAccountKey func(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiPartialUpdateServiceAccountKeyRequest + PartialUpdateServiceAccountKeyExecute func(r ApiPartialUpdateServiceAccountKeyRequest) (*PartialUpdateServiceAccountKeyResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateAccessToken(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateAccessTokenRequest + func (a *DefaultAPIService) CreateAccessTokenExecute(r ApiCreateAccessTokenRequest) (*AccessToken, error) + func (a *DefaultAPIService) CreateFederatedIdentityProvider(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateFederatedIdentityProviderRequest + func (a *DefaultAPIService) CreateFederatedIdentityProviderExecute(r ApiCreateFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + func (a *DefaultAPIService) CreateServiceAccount(ctx context.Context, projectId string) ApiCreateServiceAccountRequest + func (a *DefaultAPIService) CreateServiceAccountExecute(r ApiCreateServiceAccountRequest) (*ServiceAccount, error) + func (a *DefaultAPIService) CreateServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateServiceAccountKeyRequest + func (a *DefaultAPIService) CreateServiceAccountKeyExecute(r ApiCreateServiceAccountKeyRequest) (*CreateServiceAccountKeyResponse, error) + func (a *DefaultAPIService) CreateShortLivedAccessToken(ctx context.Context) ApiCreateShortLivedAccessTokenRequest + func (a *DefaultAPIService) CreateShortLivedAccessTokenExecute(r ApiCreateShortLivedAccessTokenRequest) (*CreateShortLivedAccessTokenResponse, error) + func (a *DefaultAPIService) DeleteAccessToken(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteAccessTokenRequest + func (a *DefaultAPIService) DeleteAccessTokenExecute(r ApiDeleteAccessTokenRequest) error + func (a *DefaultAPIService) DeleteServiceAccount(ctx context.Context, projectId string, serviceAccountEmail string) ApiDeleteServiceAccountRequest + func (a *DefaultAPIService) DeleteServiceAccountExecute(r ApiDeleteServiceAccountRequest) error + func (a *DefaultAPIService) DeleteServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteServiceAccountKeyRequest + func (a *DefaultAPIService) DeleteServiceAccountKeyExecute(r ApiDeleteServiceAccountKeyRequest) error + func (a *DefaultAPIService) DeleteServiceFederatedIdentityProvider(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteServiceFederatedIdentityProviderRequest + func (a *DefaultAPIService) DeleteServiceFederatedIdentityProviderExecute(r ApiDeleteServiceFederatedIdentityProviderRequest) error + func (a *DefaultAPIService) GetJWKS(ctx context.Context, serviceAccountEmail string) ApiGetJWKSRequest + func (a *DefaultAPIService) GetJWKSExecute(r ApiGetJWKSRequest) (*JWKS, error) + func (a *DefaultAPIService) GetServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiGetServiceAccountKeyRequest + func (a *DefaultAPIService) GetServiceAccountKeyExecute(r ApiGetServiceAccountKeyRequest) (*GetServiceAccountKeyResponse, error) + func (a *DefaultAPIService) ListAccessTokens(ctx context.Context, projectId string, serviceAccountEmail string) ApiListAccessTokensRequest + func (a *DefaultAPIService) ListAccessTokensExecute(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + func (a *DefaultAPIService) ListFederatedIdentityProviders(ctx context.Context, projectId string, serviceAccountEmail string) ApiListFederatedIdentityProvidersRequest + func (a *DefaultAPIService) ListFederatedIdentityProvidersExecute(r ApiListFederatedIdentityProvidersRequest) (*FederatedListFederatedIdentityProvidersResponse, error) + func (a *DefaultAPIService) ListServiceAccountKeys(ctx context.Context, projectId string, serviceAccountEmail string) ApiListServiceAccountKeysRequest + func (a *DefaultAPIService) ListServiceAccountKeysExecute(r ApiListServiceAccountKeysRequest) (*ListServiceAccountKeysResponse, error) + func (a *DefaultAPIService) ListServiceAccounts(ctx context.Context, projectId string) ApiListServiceAccountsRequest + func (a *DefaultAPIService) ListServiceAccountsExecute(r ApiListServiceAccountsRequest) (*ListServiceAccountsResponse, error) + func (a *DefaultAPIService) PartialUpdateServiceAccountFederatedIdentityProvider(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest + func (a *DefaultAPIService) PartialUpdateServiceAccountFederatedIdentityProviderExecute(r ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + func (a *DefaultAPIService) PartialUpdateServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiPartialUpdateServiceAccountKeyRequest + func (a *DefaultAPIService) PartialUpdateServiceAccountKeyExecute(r ApiPartialUpdateServiceAccountKeyRequest) (*PartialUpdateServiceAccountKeyResponse, error) + type DefaultAPIServiceMock struct + CreateAccessTokenExecuteMock *func(r ApiCreateAccessTokenRequest) (*AccessToken, error) + CreateFederatedIdentityProviderExecuteMock *func(r ApiCreateFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + CreateServiceAccountExecuteMock *func(r ApiCreateServiceAccountRequest) (*ServiceAccount, error) + CreateServiceAccountKeyExecuteMock *func(r ApiCreateServiceAccountKeyRequest) (*CreateServiceAccountKeyResponse, error) + CreateShortLivedAccessTokenExecuteMock *func(r ApiCreateShortLivedAccessTokenRequest) (*CreateShortLivedAccessTokenResponse, error) + DeleteAccessTokenExecuteMock *func(r ApiDeleteAccessTokenRequest) error + DeleteServiceAccountExecuteMock *func(r ApiDeleteServiceAccountRequest) error + DeleteServiceAccountKeyExecuteMock *func(r ApiDeleteServiceAccountKeyRequest) error + DeleteServiceFederatedIdentityProviderExecuteMock *func(r ApiDeleteServiceFederatedIdentityProviderRequest) error + GetJWKSExecuteMock *func(r ApiGetJWKSRequest) (*JWKS, error) + GetServiceAccountKeyExecuteMock *func(r ApiGetServiceAccountKeyRequest) (*GetServiceAccountKeyResponse, error) + ListAccessTokensExecuteMock *func(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + ListFederatedIdentityProvidersExecuteMock *func(r ApiListFederatedIdentityProvidersRequest) (*FederatedListFederatedIdentityProvidersResponse, error) + ListServiceAccountKeysExecuteMock *func(r ApiListServiceAccountKeysRequest) (*ListServiceAccountKeysResponse, error) + ListServiceAccountsExecuteMock *func(r ApiListServiceAccountsRequest) (*ListServiceAccountsResponse, error) + PartialUpdateServiceAccountFederatedIdentityProviderExecuteMock *func(r ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + PartialUpdateServiceAccountKeyExecuteMock *func(r ApiPartialUpdateServiceAccountKeyRequest) (*PartialUpdateServiceAccountKeyResponse, error) + func (a DefaultAPIServiceMock) CreateAccessToken(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateAccessTokenRequest + func (a DefaultAPIServiceMock) CreateAccessTokenExecute(r ApiCreateAccessTokenRequest) (*AccessToken, error) + func (a DefaultAPIServiceMock) CreateFederatedIdentityProvider(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateFederatedIdentityProviderRequest + func (a DefaultAPIServiceMock) CreateFederatedIdentityProviderExecute(r ApiCreateFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + func (a DefaultAPIServiceMock) CreateServiceAccount(ctx context.Context, projectId string) ApiCreateServiceAccountRequest + func (a DefaultAPIServiceMock) CreateServiceAccountExecute(r ApiCreateServiceAccountRequest) (*ServiceAccount, error) + func (a DefaultAPIServiceMock) CreateServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string) ApiCreateServiceAccountKeyRequest + func (a DefaultAPIServiceMock) CreateServiceAccountKeyExecute(r ApiCreateServiceAccountKeyRequest) (*CreateServiceAccountKeyResponse, error) + func (a DefaultAPIServiceMock) CreateShortLivedAccessToken(ctx context.Context) ApiCreateShortLivedAccessTokenRequest + func (a DefaultAPIServiceMock) CreateShortLivedAccessTokenExecute(r ApiCreateShortLivedAccessTokenRequest) (*CreateShortLivedAccessTokenResponse, error) + func (a DefaultAPIServiceMock) DeleteAccessToken(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteAccessTokenRequest + func (a DefaultAPIServiceMock) DeleteAccessTokenExecute(r ApiDeleteAccessTokenRequest) error + func (a DefaultAPIServiceMock) DeleteServiceAccount(ctx context.Context, projectId string, serviceAccountEmail string) ApiDeleteServiceAccountRequest + func (a DefaultAPIServiceMock) DeleteServiceAccountExecute(r ApiDeleteServiceAccountRequest) error + func (a DefaultAPIServiceMock) DeleteServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteServiceAccountKeyRequest + func (a DefaultAPIServiceMock) DeleteServiceAccountKeyExecute(r ApiDeleteServiceAccountKeyRequest) error + func (a DefaultAPIServiceMock) DeleteServiceFederatedIdentityProvider(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiDeleteServiceFederatedIdentityProviderRequest + func (a DefaultAPIServiceMock) DeleteServiceFederatedIdentityProviderExecute(r ApiDeleteServiceFederatedIdentityProviderRequest) error + func (a DefaultAPIServiceMock) GetJWKS(ctx context.Context, serviceAccountEmail string) ApiGetJWKSRequest + func (a DefaultAPIServiceMock) GetJWKSExecute(r ApiGetJWKSRequest) (*JWKS, error) + func (a DefaultAPIServiceMock) GetServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiGetServiceAccountKeyRequest + func (a DefaultAPIServiceMock) GetServiceAccountKeyExecute(r ApiGetServiceAccountKeyRequest) (*GetServiceAccountKeyResponse, error) + func (a DefaultAPIServiceMock) ListAccessTokens(ctx context.Context, projectId string, serviceAccountEmail string) ApiListAccessTokensRequest + func (a DefaultAPIServiceMock) ListAccessTokensExecute(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + func (a DefaultAPIServiceMock) ListFederatedIdentityProviders(ctx context.Context, projectId string, serviceAccountEmail string) ApiListFederatedIdentityProvidersRequest + func (a DefaultAPIServiceMock) ListFederatedIdentityProvidersExecute(r ApiListFederatedIdentityProvidersRequest) (*FederatedListFederatedIdentityProvidersResponse, error) + func (a DefaultAPIServiceMock) ListServiceAccountKeys(ctx context.Context, projectId string, serviceAccountEmail string) ApiListServiceAccountKeysRequest + func (a DefaultAPIServiceMock) ListServiceAccountKeysExecute(r ApiListServiceAccountKeysRequest) (*ListServiceAccountKeysResponse, error) + func (a DefaultAPIServiceMock) ListServiceAccounts(ctx context.Context, projectId string) ApiListServiceAccountsRequest + func (a DefaultAPIServiceMock) ListServiceAccountsExecute(r ApiListServiceAccountsRequest) (*ListServiceAccountsResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateServiceAccountFederatedIdentityProvider(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest + func (a DefaultAPIServiceMock) PartialUpdateServiceAccountFederatedIdentityProviderExecute(r ApiPartialUpdateServiceAccountFederatedIdentityProviderRequest) (*CreateFederatedIdentityProviderResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateServiceAccountKey(ctx context.Context, projectId string, serviceAccountEmail string, ...) ApiPartialUpdateServiceAccountKeyRequest + func (a DefaultAPIServiceMock) PartialUpdateServiceAccountKeyExecute(r ApiPartialUpdateServiceAccountKeyRequest) (*PartialUpdateServiceAccountKeyResponse, error) + type Error struct + Error string + Message string + Path string + Status int32 + TimeStamp time.Time + func NewError(error_ string, message string, path string, status int32, timeStamp time.Time) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetError() string + func (o *Error) GetErrorOk() (*string, bool) + func (o *Error) GetMessage() string + func (o *Error) GetMessageOk() (*string, bool) + func (o *Error) GetPath() string + func (o *Error) GetPathOk() (*string, bool) + func (o *Error) GetStatus() int32 + func (o *Error) GetStatusOk() (*int32, bool) + func (o *Error) GetTimeStamp() time.Time + func (o *Error) GetTimeStampOk() (*time.Time, bool) + func (o *Error) SetError(v string) + func (o *Error) SetMessage(v string) + func (o *Error) SetPath(v string) + func (o *Error) SetStatus(v int32) + func (o *Error) SetTimeStamp(v time.Time) + func (o *Error) UnmarshalJSON(data []byte) (err error) + func (o Error) MarshalJSON() ([]byte, error) + func (o Error) ToMap() (map[string]interface{}, error) + type FederatedListFederatedIdentityProvidersResponse struct + ItemsPerPage float32 + Resources []CreateFederatedIdentityProviderResponse + StartIndex float32 + TotalResults float32 + func NewFederatedListFederatedIdentityProvidersResponse(itemsPerPage float32, resources []CreateFederatedIdentityProviderResponse, ...) *FederatedListFederatedIdentityProvidersResponse + func NewFederatedListFederatedIdentityProvidersResponseWithDefaults() *FederatedListFederatedIdentityProvidersResponse + func (o *FederatedListFederatedIdentityProvidersResponse) GetItemsPerPage() float32 + func (o *FederatedListFederatedIdentityProvidersResponse) GetItemsPerPageOk() (*float32, bool) + func (o *FederatedListFederatedIdentityProvidersResponse) GetResources() []CreateFederatedIdentityProviderResponse + func (o *FederatedListFederatedIdentityProvidersResponse) GetResourcesOk() ([]CreateFederatedIdentityProviderResponse, bool) + func (o *FederatedListFederatedIdentityProvidersResponse) GetStartIndex() float32 + func (o *FederatedListFederatedIdentityProvidersResponse) GetStartIndexOk() (*float32, bool) + func (o *FederatedListFederatedIdentityProvidersResponse) GetTotalResults() float32 + func (o *FederatedListFederatedIdentityProvidersResponse) GetTotalResultsOk() (*float32, bool) + func (o *FederatedListFederatedIdentityProvidersResponse) SetItemsPerPage(v float32) + func (o *FederatedListFederatedIdentityProvidersResponse) SetResources(v []CreateFederatedIdentityProviderResponse) + func (o *FederatedListFederatedIdentityProvidersResponse) SetStartIndex(v float32) + func (o *FederatedListFederatedIdentityProvidersResponse) SetTotalResults(v float32) + func (o *FederatedListFederatedIdentityProvidersResponse) UnmarshalJSON(data []byte) (err error) + func (o FederatedListFederatedIdentityProvidersResponse) MarshalJSON() ([]byte, error) + func (o FederatedListFederatedIdentityProvidersResponse) ToMap() (map[string]interface{}, error) + type GetServiceAccountKeyResponse struct + Active bool + CreatedAt time.Time + Credentials GetServiceAccountKeyResponseCredentials + Id string + KeyAlgorithm string + KeyOrigin string + KeyType string + PublicKey *string + ValidUntil *time.Time + func NewGetServiceAccountKeyResponse(active bool, createdAt time.Time, ...) *GetServiceAccountKeyResponse + func NewGetServiceAccountKeyResponseWithDefaults() *GetServiceAccountKeyResponse + func (o *GetServiceAccountKeyResponse) GetActive() bool + func (o *GetServiceAccountKeyResponse) GetActiveOk() (*bool, bool) + func (o *GetServiceAccountKeyResponse) GetCreatedAt() time.Time + func (o *GetServiceAccountKeyResponse) GetCreatedAtOk() (*time.Time, bool) + func (o *GetServiceAccountKeyResponse) GetCredentials() GetServiceAccountKeyResponseCredentials + func (o *GetServiceAccountKeyResponse) GetCredentialsOk() (*GetServiceAccountKeyResponseCredentials, bool) + func (o *GetServiceAccountKeyResponse) GetId() string + func (o *GetServiceAccountKeyResponse) GetIdOk() (*string, bool) + func (o *GetServiceAccountKeyResponse) GetKeyAlgorithm() string + func (o *GetServiceAccountKeyResponse) GetKeyAlgorithmOk() (*string, bool) + func (o *GetServiceAccountKeyResponse) GetKeyOrigin() string + func (o *GetServiceAccountKeyResponse) GetKeyOriginOk() (*string, bool) + func (o *GetServiceAccountKeyResponse) GetKeyType() string + func (o *GetServiceAccountKeyResponse) GetKeyTypeOk() (*string, bool) + func (o *GetServiceAccountKeyResponse) GetPublicKey() string + func (o *GetServiceAccountKeyResponse) GetPublicKeyOk() (*string, bool) + func (o *GetServiceAccountKeyResponse) GetValidUntil() time.Time + func (o *GetServiceAccountKeyResponse) GetValidUntilOk() (*time.Time, bool) + func (o *GetServiceAccountKeyResponse) HasPublicKey() bool + func (o *GetServiceAccountKeyResponse) HasValidUntil() bool + func (o *GetServiceAccountKeyResponse) SetActive(v bool) + func (o *GetServiceAccountKeyResponse) SetCreatedAt(v time.Time) + func (o *GetServiceAccountKeyResponse) SetCredentials(v GetServiceAccountKeyResponseCredentials) + func (o *GetServiceAccountKeyResponse) SetId(v string) + func (o *GetServiceAccountKeyResponse) SetKeyAlgorithm(v string) + func (o *GetServiceAccountKeyResponse) SetKeyOrigin(v string) + func (o *GetServiceAccountKeyResponse) SetKeyType(v string) + func (o *GetServiceAccountKeyResponse) SetPublicKey(v string) + func (o *GetServiceAccountKeyResponse) SetValidUntil(v time.Time) + func (o *GetServiceAccountKeyResponse) UnmarshalJSON(data []byte) (err error) + func (o GetServiceAccountKeyResponse) MarshalJSON() ([]byte, error) + func (o GetServiceAccountKeyResponse) ToMap() (map[string]interface{}, error) + type GetServiceAccountKeyResponseCredentials struct + Aud string + Iss string + Kid string + Sub string + func NewGetServiceAccountKeyResponseCredentials(aud string, iss string, kid string, sub string) *GetServiceAccountKeyResponseCredentials + func NewGetServiceAccountKeyResponseCredentialsWithDefaults() *GetServiceAccountKeyResponseCredentials + func (o *GetServiceAccountKeyResponseCredentials) GetAud() string + func (o *GetServiceAccountKeyResponseCredentials) GetAudOk() (*string, bool) + func (o *GetServiceAccountKeyResponseCredentials) GetIss() string + func (o *GetServiceAccountKeyResponseCredentials) GetIssOk() (*string, bool) + func (o *GetServiceAccountKeyResponseCredentials) GetKid() string + func (o *GetServiceAccountKeyResponseCredentials) GetKidOk() (*string, bool) + func (o *GetServiceAccountKeyResponseCredentials) GetSub() string + func (o *GetServiceAccountKeyResponseCredentials) GetSubOk() (*string, bool) + func (o *GetServiceAccountKeyResponseCredentials) SetAud(v string) + func (o *GetServiceAccountKeyResponseCredentials) SetIss(v string) + func (o *GetServiceAccountKeyResponseCredentials) SetKid(v string) + func (o *GetServiceAccountKeyResponseCredentials) SetSub(v string) + func (o *GetServiceAccountKeyResponseCredentials) UnmarshalJSON(data []byte) (err error) + func (o GetServiceAccountKeyResponseCredentials) MarshalJSON() ([]byte, error) + func (o GetServiceAccountKeyResponseCredentials) ToMap() (map[string]interface{}, error) + type JWK struct + Alg *string + E string + Kid *string + Ks *string + N string + Ops *string + Use *string + X5c *string + X5t *string + X5t256 *string + X5u *string + func NewJWK(e string, n string) *JWK + func NewJWKWithDefaults() *JWK + func (o *JWK) GetAlg() string + func (o *JWK) GetAlgOk() (*string, bool) + func (o *JWK) GetE() string + func (o *JWK) GetEOk() (*string, bool) + func (o *JWK) GetKid() string + func (o *JWK) GetKidOk() (*string, bool) + func (o *JWK) GetKs() string + func (o *JWK) GetKsOk() (*string, bool) + func (o *JWK) GetN() string + func (o *JWK) GetNOk() (*string, bool) + func (o *JWK) GetOps() string + func (o *JWK) GetOpsOk() (*string, bool) + func (o *JWK) GetUse() string + func (o *JWK) GetUseOk() (*string, bool) + func (o *JWK) GetX5c() string + func (o *JWK) GetX5cOk() (*string, bool) + func (o *JWK) GetX5t() string + func (o *JWK) GetX5t256() string + func (o *JWK) GetX5t256Ok() (*string, bool) + func (o *JWK) GetX5tOk() (*string, bool) + func (o *JWK) GetX5u() string + func (o *JWK) GetX5uOk() (*string, bool) + func (o *JWK) HasAlg() bool + func (o *JWK) HasKid() bool + func (o *JWK) HasKs() bool + func (o *JWK) HasOps() bool + func (o *JWK) HasUse() bool + func (o *JWK) HasX5c() bool + func (o *JWK) HasX5t() bool + func (o *JWK) HasX5t256() bool + func (o *JWK) HasX5u() bool + func (o *JWK) SetAlg(v string) + func (o *JWK) SetE(v string) + func (o *JWK) SetKid(v string) + func (o *JWK) SetKs(v string) + func (o *JWK) SetN(v string) + func (o *JWK) SetOps(v string) + func (o *JWK) SetUse(v string) + func (o *JWK) SetX5c(v string) + func (o *JWK) SetX5t(v string) + func (o *JWK) SetX5t256(v string) + func (o *JWK) SetX5u(v string) + func (o *JWK) UnmarshalJSON(data []byte) (err error) + func (o JWK) MarshalJSON() ([]byte, error) + func (o JWK) ToMap() (map[string]interface{}, error) + type JWKS struct + Keys []JWK + func NewJWKS(keys []JWK) *JWKS + func NewJWKSWithDefaults() *JWKS + func (o *JWKS) GetKeys() []JWK + func (o *JWKS) GetKeysOk() ([]JWK, bool) + func (o *JWKS) SetKeys(v []JWK) + func (o *JWKS) UnmarshalJSON(data []byte) (err error) + func (o JWKS) MarshalJSON() ([]byte, error) + func (o JWKS) ToMap() (map[string]interface{}, error) + type ListAccessTokensResponse struct + Items []AccessTokenMetadata + func NewListAccessTokensResponse() *ListAccessTokensResponse + func NewListAccessTokensResponseWithDefaults() *ListAccessTokensResponse + func (o *ListAccessTokensResponse) GetItems() []AccessTokenMetadata + func (o *ListAccessTokensResponse) GetItemsOk() ([]AccessTokenMetadata, bool) + func (o *ListAccessTokensResponse) HasItems() bool + func (o *ListAccessTokensResponse) SetItems(v []AccessTokenMetadata) + func (o ListAccessTokensResponse) MarshalJSON() ([]byte, error) + func (o ListAccessTokensResponse) ToMap() (map[string]interface{}, error) + type ListServiceAccountKeysResponse struct + Items []ServiceAccountKeyListResponse + func NewListServiceAccountKeysResponse(items []ServiceAccountKeyListResponse) *ListServiceAccountKeysResponse + func NewListServiceAccountKeysResponseWithDefaults() *ListServiceAccountKeysResponse + func (o *ListServiceAccountKeysResponse) GetItems() []ServiceAccountKeyListResponse + func (o *ListServiceAccountKeysResponse) GetItemsOk() ([]ServiceAccountKeyListResponse, bool) + func (o *ListServiceAccountKeysResponse) SetItems(v []ServiceAccountKeyListResponse) + func (o *ListServiceAccountKeysResponse) UnmarshalJSON(data []byte) (err error) + func (o ListServiceAccountKeysResponse) MarshalJSON() ([]byte, error) + func (o ListServiceAccountKeysResponse) ToMap() (map[string]interface{}, error) + type ListServiceAccountsResponse struct + Items []ServiceAccount + func NewListServiceAccountsResponse(items []ServiceAccount) *ListServiceAccountsResponse + func NewListServiceAccountsResponseWithDefaults() *ListServiceAccountsResponse + func (o *ListServiceAccountsResponse) GetItems() []ServiceAccount + func (o *ListServiceAccountsResponse) GetItemsOk() ([]ServiceAccount, bool) + func (o *ListServiceAccountsResponse) SetItems(v []ServiceAccount) + func (o *ListServiceAccountsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListServiceAccountsResponse) MarshalJSON() ([]byte, error) + func (o ListServiceAccountsResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableAccessToken struct + func NewNullableAccessToken(val *AccessToken) *NullableAccessToken + func (v *NullableAccessToken) Set(val *AccessToken) + func (v *NullableAccessToken) UnmarshalJSON(src []byte) error + func (v *NullableAccessToken) Unset() + func (v NullableAccessToken) Get() *AccessToken + func (v NullableAccessToken) IsSet() bool + func (v NullableAccessToken) MarshalJSON() ([]byte, error) + type NullableAccessTokenMetadata struct + func NewNullableAccessTokenMetadata(val *AccessTokenMetadata) *NullableAccessTokenMetadata + func (v *NullableAccessTokenMetadata) Set(val *AccessTokenMetadata) + func (v *NullableAccessTokenMetadata) UnmarshalJSON(src []byte) error + func (v *NullableAccessTokenMetadata) Unset() + func (v NullableAccessTokenMetadata) Get() *AccessTokenMetadata + func (v NullableAccessTokenMetadata) IsSet() bool + func (v NullableAccessTokenMetadata) MarshalJSON() ([]byte, error) + type NullableAuthError struct + func NewNullableAuthError(val *AuthError) *NullableAuthError + func (v *NullableAuthError) Set(val *AuthError) + func (v *NullableAuthError) UnmarshalJSON(src []byte) error + func (v *NullableAuthError) Unset() + func (v NullableAuthError) Get() *AuthError + func (v NullableAuthError) IsSet() bool + func (v NullableAuthError) MarshalJSON() ([]byte, error) + type NullableAuthErrorError struct + func NewNullableAuthErrorError(val *AuthErrorError) *NullableAuthErrorError + func (v *NullableAuthErrorError) Set(val *AuthErrorError) + func (v *NullableAuthErrorError) UnmarshalJSON(src []byte) error + func (v *NullableAuthErrorError) Unset() + func (v NullableAuthErrorError) Get() *AuthErrorError + func (v NullableAuthErrorError) IsSet() bool + func (v NullableAuthErrorError) 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 NullableCreateAccessTokenPayload struct + func NewNullableCreateAccessTokenPayload(val *CreateAccessTokenPayload) *NullableCreateAccessTokenPayload + func (v *NullableCreateAccessTokenPayload) Set(val *CreateAccessTokenPayload) + func (v *NullableCreateAccessTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAccessTokenPayload) Unset() + func (v NullableCreateAccessTokenPayload) Get() *CreateAccessTokenPayload + func (v NullableCreateAccessTokenPayload) IsSet() bool + func (v NullableCreateAccessTokenPayload) MarshalJSON() ([]byte, error) + type NullableCreateFederatedIdentityProviderPayload struct + func NewNullableCreateFederatedIdentityProviderPayload(val *CreateFederatedIdentityProviderPayload) *NullableCreateFederatedIdentityProviderPayload + func (v *NullableCreateFederatedIdentityProviderPayload) Set(val *CreateFederatedIdentityProviderPayload) + func (v *NullableCreateFederatedIdentityProviderPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateFederatedIdentityProviderPayload) Unset() + func (v NullableCreateFederatedIdentityProviderPayload) Get() *CreateFederatedIdentityProviderPayload + func (v NullableCreateFederatedIdentityProviderPayload) IsSet() bool + func (v NullableCreateFederatedIdentityProviderPayload) MarshalJSON() ([]byte, error) + type NullableCreateFederatedIdentityProviderPayloadAssertionsInner struct + func NewNullableCreateFederatedIdentityProviderPayloadAssertionsInner(val *CreateFederatedIdentityProviderPayloadAssertionsInner) *NullableCreateFederatedIdentityProviderPayloadAssertionsInner + func (v *NullableCreateFederatedIdentityProviderPayloadAssertionsInner) Set(val *CreateFederatedIdentityProviderPayloadAssertionsInner) + func (v *NullableCreateFederatedIdentityProviderPayloadAssertionsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateFederatedIdentityProviderPayloadAssertionsInner) Unset() + func (v NullableCreateFederatedIdentityProviderPayloadAssertionsInner) Get() *CreateFederatedIdentityProviderPayloadAssertionsInner + func (v NullableCreateFederatedIdentityProviderPayloadAssertionsInner) IsSet() bool + func (v NullableCreateFederatedIdentityProviderPayloadAssertionsInner) MarshalJSON() ([]byte, error) + type NullableCreateFederatedIdentityProviderResponse struct + func NewNullableCreateFederatedIdentityProviderResponse(val *CreateFederatedIdentityProviderResponse) *NullableCreateFederatedIdentityProviderResponse + func (v *NullableCreateFederatedIdentityProviderResponse) Set(val *CreateFederatedIdentityProviderResponse) + func (v *NullableCreateFederatedIdentityProviderResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateFederatedIdentityProviderResponse) Unset() + func (v NullableCreateFederatedIdentityProviderResponse) Get() *CreateFederatedIdentityProviderResponse + func (v NullableCreateFederatedIdentityProviderResponse) IsSet() bool + func (v NullableCreateFederatedIdentityProviderResponse) MarshalJSON() ([]byte, error) + type NullableCreateFederatedIdentityProviderResponseAssertionsInner struct + func NewNullableCreateFederatedIdentityProviderResponseAssertionsInner(val *CreateFederatedIdentityProviderResponseAssertionsInner) *NullableCreateFederatedIdentityProviderResponseAssertionsInner + func (v *NullableCreateFederatedIdentityProviderResponseAssertionsInner) Set(val *CreateFederatedIdentityProviderResponseAssertionsInner) + func (v *NullableCreateFederatedIdentityProviderResponseAssertionsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateFederatedIdentityProviderResponseAssertionsInner) Unset() + func (v NullableCreateFederatedIdentityProviderResponseAssertionsInner) Get() *CreateFederatedIdentityProviderResponseAssertionsInner + func (v NullableCreateFederatedIdentityProviderResponseAssertionsInner) IsSet() bool + func (v NullableCreateFederatedIdentityProviderResponseAssertionsInner) MarshalJSON() ([]byte, error) + type NullableCreateServiceAccountKeyPayload struct + func NewNullableCreateServiceAccountKeyPayload(val *CreateServiceAccountKeyPayload) *NullableCreateServiceAccountKeyPayload + func (v *NullableCreateServiceAccountKeyPayload) Set(val *CreateServiceAccountKeyPayload) + func (v *NullableCreateServiceAccountKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateServiceAccountKeyPayload) Unset() + func (v NullableCreateServiceAccountKeyPayload) Get() *CreateServiceAccountKeyPayload + func (v NullableCreateServiceAccountKeyPayload) IsSet() bool + func (v NullableCreateServiceAccountKeyPayload) MarshalJSON() ([]byte, error) + type NullableCreateServiceAccountKeyResponse struct + func NewNullableCreateServiceAccountKeyResponse(val *CreateServiceAccountKeyResponse) *NullableCreateServiceAccountKeyResponse + func (v *NullableCreateServiceAccountKeyResponse) Set(val *CreateServiceAccountKeyResponse) + func (v *NullableCreateServiceAccountKeyResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateServiceAccountKeyResponse) Unset() + func (v NullableCreateServiceAccountKeyResponse) Get() *CreateServiceAccountKeyResponse + func (v NullableCreateServiceAccountKeyResponse) IsSet() bool + func (v NullableCreateServiceAccountKeyResponse) MarshalJSON() ([]byte, error) + type NullableCreateServiceAccountKeyResponseCredentials struct + func NewNullableCreateServiceAccountKeyResponseCredentials(val *CreateServiceAccountKeyResponseCredentials) *NullableCreateServiceAccountKeyResponseCredentials + func (v *NullableCreateServiceAccountKeyResponseCredentials) Set(val *CreateServiceAccountKeyResponseCredentials) + func (v *NullableCreateServiceAccountKeyResponseCredentials) UnmarshalJSON(src []byte) error + func (v *NullableCreateServiceAccountKeyResponseCredentials) Unset() + func (v NullableCreateServiceAccountKeyResponseCredentials) Get() *CreateServiceAccountKeyResponseCredentials + func (v NullableCreateServiceAccountKeyResponseCredentials) IsSet() bool + func (v NullableCreateServiceAccountKeyResponseCredentials) MarshalJSON() ([]byte, error) + type NullableCreateServiceAccountPayload struct + func NewNullableCreateServiceAccountPayload(val *CreateServiceAccountPayload) *NullableCreateServiceAccountPayload + func (v *NullableCreateServiceAccountPayload) Set(val *CreateServiceAccountPayload) + func (v *NullableCreateServiceAccountPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateServiceAccountPayload) Unset() + func (v NullableCreateServiceAccountPayload) Get() *CreateServiceAccountPayload + func (v NullableCreateServiceAccountPayload) IsSet() bool + func (v NullableCreateServiceAccountPayload) MarshalJSON() ([]byte, error) + type NullableCreateShortLivedAccessTokenResponse struct + func NewNullableCreateShortLivedAccessTokenResponse(val *CreateShortLivedAccessTokenResponse) *NullableCreateShortLivedAccessTokenResponse + func (v *NullableCreateShortLivedAccessTokenResponse) Set(val *CreateShortLivedAccessTokenResponse) + func (v *NullableCreateShortLivedAccessTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateShortLivedAccessTokenResponse) Unset() + func (v NullableCreateShortLivedAccessTokenResponse) Get() *CreateShortLivedAccessTokenResponse + func (v NullableCreateShortLivedAccessTokenResponse) IsSet() bool + func (v NullableCreateShortLivedAccessTokenResponse) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableFederatedListFederatedIdentityProvidersResponse struct + func NewNullableFederatedListFederatedIdentityProvidersResponse(val *FederatedListFederatedIdentityProvidersResponse) *NullableFederatedListFederatedIdentityProvidersResponse + func (v *NullableFederatedListFederatedIdentityProvidersResponse) Set(val *FederatedListFederatedIdentityProvidersResponse) + func (v *NullableFederatedListFederatedIdentityProvidersResponse) UnmarshalJSON(src []byte) error + func (v *NullableFederatedListFederatedIdentityProvidersResponse) Unset() + func (v NullableFederatedListFederatedIdentityProvidersResponse) Get() *FederatedListFederatedIdentityProvidersResponse + func (v NullableFederatedListFederatedIdentityProvidersResponse) IsSet() bool + func (v NullableFederatedListFederatedIdentityProvidersResponse) 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 NullableGetServiceAccountKeyResponse struct + func NewNullableGetServiceAccountKeyResponse(val *GetServiceAccountKeyResponse) *NullableGetServiceAccountKeyResponse + func (v *NullableGetServiceAccountKeyResponse) Set(val *GetServiceAccountKeyResponse) + func (v *NullableGetServiceAccountKeyResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetServiceAccountKeyResponse) Unset() + func (v NullableGetServiceAccountKeyResponse) Get() *GetServiceAccountKeyResponse + func (v NullableGetServiceAccountKeyResponse) IsSet() bool + func (v NullableGetServiceAccountKeyResponse) MarshalJSON() ([]byte, error) + type NullableGetServiceAccountKeyResponseCredentials struct + func NewNullableGetServiceAccountKeyResponseCredentials(val *GetServiceAccountKeyResponseCredentials) *NullableGetServiceAccountKeyResponseCredentials + func (v *NullableGetServiceAccountKeyResponseCredentials) Set(val *GetServiceAccountKeyResponseCredentials) + func (v *NullableGetServiceAccountKeyResponseCredentials) UnmarshalJSON(src []byte) error + func (v *NullableGetServiceAccountKeyResponseCredentials) Unset() + func (v NullableGetServiceAccountKeyResponseCredentials) Get() *GetServiceAccountKeyResponseCredentials + func (v NullableGetServiceAccountKeyResponseCredentials) IsSet() bool + func (v NullableGetServiceAccountKeyResponseCredentials) 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 NullableJWK struct + func NewNullableJWK(val *JWK) *NullableJWK + func (v *NullableJWK) Set(val *JWK) + func (v *NullableJWK) UnmarshalJSON(src []byte) error + func (v *NullableJWK) Unset() + func (v NullableJWK) Get() *JWK + func (v NullableJWK) IsSet() bool + func (v NullableJWK) MarshalJSON() ([]byte, error) + type NullableJWKS struct + func NewNullableJWKS(val *JWKS) *NullableJWKS + func (v *NullableJWKS) Set(val *JWKS) + func (v *NullableJWKS) UnmarshalJSON(src []byte) error + func (v *NullableJWKS) Unset() + func (v NullableJWKS) Get() *JWKS + func (v NullableJWKS) IsSet() bool + func (v NullableJWKS) MarshalJSON() ([]byte, error) + type NullableListAccessTokensResponse struct + func NewNullableListAccessTokensResponse(val *ListAccessTokensResponse) *NullableListAccessTokensResponse + func (v *NullableListAccessTokensResponse) Set(val *ListAccessTokensResponse) + func (v *NullableListAccessTokensResponse) UnmarshalJSON(src []byte) error + func (v *NullableListAccessTokensResponse) Unset() + func (v NullableListAccessTokensResponse) Get() *ListAccessTokensResponse + func (v NullableListAccessTokensResponse) IsSet() bool + func (v NullableListAccessTokensResponse) MarshalJSON() ([]byte, error) + type NullableListServiceAccountKeysResponse struct + func NewNullableListServiceAccountKeysResponse(val *ListServiceAccountKeysResponse) *NullableListServiceAccountKeysResponse + func (v *NullableListServiceAccountKeysResponse) Set(val *ListServiceAccountKeysResponse) + func (v *NullableListServiceAccountKeysResponse) UnmarshalJSON(src []byte) error + func (v *NullableListServiceAccountKeysResponse) Unset() + func (v NullableListServiceAccountKeysResponse) Get() *ListServiceAccountKeysResponse + func (v NullableListServiceAccountKeysResponse) IsSet() bool + func (v NullableListServiceAccountKeysResponse) MarshalJSON() ([]byte, error) + type NullableListServiceAccountsResponse struct + func NewNullableListServiceAccountsResponse(val *ListServiceAccountsResponse) *NullableListServiceAccountsResponse + func (v *NullableListServiceAccountsResponse) Set(val *ListServiceAccountsResponse) + func (v *NullableListServiceAccountsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListServiceAccountsResponse) Unset() + func (v NullableListServiceAccountsResponse) Get() *ListServiceAccountsResponse + func (v NullableListServiceAccountsResponse) IsSet() bool + func (v NullableListServiceAccountsResponse) MarshalJSON() ([]byte, error) + type NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload struct + func NewNullablePartialUpdateServiceAccountFederatedIdentityProviderPayload(val *PartialUpdateServiceAccountFederatedIdentityProviderPayload) *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload + func (v *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload) Set(val *PartialUpdateServiceAccountFederatedIdentityProviderPayload) + func (v *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload) Unset() + func (v NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload) Get() *PartialUpdateServiceAccountFederatedIdentityProviderPayload + func (v NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload) IsSet() bool + func (v NullablePartialUpdateServiceAccountFederatedIdentityProviderPayload) MarshalJSON() ([]byte, error) + type NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner struct + func NewNullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner(...) ... + func (v *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) Set(...) + func (v *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) Unset() + func (v NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) Get() *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner + func (v NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) IsSet() bool + func (v NullablePartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateServiceAccountKeyPayload struct + func NewNullablePartialUpdateServiceAccountKeyPayload(val *PartialUpdateServiceAccountKeyPayload) *NullablePartialUpdateServiceAccountKeyPayload + func (v *NullablePartialUpdateServiceAccountKeyPayload) Set(val *PartialUpdateServiceAccountKeyPayload) + func (v *NullablePartialUpdateServiceAccountKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateServiceAccountKeyPayload) Unset() + func (v NullablePartialUpdateServiceAccountKeyPayload) Get() *PartialUpdateServiceAccountKeyPayload + func (v NullablePartialUpdateServiceAccountKeyPayload) IsSet() bool + func (v NullablePartialUpdateServiceAccountKeyPayload) MarshalJSON() ([]byte, error) + type NullablePartialUpdateServiceAccountKeyResponse struct + func NewNullablePartialUpdateServiceAccountKeyResponse(val *PartialUpdateServiceAccountKeyResponse) *NullablePartialUpdateServiceAccountKeyResponse + func (v *NullablePartialUpdateServiceAccountKeyResponse) Set(val *PartialUpdateServiceAccountKeyResponse) + func (v *NullablePartialUpdateServiceAccountKeyResponse) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateServiceAccountKeyResponse) Unset() + func (v NullablePartialUpdateServiceAccountKeyResponse) Get() *PartialUpdateServiceAccountKeyResponse + func (v NullablePartialUpdateServiceAccountKeyResponse) IsSet() bool + func (v NullablePartialUpdateServiceAccountKeyResponse) MarshalJSON() ([]byte, error) + type NullableServiceAccount struct + func NewNullableServiceAccount(val *ServiceAccount) *NullableServiceAccount + func (v *NullableServiceAccount) Set(val *ServiceAccount) + func (v *NullableServiceAccount) UnmarshalJSON(src []byte) error + func (v *NullableServiceAccount) Unset() + func (v NullableServiceAccount) Get() *ServiceAccount + func (v NullableServiceAccount) IsSet() bool + func (v NullableServiceAccount) MarshalJSON() ([]byte, error) + type NullableServiceAccountKeyListResponse struct + func NewNullableServiceAccountKeyListResponse(val *ServiceAccountKeyListResponse) *NullableServiceAccountKeyListResponse + func (v *NullableServiceAccountKeyListResponse) Set(val *ServiceAccountKeyListResponse) + func (v *NullableServiceAccountKeyListResponse) UnmarshalJSON(src []byte) error + func (v *NullableServiceAccountKeyListResponse) Unset() + func (v NullableServiceAccountKeyListResponse) Get() *ServiceAccountKeyListResponse + func (v NullableServiceAccountKeyListResponse) IsSet() bool + func (v NullableServiceAccountKeyListResponse) 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 PartialUpdateServiceAccountFederatedIdentityProviderPayload struct + Assertions []PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner + Issuer string + Name string + func NewPartialUpdateServiceAccountFederatedIdentityProviderPayload(issuer string, name string) *PartialUpdateServiceAccountFederatedIdentityProviderPayload + func NewPartialUpdateServiceAccountFederatedIdentityProviderPayloadWithDefaults() *PartialUpdateServiceAccountFederatedIdentityProviderPayload + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) GetAssertions() []PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) GetAssertionsOk() ([]PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner, ...) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) GetIssuer() string + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) GetIssuerOk() (*string, bool) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) GetName() string + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) GetNameOk() (*string, bool) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) HasAssertions() bool + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) SetAssertions(v []PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) SetIssuer(v string) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) SetName(v string) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayload) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateServiceAccountFederatedIdentityProviderPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateServiceAccountFederatedIdentityProviderPayload) ToMap() (map[string]interface{}, error) + type PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner struct + Item *string + Operator *string + Value *string + func NewPartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner() *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner + func NewPartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInnerWithDefaults() *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) GetItem() string + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) GetItemOk() (*string, bool) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) GetOperator() string + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) GetOperatorOk() (*string, bool) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) GetValue() string + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) GetValueOk() (*string, bool) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) HasItem() bool + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) HasOperator() bool + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) HasValue() bool + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) SetItem(v string) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) SetOperator(v string) + func (o *PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) SetValue(v string) + func (o PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateServiceAccountFederatedIdentityProviderPayloadAssertionsInner) ToMap() (map[string]interface{}, error) + type PartialUpdateServiceAccountKeyPayload struct + Active *bool + ValidUntil *time.Time + func NewPartialUpdateServiceAccountKeyPayload() *PartialUpdateServiceAccountKeyPayload + func NewPartialUpdateServiceAccountKeyPayloadWithDefaults() *PartialUpdateServiceAccountKeyPayload + func (o *PartialUpdateServiceAccountKeyPayload) GetActive() bool + func (o *PartialUpdateServiceAccountKeyPayload) GetActiveOk() (*bool, bool) + func (o *PartialUpdateServiceAccountKeyPayload) GetValidUntil() time.Time + func (o *PartialUpdateServiceAccountKeyPayload) GetValidUntilOk() (*time.Time, bool) + func (o *PartialUpdateServiceAccountKeyPayload) HasActive() bool + func (o *PartialUpdateServiceAccountKeyPayload) HasValidUntil() bool + func (o *PartialUpdateServiceAccountKeyPayload) SetActive(v bool) + func (o *PartialUpdateServiceAccountKeyPayload) SetValidUntil(v time.Time) + func (o PartialUpdateServiceAccountKeyPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateServiceAccountKeyPayload) ToMap() (map[string]interface{}, error) + type PartialUpdateServiceAccountKeyResponse struct + Active bool + CreatedAt time.Time + Id string + KeyAlgorithm string + KeyOrigin string + KeyType string + ValidUntil *time.Time + func NewPartialUpdateServiceAccountKeyResponse(active bool, createdAt time.Time, id string, keyAlgorithm string, ...) *PartialUpdateServiceAccountKeyResponse + func NewPartialUpdateServiceAccountKeyResponseWithDefaults() *PartialUpdateServiceAccountKeyResponse + func (o *PartialUpdateServiceAccountKeyResponse) GetActive() bool + func (o *PartialUpdateServiceAccountKeyResponse) GetActiveOk() (*bool, bool) + func (o *PartialUpdateServiceAccountKeyResponse) GetCreatedAt() time.Time + func (o *PartialUpdateServiceAccountKeyResponse) GetCreatedAtOk() (*time.Time, bool) + func (o *PartialUpdateServiceAccountKeyResponse) GetId() string + func (o *PartialUpdateServiceAccountKeyResponse) GetIdOk() (*string, bool) + func (o *PartialUpdateServiceAccountKeyResponse) GetKeyAlgorithm() string + func (o *PartialUpdateServiceAccountKeyResponse) GetKeyAlgorithmOk() (*string, bool) + func (o *PartialUpdateServiceAccountKeyResponse) GetKeyOrigin() string + func (o *PartialUpdateServiceAccountKeyResponse) GetKeyOriginOk() (*string, bool) + func (o *PartialUpdateServiceAccountKeyResponse) GetKeyType() string + func (o *PartialUpdateServiceAccountKeyResponse) GetKeyTypeOk() (*string, bool) + func (o *PartialUpdateServiceAccountKeyResponse) GetValidUntil() time.Time + func (o *PartialUpdateServiceAccountKeyResponse) GetValidUntilOk() (*time.Time, bool) + func (o *PartialUpdateServiceAccountKeyResponse) HasValidUntil() bool + func (o *PartialUpdateServiceAccountKeyResponse) SetActive(v bool) + func (o *PartialUpdateServiceAccountKeyResponse) SetCreatedAt(v time.Time) + func (o *PartialUpdateServiceAccountKeyResponse) SetId(v string) + func (o *PartialUpdateServiceAccountKeyResponse) SetKeyAlgorithm(v string) + func (o *PartialUpdateServiceAccountKeyResponse) SetKeyOrigin(v string) + func (o *PartialUpdateServiceAccountKeyResponse) SetKeyType(v string) + func (o *PartialUpdateServiceAccountKeyResponse) SetValidUntil(v time.Time) + func (o *PartialUpdateServiceAccountKeyResponse) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateServiceAccountKeyResponse) MarshalJSON() ([]byte, error) + func (o PartialUpdateServiceAccountKeyResponse) ToMap() (map[string]interface{}, error) + type ServiceAccount struct + Email string + Id string + Internal bool + ProjectId string + func NewServiceAccount(email string, id string, internal bool, projectId string) *ServiceAccount + func NewServiceAccountWithDefaults() *ServiceAccount + func (o *ServiceAccount) GetEmail() string + func (o *ServiceAccount) GetEmailOk() (*string, bool) + func (o *ServiceAccount) GetId() string + func (o *ServiceAccount) GetIdOk() (*string, bool) + func (o *ServiceAccount) GetInternal() bool + func (o *ServiceAccount) GetInternalOk() (*bool, bool) + func (o *ServiceAccount) GetProjectId() string + func (o *ServiceAccount) GetProjectIdOk() (*string, bool) + func (o *ServiceAccount) SetEmail(v string) + func (o *ServiceAccount) SetId(v string) + func (o *ServiceAccount) SetInternal(v bool) + func (o *ServiceAccount) SetProjectId(v string) + func (o *ServiceAccount) UnmarshalJSON(data []byte) (err error) + func (o ServiceAccount) MarshalJSON() ([]byte, error) + func (o ServiceAccount) ToMap() (map[string]interface{}, error) + type ServiceAccountKeyListResponse struct + Active bool + CreatedAt time.Time + Id string + KeyAlgorithm string + KeyOrigin string + KeyType string + ValidUntil *time.Time + func NewServiceAccountKeyListResponse(active bool, createdAt time.Time, id string, keyAlgorithm string, ...) *ServiceAccountKeyListResponse + func NewServiceAccountKeyListResponseWithDefaults() *ServiceAccountKeyListResponse + func (o *ServiceAccountKeyListResponse) GetActive() bool + func (o *ServiceAccountKeyListResponse) GetActiveOk() (*bool, bool) + func (o *ServiceAccountKeyListResponse) GetCreatedAt() time.Time + func (o *ServiceAccountKeyListResponse) GetCreatedAtOk() (*time.Time, bool) + func (o *ServiceAccountKeyListResponse) GetId() string + func (o *ServiceAccountKeyListResponse) GetIdOk() (*string, bool) + func (o *ServiceAccountKeyListResponse) GetKeyAlgorithm() string + func (o *ServiceAccountKeyListResponse) GetKeyAlgorithmOk() (*string, bool) + func (o *ServiceAccountKeyListResponse) GetKeyOrigin() string + func (o *ServiceAccountKeyListResponse) GetKeyOriginOk() (*string, bool) + func (o *ServiceAccountKeyListResponse) GetKeyType() string + func (o *ServiceAccountKeyListResponse) GetKeyTypeOk() (*string, bool) + func (o *ServiceAccountKeyListResponse) GetValidUntil() time.Time + func (o *ServiceAccountKeyListResponse) GetValidUntilOk() (*time.Time, bool) + func (o *ServiceAccountKeyListResponse) HasValidUntil() bool + func (o *ServiceAccountKeyListResponse) SetActive(v bool) + func (o *ServiceAccountKeyListResponse) SetCreatedAt(v time.Time) + func (o *ServiceAccountKeyListResponse) SetId(v string) + func (o *ServiceAccountKeyListResponse) SetKeyAlgorithm(v string) + func (o *ServiceAccountKeyListResponse) SetKeyOrigin(v string) + func (o *ServiceAccountKeyListResponse) SetKeyType(v string) + func (o *ServiceAccountKeyListResponse) SetValidUntil(v time.Time) + func (o *ServiceAccountKeyListResponse) UnmarshalJSON(data []byte) (err error) + func (o ServiceAccountKeyListResponse) MarshalJSON() ([]byte, error) + func (o ServiceAccountKeyListResponse) ToMap() (map[string]interface{}, error)