Versions in this module Expand all Collapse all v0 v0.2.0 Jun 24, 2026 v0.1.0 Jun 10, 2026 Changes in this version + var AllowedInstanceStateEnumValues = []InstanceState + var AllowedTokenStateEnumValues = []TokenState + 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 ApiCreateInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest + func (r ApiCreateInstanceRequest) Execute() (*CreateInstanceResponse, error) + type ApiCreateInstanceTokenRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceTokenRequest) CreateInstanceTokenPayload(createInstanceTokenPayload CreateInstanceTokenPayload) ApiCreateInstanceTokenRequest + func (r ApiCreateInstanceTokenRequest) Execute() (*CreateInstanceTokenResponse, error) + type ApiDeleteInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceRequest) Execute() (*DeleteInstanceResponse, error) + type ApiDeleteInstanceTokenRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceTokenRequest) Execute() (*DeleteInstanceTokenResponse, error) + type ApiGetInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceRequest) Execute() (*GetInstanceResponse, error) + type ApiGetInstanceTokenRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceTokenRequest) Execute() (*GetInstanceTokenResponse, error) + type ApiListInstanceTokensRequest struct + ApiService DefaultAPI + func (r ApiListInstanceTokensRequest) Execute() (*ListInstanceTokensResponse, error) + type ApiListInstancesRequest struct + ApiService DefaultAPI + func (r ApiListInstancesRequest) Execute() (*ListInstancesResponse, error) + type ApiPartialUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateInstanceRequest) Execute() (*PartialUpdateInstanceResponse, error) + func (r ApiPartialUpdateInstanceRequest) PartialUpdateInstancePayload(partialUpdateInstancePayload PartialUpdateInstancePayload) ApiPartialUpdateInstanceRequest + type ApiPartialUpdateInstanceTokenRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateInstanceTokenRequest) Execute() (*PartialUpdateInstanceTokenResponse, error) + func (r ApiPartialUpdateInstanceTokenRequest) PartialUpdateInstanceTokenPayload(partialUpdateInstanceTokenPayload PartialUpdateInstanceTokenPayload) ApiPartialUpdateInstanceTokenRequest + type CreateInstancePayload struct + AdditionalProperties map[string]interface{} + DeletedExperimentRetention *string + Description *string + Labels *map[string]string + Name string + func NewCreateInstancePayload(name string) *CreateInstancePayload + func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload + func (o *CreateInstancePayload) GetDeletedExperimentRetention() string + func (o *CreateInstancePayload) GetDeletedExperimentRetentionOk() (*string, bool) + func (o *CreateInstancePayload) GetDescription() string + func (o *CreateInstancePayload) GetDescriptionOk() (*string, bool) + func (o *CreateInstancePayload) GetLabels() map[string]string + func (o *CreateInstancePayload) GetLabelsOk() (*map[string]string, bool) + func (o *CreateInstancePayload) GetName() string + func (o *CreateInstancePayload) GetNameOk() (*string, bool) + func (o *CreateInstancePayload) HasDeletedExperimentRetention() bool + func (o *CreateInstancePayload) HasDescription() bool + func (o *CreateInstancePayload) HasLabels() bool + func (o *CreateInstancePayload) SetDeletedExperimentRetention(v string) + func (o *CreateInstancePayload) SetDescription(v string) + func (o *CreateInstancePayload) SetLabels(v map[string]string) + func (o *CreateInstancePayload) SetName(v string) + func (o *CreateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateInstancePayload) MarshalJSON() ([]byte, error) + func (o CreateInstancePayload) ToMap() (map[string]interface{}, error) + type CreateInstanceResponse struct + AdditionalProperties map[string]interface{} + Instance Instance + Message *string + func NewCreateInstanceResponse(instance Instance) *CreateInstanceResponse + func NewCreateInstanceResponseWithDefaults() *CreateInstanceResponse + func (o *CreateInstanceResponse) GetInstance() Instance + func (o *CreateInstanceResponse) GetInstanceOk() (*Instance, bool) + func (o *CreateInstanceResponse) GetMessage() string + func (o *CreateInstanceResponse) GetMessageOk() (*string, bool) + func (o *CreateInstanceResponse) HasMessage() bool + func (o *CreateInstanceResponse) SetInstance(v Instance) + func (o *CreateInstanceResponse) SetMessage(v string) + func (o *CreateInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateInstanceResponse) MarshalJSON() ([]byte, error) + func (o CreateInstanceResponse) ToMap() (map[string]interface{}, error) + type CreateInstanceTokenPayload struct + AdditionalProperties map[string]interface{} + Description *string + Labels *map[string]string + Name string + TtlDuration *string + func NewCreateInstanceTokenPayload(name string) *CreateInstanceTokenPayload + func NewCreateInstanceTokenPayloadWithDefaults() *CreateInstanceTokenPayload + func (o *CreateInstanceTokenPayload) GetDescription() string + func (o *CreateInstanceTokenPayload) GetDescriptionOk() (*string, bool) + func (o *CreateInstanceTokenPayload) GetLabels() map[string]string + func (o *CreateInstanceTokenPayload) GetLabelsOk() (*map[string]string, bool) + func (o *CreateInstanceTokenPayload) GetName() string + func (o *CreateInstanceTokenPayload) GetNameOk() (*string, bool) + func (o *CreateInstanceTokenPayload) GetTtlDuration() string + func (o *CreateInstanceTokenPayload) GetTtlDurationOk() (*string, bool) + func (o *CreateInstanceTokenPayload) HasDescription() bool + func (o *CreateInstanceTokenPayload) HasLabels() bool + func (o *CreateInstanceTokenPayload) HasTtlDuration() bool + func (o *CreateInstanceTokenPayload) SetDescription(v string) + func (o *CreateInstanceTokenPayload) SetLabels(v map[string]string) + func (o *CreateInstanceTokenPayload) SetName(v string) + func (o *CreateInstanceTokenPayload) SetTtlDuration(v string) + func (o *CreateInstanceTokenPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateInstanceTokenPayload) MarshalJSON() ([]byte, error) + func (o CreateInstanceTokenPayload) ToMap() (map[string]interface{}, error) + type CreateInstanceTokenResponse struct + AdditionalProperties map[string]interface{} + Message *string + Token Token + func NewCreateInstanceTokenResponse(token Token) *CreateInstanceTokenResponse + func NewCreateInstanceTokenResponseWithDefaults() *CreateInstanceTokenResponse + func (o *CreateInstanceTokenResponse) GetMessage() string + func (o *CreateInstanceTokenResponse) GetMessageOk() (*string, bool) + func (o *CreateInstanceTokenResponse) GetToken() Token + func (o *CreateInstanceTokenResponse) GetTokenOk() (*Token, bool) + func (o *CreateInstanceTokenResponse) HasMessage() bool + func (o *CreateInstanceTokenResponse) SetMessage(v string) + func (o *CreateInstanceTokenResponse) SetToken(v Token) + func (o *CreateInstanceTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateInstanceTokenResponse) MarshalJSON() ([]byte, error) + func (o CreateInstanceTokenResponse) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateInstance func(ctx context.Context, projectId string, regionId string) ApiCreateInstanceRequest + CreateInstanceExecute func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + CreateInstanceToken func(ctx context.Context, projectId string, regionId string, instanceId string) ApiCreateInstanceTokenRequest + CreateInstanceTokenExecute func(r ApiCreateInstanceTokenRequest) (*CreateInstanceTokenResponse, error) + DeleteInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + DeleteInstanceExecute func(r ApiDeleteInstanceRequest) (*DeleteInstanceResponse, error) + DeleteInstanceToken func(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiDeleteInstanceTokenRequest + DeleteInstanceTokenExecute func(r ApiDeleteInstanceTokenRequest) (*DeleteInstanceTokenResponse, error) + GetInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + GetInstanceExecute func(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + GetInstanceToken func(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiGetInstanceTokenRequest + GetInstanceTokenExecute func(r ApiGetInstanceTokenRequest) (*GetInstanceTokenResponse, error) + ListInstanceTokens func(ctx context.Context, projectId string, regionId string, instanceId string) ApiListInstanceTokensRequest + ListInstanceTokensExecute func(r ApiListInstanceTokensRequest) (*ListInstanceTokensResponse, error) + ListInstances func(ctx context.Context, projectId string, regionId string) ApiListInstancesRequest + ListInstancesExecute func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + PartialUpdateInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiPartialUpdateInstanceRequest + PartialUpdateInstanceExecute func(r ApiPartialUpdateInstanceRequest) (*PartialUpdateInstanceResponse, error) + PartialUpdateInstanceToken func(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiPartialUpdateInstanceTokenRequest + PartialUpdateInstanceTokenExecute func(r ApiPartialUpdateInstanceTokenRequest) (*PartialUpdateInstanceTokenResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateInstance(ctx context.Context, projectId string, regionId string) ApiCreateInstanceRequest + func (a *DefaultAPIService) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a *DefaultAPIService) CreateInstanceToken(ctx context.Context, projectId string, regionId string, instanceId string) ApiCreateInstanceTokenRequest + func (a *DefaultAPIService) CreateInstanceTokenExecute(r ApiCreateInstanceTokenRequest) (*CreateInstanceTokenResponse, error) + func (a *DefaultAPIService) DeleteInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + func (a *DefaultAPIService) DeleteInstanceExecute(r ApiDeleteInstanceRequest) (*DeleteInstanceResponse, error) + func (a *DefaultAPIService) DeleteInstanceToken(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiDeleteInstanceTokenRequest + func (a *DefaultAPIService) DeleteInstanceTokenExecute(r ApiDeleteInstanceTokenRequest) (*DeleteInstanceTokenResponse, error) + func (a *DefaultAPIService) GetInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + func (a *DefaultAPIService) GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + func (a *DefaultAPIService) GetInstanceToken(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiGetInstanceTokenRequest + func (a *DefaultAPIService) GetInstanceTokenExecute(r ApiGetInstanceTokenRequest) (*GetInstanceTokenResponse, error) + func (a *DefaultAPIService) ListInstanceTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiListInstanceTokensRequest + func (a *DefaultAPIService) ListInstanceTokensExecute(r ApiListInstanceTokensRequest) (*ListInstanceTokensResponse, error) + func (a *DefaultAPIService) ListInstances(ctx context.Context, projectId string, regionId string) ApiListInstancesRequest + func (a *DefaultAPIService) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a *DefaultAPIService) PartialUpdateInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiPartialUpdateInstanceRequest + func (a *DefaultAPIService) PartialUpdateInstanceExecute(r ApiPartialUpdateInstanceRequest) (*PartialUpdateInstanceResponse, error) + func (a *DefaultAPIService) PartialUpdateInstanceToken(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiPartialUpdateInstanceTokenRequest + func (a *DefaultAPIService) PartialUpdateInstanceTokenExecute(r ApiPartialUpdateInstanceTokenRequest) (*PartialUpdateInstanceTokenResponse, error) + type DefaultAPIServiceMock struct + CreateInstanceExecuteMock *func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + CreateInstanceTokenExecuteMock *func(r ApiCreateInstanceTokenRequest) (*CreateInstanceTokenResponse, error) + DeleteInstanceExecuteMock *func(r ApiDeleteInstanceRequest) (*DeleteInstanceResponse, error) + DeleteInstanceTokenExecuteMock *func(r ApiDeleteInstanceTokenRequest) (*DeleteInstanceTokenResponse, error) + GetInstanceExecuteMock *func(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + GetInstanceTokenExecuteMock *func(r ApiGetInstanceTokenRequest) (*GetInstanceTokenResponse, error) + ListInstanceTokensExecuteMock *func(r ApiListInstanceTokensRequest) (*ListInstanceTokensResponse, error) + ListInstancesExecuteMock *func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + PartialUpdateInstanceExecuteMock *func(r ApiPartialUpdateInstanceRequest) (*PartialUpdateInstanceResponse, error) + PartialUpdateInstanceTokenExecuteMock *func(r ApiPartialUpdateInstanceTokenRequest) (*PartialUpdateInstanceTokenResponse, error) + func (a DefaultAPIServiceMock) CreateInstance(ctx context.Context, projectId string, regionId string) ApiCreateInstanceRequest + func (a DefaultAPIServiceMock) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a DefaultAPIServiceMock) CreateInstanceToken(ctx context.Context, projectId string, regionId string, instanceId string) ApiCreateInstanceTokenRequest + func (a DefaultAPIServiceMock) CreateInstanceTokenExecute(r ApiCreateInstanceTokenRequest) (*CreateInstanceTokenResponse, error) + func (a DefaultAPIServiceMock) DeleteInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + func (a DefaultAPIServiceMock) DeleteInstanceExecute(r ApiDeleteInstanceRequest) (*DeleteInstanceResponse, error) + func (a DefaultAPIServiceMock) DeleteInstanceToken(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiDeleteInstanceTokenRequest + func (a DefaultAPIServiceMock) DeleteInstanceTokenExecute(r ApiDeleteInstanceTokenRequest) (*DeleteInstanceTokenResponse, error) + func (a DefaultAPIServiceMock) GetInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + func (a DefaultAPIServiceMock) GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + func (a DefaultAPIServiceMock) GetInstanceToken(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiGetInstanceTokenRequest + func (a DefaultAPIServiceMock) GetInstanceTokenExecute(r ApiGetInstanceTokenRequest) (*GetInstanceTokenResponse, error) + func (a DefaultAPIServiceMock) ListInstanceTokens(ctx context.Context, projectId string, regionId string, instanceId string) ApiListInstanceTokensRequest + func (a DefaultAPIServiceMock) ListInstanceTokensExecute(r ApiListInstanceTokensRequest) (*ListInstanceTokensResponse, error) + func (a DefaultAPIServiceMock) ListInstances(ctx context.Context, projectId string, regionId string) ApiListInstancesRequest + func (a DefaultAPIServiceMock) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiPartialUpdateInstanceRequest + func (a DefaultAPIServiceMock) PartialUpdateInstanceExecute(r ApiPartialUpdateInstanceRequest) (*PartialUpdateInstanceResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateInstanceToken(ctx context.Context, projectId string, regionId string, tokenId string, ...) ApiPartialUpdateInstanceTokenRequest + func (a DefaultAPIServiceMock) PartialUpdateInstanceTokenExecute(r ApiPartialUpdateInstanceTokenRequest) (*PartialUpdateInstanceTokenResponse, error) + type DeleteInstanceResponse struct + AdditionalProperties map[string]interface{} + Instance Instance + Message *string + func NewDeleteInstanceResponse(instance Instance) *DeleteInstanceResponse + func NewDeleteInstanceResponseWithDefaults() *DeleteInstanceResponse + func (o *DeleteInstanceResponse) GetInstance() Instance + func (o *DeleteInstanceResponse) GetInstanceOk() (*Instance, bool) + func (o *DeleteInstanceResponse) GetMessage() string + func (o *DeleteInstanceResponse) GetMessageOk() (*string, bool) + func (o *DeleteInstanceResponse) HasMessage() bool + func (o *DeleteInstanceResponse) SetInstance(v Instance) + func (o *DeleteInstanceResponse) SetMessage(v string) + func (o *DeleteInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o DeleteInstanceResponse) MarshalJSON() ([]byte, error) + func (o DeleteInstanceResponse) ToMap() (map[string]interface{}, error) + type DeleteInstanceTokenResponse struct + AdditionalProperties map[string]interface{} + Message *string + Token TokenMetadata + func NewDeleteInstanceTokenResponse(token TokenMetadata) *DeleteInstanceTokenResponse + func NewDeleteInstanceTokenResponseWithDefaults() *DeleteInstanceTokenResponse + func (o *DeleteInstanceTokenResponse) GetMessage() string + func (o *DeleteInstanceTokenResponse) GetMessageOk() (*string, bool) + func (o *DeleteInstanceTokenResponse) GetToken() TokenMetadata + func (o *DeleteInstanceTokenResponse) GetTokenOk() (*TokenMetadata, bool) + func (o *DeleteInstanceTokenResponse) HasMessage() bool + func (o *DeleteInstanceTokenResponse) SetMessage(v string) + func (o *DeleteInstanceTokenResponse) SetToken(v TokenMetadata) + func (o *DeleteInstanceTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o DeleteInstanceTokenResponse) MarshalJSON() ([]byte, error) + func (o DeleteInstanceTokenResponse) ToMap() (map[string]interface{}, error) + type ErrorResponse struct + AdditionalProperties map[string]interface{} + Code int32 + Message string + Status *string + func NewErrorResponse(code int32, message string) *ErrorResponse + func NewErrorResponseWithDefaults() *ErrorResponse + func (o *ErrorResponse) GetCode() int32 + func (o *ErrorResponse) GetCodeOk() (*int32, bool) + func (o *ErrorResponse) GetMessage() string + func (o *ErrorResponse) GetMessageOk() (*string, bool) + func (o *ErrorResponse) GetStatus() string + func (o *ErrorResponse) GetStatusOk() (*string, bool) + func (o *ErrorResponse) HasStatus() bool + func (o *ErrorResponse) SetCode(v int32) + func (o *ErrorResponse) SetMessage(v string) + func (o *ErrorResponse) SetStatus(v string) + func (o *ErrorResponse) UnmarshalJSON(data []byte) (err error) + func (o ErrorResponse) MarshalJSON() ([]byte, error) + func (o ErrorResponse) ToMap() (map[string]interface{}, error) + type GetInstanceResponse struct + AdditionalProperties map[string]interface{} + Instance Instance + Message *string + func NewGetInstanceResponse(instance Instance) *GetInstanceResponse + func NewGetInstanceResponseWithDefaults() *GetInstanceResponse + func (o *GetInstanceResponse) GetInstance() Instance + func (o *GetInstanceResponse) GetInstanceOk() (*Instance, bool) + func (o *GetInstanceResponse) GetMessage() string + func (o *GetInstanceResponse) GetMessageOk() (*string, bool) + func (o *GetInstanceResponse) HasMessage() bool + func (o *GetInstanceResponse) SetInstance(v Instance) + func (o *GetInstanceResponse) SetMessage(v string) + func (o *GetInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o GetInstanceResponse) MarshalJSON() ([]byte, error) + func (o GetInstanceResponse) ToMap() (map[string]interface{}, error) + type GetInstanceTokenResponse struct + AdditionalProperties map[string]interface{} + Message *string + Token TokenMetadata + func NewGetInstanceTokenResponse(token TokenMetadata) *GetInstanceTokenResponse + func NewGetInstanceTokenResponseWithDefaults() *GetInstanceTokenResponse + func (o *GetInstanceTokenResponse) GetMessage() string + func (o *GetInstanceTokenResponse) GetMessageOk() (*string, bool) + func (o *GetInstanceTokenResponse) GetToken() TokenMetadata + func (o *GetInstanceTokenResponse) GetTokenOk() (*TokenMetadata, bool) + func (o *GetInstanceTokenResponse) HasMessage() bool + func (o *GetInstanceTokenResponse) SetMessage(v string) + func (o *GetInstanceTokenResponse) SetToken(v TokenMetadata) + func (o *GetInstanceTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o GetInstanceTokenResponse) MarshalJSON() ([]byte, error) + func (o GetInstanceTokenResponse) ToMap() (map[string]interface{}, error) + type Instance struct + AdditionalProperties map[string]interface{} + BucketName *string + DeletedExperimentRetention *string + Description *string + ErrorMessage *string + Id string + Labels *map[string]string + Name string + Region *string + State InstanceState + Url string + func NewInstance(id string, name string, state InstanceState, url string) *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetBucketName() string + func (o *Instance) GetBucketNameOk() (*string, bool) + func (o *Instance) GetDeletedExperimentRetention() string + func (o *Instance) GetDeletedExperimentRetentionOk() (*string, bool) + func (o *Instance) GetDescription() string + func (o *Instance) GetDescriptionOk() (*string, bool) + func (o *Instance) GetErrorMessage() string + func (o *Instance) GetErrorMessageOk() (*string, bool) + func (o *Instance) GetId() string + func (o *Instance) GetIdOk() (*string, bool) + func (o *Instance) GetLabels() map[string]string + func (o *Instance) GetLabelsOk() (*map[string]string, bool) + func (o *Instance) GetName() string + func (o *Instance) GetNameOk() (*string, bool) + func (o *Instance) GetRegion() string + func (o *Instance) GetRegionOk() (*string, bool) + func (o *Instance) GetState() InstanceState + func (o *Instance) GetStateOk() (*InstanceState, bool) + func (o *Instance) GetUrl() string + func (o *Instance) GetUrlOk() (*string, bool) + func (o *Instance) HasBucketName() bool + func (o *Instance) HasDeletedExperimentRetention() bool + func (o *Instance) HasDescription() bool + func (o *Instance) HasErrorMessage() bool + func (o *Instance) HasLabels() bool + func (o *Instance) HasRegion() bool + func (o *Instance) SetBucketName(v string) + func (o *Instance) SetDeletedExperimentRetention(v string) + func (o *Instance) SetDescription(v string) + func (o *Instance) SetErrorMessage(v string) + func (o *Instance) SetId(v string) + func (o *Instance) SetLabels(v map[string]string) + func (o *Instance) SetName(v string) + func (o *Instance) SetRegion(v string) + func (o *Instance) SetState(v InstanceState) + func (o *Instance) SetUrl(v string) + func (o *Instance) UnmarshalJSON(data []byte) (err error) + func (o Instance) MarshalJSON() ([]byte, error) + func (o Instance) ToMap() (map[string]interface{}, error) + type InstanceState string + const INSTANCESTATE_ACTIVE + const INSTANCESTATE_CREATING + const INSTANCESTATE_DELETING + const INSTANCESTATE_IMPAIRED + const INSTANCESTATE_PENDING + const INSTANCESTATE_RECONCILING + const INSTANCESTATE_UNKNOWN_DEFAULT_OPEN_API + const INSTANCESTATE_UPDATING + func NewInstanceStateFromValue(v string) (*InstanceState, error) + func (v *InstanceState) UnmarshalJSON(src []byte) error + func (v InstanceState) IsValid() bool + func (v InstanceState) Ptr() *InstanceState + type ListInstanceTokensResponse struct + AdditionalProperties map[string]interface{} + Message *string + Tokens []TokenMetadata + func NewListInstanceTokensResponse(tokens []TokenMetadata) *ListInstanceTokensResponse + func NewListInstanceTokensResponseWithDefaults() *ListInstanceTokensResponse + func (o *ListInstanceTokensResponse) GetMessage() string + func (o *ListInstanceTokensResponse) GetMessageOk() (*string, bool) + func (o *ListInstanceTokensResponse) GetTokens() []TokenMetadata + func (o *ListInstanceTokensResponse) GetTokensOk() ([]TokenMetadata, bool) + func (o *ListInstanceTokensResponse) HasMessage() bool + func (o *ListInstanceTokensResponse) SetMessage(v string) + func (o *ListInstanceTokensResponse) SetTokens(v []TokenMetadata) + func (o *ListInstanceTokensResponse) UnmarshalJSON(data []byte) (err error) + func (o ListInstanceTokensResponse) MarshalJSON() ([]byte, error) + func (o ListInstanceTokensResponse) ToMap() (map[string]interface{}, error) + type ListInstancesResponse struct + AdditionalProperties map[string]interface{} + Instances []Instance + Message *string + func NewListInstancesResponse(instances []Instance) *ListInstancesResponse + func NewListInstancesResponseWithDefaults() *ListInstancesResponse + func (o *ListInstancesResponse) GetInstances() []Instance + func (o *ListInstancesResponse) GetInstancesOk() ([]Instance, bool) + func (o *ListInstancesResponse) GetMessage() string + func (o *ListInstancesResponse) GetMessageOk() (*string, bool) + func (o *ListInstancesResponse) HasMessage() bool + func (o *ListInstancesResponse) SetInstances(v []Instance) + func (o *ListInstancesResponse) SetMessage(v string) + func (o *ListInstancesResponse) UnmarshalJSON(data []byte) (err error) + func (o ListInstancesResponse) MarshalJSON() ([]byte, error) + func (o ListInstancesResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, 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 NullableCreateInstancePayload struct + func NewNullableCreateInstancePayload(val *CreateInstancePayload) *NullableCreateInstancePayload + func (v *NullableCreateInstancePayload) Set(val *CreateInstancePayload) + func (v *NullableCreateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstancePayload) Unset() + func (v NullableCreateInstancePayload) Get() *CreateInstancePayload + func (v NullableCreateInstancePayload) IsSet() bool + func (v NullableCreateInstancePayload) MarshalJSON() ([]byte, error) + type NullableCreateInstanceResponse struct + func NewNullableCreateInstanceResponse(val *CreateInstanceResponse) *NullableCreateInstanceResponse + func (v *NullableCreateInstanceResponse) Set(val *CreateInstanceResponse) + func (v *NullableCreateInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstanceResponse) Unset() + func (v NullableCreateInstanceResponse) Get() *CreateInstanceResponse + func (v NullableCreateInstanceResponse) IsSet() bool + func (v NullableCreateInstanceResponse) MarshalJSON() ([]byte, error) + type NullableCreateInstanceTokenPayload struct + func NewNullableCreateInstanceTokenPayload(val *CreateInstanceTokenPayload) *NullableCreateInstanceTokenPayload + func (v *NullableCreateInstanceTokenPayload) Set(val *CreateInstanceTokenPayload) + func (v *NullableCreateInstanceTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstanceTokenPayload) Unset() + func (v NullableCreateInstanceTokenPayload) Get() *CreateInstanceTokenPayload + func (v NullableCreateInstanceTokenPayload) IsSet() bool + func (v NullableCreateInstanceTokenPayload) MarshalJSON() ([]byte, error) + type NullableCreateInstanceTokenResponse struct + func NewNullableCreateInstanceTokenResponse(val *CreateInstanceTokenResponse) *NullableCreateInstanceTokenResponse + func (v *NullableCreateInstanceTokenResponse) Set(val *CreateInstanceTokenResponse) + func (v *NullableCreateInstanceTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstanceTokenResponse) Unset() + func (v NullableCreateInstanceTokenResponse) Get() *CreateInstanceTokenResponse + func (v NullableCreateInstanceTokenResponse) IsSet() bool + func (v NullableCreateInstanceTokenResponse) MarshalJSON() ([]byte, error) + type NullableDeleteInstanceResponse struct + func NewNullableDeleteInstanceResponse(val *DeleteInstanceResponse) *NullableDeleteInstanceResponse + func (v *NullableDeleteInstanceResponse) Set(val *DeleteInstanceResponse) + func (v *NullableDeleteInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteInstanceResponse) Unset() + func (v NullableDeleteInstanceResponse) Get() *DeleteInstanceResponse + func (v NullableDeleteInstanceResponse) IsSet() bool + func (v NullableDeleteInstanceResponse) MarshalJSON() ([]byte, error) + type NullableDeleteInstanceTokenResponse struct + func NewNullableDeleteInstanceTokenResponse(val *DeleteInstanceTokenResponse) *NullableDeleteInstanceTokenResponse + func (v *NullableDeleteInstanceTokenResponse) Set(val *DeleteInstanceTokenResponse) + func (v *NullableDeleteInstanceTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteInstanceTokenResponse) Unset() + func (v NullableDeleteInstanceTokenResponse) Get() *DeleteInstanceTokenResponse + func (v NullableDeleteInstanceTokenResponse) IsSet() bool + func (v NullableDeleteInstanceTokenResponse) MarshalJSON() ([]byte, error) + type NullableErrorResponse struct + func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse + func (v *NullableErrorResponse) Set(val *ErrorResponse) + func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error + func (v *NullableErrorResponse) Unset() + func (v NullableErrorResponse) Get() *ErrorResponse + func (v NullableErrorResponse) IsSet() bool + func (v NullableErrorResponse) 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 NullableGetInstanceResponse struct + func NewNullableGetInstanceResponse(val *GetInstanceResponse) *NullableGetInstanceResponse + func (v *NullableGetInstanceResponse) Set(val *GetInstanceResponse) + func (v *NullableGetInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetInstanceResponse) Unset() + func (v NullableGetInstanceResponse) Get() *GetInstanceResponse + func (v NullableGetInstanceResponse) IsSet() bool + func (v NullableGetInstanceResponse) MarshalJSON() ([]byte, error) + type NullableGetInstanceTokenResponse struct + func NewNullableGetInstanceTokenResponse(val *GetInstanceTokenResponse) *NullableGetInstanceTokenResponse + func (v *NullableGetInstanceTokenResponse) Set(val *GetInstanceTokenResponse) + func (v *NullableGetInstanceTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetInstanceTokenResponse) Unset() + func (v NullableGetInstanceTokenResponse) Get() *GetInstanceTokenResponse + func (v NullableGetInstanceTokenResponse) IsSet() bool + func (v NullableGetInstanceTokenResponse) MarshalJSON() ([]byte, error) + type NullableInstance struct + func NewNullableInstance(val *Instance) *NullableInstance + func (v *NullableInstance) Set(val *Instance) + func (v *NullableInstance) UnmarshalJSON(src []byte) error + func (v *NullableInstance) Unset() + func (v NullableInstance) Get() *Instance + func (v NullableInstance) IsSet() bool + func (v NullableInstance) MarshalJSON() ([]byte, error) + type NullableInstanceState struct + func NewNullableInstanceState(val *InstanceState) *NullableInstanceState + func (v *NullableInstanceState) Set(val *InstanceState) + func (v *NullableInstanceState) UnmarshalJSON(src []byte) error + func (v *NullableInstanceState) Unset() + func (v NullableInstanceState) Get() *InstanceState + func (v NullableInstanceState) IsSet() bool + func (v NullableInstanceState) 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 NullableListInstanceTokensResponse struct + func NewNullableListInstanceTokensResponse(val *ListInstanceTokensResponse) *NullableListInstanceTokensResponse + func (v *NullableListInstanceTokensResponse) Set(val *ListInstanceTokensResponse) + func (v *NullableListInstanceTokensResponse) UnmarshalJSON(src []byte) error + func (v *NullableListInstanceTokensResponse) Unset() + func (v NullableListInstanceTokensResponse) Get() *ListInstanceTokensResponse + func (v NullableListInstanceTokensResponse) IsSet() bool + func (v NullableListInstanceTokensResponse) MarshalJSON() ([]byte, error) + type NullableListInstancesResponse struct + func NewNullableListInstancesResponse(val *ListInstancesResponse) *NullableListInstancesResponse + func (v *NullableListInstancesResponse) Set(val *ListInstancesResponse) + func (v *NullableListInstancesResponse) UnmarshalJSON(src []byte) error + func (v *NullableListInstancesResponse) Unset() + func (v NullableListInstancesResponse) Get() *ListInstancesResponse + func (v NullableListInstancesResponse) IsSet() bool + func (v NullableListInstancesResponse) MarshalJSON() ([]byte, error) + type NullablePartialUpdateInstancePayload struct + func NewNullablePartialUpdateInstancePayload(val *PartialUpdateInstancePayload) *NullablePartialUpdateInstancePayload + func (v *NullablePartialUpdateInstancePayload) Set(val *PartialUpdateInstancePayload) + func (v *NullablePartialUpdateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateInstancePayload) Unset() + func (v NullablePartialUpdateInstancePayload) Get() *PartialUpdateInstancePayload + func (v NullablePartialUpdateInstancePayload) IsSet() bool + func (v NullablePartialUpdateInstancePayload) MarshalJSON() ([]byte, error) + type NullablePartialUpdateInstanceResponse struct + func NewNullablePartialUpdateInstanceResponse(val *PartialUpdateInstanceResponse) *NullablePartialUpdateInstanceResponse + func (v *NullablePartialUpdateInstanceResponse) Set(val *PartialUpdateInstanceResponse) + func (v *NullablePartialUpdateInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateInstanceResponse) Unset() + func (v NullablePartialUpdateInstanceResponse) Get() *PartialUpdateInstanceResponse + func (v NullablePartialUpdateInstanceResponse) IsSet() bool + func (v NullablePartialUpdateInstanceResponse) MarshalJSON() ([]byte, error) + type NullablePartialUpdateInstanceTokenPayload struct + func NewNullablePartialUpdateInstanceTokenPayload(val *PartialUpdateInstanceTokenPayload) *NullablePartialUpdateInstanceTokenPayload + func (v *NullablePartialUpdateInstanceTokenPayload) Set(val *PartialUpdateInstanceTokenPayload) + func (v *NullablePartialUpdateInstanceTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateInstanceTokenPayload) Unset() + func (v NullablePartialUpdateInstanceTokenPayload) Get() *PartialUpdateInstanceTokenPayload + func (v NullablePartialUpdateInstanceTokenPayload) IsSet() bool + func (v NullablePartialUpdateInstanceTokenPayload) MarshalJSON() ([]byte, error) + type NullablePartialUpdateInstanceTokenResponse struct + func NewNullablePartialUpdateInstanceTokenResponse(val *PartialUpdateInstanceTokenResponse) *NullablePartialUpdateInstanceTokenResponse + func (v *NullablePartialUpdateInstanceTokenResponse) Set(val *PartialUpdateInstanceTokenResponse) + func (v *NullablePartialUpdateInstanceTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateInstanceTokenResponse) Unset() + func (v NullablePartialUpdateInstanceTokenResponse) Get() *PartialUpdateInstanceTokenResponse + func (v NullablePartialUpdateInstanceTokenResponse) IsSet() bool + func (v NullablePartialUpdateInstanceTokenResponse) 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 NullableToken struct + func NewNullableToken(val *Token) *NullableToken + func (v *NullableToken) Set(val *Token) + func (v *NullableToken) UnmarshalJSON(src []byte) error + func (v *NullableToken) Unset() + func (v NullableToken) Get() *Token + func (v NullableToken) IsSet() bool + func (v NullableToken) MarshalJSON() ([]byte, error) + type NullableTokenMetadata struct + func NewNullableTokenMetadata(val *TokenMetadata) *NullableTokenMetadata + func (v *NullableTokenMetadata) Set(val *TokenMetadata) + func (v *NullableTokenMetadata) UnmarshalJSON(src []byte) error + func (v *NullableTokenMetadata) Unset() + func (v NullableTokenMetadata) Get() *TokenMetadata + func (v NullableTokenMetadata) IsSet() bool + func (v NullableTokenMetadata) MarshalJSON() ([]byte, error) + type NullableTokenState struct + func NewNullableTokenState(val *TokenState) *NullableTokenState + func (v *NullableTokenState) Set(val *TokenState) + func (v *NullableTokenState) UnmarshalJSON(src []byte) error + func (v *NullableTokenState) Unset() + func (v NullableTokenState) Get() *TokenState + func (v NullableTokenState) IsSet() bool + func (v NullableTokenState) MarshalJSON() ([]byte, error) + type PartialUpdateInstancePayload struct + AdditionalProperties map[string]interface{} + DeletedExperimentRetention *string + Description *string + Labels *map[string]string + Name *string + func NewPartialUpdateInstancePayload() *PartialUpdateInstancePayload + func NewPartialUpdateInstancePayloadWithDefaults() *PartialUpdateInstancePayload + func (o *PartialUpdateInstancePayload) GetDeletedExperimentRetention() string + func (o *PartialUpdateInstancePayload) GetDeletedExperimentRetentionOk() (*string, bool) + func (o *PartialUpdateInstancePayload) GetDescription() string + func (o *PartialUpdateInstancePayload) GetDescriptionOk() (*string, bool) + func (o *PartialUpdateInstancePayload) GetLabels() map[string]string + func (o *PartialUpdateInstancePayload) GetLabelsOk() (*map[string]string, bool) + func (o *PartialUpdateInstancePayload) GetName() string + func (o *PartialUpdateInstancePayload) GetNameOk() (*string, bool) + func (o *PartialUpdateInstancePayload) HasDeletedExperimentRetention() bool + func (o *PartialUpdateInstancePayload) HasDescription() bool + func (o *PartialUpdateInstancePayload) HasLabels() bool + func (o *PartialUpdateInstancePayload) HasName() bool + func (o *PartialUpdateInstancePayload) SetDeletedExperimentRetention(v string) + func (o *PartialUpdateInstancePayload) SetDescription(v string) + func (o *PartialUpdateInstancePayload) SetLabels(v map[string]string) + func (o *PartialUpdateInstancePayload) SetName(v string) + func (o *PartialUpdateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateInstancePayload) ToMap() (map[string]interface{}, error) + type PartialUpdateInstanceResponse struct + AdditionalProperties map[string]interface{} + Instance Instance + Message *string + func NewPartialUpdateInstanceResponse(instance Instance) *PartialUpdateInstanceResponse + func NewPartialUpdateInstanceResponseWithDefaults() *PartialUpdateInstanceResponse + func (o *PartialUpdateInstanceResponse) GetInstance() Instance + func (o *PartialUpdateInstanceResponse) GetInstanceOk() (*Instance, bool) + func (o *PartialUpdateInstanceResponse) GetMessage() string + func (o *PartialUpdateInstanceResponse) GetMessageOk() (*string, bool) + func (o *PartialUpdateInstanceResponse) HasMessage() bool + func (o *PartialUpdateInstanceResponse) SetInstance(v Instance) + func (o *PartialUpdateInstanceResponse) SetMessage(v string) + func (o *PartialUpdateInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateInstanceResponse) MarshalJSON() ([]byte, error) + func (o PartialUpdateInstanceResponse) ToMap() (map[string]interface{}, error) + type PartialUpdateInstanceTokenPayload struct + AdditionalProperties map[string]interface{} + Description *string + Labels *map[string]string + Name *string + func NewPartialUpdateInstanceTokenPayload() *PartialUpdateInstanceTokenPayload + func NewPartialUpdateInstanceTokenPayloadWithDefaults() *PartialUpdateInstanceTokenPayload + func (o *PartialUpdateInstanceTokenPayload) GetDescription() string + func (o *PartialUpdateInstanceTokenPayload) GetDescriptionOk() (*string, bool) + func (o *PartialUpdateInstanceTokenPayload) GetLabels() map[string]string + func (o *PartialUpdateInstanceTokenPayload) GetLabelsOk() (*map[string]string, bool) + func (o *PartialUpdateInstanceTokenPayload) GetName() string + func (o *PartialUpdateInstanceTokenPayload) GetNameOk() (*string, bool) + func (o *PartialUpdateInstanceTokenPayload) HasDescription() bool + func (o *PartialUpdateInstanceTokenPayload) HasLabels() bool + func (o *PartialUpdateInstanceTokenPayload) HasName() bool + func (o *PartialUpdateInstanceTokenPayload) SetDescription(v string) + func (o *PartialUpdateInstanceTokenPayload) SetLabels(v map[string]string) + func (o *PartialUpdateInstanceTokenPayload) SetName(v string) + func (o *PartialUpdateInstanceTokenPayload) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateInstanceTokenPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateInstanceTokenPayload) ToMap() (map[string]interface{}, error) + type PartialUpdateInstanceTokenResponse struct + AdditionalProperties map[string]interface{} + Message *string + Token TokenMetadata + func NewPartialUpdateInstanceTokenResponse(token TokenMetadata) *PartialUpdateInstanceTokenResponse + func NewPartialUpdateInstanceTokenResponseWithDefaults() *PartialUpdateInstanceTokenResponse + func (o *PartialUpdateInstanceTokenResponse) GetMessage() string + func (o *PartialUpdateInstanceTokenResponse) GetMessageOk() (*string, bool) + func (o *PartialUpdateInstanceTokenResponse) GetToken() TokenMetadata + func (o *PartialUpdateInstanceTokenResponse) GetTokenOk() (*TokenMetadata, bool) + func (o *PartialUpdateInstanceTokenResponse) HasMessage() bool + func (o *PartialUpdateInstanceTokenResponse) SetMessage(v string) + func (o *PartialUpdateInstanceTokenResponse) SetToken(v TokenMetadata) + func (o *PartialUpdateInstanceTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateInstanceTokenResponse) MarshalJSON() ([]byte, error) + func (o PartialUpdateInstanceTokenResponse) ToMap() (map[string]interface{}, error) + type Token struct + AdditionalProperties map[string]interface{} + Content string + Description *string + Id string + Labels *map[string]string + Name string + Region string + State TokenState + ValidUntil time.Time + func NewToken(content string, id string, name string, region string, state TokenState, ...) *Token + func NewTokenWithDefaults() *Token + func (o *Token) GetContent() string + func (o *Token) GetContentOk() (*string, bool) + func (o *Token) GetDescription() string + func (o *Token) GetDescriptionOk() (*string, bool) + func (o *Token) GetId() string + func (o *Token) GetIdOk() (*string, bool) + func (o *Token) GetLabels() map[string]string + func (o *Token) GetLabelsOk() (*map[string]string, bool) + func (o *Token) GetName() string + func (o *Token) GetNameOk() (*string, bool) + func (o *Token) GetRegion() string + func (o *Token) GetRegionOk() (*string, bool) + func (o *Token) GetState() TokenState + func (o *Token) GetStateOk() (*TokenState, bool) + func (o *Token) GetValidUntil() time.Time + func (o *Token) GetValidUntilOk() (*time.Time, bool) + func (o *Token) HasDescription() bool + func (o *Token) HasLabels() bool + func (o *Token) SetContent(v string) + func (o *Token) SetDescription(v string) + func (o *Token) SetId(v string) + func (o *Token) SetLabels(v map[string]string) + func (o *Token) SetName(v string) + func (o *Token) SetRegion(v string) + func (o *Token) SetState(v TokenState) + func (o *Token) SetValidUntil(v time.Time) + func (o *Token) UnmarshalJSON(data []byte) (err error) + func (o Token) MarshalJSON() ([]byte, error) + func (o Token) ToMap() (map[string]interface{}, error) + type TokenMetadata struct + AdditionalProperties map[string]interface{} + Description *string + Id string + Labels *map[string]string + Name string + Region string + State TokenState + ValidUntil time.Time + func NewTokenMetadata(id string, name string, region string, state TokenState, validUntil time.Time) *TokenMetadata + func NewTokenMetadataWithDefaults() *TokenMetadata + func (o *TokenMetadata) GetDescription() string + func (o *TokenMetadata) GetDescriptionOk() (*string, bool) + func (o *TokenMetadata) GetId() string + func (o *TokenMetadata) GetIdOk() (*string, bool) + func (o *TokenMetadata) GetLabels() map[string]string + func (o *TokenMetadata) GetLabelsOk() (*map[string]string, bool) + func (o *TokenMetadata) GetName() string + func (o *TokenMetadata) GetNameOk() (*string, bool) + func (o *TokenMetadata) GetRegion() string + func (o *TokenMetadata) GetRegionOk() (*string, bool) + func (o *TokenMetadata) GetState() TokenState + func (o *TokenMetadata) GetStateOk() (*TokenState, bool) + func (o *TokenMetadata) GetValidUntil() time.Time + func (o *TokenMetadata) GetValidUntilOk() (*time.Time, bool) + func (o *TokenMetadata) HasDescription() bool + func (o *TokenMetadata) HasLabels() bool + func (o *TokenMetadata) SetDescription(v string) + func (o *TokenMetadata) SetId(v string) + func (o *TokenMetadata) SetLabels(v map[string]string) + func (o *TokenMetadata) SetName(v string) + func (o *TokenMetadata) SetRegion(v string) + func (o *TokenMetadata) SetState(v TokenState) + func (o *TokenMetadata) SetValidUntil(v time.Time) + func (o *TokenMetadata) UnmarshalJSON(data []byte) (err error) + func (o TokenMetadata) MarshalJSON() ([]byte, error) + func (o TokenMetadata) ToMap() (map[string]interface{}, error) + type TokenState string + const TOKENSTATE_ACTIVE + const TOKENSTATE_CREATING + const TOKENSTATE_DELETING + const TOKENSTATE_INACTIVE + const TOKENSTATE_UNKNOWN_DEFAULT_OPEN_API + func NewTokenStateFromValue(v string) (*TokenState, error) + func (v *TokenState) UnmarshalJSON(src []byte) error + func (v TokenState) IsValid() bool + func (v TokenState) Ptr() *TokenState