Versions in this module Expand all Collapse all v1 v1.5.0 Mar 5, 2026 Changes in this version + var AllowedTypeEnumValues = []Type + 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 ACL struct + Items []string + func NewACL() *ACL + func NewACLWithDefaults() *ACL + func (o *ACL) GetItems() []string + func (o *ACL) GetItemsOk() ([]string, bool) + func (o *ACL) HasItems() bool + func (o *ACL) SetItems(v []string) + func (o ACL) MarshalJSON() ([]byte, error) + func (o ACL) ToMap() (map[string]interface{}, error) + 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 ApiCreateDatabaseRequest struct + ApiService DefaultAPI + func (r ApiCreateDatabaseRequest) CreateDatabasePayload(createDatabasePayload CreateDatabasePayload) ApiCreateDatabaseRequest + func (r ApiCreateDatabaseRequest) Execute() (*CreateDatabaseResponse, error) + type ApiCreateInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest + func (r ApiCreateInstanceRequest) Execute() (*CreateInstanceResponse, error) + type ApiCreateUserRequest struct + ApiService DefaultAPI + func (r ApiCreateUserRequest) CreateUserPayload(createUserPayload CreateUserPayload) ApiCreateUserRequest + func (r ApiCreateUserRequest) Execute() (*CreateUserResponse, error) + type ApiDeleteDatabaseRequest struct + ApiService DefaultAPI + func (r ApiDeleteDatabaseRequest) Execute() error + type ApiDeleteInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceRequest) Execute() error + type ApiDeleteUserRequest struct + ApiService DefaultAPI + func (r ApiDeleteUserRequest) Execute() error + type ApiGetBackupRequest struct + ApiService DefaultAPI + func (r ApiGetBackupRequest) Execute() (*GetBackupResponse, error) + type ApiGetDatabaseRequest struct + ApiService DefaultAPI + func (r ApiGetDatabaseRequest) Execute() (*GetDatabaseResponse, error) + type ApiGetInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceRequest) Execute() (*GetInstanceResponse, error) + type ApiGetUserRequest struct + ApiService DefaultAPI + func (r ApiGetUserRequest) Execute() (*GetUserResponse, error) + type ApiListBackupsRequest struct + ApiService DefaultAPI + func (r ApiListBackupsRequest) Execute() (*ListBackupsResponse, error) + type ApiListCollationsRequest struct + ApiService DefaultAPI + func (r ApiListCollationsRequest) Execute() (*ListCollationsResponse, error) + type ApiListCompatibilityRequest struct + ApiService DefaultAPI + func (r ApiListCompatibilityRequest) Execute() (*ListCompatibilityResponse, error) + type ApiListDatabasesRequest struct + ApiService DefaultAPI + func (r ApiListDatabasesRequest) Execute() (*ListDatabasesResponse, error) + type ApiListFlavorsRequest struct + ApiService DefaultAPI + func (r ApiListFlavorsRequest) Execute() (*ListFlavorsResponse, error) + type ApiListInstancesRequest struct + ApiService DefaultAPI + func (r ApiListInstancesRequest) Execute() (*ListInstancesResponse, error) + type ApiListMetricsRequest struct + ApiService DefaultAPI + func (r ApiListMetricsRequest) End(end string) ApiListMetricsRequest + func (r ApiListMetricsRequest) Execute() (*ListMetricsResponse, error) + func (r ApiListMetricsRequest) Granularity(granularity string) ApiListMetricsRequest + func (r ApiListMetricsRequest) Period(period string) ApiListMetricsRequest + func (r ApiListMetricsRequest) Start(start string) ApiListMetricsRequest + type ApiListRestoreJobsRequest struct + ApiService DefaultAPI + func (r ApiListRestoreJobsRequest) Execute() (*ListRestoreJobsResponse, error) + type ApiListRolesRequest struct + ApiService DefaultAPI + func (r ApiListRolesRequest) Execute() (*ListRolesResponse, error) + type ApiListStoragesRequest struct + ApiService DefaultAPI + func (r ApiListStoragesRequest) Execute() (*ListStoragesResponse, error) + type ApiListUsersRequest struct + ApiService DefaultAPI + func (r ApiListUsersRequest) Execute() (*ListUsersResponse, error) + type ApiListVersionsRequest struct + ApiService DefaultAPI + func (r ApiListVersionsRequest) Execute() (*ListVersionsResponse, error) + func (r ApiListVersionsRequest) InstanceId(instanceId string) ApiListVersionsRequest + type ApiPartialUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateInstanceRequest) Execute() (*UpdateInstanceResponse, error) + func (r ApiPartialUpdateInstanceRequest) PartialUpdateInstancePayload(partialUpdateInstancePayload PartialUpdateInstancePayload) ApiPartialUpdateInstanceRequest + type ApiResetUserRequest struct + ApiService DefaultAPI + func (r ApiResetUserRequest) Execute() (*ResetUserResponse, error) + type ApiTriggerDatabaseBackupRequest struct + ApiService DefaultAPI + func (r ApiTriggerDatabaseBackupRequest) Execute() error + type ApiTriggerDatabaseRestoreRequest struct + ApiService DefaultAPI + func (r ApiTriggerDatabaseRestoreRequest) Execute() error + func (r ApiTriggerDatabaseRestoreRequest) TriggerDatabaseRestorePayload(triggerDatabaseRestorePayload TriggerDatabaseRestorePayload) ApiTriggerDatabaseRestoreRequest + type ApiUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiUpdateInstanceRequest) Execute() (*UpdateInstanceResponse, error) + func (r ApiUpdateInstanceRequest) UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest + type Backup struct + EndTime *string + Error *string + Id *string + Labels []string + Name *string + Options *map[string]string + Size *int32 + StartTime *string + func NewBackup() *Backup + func NewBackupWithDefaults() *Backup + func (o *Backup) GetEndTime() string + func (o *Backup) GetEndTimeOk() (*string, bool) + func (o *Backup) GetError() string + func (o *Backup) GetErrorOk() (*string, bool) + func (o *Backup) GetId() string + func (o *Backup) GetIdOk() (*string, bool) + func (o *Backup) GetLabels() []string + func (o *Backup) GetLabelsOk() ([]string, bool) + func (o *Backup) GetName() string + func (o *Backup) GetNameOk() (*string, bool) + func (o *Backup) GetOptions() map[string]string + func (o *Backup) GetOptionsOk() (*map[string]string, bool) + func (o *Backup) GetSize() int32 + func (o *Backup) GetSizeOk() (*int32, bool) + func (o *Backup) GetStartTime() string + func (o *Backup) GetStartTimeOk() (*string, bool) + func (o *Backup) HasEndTime() bool + func (o *Backup) HasError() bool + func (o *Backup) HasId() bool + func (o *Backup) HasLabels() bool + func (o *Backup) HasName() bool + func (o *Backup) HasOptions() bool + func (o *Backup) HasSize() bool + func (o *Backup) HasStartTime() bool + func (o *Backup) SetEndTime(v string) + func (o *Backup) SetError(v string) + func (o *Backup) SetId(v string) + func (o *Backup) SetLabels(v []string) + func (o *Backup) SetName(v string) + func (o *Backup) SetOptions(v map[string]string) + func (o *Backup) SetSize(v int32) + func (o *Backup) SetStartTime(v string) + func (o Backup) MarshalJSON() ([]byte, error) + func (o Backup) ToMap() (map[string]interface{}, error) + type BackupListBackupsResponseGrouped struct + Backups []Backup + Name *string + func NewBackupListBackupsResponseGrouped() *BackupListBackupsResponseGrouped + func NewBackupListBackupsResponseGroupedWithDefaults() *BackupListBackupsResponseGrouped + func (o *BackupListBackupsResponseGrouped) GetBackups() []Backup + func (o *BackupListBackupsResponseGrouped) GetBackupsOk() ([]Backup, bool) + func (o *BackupListBackupsResponseGrouped) GetName() string + func (o *BackupListBackupsResponseGrouped) GetNameOk() (*string, bool) + func (o *BackupListBackupsResponseGrouped) HasBackups() bool + func (o *BackupListBackupsResponseGrouped) HasName() bool + func (o *BackupListBackupsResponseGrouped) SetBackups(v []Backup) + func (o *BackupListBackupsResponseGrouped) SetName(v string) + func (o BackupListBackupsResponseGrouped) MarshalJSON() ([]byte, error) + func (o BackupListBackupsResponseGrouped) ToMap() (map[string]interface{}, error) + type CreateDatabasePayload struct + Name string + Options DatabaseDocumentationCreateDatabaseRequestOptions + func NewCreateDatabasePayload(name string, options DatabaseDocumentationCreateDatabaseRequestOptions) *CreateDatabasePayload + func NewCreateDatabasePayloadWithDefaults() *CreateDatabasePayload + func (o *CreateDatabasePayload) GetName() string + func (o *CreateDatabasePayload) GetNameOk() (*string, bool) + func (o *CreateDatabasePayload) GetOptions() DatabaseDocumentationCreateDatabaseRequestOptions + func (o *CreateDatabasePayload) GetOptionsOk() (*DatabaseDocumentationCreateDatabaseRequestOptions, bool) + func (o *CreateDatabasePayload) SetName(v string) + func (o *CreateDatabasePayload) SetOptions(v DatabaseDocumentationCreateDatabaseRequestOptions) + func (o *CreateDatabasePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateDatabasePayload) MarshalJSON() ([]byte, error) + func (o CreateDatabasePayload) ToMap() (map[string]interface{}, error) + type CreateDatabaseResponse struct + Id *string + func NewCreateDatabaseResponse() *CreateDatabaseResponse + func NewCreateDatabaseResponseWithDefaults() *CreateDatabaseResponse + func (o *CreateDatabaseResponse) GetId() string + func (o *CreateDatabaseResponse) GetIdOk() (*string, bool) + func (o *CreateDatabaseResponse) HasId() bool + func (o *CreateDatabaseResponse) SetId(v string) + func (o CreateDatabaseResponse) MarshalJSON() ([]byte, error) + func (o CreateDatabaseResponse) ToMap() (map[string]interface{}, error) + type CreateInstancePayload struct + Acl *InstanceDocumentationACL + BackupSchedule *string + FlavorId string + Labels map[string]interface{} + Name string + Options *InstanceDocumentationOptions + Storage *InstanceDocumentationStorage + Version *string + func NewCreateInstancePayload(flavorId string, name string) *CreateInstancePayload + func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload + func (o *CreateInstancePayload) GetAcl() InstanceDocumentationACL + func (o *CreateInstancePayload) GetAclOk() (*InstanceDocumentationACL, bool) + func (o *CreateInstancePayload) GetBackupSchedule() string + func (o *CreateInstancePayload) GetBackupScheduleOk() (*string, bool) + func (o *CreateInstancePayload) GetFlavorId() string + func (o *CreateInstancePayload) GetFlavorIdOk() (*string, bool) + func (o *CreateInstancePayload) GetLabels() map[string]interface{} + func (o *CreateInstancePayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateInstancePayload) GetName() string + func (o *CreateInstancePayload) GetNameOk() (*string, bool) + func (o *CreateInstancePayload) GetOptions() InstanceDocumentationOptions + func (o *CreateInstancePayload) GetOptionsOk() (*InstanceDocumentationOptions, bool) + func (o *CreateInstancePayload) GetStorage() InstanceDocumentationStorage + func (o *CreateInstancePayload) GetStorageOk() (*InstanceDocumentationStorage, bool) + func (o *CreateInstancePayload) GetVersion() string + func (o *CreateInstancePayload) GetVersionOk() (*string, bool) + func (o *CreateInstancePayload) HasAcl() bool + func (o *CreateInstancePayload) HasBackupSchedule() bool + func (o *CreateInstancePayload) HasLabels() bool + func (o *CreateInstancePayload) HasOptions() bool + func (o *CreateInstancePayload) HasStorage() bool + func (o *CreateInstancePayload) HasVersion() bool + func (o *CreateInstancePayload) SetAcl(v InstanceDocumentationACL) + func (o *CreateInstancePayload) SetBackupSchedule(v string) + func (o *CreateInstancePayload) SetFlavorId(v string) + func (o *CreateInstancePayload) SetLabels(v map[string]interface{}) + func (o *CreateInstancePayload) SetName(v string) + func (o *CreateInstancePayload) SetOptions(v InstanceDocumentationOptions) + func (o *CreateInstancePayload) SetStorage(v InstanceDocumentationStorage) + func (o *CreateInstancePayload) SetVersion(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 + Id *string + func NewCreateInstanceResponse() *CreateInstanceResponse + func NewCreateInstanceResponseWithDefaults() *CreateInstanceResponse + func (o *CreateInstanceResponse) GetId() string + func (o *CreateInstanceResponse) GetIdOk() (*string, bool) + func (o *CreateInstanceResponse) HasId() bool + func (o *CreateInstanceResponse) SetId(v string) + func (o CreateInstanceResponse) MarshalJSON() ([]byte, error) + func (o CreateInstanceResponse) ToMap() (map[string]interface{}, error) + type CreateUserPayload struct + DefaultDatabase *string + Roles []string + Username string + func NewCreateUserPayload(roles []string, username string) *CreateUserPayload + func NewCreateUserPayloadWithDefaults() *CreateUserPayload + func (o *CreateUserPayload) GetDefaultDatabase() string + func (o *CreateUserPayload) GetDefaultDatabaseOk() (*string, bool) + func (o *CreateUserPayload) GetRoles() []string + func (o *CreateUserPayload) GetRolesOk() ([]string, bool) + func (o *CreateUserPayload) GetUsername() string + func (o *CreateUserPayload) GetUsernameOk() (*string, bool) + func (o *CreateUserPayload) HasDefaultDatabase() bool + func (o *CreateUserPayload) SetDefaultDatabase(v string) + func (o *CreateUserPayload) SetRoles(v []string) + func (o *CreateUserPayload) SetUsername(v string) + func (o *CreateUserPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateUserPayload) MarshalJSON() ([]byte, error) + func (o CreateUserPayload) ToMap() (map[string]interface{}, error) + type CreateUserResponse struct + Item *SingleUser + func NewCreateUserResponse() *CreateUserResponse + func NewCreateUserResponseWithDefaults() *CreateUserResponse + func (o *CreateUserResponse) GetItem() SingleUser + func (o *CreateUserResponse) GetItemOk() (*SingleUser, bool) + func (o *CreateUserResponse) HasItem() bool + func (o *CreateUserResponse) SetItem(v SingleUser) + func (o CreateUserResponse) MarshalJSON() ([]byte, error) + func (o CreateUserResponse) ToMap() (map[string]interface{}, error) + type DataPoint struct + Timestamp *string + Value *float32 + func NewDataPoint() *DataPoint + func NewDataPointWithDefaults() *DataPoint + func (o *DataPoint) GetTimestamp() string + func (o *DataPoint) GetTimestampOk() (*string, bool) + func (o *DataPoint) GetValue() float32 + func (o *DataPoint) GetValueOk() (*float32, bool) + func (o *DataPoint) HasTimestamp() bool + func (o *DataPoint) HasValue() bool + func (o *DataPoint) SetTimestamp(v string) + func (o *DataPoint) SetValue(v float32) + func (o DataPoint) MarshalJSON() ([]byte, error) + func (o DataPoint) ToMap() (map[string]interface{}, error) + type Database struct + Id *string + Name *string + Options map[string]interface{} + func NewDatabase() *Database + func NewDatabaseWithDefaults() *Database + func (o *Database) GetId() string + func (o *Database) GetIdOk() (*string, bool) + func (o *Database) GetName() string + func (o *Database) GetNameOk() (*string, bool) + func (o *Database) GetOptions() map[string]interface{} + func (o *Database) GetOptionsOk() (map[string]interface{}, bool) + func (o *Database) HasId() bool + func (o *Database) HasName() bool + func (o *Database) HasOptions() bool + func (o *Database) SetId(v string) + func (o *Database) SetName(v string) + func (o *Database) SetOptions(v map[string]interface{}) + func (o Database) MarshalJSON() ([]byte, error) + func (o Database) ToMap() (map[string]interface{}, error) + type DatabaseDocumentationCreateDatabaseRequestOptions struct + Collation *string + CompatibilityLevel *string + Owner string + func NewDatabaseDocumentationCreateDatabaseRequestOptions(owner string) *DatabaseDocumentationCreateDatabaseRequestOptions + func NewDatabaseDocumentationCreateDatabaseRequestOptionsWithDefaults() *DatabaseDocumentationCreateDatabaseRequestOptions + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) GetCollation() string + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) GetCollationOk() (*string, bool) + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) GetCompatibilityLevel() string + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) GetCompatibilityLevelOk() (*string, bool) + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) GetOwner() string + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) GetOwnerOk() (*string, bool) + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) HasCollation() bool + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) HasCompatibilityLevel() bool + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) SetCollation(v string) + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) SetCompatibilityLevel(v string) + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) SetOwner(v string) + func (o *DatabaseDocumentationCreateDatabaseRequestOptions) UnmarshalJSON(data []byte) (err error) + func (o DatabaseDocumentationCreateDatabaseRequestOptions) MarshalJSON() ([]byte, error) + func (o DatabaseDocumentationCreateDatabaseRequestOptions) ToMap() (map[string]interface{}, error) + type DatabaseOptions struct + CollationName *string + CompatibilityLevel *int32 + Owner *string + func NewDatabaseOptions() *DatabaseOptions + func NewDatabaseOptionsWithDefaults() *DatabaseOptions + func (o *DatabaseOptions) GetCollationName() string + func (o *DatabaseOptions) GetCollationNameOk() (*string, bool) + func (o *DatabaseOptions) GetCompatibilityLevel() int32 + func (o *DatabaseOptions) GetCompatibilityLevelOk() (*int32, bool) + func (o *DatabaseOptions) GetOwner() string + func (o *DatabaseOptions) GetOwnerOk() (*string, bool) + func (o *DatabaseOptions) HasCollationName() bool + func (o *DatabaseOptions) HasCompatibilityLevel() bool + func (o *DatabaseOptions) HasOwner() bool + func (o *DatabaseOptions) SetCollationName(v string) + func (o *DatabaseOptions) SetCompatibilityLevel(v int32) + func (o *DatabaseOptions) SetOwner(v string) + func (o DatabaseOptions) MarshalJSON() ([]byte, error) + func (o DatabaseOptions) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateDatabase func(ctx context.Context, projectId string, instanceId string) ApiCreateDatabaseRequest + CreateDatabaseExecute func(r ApiCreateDatabaseRequest) (*CreateDatabaseResponse, error) + CreateInstance func(ctx context.Context, projectId string) ApiCreateInstanceRequest + CreateInstanceExecute func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + CreateUser func(ctx context.Context, projectId string, instanceId string) ApiCreateUserRequest + CreateUserExecute func(r ApiCreateUserRequest) (*CreateUserResponse, error) + DeleteDatabase func(ctx context.Context, projectId string, instanceId string, databaseName string) ApiDeleteDatabaseRequest + DeleteDatabaseExecute func(r ApiDeleteDatabaseRequest) error + DeleteInstance func(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + DeleteInstanceExecute func(r ApiDeleteInstanceRequest) error + DeleteUser func(ctx context.Context, projectId string, instanceId string, userId string) ApiDeleteUserRequest + DeleteUserExecute func(r ApiDeleteUserRequest) error + GetBackup func(ctx context.Context, projectId string, instanceId string, backupId string) ApiGetBackupRequest + GetBackupExecute func(r ApiGetBackupRequest) (*GetBackupResponse, error) + GetDatabase func(ctx context.Context, projectId string, instanceId string, databaseName string) ApiGetDatabaseRequest + GetDatabaseExecute func(r ApiGetDatabaseRequest) (*GetDatabaseResponse, error) + GetInstance func(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + GetInstanceExecute func(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + GetUser func(ctx context.Context, projectId string, instanceId string, userId string) ApiGetUserRequest + GetUserExecute func(r ApiGetUserRequest) (*GetUserResponse, error) + ListBackups func(ctx context.Context, projectId string, instanceId string) ApiListBackupsRequest + ListBackupsExecute func(r ApiListBackupsRequest) (*ListBackupsResponse, error) + ListCollations func(ctx context.Context, projectId string, instanceId string) ApiListCollationsRequest + ListCollationsExecute func(r ApiListCollationsRequest) (*ListCollationsResponse, error) + ListCompatibility func(ctx context.Context, projectId string, instanceId string) ApiListCompatibilityRequest + ListCompatibilityExecute func(r ApiListCompatibilityRequest) (*ListCompatibilityResponse, error) + ListDatabases func(ctx context.Context, projectId string, instanceId string) ApiListDatabasesRequest + ListDatabasesExecute func(r ApiListDatabasesRequest) (*ListDatabasesResponse, error) + ListFlavors func(ctx context.Context, projectId string) ApiListFlavorsRequest + ListFlavorsExecute func(r ApiListFlavorsRequest) (*ListFlavorsResponse, error) + ListInstances func(ctx context.Context, projectId string) ApiListInstancesRequest + ListInstancesExecute func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListMetrics func(ctx context.Context, projectId string, instanceId string, metric string) ApiListMetricsRequest + ListMetricsExecute func(r ApiListMetricsRequest) (*ListMetricsResponse, error) + ListRestoreJobs func(ctx context.Context, projectId string, instanceId string) ApiListRestoreJobsRequest + ListRestoreJobsExecute func(r ApiListRestoreJobsRequest) (*ListRestoreJobsResponse, error) + ListRoles func(ctx context.Context, projectId string, instanceId string) ApiListRolesRequest + ListRolesExecute func(r ApiListRolesRequest) (*ListRolesResponse, error) + ListStorages func(ctx context.Context, projectId string, flavorId string) ApiListStoragesRequest + ListStoragesExecute func(r ApiListStoragesRequest) (*ListStoragesResponse, error) + ListUsers func(ctx context.Context, projectId string, instanceId string) ApiListUsersRequest + ListUsersExecute func(r ApiListUsersRequest) (*ListUsersResponse, error) + ListVersions func(ctx context.Context, projectId string) ApiListVersionsRequest + ListVersionsExecute func(r ApiListVersionsRequest) (*ListVersionsResponse, error) + PartialUpdateInstance func(ctx context.Context, projectId string, instanceId string) ApiPartialUpdateInstanceRequest + PartialUpdateInstanceExecute func(r ApiPartialUpdateInstanceRequest) (*UpdateInstanceResponse, error) + ResetUser func(ctx context.Context, projectId string, instanceId string, userId string) ApiResetUserRequest + ResetUserExecute func(r ApiResetUserRequest) (*ResetUserResponse, error) + TriggerDatabaseBackup func(ctx context.Context, projectId string, instanceId string, databaseName string) ApiTriggerDatabaseBackupRequest + TriggerDatabaseBackupExecute func(r ApiTriggerDatabaseBackupRequest) error + TriggerDatabaseRestore func(ctx context.Context, projectId string, instanceId string, databaseName string) ApiTriggerDatabaseRestoreRequest + TriggerDatabaseRestoreExecute func(r ApiTriggerDatabaseRestoreRequest) error + UpdateInstance func(ctx context.Context, projectId string, instanceId string) ApiUpdateInstanceRequest + UpdateInstanceExecute func(r ApiUpdateInstanceRequest) (*UpdateInstanceResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateDatabase(ctx context.Context, projectId string, instanceId string) ApiCreateDatabaseRequest + func (a *DefaultAPIService) CreateDatabaseExecute(r ApiCreateDatabaseRequest) (*CreateDatabaseResponse, error) + func (a *DefaultAPIService) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a *DefaultAPIService) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a *DefaultAPIService) CreateUser(ctx context.Context, projectId string, instanceId string) ApiCreateUserRequest + func (a *DefaultAPIService) CreateUserExecute(r ApiCreateUserRequest) (*CreateUserResponse, error) + func (a *DefaultAPIService) DeleteDatabase(ctx context.Context, projectId string, instanceId string, databaseName string) ApiDeleteDatabaseRequest + func (a *DefaultAPIService) DeleteDatabaseExecute(r ApiDeleteDatabaseRequest) error + func (a *DefaultAPIService) DeleteInstance(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + func (a *DefaultAPIService) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a *DefaultAPIService) DeleteUser(ctx context.Context, projectId string, instanceId string, userId string) ApiDeleteUserRequest + func (a *DefaultAPIService) DeleteUserExecute(r ApiDeleteUserRequest) error + func (a *DefaultAPIService) GetBackup(ctx context.Context, projectId string, instanceId string, backupId string) ApiGetBackupRequest + func (a *DefaultAPIService) GetBackupExecute(r ApiGetBackupRequest) (*GetBackupResponse, error) + func (a *DefaultAPIService) GetDatabase(ctx context.Context, projectId string, instanceId string, databaseName string) ApiGetDatabaseRequest + func (a *DefaultAPIService) GetDatabaseExecute(r ApiGetDatabaseRequest) (*GetDatabaseResponse, error) + func (a *DefaultAPIService) GetInstance(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + func (a *DefaultAPIService) GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + func (a *DefaultAPIService) GetUser(ctx context.Context, projectId string, instanceId string, userId string) ApiGetUserRequest + func (a *DefaultAPIService) GetUserExecute(r ApiGetUserRequest) (*GetUserResponse, error) + func (a *DefaultAPIService) ListBackups(ctx context.Context, projectId string, instanceId string) ApiListBackupsRequest + func (a *DefaultAPIService) ListBackupsExecute(r ApiListBackupsRequest) (*ListBackupsResponse, error) + func (a *DefaultAPIService) ListCollations(ctx context.Context, projectId string, instanceId string) ApiListCollationsRequest + func (a *DefaultAPIService) ListCollationsExecute(r ApiListCollationsRequest) (*ListCollationsResponse, error) + func (a *DefaultAPIService) ListCompatibility(ctx context.Context, projectId string, instanceId string) ApiListCompatibilityRequest + func (a *DefaultAPIService) ListCompatibilityExecute(r ApiListCompatibilityRequest) (*ListCompatibilityResponse, error) + func (a *DefaultAPIService) ListDatabases(ctx context.Context, projectId string, instanceId string) ApiListDatabasesRequest + func (a *DefaultAPIService) ListDatabasesExecute(r ApiListDatabasesRequest) (*ListDatabasesResponse, error) + func (a *DefaultAPIService) ListFlavors(ctx context.Context, projectId string) ApiListFlavorsRequest + func (a *DefaultAPIService) ListFlavorsExecute(r ApiListFlavorsRequest) (*ListFlavorsResponse, error) + func (a *DefaultAPIService) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a *DefaultAPIService) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a *DefaultAPIService) ListMetrics(ctx context.Context, projectId string, instanceId string, metric string) ApiListMetricsRequest + func (a *DefaultAPIService) ListMetricsExecute(r ApiListMetricsRequest) (*ListMetricsResponse, error) + func (a *DefaultAPIService) ListRestoreJobs(ctx context.Context, projectId string, instanceId string) ApiListRestoreJobsRequest + func (a *DefaultAPIService) ListRestoreJobsExecute(r ApiListRestoreJobsRequest) (*ListRestoreJobsResponse, error) + func (a *DefaultAPIService) ListRoles(ctx context.Context, projectId string, instanceId string) ApiListRolesRequest + func (a *DefaultAPIService) ListRolesExecute(r ApiListRolesRequest) (*ListRolesResponse, error) + func (a *DefaultAPIService) ListStorages(ctx context.Context, projectId string, flavorId string) ApiListStoragesRequest + func (a *DefaultAPIService) ListStoragesExecute(r ApiListStoragesRequest) (*ListStoragesResponse, error) + func (a *DefaultAPIService) ListUsers(ctx context.Context, projectId string, instanceId string) ApiListUsersRequest + func (a *DefaultAPIService) ListUsersExecute(r ApiListUsersRequest) (*ListUsersResponse, error) + func (a *DefaultAPIService) ListVersions(ctx context.Context, projectId string) ApiListVersionsRequest + func (a *DefaultAPIService) ListVersionsExecute(r ApiListVersionsRequest) (*ListVersionsResponse, error) + func (a *DefaultAPIService) PartialUpdateInstance(ctx context.Context, projectId string, instanceId string) ApiPartialUpdateInstanceRequest + func (a *DefaultAPIService) PartialUpdateInstanceExecute(r ApiPartialUpdateInstanceRequest) (*UpdateInstanceResponse, error) + func (a *DefaultAPIService) ResetUser(ctx context.Context, projectId string, instanceId string, userId string) ApiResetUserRequest + func (a *DefaultAPIService) ResetUserExecute(r ApiResetUserRequest) (*ResetUserResponse, error) + func (a *DefaultAPIService) TriggerDatabaseBackup(ctx context.Context, projectId string, instanceId string, databaseName string) ApiTriggerDatabaseBackupRequest + func (a *DefaultAPIService) TriggerDatabaseBackupExecute(r ApiTriggerDatabaseBackupRequest) error + func (a *DefaultAPIService) TriggerDatabaseRestore(ctx context.Context, projectId string, instanceId string, databaseName string) ApiTriggerDatabaseRestoreRequest + func (a *DefaultAPIService) TriggerDatabaseRestoreExecute(r ApiTriggerDatabaseRestoreRequest) error + func (a *DefaultAPIService) UpdateInstance(ctx context.Context, projectId string, instanceId string) ApiUpdateInstanceRequest + func (a *DefaultAPIService) UpdateInstanceExecute(r ApiUpdateInstanceRequest) (*UpdateInstanceResponse, error) + type DefaultAPIServiceMock struct + CreateDatabaseExecuteMock *func(r ApiCreateDatabaseRequest) (*CreateDatabaseResponse, error) + CreateInstanceExecuteMock *func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + CreateUserExecuteMock *func(r ApiCreateUserRequest) (*CreateUserResponse, error) + DeleteDatabaseExecuteMock *func(r ApiDeleteDatabaseRequest) error + DeleteInstanceExecuteMock *func(r ApiDeleteInstanceRequest) error + DeleteUserExecuteMock *func(r ApiDeleteUserRequest) error + GetBackupExecuteMock *func(r ApiGetBackupRequest) (*GetBackupResponse, error) + GetDatabaseExecuteMock *func(r ApiGetDatabaseRequest) (*GetDatabaseResponse, error) + GetInstanceExecuteMock *func(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + GetUserExecuteMock *func(r ApiGetUserRequest) (*GetUserResponse, error) + ListBackupsExecuteMock *func(r ApiListBackupsRequest) (*ListBackupsResponse, error) + ListCollationsExecuteMock *func(r ApiListCollationsRequest) (*ListCollationsResponse, error) + ListCompatibilityExecuteMock *func(r ApiListCompatibilityRequest) (*ListCompatibilityResponse, error) + ListDatabasesExecuteMock *func(r ApiListDatabasesRequest) (*ListDatabasesResponse, error) + ListFlavorsExecuteMock *func(r ApiListFlavorsRequest) (*ListFlavorsResponse, error) + ListInstancesExecuteMock *func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListMetricsExecuteMock *func(r ApiListMetricsRequest) (*ListMetricsResponse, error) + ListRestoreJobsExecuteMock *func(r ApiListRestoreJobsRequest) (*ListRestoreJobsResponse, error) + ListRolesExecuteMock *func(r ApiListRolesRequest) (*ListRolesResponse, error) + ListStoragesExecuteMock *func(r ApiListStoragesRequest) (*ListStoragesResponse, error) + ListUsersExecuteMock *func(r ApiListUsersRequest) (*ListUsersResponse, error) + ListVersionsExecuteMock *func(r ApiListVersionsRequest) (*ListVersionsResponse, error) + PartialUpdateInstanceExecuteMock *func(r ApiPartialUpdateInstanceRequest) (*UpdateInstanceResponse, error) + ResetUserExecuteMock *func(r ApiResetUserRequest) (*ResetUserResponse, error) + TriggerDatabaseBackupExecuteMock *func(r ApiTriggerDatabaseBackupRequest) error + TriggerDatabaseRestoreExecuteMock *func(r ApiTriggerDatabaseRestoreRequest) error + UpdateInstanceExecuteMock *func(r ApiUpdateInstanceRequest) (*UpdateInstanceResponse, error) + func (a DefaultAPIServiceMock) CreateDatabase(ctx context.Context, projectId string, instanceId string) ApiCreateDatabaseRequest + func (a DefaultAPIServiceMock) CreateDatabaseExecute(r ApiCreateDatabaseRequest) (*CreateDatabaseResponse, error) + func (a DefaultAPIServiceMock) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a DefaultAPIServiceMock) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a DefaultAPIServiceMock) CreateUser(ctx context.Context, projectId string, instanceId string) ApiCreateUserRequest + func (a DefaultAPIServiceMock) CreateUserExecute(r ApiCreateUserRequest) (*CreateUserResponse, error) + func (a DefaultAPIServiceMock) DeleteDatabase(ctx context.Context, projectId string, instanceId string, databaseName string) ApiDeleteDatabaseRequest + func (a DefaultAPIServiceMock) DeleteDatabaseExecute(r ApiDeleteDatabaseRequest) error + func (a DefaultAPIServiceMock) DeleteInstance(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + func (a DefaultAPIServiceMock) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a DefaultAPIServiceMock) DeleteUser(ctx context.Context, projectId string, instanceId string, userId string) ApiDeleteUserRequest + func (a DefaultAPIServiceMock) DeleteUserExecute(r ApiDeleteUserRequest) error + func (a DefaultAPIServiceMock) GetBackup(ctx context.Context, projectId string, instanceId string, backupId string) ApiGetBackupRequest + func (a DefaultAPIServiceMock) GetBackupExecute(r ApiGetBackupRequest) (*GetBackupResponse, error) + func (a DefaultAPIServiceMock) GetDatabase(ctx context.Context, projectId string, instanceId string, databaseName string) ApiGetDatabaseRequest + func (a DefaultAPIServiceMock) GetDatabaseExecute(r ApiGetDatabaseRequest) (*GetDatabaseResponse, error) + func (a DefaultAPIServiceMock) GetInstance(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + func (a DefaultAPIServiceMock) GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + func (a DefaultAPIServiceMock) GetUser(ctx context.Context, projectId string, instanceId string, userId string) ApiGetUserRequest + func (a DefaultAPIServiceMock) GetUserExecute(r ApiGetUserRequest) (*GetUserResponse, error) + func (a DefaultAPIServiceMock) ListBackups(ctx context.Context, projectId string, instanceId string) ApiListBackupsRequest + func (a DefaultAPIServiceMock) ListBackupsExecute(r ApiListBackupsRequest) (*ListBackupsResponse, error) + func (a DefaultAPIServiceMock) ListCollations(ctx context.Context, projectId string, instanceId string) ApiListCollationsRequest + func (a DefaultAPIServiceMock) ListCollationsExecute(r ApiListCollationsRequest) (*ListCollationsResponse, error) + func (a DefaultAPIServiceMock) ListCompatibility(ctx context.Context, projectId string, instanceId string) ApiListCompatibilityRequest + func (a DefaultAPIServiceMock) ListCompatibilityExecute(r ApiListCompatibilityRequest) (*ListCompatibilityResponse, error) + func (a DefaultAPIServiceMock) ListDatabases(ctx context.Context, projectId string, instanceId string) ApiListDatabasesRequest + func (a DefaultAPIServiceMock) ListDatabasesExecute(r ApiListDatabasesRequest) (*ListDatabasesResponse, error) + func (a DefaultAPIServiceMock) ListFlavors(ctx context.Context, projectId string) ApiListFlavorsRequest + func (a DefaultAPIServiceMock) ListFlavorsExecute(r ApiListFlavorsRequest) (*ListFlavorsResponse, error) + func (a DefaultAPIServiceMock) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a DefaultAPIServiceMock) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a DefaultAPIServiceMock) ListMetrics(ctx context.Context, projectId string, instanceId string, metric string) ApiListMetricsRequest + func (a DefaultAPIServiceMock) ListMetricsExecute(r ApiListMetricsRequest) (*ListMetricsResponse, error) + func (a DefaultAPIServiceMock) ListRestoreJobs(ctx context.Context, projectId string, instanceId string) ApiListRestoreJobsRequest + func (a DefaultAPIServiceMock) ListRestoreJobsExecute(r ApiListRestoreJobsRequest) (*ListRestoreJobsResponse, error) + func (a DefaultAPIServiceMock) ListRoles(ctx context.Context, projectId string, instanceId string) ApiListRolesRequest + func (a DefaultAPIServiceMock) ListRolesExecute(r ApiListRolesRequest) (*ListRolesResponse, error) + func (a DefaultAPIServiceMock) ListStorages(ctx context.Context, projectId string, flavorId string) ApiListStoragesRequest + func (a DefaultAPIServiceMock) ListStoragesExecute(r ApiListStoragesRequest) (*ListStoragesResponse, error) + func (a DefaultAPIServiceMock) ListUsers(ctx context.Context, projectId string, instanceId string) ApiListUsersRequest + func (a DefaultAPIServiceMock) ListUsersExecute(r ApiListUsersRequest) (*ListUsersResponse, error) + func (a DefaultAPIServiceMock) ListVersions(ctx context.Context, projectId string) ApiListVersionsRequest + func (a DefaultAPIServiceMock) ListVersionsExecute(r ApiListVersionsRequest) (*ListVersionsResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateInstance(ctx context.Context, projectId string, instanceId string) ApiPartialUpdateInstanceRequest + func (a DefaultAPIServiceMock) PartialUpdateInstanceExecute(r ApiPartialUpdateInstanceRequest) (*UpdateInstanceResponse, error) + func (a DefaultAPIServiceMock) ResetUser(ctx context.Context, projectId string, instanceId string, userId string) ApiResetUserRequest + func (a DefaultAPIServiceMock) ResetUserExecute(r ApiResetUserRequest) (*ResetUserResponse, error) + func (a DefaultAPIServiceMock) TriggerDatabaseBackup(ctx context.Context, projectId string, instanceId string, databaseName string) ApiTriggerDatabaseBackupRequest + func (a DefaultAPIServiceMock) TriggerDatabaseBackupExecute(r ApiTriggerDatabaseBackupRequest) error + func (a DefaultAPIServiceMock) TriggerDatabaseRestore(ctx context.Context, projectId string, instanceId string, databaseName string) ApiTriggerDatabaseRestoreRequest + func (a DefaultAPIServiceMock) TriggerDatabaseRestoreExecute(r ApiTriggerDatabaseRestoreRequest) error + func (a DefaultAPIServiceMock) UpdateInstance(ctx context.Context, projectId string, instanceId string) ApiUpdateInstanceRequest + func (a DefaultAPIServiceMock) UpdateInstanceExecute(r ApiUpdateInstanceRequest) (*UpdateInstanceResponse, error) + type Flavor struct + Cpu *int32 + Description *string + Id *string + Memory *int32 + func NewFlavor() *Flavor + func NewFlavorWithDefaults() *Flavor + func (o *Flavor) GetCpu() int32 + func (o *Flavor) GetCpuOk() (*int32, bool) + func (o *Flavor) GetDescription() string + func (o *Flavor) GetDescriptionOk() (*string, bool) + func (o *Flavor) GetId() string + func (o *Flavor) GetIdOk() (*string, bool) + func (o *Flavor) GetMemory() int32 + func (o *Flavor) GetMemoryOk() (*int32, bool) + func (o *Flavor) HasCpu() bool + func (o *Flavor) HasDescription() bool + func (o *Flavor) HasId() bool + func (o *Flavor) HasMemory() bool + func (o *Flavor) SetCpu(v int32) + func (o *Flavor) SetDescription(v string) + func (o *Flavor) SetId(v string) + func (o *Flavor) SetMemory(v int32) + func (o Flavor) MarshalJSON() ([]byte, error) + func (o Flavor) ToMap() (map[string]interface{}, error) + type GetBackupResponse struct + EndTime *string + Error *string + Id *string + Labels []string + Name *string + Options *map[string]string + Size *int32 + StartTime *string + func NewGetBackupResponse() *GetBackupResponse + func NewGetBackupResponseWithDefaults() *GetBackupResponse + func (o *GetBackupResponse) GetEndTime() string + func (o *GetBackupResponse) GetEndTimeOk() (*string, bool) + func (o *GetBackupResponse) GetError() string + func (o *GetBackupResponse) GetErrorOk() (*string, bool) + func (o *GetBackupResponse) GetId() string + func (o *GetBackupResponse) GetIdOk() (*string, bool) + func (o *GetBackupResponse) GetLabels() []string + func (o *GetBackupResponse) GetLabelsOk() ([]string, bool) + func (o *GetBackupResponse) GetName() string + func (o *GetBackupResponse) GetNameOk() (*string, bool) + func (o *GetBackupResponse) GetOptions() map[string]string + func (o *GetBackupResponse) GetOptionsOk() (*map[string]string, bool) + func (o *GetBackupResponse) GetSize() int32 + func (o *GetBackupResponse) GetSizeOk() (*int32, bool) + func (o *GetBackupResponse) GetStartTime() string + func (o *GetBackupResponse) GetStartTimeOk() (*string, bool) + func (o *GetBackupResponse) HasEndTime() bool + func (o *GetBackupResponse) HasError() bool + func (o *GetBackupResponse) HasId() bool + func (o *GetBackupResponse) HasLabels() bool + func (o *GetBackupResponse) HasName() bool + func (o *GetBackupResponse) HasOptions() bool + func (o *GetBackupResponse) HasSize() bool + func (o *GetBackupResponse) HasStartTime() bool + func (o *GetBackupResponse) SetEndTime(v string) + func (o *GetBackupResponse) SetError(v string) + func (o *GetBackupResponse) SetId(v string) + func (o *GetBackupResponse) SetLabels(v []string) + func (o *GetBackupResponse) SetName(v string) + func (o *GetBackupResponse) SetOptions(v map[string]string) + func (o *GetBackupResponse) SetSize(v int32) + func (o *GetBackupResponse) SetStartTime(v string) + func (o GetBackupResponse) MarshalJSON() ([]byte, error) + func (o GetBackupResponse) ToMap() (map[string]interface{}, error) + type GetDatabaseResponse struct + Database *SingleDatabase + func NewGetDatabaseResponse() *GetDatabaseResponse + func NewGetDatabaseResponseWithDefaults() *GetDatabaseResponse + func (o *GetDatabaseResponse) GetDatabase() SingleDatabase + func (o *GetDatabaseResponse) GetDatabaseOk() (*SingleDatabase, bool) + func (o *GetDatabaseResponse) HasDatabase() bool + func (o *GetDatabaseResponse) SetDatabase(v SingleDatabase) + func (o GetDatabaseResponse) MarshalJSON() ([]byte, error) + func (o GetDatabaseResponse) ToMap() (map[string]interface{}, error) + type GetInstanceResponse struct + Item *Instance + func NewGetInstanceResponse() *GetInstanceResponse + func NewGetInstanceResponseWithDefaults() *GetInstanceResponse + func (o *GetInstanceResponse) GetItem() Instance + func (o *GetInstanceResponse) GetItemOk() (*Instance, bool) + func (o *GetInstanceResponse) HasItem() bool + func (o *GetInstanceResponse) SetItem(v Instance) + func (o GetInstanceResponse) MarshalJSON() ([]byte, error) + func (o GetInstanceResponse) ToMap() (map[string]interface{}, error) + type GetUserResponse struct + Item *UserResponseUser + func NewGetUserResponse() *GetUserResponse + func NewGetUserResponseWithDefaults() *GetUserResponse + func (o *GetUserResponse) GetItem() UserResponseUser + func (o *GetUserResponse) GetItemOk() (*UserResponseUser, bool) + func (o *GetUserResponse) HasItem() bool + func (o *GetUserResponse) SetItem(v UserResponseUser) + func (o GetUserResponse) MarshalJSON() ([]byte, error) + func (o GetUserResponse) ToMap() (map[string]interface{}, error) + type Host struct + HostMetrics []HostMetric + Id *string + func NewHost() *Host + func NewHostWithDefaults() *Host + func (o *Host) GetHostMetrics() []HostMetric + func (o *Host) GetHostMetricsOk() ([]HostMetric, bool) + func (o *Host) GetId() string + func (o *Host) GetIdOk() (*string, bool) + func (o *Host) HasHostMetrics() bool + func (o *Host) HasId() bool + func (o *Host) SetHostMetrics(v []HostMetric) + func (o *Host) SetId(v string) + func (o Host) MarshalJSON() ([]byte, error) + func (o Host) ToMap() (map[string]interface{}, error) + type HostMetric struct + Datapoints []DataPoint + Name *string + Units *string + func NewHostMetric() *HostMetric + func NewHostMetricWithDefaults() *HostMetric + func (o *HostMetric) GetDatapoints() []DataPoint + func (o *HostMetric) GetDatapointsOk() ([]DataPoint, bool) + func (o *HostMetric) GetName() string + func (o *HostMetric) GetNameOk() (*string, bool) + func (o *HostMetric) GetUnits() string + func (o *HostMetric) GetUnitsOk() (*string, bool) + func (o *HostMetric) HasDatapoints() bool + func (o *HostMetric) HasName() bool + func (o *HostMetric) HasUnits() bool + func (o *HostMetric) SetDatapoints(v []DataPoint) + func (o *HostMetric) SetName(v string) + func (o *HostMetric) SetUnits(v string) + func (o HostMetric) MarshalJSON() ([]byte, error) + func (o HostMetric) ToMap() (map[string]interface{}, error) + type Instance struct + Acl *ACL + BackupSchedule *string + Flavor *Flavor + Id *string + Name *string + Options *map[string]string + Replicas *int32 + Status *string + Storage *Storage + Version *string + func NewInstance() *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetAcl() ACL + func (o *Instance) GetAclOk() (*ACL, bool) + func (o *Instance) GetBackupSchedule() string + func (o *Instance) GetBackupScheduleOk() (*string, bool) + func (o *Instance) GetFlavor() Flavor + func (o *Instance) GetFlavorOk() (*Flavor, bool) + func (o *Instance) GetId() string + func (o *Instance) GetIdOk() (*string, bool) + func (o *Instance) GetName() string + func (o *Instance) GetNameOk() (*string, bool) + func (o *Instance) GetOptions() map[string]string + func (o *Instance) GetOptionsOk() (*map[string]string, bool) + func (o *Instance) GetReplicas() int32 + func (o *Instance) GetReplicasOk() (*int32, bool) + func (o *Instance) GetStatus() string + func (o *Instance) GetStatusOk() (*string, bool) + func (o *Instance) GetStorage() Storage + func (o *Instance) GetStorageOk() (*Storage, bool) + func (o *Instance) GetVersion() string + func (o *Instance) GetVersionOk() (*string, bool) + func (o *Instance) HasAcl() bool + func (o *Instance) HasBackupSchedule() bool + func (o *Instance) HasFlavor() bool + func (o *Instance) HasId() bool + func (o *Instance) HasName() bool + func (o *Instance) HasOptions() bool + func (o *Instance) HasReplicas() bool + func (o *Instance) HasStatus() bool + func (o *Instance) HasStorage() bool + func (o *Instance) HasVersion() bool + func (o *Instance) SetAcl(v ACL) + func (o *Instance) SetBackupSchedule(v string) + func (o *Instance) SetFlavor(v Flavor) + func (o *Instance) SetId(v string) + func (o *Instance) SetName(v string) + func (o *Instance) SetOptions(v map[string]string) + func (o *Instance) SetReplicas(v int32) + func (o *Instance) SetStatus(v string) + func (o *Instance) SetStorage(v Storage) + func (o *Instance) SetVersion(v string) + func (o Instance) MarshalJSON() ([]byte, error) + func (o Instance) ToMap() (map[string]interface{}, error) + type InstanceDocumentationACL struct + Items []string + func NewInstanceDocumentationACL() *InstanceDocumentationACL + func NewInstanceDocumentationACLWithDefaults() *InstanceDocumentationACL + func (o *InstanceDocumentationACL) GetItems() []string + func (o *InstanceDocumentationACL) GetItemsOk() ([]string, bool) + func (o *InstanceDocumentationACL) HasItems() bool + func (o *InstanceDocumentationACL) SetItems(v []string) + func (o InstanceDocumentationACL) MarshalJSON() ([]byte, error) + func (o InstanceDocumentationACL) ToMap() (map[string]interface{}, error) + type InstanceDocumentationOptions struct + Edition *string + RetentionDays *string + func NewInstanceDocumentationOptions() *InstanceDocumentationOptions + func NewInstanceDocumentationOptionsWithDefaults() *InstanceDocumentationOptions + func (o *InstanceDocumentationOptions) GetEdition() string + func (o *InstanceDocumentationOptions) GetEditionOk() (*string, bool) + func (o *InstanceDocumentationOptions) GetRetentionDays() string + func (o *InstanceDocumentationOptions) GetRetentionDaysOk() (*string, bool) + func (o *InstanceDocumentationOptions) HasEdition() bool + func (o *InstanceDocumentationOptions) HasRetentionDays() bool + func (o *InstanceDocumentationOptions) SetEdition(v string) + func (o *InstanceDocumentationOptions) SetRetentionDays(v string) + func (o InstanceDocumentationOptions) MarshalJSON() ([]byte, error) + func (o InstanceDocumentationOptions) ToMap() (map[string]interface{}, error) + type InstanceDocumentationStorage struct + Class *string + Size *int32 + func NewInstanceDocumentationStorage() *InstanceDocumentationStorage + func NewInstanceDocumentationStorageWithDefaults() *InstanceDocumentationStorage + func (o *InstanceDocumentationStorage) GetClass() string + func (o *InstanceDocumentationStorage) GetClassOk() (*string, bool) + func (o *InstanceDocumentationStorage) GetSize() int32 + func (o *InstanceDocumentationStorage) GetSizeOk() (*int32, bool) + func (o *InstanceDocumentationStorage) HasClass() bool + func (o *InstanceDocumentationStorage) HasSize() bool + func (o *InstanceDocumentationStorage) SetClass(v string) + func (o *InstanceDocumentationStorage) SetSize(v int32) + func (o InstanceDocumentationStorage) MarshalJSON() ([]byte, error) + func (o InstanceDocumentationStorage) ToMap() (map[string]interface{}, error) + type InstanceError struct + Code *int32 + Fields *map[string][]string + Message *string + Type *Type + func NewInstanceError() *InstanceError + func NewInstanceErrorWithDefaults() *InstanceError + func (o *InstanceError) GetCode() int32 + func (o *InstanceError) GetCodeOk() (*int32, bool) + func (o *InstanceError) GetFields() map[string][]string + func (o *InstanceError) GetFieldsOk() (*map[string][]string, bool) + func (o *InstanceError) GetMessage() string + func (o *InstanceError) GetMessageOk() (*string, bool) + func (o *InstanceError) GetType() Type + func (o *InstanceError) GetTypeOk() (*Type, bool) + func (o *InstanceError) HasCode() bool + func (o *InstanceError) HasFields() bool + func (o *InstanceError) HasMessage() bool + func (o *InstanceError) HasType() bool + func (o *InstanceError) SetCode(v int32) + func (o *InstanceError) SetFields(v map[string][]string) + func (o *InstanceError) SetMessage(v string) + func (o *InstanceError) SetType(v Type) + func (o InstanceError) MarshalJSON() ([]byte, error) + func (o InstanceError) ToMap() (map[string]interface{}, error) + type InstanceFlavorEntry struct + Categories *string + Cpu *int32 + Description *string + Id *string + Memory *int32 + func NewInstanceFlavorEntry() *InstanceFlavorEntry + func NewInstanceFlavorEntryWithDefaults() *InstanceFlavorEntry + func (o *InstanceFlavorEntry) GetCategories() string + func (o *InstanceFlavorEntry) GetCategoriesOk() (*string, bool) + func (o *InstanceFlavorEntry) GetCpu() int32 + func (o *InstanceFlavorEntry) GetCpuOk() (*int32, bool) + func (o *InstanceFlavorEntry) GetDescription() string + func (o *InstanceFlavorEntry) GetDescriptionOk() (*string, bool) + func (o *InstanceFlavorEntry) GetId() string + func (o *InstanceFlavorEntry) GetIdOk() (*string, bool) + func (o *InstanceFlavorEntry) GetMemory() int32 + func (o *InstanceFlavorEntry) GetMemoryOk() (*int32, bool) + func (o *InstanceFlavorEntry) HasCategories() bool + func (o *InstanceFlavorEntry) HasCpu() bool + func (o *InstanceFlavorEntry) HasDescription() bool + func (o *InstanceFlavorEntry) HasId() bool + func (o *InstanceFlavorEntry) HasMemory() bool + func (o *InstanceFlavorEntry) SetCategories(v string) + func (o *InstanceFlavorEntry) SetCpu(v int32) + func (o *InstanceFlavorEntry) SetDescription(v string) + func (o *InstanceFlavorEntry) SetId(v string) + func (o *InstanceFlavorEntry) SetMemory(v int32) + func (o InstanceFlavorEntry) MarshalJSON() ([]byte, error) + func (o InstanceFlavorEntry) ToMap() (map[string]interface{}, error) + type InstanceListInstance struct + Id *string + Name *string + Status *string + func NewInstanceListInstance() *InstanceListInstance + func NewInstanceListInstanceWithDefaults() *InstanceListInstance + func (o *InstanceListInstance) GetId() string + func (o *InstanceListInstance) GetIdOk() (*string, bool) + func (o *InstanceListInstance) GetName() string + func (o *InstanceListInstance) GetNameOk() (*string, bool) + func (o *InstanceListInstance) GetStatus() string + func (o *InstanceListInstance) GetStatusOk() (*string, bool) + func (o *InstanceListInstance) HasId() bool + func (o *InstanceListInstance) HasName() bool + func (o *InstanceListInstance) HasStatus() bool + func (o *InstanceListInstance) SetId(v string) + func (o *InstanceListInstance) SetName(v string) + func (o *InstanceListInstance) SetStatus(v string) + func (o InstanceListInstance) MarshalJSON() ([]byte, error) + func (o InstanceListInstance) ToMap() (map[string]interface{}, error) + type InstanceListUser struct + Id *string + Username *string + func NewInstanceListUser() *InstanceListUser + func NewInstanceListUserWithDefaults() *InstanceListUser + func (o *InstanceListUser) GetId() string + func (o *InstanceListUser) GetIdOk() (*string, bool) + func (o *InstanceListUser) GetUsername() string + func (o *InstanceListUser) GetUsernameOk() (*string, bool) + func (o *InstanceListUser) HasId() bool + func (o *InstanceListUser) HasUsername() bool + func (o *InstanceListUser) SetId(v string) + func (o *InstanceListUser) SetUsername(v string) + func (o InstanceListUser) MarshalJSON() ([]byte, error) + func (o InstanceListUser) ToMap() (map[string]interface{}, error) + type ListBackupsResponse struct + Databases []BackupListBackupsResponseGrouped + func NewListBackupsResponse() *ListBackupsResponse + func NewListBackupsResponseWithDefaults() *ListBackupsResponse + func (o *ListBackupsResponse) GetDatabases() []BackupListBackupsResponseGrouped + func (o *ListBackupsResponse) GetDatabasesOk() ([]BackupListBackupsResponseGrouped, bool) + func (o *ListBackupsResponse) HasDatabases() bool + func (o *ListBackupsResponse) SetDatabases(v []BackupListBackupsResponseGrouped) + func (o ListBackupsResponse) MarshalJSON() ([]byte, error) + func (o ListBackupsResponse) ToMap() (map[string]interface{}, error) + type ListCollationsResponse struct + Collations []MssqlDatabaseCollation + func NewListCollationsResponse() *ListCollationsResponse + func NewListCollationsResponseWithDefaults() *ListCollationsResponse + func (o *ListCollationsResponse) GetCollations() []MssqlDatabaseCollation + func (o *ListCollationsResponse) GetCollationsOk() ([]MssqlDatabaseCollation, bool) + func (o *ListCollationsResponse) HasCollations() bool + func (o *ListCollationsResponse) SetCollations(v []MssqlDatabaseCollation) + func (o ListCollationsResponse) MarshalJSON() ([]byte, error) + func (o ListCollationsResponse) ToMap() (map[string]interface{}, error) + type ListCompatibilityResponse struct + Compatibilities []MssqlDatabaseCompatibility + func NewListCompatibilityResponse() *ListCompatibilityResponse + func NewListCompatibilityResponseWithDefaults() *ListCompatibilityResponse + func (o *ListCompatibilityResponse) GetCompatibilities() []MssqlDatabaseCompatibility + func (o *ListCompatibilityResponse) GetCompatibilitiesOk() ([]MssqlDatabaseCompatibility, bool) + func (o *ListCompatibilityResponse) HasCompatibilities() bool + func (o *ListCompatibilityResponse) SetCompatibilities(v []MssqlDatabaseCompatibility) + func (o ListCompatibilityResponse) MarshalJSON() ([]byte, error) + func (o ListCompatibilityResponse) ToMap() (map[string]interface{}, error) + type ListDatabasesResponse struct + Databases []Database + func NewListDatabasesResponse() *ListDatabasesResponse + func NewListDatabasesResponseWithDefaults() *ListDatabasesResponse + func (o *ListDatabasesResponse) GetDatabases() []Database + func (o *ListDatabasesResponse) GetDatabasesOk() ([]Database, bool) + func (o *ListDatabasesResponse) HasDatabases() bool + func (o *ListDatabasesResponse) SetDatabases(v []Database) + func (o ListDatabasesResponse) MarshalJSON() ([]byte, error) + func (o ListDatabasesResponse) ToMap() (map[string]interface{}, error) + type ListFlavorsResponse struct + Flavors []InstanceFlavorEntry + func NewListFlavorsResponse() *ListFlavorsResponse + func NewListFlavorsResponseWithDefaults() *ListFlavorsResponse + func (o *ListFlavorsResponse) GetFlavors() []InstanceFlavorEntry + func (o *ListFlavorsResponse) GetFlavorsOk() ([]InstanceFlavorEntry, bool) + func (o *ListFlavorsResponse) HasFlavors() bool + func (o *ListFlavorsResponse) SetFlavors(v []InstanceFlavorEntry) + func (o ListFlavorsResponse) MarshalJSON() ([]byte, error) + func (o ListFlavorsResponse) ToMap() (map[string]interface{}, error) + type ListInstancesResponse struct + Count *int32 + Items []InstanceListInstance + func NewListInstancesResponse() *ListInstancesResponse + func NewListInstancesResponseWithDefaults() *ListInstancesResponse + func (o *ListInstancesResponse) GetCount() int32 + func (o *ListInstancesResponse) GetCountOk() (*int32, bool) + func (o *ListInstancesResponse) GetItems() []InstanceListInstance + func (o *ListInstancesResponse) GetItemsOk() ([]InstanceListInstance, bool) + func (o *ListInstancesResponse) HasCount() bool + func (o *ListInstancesResponse) HasItems() bool + func (o *ListInstancesResponse) SetCount(v int32) + func (o *ListInstancesResponse) SetItems(v []InstanceListInstance) + func (o ListInstancesResponse) MarshalJSON() ([]byte, error) + func (o ListInstancesResponse) ToMap() (map[string]interface{}, error) + type ListMetricsResponse struct + Hosts []Host + func NewListMetricsResponse() *ListMetricsResponse + func NewListMetricsResponseWithDefaults() *ListMetricsResponse + func (o *ListMetricsResponse) GetHosts() []Host + func (o *ListMetricsResponse) GetHostsOk() ([]Host, bool) + func (o *ListMetricsResponse) HasHosts() bool + func (o *ListMetricsResponse) SetHosts(v []Host) + func (o ListMetricsResponse) MarshalJSON() ([]byte, error) + func (o ListMetricsResponse) ToMap() (map[string]interface{}, error) + type ListRestoreJobsResponse struct + RunningRestores []RestoreRunningRestore + func NewListRestoreJobsResponse() *ListRestoreJobsResponse + func NewListRestoreJobsResponseWithDefaults() *ListRestoreJobsResponse + func (o *ListRestoreJobsResponse) GetRunningRestores() []RestoreRunningRestore + func (o *ListRestoreJobsResponse) GetRunningRestoresOk() ([]RestoreRunningRestore, bool) + func (o *ListRestoreJobsResponse) HasRunningRestores() bool + func (o *ListRestoreJobsResponse) SetRunningRestores(v []RestoreRunningRestore) + func (o ListRestoreJobsResponse) MarshalJSON() ([]byte, error) + func (o ListRestoreJobsResponse) ToMap() (map[string]interface{}, error) + type ListRolesResponse struct + Roles []string + func NewListRolesResponse() *ListRolesResponse + func NewListRolesResponseWithDefaults() *ListRolesResponse + func (o *ListRolesResponse) GetRoles() []string + func (o *ListRolesResponse) GetRolesOk() ([]string, bool) + func (o *ListRolesResponse) HasRoles() bool + func (o *ListRolesResponse) SetRoles(v []string) + func (o ListRolesResponse) MarshalJSON() ([]byte, error) + func (o ListRolesResponse) ToMap() (map[string]interface{}, error) + type ListStoragesResponse struct + StorageClasses []string + StorageRange *StorageRange + func NewListStoragesResponse() *ListStoragesResponse + func NewListStoragesResponseWithDefaults() *ListStoragesResponse + func (o *ListStoragesResponse) GetStorageClasses() []string + func (o *ListStoragesResponse) GetStorageClassesOk() ([]string, bool) + func (o *ListStoragesResponse) GetStorageRange() StorageRange + func (o *ListStoragesResponse) GetStorageRangeOk() (*StorageRange, bool) + func (o *ListStoragesResponse) HasStorageClasses() bool + func (o *ListStoragesResponse) HasStorageRange() bool + func (o *ListStoragesResponse) SetStorageClasses(v []string) + func (o *ListStoragesResponse) SetStorageRange(v StorageRange) + func (o ListStoragesResponse) MarshalJSON() ([]byte, error) + func (o ListStoragesResponse) ToMap() (map[string]interface{}, error) + type ListUsersResponse struct + Count *int32 + Items []InstanceListUser + func NewListUsersResponse() *ListUsersResponse + func NewListUsersResponseWithDefaults() *ListUsersResponse + func (o *ListUsersResponse) GetCount() int32 + func (o *ListUsersResponse) GetCountOk() (*int32, bool) + func (o *ListUsersResponse) GetItems() []InstanceListUser + func (o *ListUsersResponse) GetItemsOk() ([]InstanceListUser, bool) + func (o *ListUsersResponse) HasCount() bool + func (o *ListUsersResponse) HasItems() bool + func (o *ListUsersResponse) SetCount(v int32) + func (o *ListUsersResponse) SetItems(v []InstanceListUser) + func (o ListUsersResponse) MarshalJSON() ([]byte, error) + func (o ListUsersResponse) ToMap() (map[string]interface{}, error) + type ListVersionsResponse struct + Versions []string + func NewListVersionsResponse() *ListVersionsResponse + func NewListVersionsResponseWithDefaults() *ListVersionsResponse + func (o *ListVersionsResponse) GetVersions() []string + func (o *ListVersionsResponse) GetVersionsOk() ([]string, bool) + func (o *ListVersionsResponse) HasVersions() bool + func (o *ListVersionsResponse) SetVersions(v []string) + func (o ListVersionsResponse) MarshalJSON() ([]byte, error) + func (o ListVersionsResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type MssqlDatabaseCollation struct + CollationName *string + Description *string + func NewMssqlDatabaseCollation() *MssqlDatabaseCollation + func NewMssqlDatabaseCollationWithDefaults() *MssqlDatabaseCollation + func (o *MssqlDatabaseCollation) GetCollationName() string + func (o *MssqlDatabaseCollation) GetCollationNameOk() (*string, bool) + func (o *MssqlDatabaseCollation) GetDescription() string + func (o *MssqlDatabaseCollation) GetDescriptionOk() (*string, bool) + func (o *MssqlDatabaseCollation) HasCollationName() bool + func (o *MssqlDatabaseCollation) HasDescription() bool + func (o *MssqlDatabaseCollation) SetCollationName(v string) + func (o *MssqlDatabaseCollation) SetDescription(v string) + func (o MssqlDatabaseCollation) MarshalJSON() ([]byte, error) + func (o MssqlDatabaseCollation) ToMap() (map[string]interface{}, error) + type MssqlDatabaseCompatibility struct + CompatibilityLevel *int32 + Description *string + func NewMssqlDatabaseCompatibility() *MssqlDatabaseCompatibility + func NewMssqlDatabaseCompatibilityWithDefaults() *MssqlDatabaseCompatibility + func (o *MssqlDatabaseCompatibility) GetCompatibilityLevel() int32 + func (o *MssqlDatabaseCompatibility) GetCompatibilityLevelOk() (*int32, bool) + func (o *MssqlDatabaseCompatibility) GetDescription() string + func (o *MssqlDatabaseCompatibility) GetDescriptionOk() (*string, bool) + func (o *MssqlDatabaseCompatibility) HasCompatibilityLevel() bool + func (o *MssqlDatabaseCompatibility) HasDescription() bool + func (o *MssqlDatabaseCompatibility) SetCompatibilityLevel(v int32) + func (o *MssqlDatabaseCompatibility) SetDescription(v string) + func (o MssqlDatabaseCompatibility) MarshalJSON() ([]byte, error) + func (o MssqlDatabaseCompatibility) ToMap() (map[string]interface{}, error) + type NullableACL struct + func NewNullableACL(val *ACL) *NullableACL + func (v *NullableACL) Set(val *ACL) + func (v *NullableACL) UnmarshalJSON(src []byte) error + func (v *NullableACL) Unset() + func (v NullableACL) Get() *ACL + func (v NullableACL) IsSet() bool + func (v NullableACL) MarshalJSON() ([]byte, error) + type NullableBackup struct + func NewNullableBackup(val *Backup) *NullableBackup + func (v *NullableBackup) Set(val *Backup) + func (v *NullableBackup) UnmarshalJSON(src []byte) error + func (v *NullableBackup) Unset() + func (v NullableBackup) Get() *Backup + func (v NullableBackup) IsSet() bool + func (v NullableBackup) MarshalJSON() ([]byte, error) + type NullableBackupListBackupsResponseGrouped struct + func NewNullableBackupListBackupsResponseGrouped(val *BackupListBackupsResponseGrouped) *NullableBackupListBackupsResponseGrouped + func (v *NullableBackupListBackupsResponseGrouped) Set(val *BackupListBackupsResponseGrouped) + func (v *NullableBackupListBackupsResponseGrouped) UnmarshalJSON(src []byte) error + func (v *NullableBackupListBackupsResponseGrouped) Unset() + func (v NullableBackupListBackupsResponseGrouped) Get() *BackupListBackupsResponseGrouped + func (v NullableBackupListBackupsResponseGrouped) IsSet() bool + func (v NullableBackupListBackupsResponseGrouped) 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 NullableCreateDatabasePayload struct + func NewNullableCreateDatabasePayload(val *CreateDatabasePayload) *NullableCreateDatabasePayload + func (v *NullableCreateDatabasePayload) Set(val *CreateDatabasePayload) + func (v *NullableCreateDatabasePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateDatabasePayload) Unset() + func (v NullableCreateDatabasePayload) Get() *CreateDatabasePayload + func (v NullableCreateDatabasePayload) IsSet() bool + func (v NullableCreateDatabasePayload) MarshalJSON() ([]byte, error) + type NullableCreateDatabaseResponse struct + func NewNullableCreateDatabaseResponse(val *CreateDatabaseResponse) *NullableCreateDatabaseResponse + func (v *NullableCreateDatabaseResponse) Set(val *CreateDatabaseResponse) + func (v *NullableCreateDatabaseResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateDatabaseResponse) Unset() + func (v NullableCreateDatabaseResponse) Get() *CreateDatabaseResponse + func (v NullableCreateDatabaseResponse) IsSet() bool + func (v NullableCreateDatabaseResponse) 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 NullableCreateUserPayload struct + func NewNullableCreateUserPayload(val *CreateUserPayload) *NullableCreateUserPayload + func (v *NullableCreateUserPayload) Set(val *CreateUserPayload) + func (v *NullableCreateUserPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateUserPayload) Unset() + func (v NullableCreateUserPayload) Get() *CreateUserPayload + func (v NullableCreateUserPayload) IsSet() bool + func (v NullableCreateUserPayload) MarshalJSON() ([]byte, error) + type NullableCreateUserResponse struct + func NewNullableCreateUserResponse(val *CreateUserResponse) *NullableCreateUserResponse + func (v *NullableCreateUserResponse) Set(val *CreateUserResponse) + func (v *NullableCreateUserResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateUserResponse) Unset() + func (v NullableCreateUserResponse) Get() *CreateUserResponse + func (v NullableCreateUserResponse) IsSet() bool + func (v NullableCreateUserResponse) MarshalJSON() ([]byte, error) + type NullableDataPoint struct + func NewNullableDataPoint(val *DataPoint) *NullableDataPoint + func (v *NullableDataPoint) Set(val *DataPoint) + func (v *NullableDataPoint) UnmarshalJSON(src []byte) error + func (v *NullableDataPoint) Unset() + func (v NullableDataPoint) Get() *DataPoint + func (v NullableDataPoint) IsSet() bool + func (v NullableDataPoint) MarshalJSON() ([]byte, error) + type NullableDatabase struct + func NewNullableDatabase(val *Database) *NullableDatabase + func (v *NullableDatabase) Set(val *Database) + func (v *NullableDatabase) UnmarshalJSON(src []byte) error + func (v *NullableDatabase) Unset() + func (v NullableDatabase) Get() *Database + func (v NullableDatabase) IsSet() bool + func (v NullableDatabase) MarshalJSON() ([]byte, error) + type NullableDatabaseDocumentationCreateDatabaseRequestOptions struct + func NewNullableDatabaseDocumentationCreateDatabaseRequestOptions(val *DatabaseDocumentationCreateDatabaseRequestOptions) *NullableDatabaseDocumentationCreateDatabaseRequestOptions + func (v *NullableDatabaseDocumentationCreateDatabaseRequestOptions) Set(val *DatabaseDocumentationCreateDatabaseRequestOptions) + func (v *NullableDatabaseDocumentationCreateDatabaseRequestOptions) UnmarshalJSON(src []byte) error + func (v *NullableDatabaseDocumentationCreateDatabaseRequestOptions) Unset() + func (v NullableDatabaseDocumentationCreateDatabaseRequestOptions) Get() *DatabaseDocumentationCreateDatabaseRequestOptions + func (v NullableDatabaseDocumentationCreateDatabaseRequestOptions) IsSet() bool + func (v NullableDatabaseDocumentationCreateDatabaseRequestOptions) MarshalJSON() ([]byte, error) + type NullableDatabaseOptions struct + func NewNullableDatabaseOptions(val *DatabaseOptions) *NullableDatabaseOptions + func (v *NullableDatabaseOptions) Set(val *DatabaseOptions) + func (v *NullableDatabaseOptions) UnmarshalJSON(src []byte) error + func (v *NullableDatabaseOptions) Unset() + func (v NullableDatabaseOptions) Get() *DatabaseOptions + func (v NullableDatabaseOptions) IsSet() bool + func (v NullableDatabaseOptions) MarshalJSON() ([]byte, error) + type NullableFlavor struct + func NewNullableFlavor(val *Flavor) *NullableFlavor + func (v *NullableFlavor) Set(val *Flavor) + func (v *NullableFlavor) UnmarshalJSON(src []byte) error + func (v *NullableFlavor) Unset() + func (v NullableFlavor) Get() *Flavor + func (v NullableFlavor) IsSet() bool + func (v NullableFlavor) 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 NullableGetBackupResponse struct + func NewNullableGetBackupResponse(val *GetBackupResponse) *NullableGetBackupResponse + func (v *NullableGetBackupResponse) Set(val *GetBackupResponse) + func (v *NullableGetBackupResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetBackupResponse) Unset() + func (v NullableGetBackupResponse) Get() *GetBackupResponse + func (v NullableGetBackupResponse) IsSet() bool + func (v NullableGetBackupResponse) MarshalJSON() ([]byte, error) + type NullableGetDatabaseResponse struct + func NewNullableGetDatabaseResponse(val *GetDatabaseResponse) *NullableGetDatabaseResponse + func (v *NullableGetDatabaseResponse) Set(val *GetDatabaseResponse) + func (v *NullableGetDatabaseResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetDatabaseResponse) Unset() + func (v NullableGetDatabaseResponse) Get() *GetDatabaseResponse + func (v NullableGetDatabaseResponse) IsSet() bool + func (v NullableGetDatabaseResponse) 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 NullableGetUserResponse struct + func NewNullableGetUserResponse(val *GetUserResponse) *NullableGetUserResponse + func (v *NullableGetUserResponse) Set(val *GetUserResponse) + func (v *NullableGetUserResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetUserResponse) Unset() + func (v NullableGetUserResponse) Get() *GetUserResponse + func (v NullableGetUserResponse) IsSet() bool + func (v NullableGetUserResponse) MarshalJSON() ([]byte, error) + type NullableHost struct + func NewNullableHost(val *Host) *NullableHost + func (v *NullableHost) Set(val *Host) + func (v *NullableHost) UnmarshalJSON(src []byte) error + func (v *NullableHost) Unset() + func (v NullableHost) Get() *Host + func (v NullableHost) IsSet() bool + func (v NullableHost) MarshalJSON() ([]byte, error) + type NullableHostMetric struct + func NewNullableHostMetric(val *HostMetric) *NullableHostMetric + func (v *NullableHostMetric) Set(val *HostMetric) + func (v *NullableHostMetric) UnmarshalJSON(src []byte) error + func (v *NullableHostMetric) Unset() + func (v NullableHostMetric) Get() *HostMetric + func (v NullableHostMetric) IsSet() bool + func (v NullableHostMetric) 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 NullableInstanceDocumentationACL struct + func NewNullableInstanceDocumentationACL(val *InstanceDocumentationACL) *NullableInstanceDocumentationACL + func (v *NullableInstanceDocumentationACL) Set(val *InstanceDocumentationACL) + func (v *NullableInstanceDocumentationACL) UnmarshalJSON(src []byte) error + func (v *NullableInstanceDocumentationACL) Unset() + func (v NullableInstanceDocumentationACL) Get() *InstanceDocumentationACL + func (v NullableInstanceDocumentationACL) IsSet() bool + func (v NullableInstanceDocumentationACL) MarshalJSON() ([]byte, error) + type NullableInstanceDocumentationOptions struct + func NewNullableInstanceDocumentationOptions(val *InstanceDocumentationOptions) *NullableInstanceDocumentationOptions + func (v *NullableInstanceDocumentationOptions) Set(val *InstanceDocumentationOptions) + func (v *NullableInstanceDocumentationOptions) UnmarshalJSON(src []byte) error + func (v *NullableInstanceDocumentationOptions) Unset() + func (v NullableInstanceDocumentationOptions) Get() *InstanceDocumentationOptions + func (v NullableInstanceDocumentationOptions) IsSet() bool + func (v NullableInstanceDocumentationOptions) MarshalJSON() ([]byte, error) + type NullableInstanceDocumentationStorage struct + func NewNullableInstanceDocumentationStorage(val *InstanceDocumentationStorage) *NullableInstanceDocumentationStorage + func (v *NullableInstanceDocumentationStorage) Set(val *InstanceDocumentationStorage) + func (v *NullableInstanceDocumentationStorage) UnmarshalJSON(src []byte) error + func (v *NullableInstanceDocumentationStorage) Unset() + func (v NullableInstanceDocumentationStorage) Get() *InstanceDocumentationStorage + func (v NullableInstanceDocumentationStorage) IsSet() bool + func (v NullableInstanceDocumentationStorage) MarshalJSON() ([]byte, error) + type NullableInstanceError struct + func NewNullableInstanceError(val *InstanceError) *NullableInstanceError + func (v *NullableInstanceError) Set(val *InstanceError) + func (v *NullableInstanceError) UnmarshalJSON(src []byte) error + func (v *NullableInstanceError) Unset() + func (v NullableInstanceError) Get() *InstanceError + func (v NullableInstanceError) IsSet() bool + func (v NullableInstanceError) MarshalJSON() ([]byte, error) + type NullableInstanceFlavorEntry struct + func NewNullableInstanceFlavorEntry(val *InstanceFlavorEntry) *NullableInstanceFlavorEntry + func (v *NullableInstanceFlavorEntry) Set(val *InstanceFlavorEntry) + func (v *NullableInstanceFlavorEntry) UnmarshalJSON(src []byte) error + func (v *NullableInstanceFlavorEntry) Unset() + func (v NullableInstanceFlavorEntry) Get() *InstanceFlavorEntry + func (v NullableInstanceFlavorEntry) IsSet() bool + func (v NullableInstanceFlavorEntry) MarshalJSON() ([]byte, error) + type NullableInstanceListInstance struct + func NewNullableInstanceListInstance(val *InstanceListInstance) *NullableInstanceListInstance + func (v *NullableInstanceListInstance) Set(val *InstanceListInstance) + func (v *NullableInstanceListInstance) UnmarshalJSON(src []byte) error + func (v *NullableInstanceListInstance) Unset() + func (v NullableInstanceListInstance) Get() *InstanceListInstance + func (v NullableInstanceListInstance) IsSet() bool + func (v NullableInstanceListInstance) MarshalJSON() ([]byte, error) + type NullableInstanceListUser struct + func NewNullableInstanceListUser(val *InstanceListUser) *NullableInstanceListUser + func (v *NullableInstanceListUser) Set(val *InstanceListUser) + func (v *NullableInstanceListUser) UnmarshalJSON(src []byte) error + func (v *NullableInstanceListUser) Unset() + func (v NullableInstanceListUser) Get() *InstanceListUser + func (v NullableInstanceListUser) IsSet() bool + func (v NullableInstanceListUser) 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 NullableListBackupsResponse struct + func NewNullableListBackupsResponse(val *ListBackupsResponse) *NullableListBackupsResponse + func (v *NullableListBackupsResponse) Set(val *ListBackupsResponse) + func (v *NullableListBackupsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListBackupsResponse) Unset() + func (v NullableListBackupsResponse) Get() *ListBackupsResponse + func (v NullableListBackupsResponse) IsSet() bool + func (v NullableListBackupsResponse) MarshalJSON() ([]byte, error) + type NullableListCollationsResponse struct + func NewNullableListCollationsResponse(val *ListCollationsResponse) *NullableListCollationsResponse + func (v *NullableListCollationsResponse) Set(val *ListCollationsResponse) + func (v *NullableListCollationsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListCollationsResponse) Unset() + func (v NullableListCollationsResponse) Get() *ListCollationsResponse + func (v NullableListCollationsResponse) IsSet() bool + func (v NullableListCollationsResponse) MarshalJSON() ([]byte, error) + type NullableListCompatibilityResponse struct + func NewNullableListCompatibilityResponse(val *ListCompatibilityResponse) *NullableListCompatibilityResponse + func (v *NullableListCompatibilityResponse) Set(val *ListCompatibilityResponse) + func (v *NullableListCompatibilityResponse) UnmarshalJSON(src []byte) error + func (v *NullableListCompatibilityResponse) Unset() + func (v NullableListCompatibilityResponse) Get() *ListCompatibilityResponse + func (v NullableListCompatibilityResponse) IsSet() bool + func (v NullableListCompatibilityResponse) MarshalJSON() ([]byte, error) + type NullableListDatabasesResponse struct + func NewNullableListDatabasesResponse(val *ListDatabasesResponse) *NullableListDatabasesResponse + func (v *NullableListDatabasesResponse) Set(val *ListDatabasesResponse) + func (v *NullableListDatabasesResponse) UnmarshalJSON(src []byte) error + func (v *NullableListDatabasesResponse) Unset() + func (v NullableListDatabasesResponse) Get() *ListDatabasesResponse + func (v NullableListDatabasesResponse) IsSet() bool + func (v NullableListDatabasesResponse) MarshalJSON() ([]byte, error) + type NullableListFlavorsResponse struct + func NewNullableListFlavorsResponse(val *ListFlavorsResponse) *NullableListFlavorsResponse + func (v *NullableListFlavorsResponse) Set(val *ListFlavorsResponse) + func (v *NullableListFlavorsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListFlavorsResponse) Unset() + func (v NullableListFlavorsResponse) Get() *ListFlavorsResponse + func (v NullableListFlavorsResponse) IsSet() bool + func (v NullableListFlavorsResponse) 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 NullableListMetricsResponse struct + func NewNullableListMetricsResponse(val *ListMetricsResponse) *NullableListMetricsResponse + func (v *NullableListMetricsResponse) Set(val *ListMetricsResponse) + func (v *NullableListMetricsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListMetricsResponse) Unset() + func (v NullableListMetricsResponse) Get() *ListMetricsResponse + func (v NullableListMetricsResponse) IsSet() bool + func (v NullableListMetricsResponse) MarshalJSON() ([]byte, error) + type NullableListRestoreJobsResponse struct + func NewNullableListRestoreJobsResponse(val *ListRestoreJobsResponse) *NullableListRestoreJobsResponse + func (v *NullableListRestoreJobsResponse) Set(val *ListRestoreJobsResponse) + func (v *NullableListRestoreJobsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListRestoreJobsResponse) Unset() + func (v NullableListRestoreJobsResponse) Get() *ListRestoreJobsResponse + func (v NullableListRestoreJobsResponse) IsSet() bool + func (v NullableListRestoreJobsResponse) MarshalJSON() ([]byte, error) + type NullableListRolesResponse struct + func NewNullableListRolesResponse(val *ListRolesResponse) *NullableListRolesResponse + func (v *NullableListRolesResponse) Set(val *ListRolesResponse) + func (v *NullableListRolesResponse) UnmarshalJSON(src []byte) error + func (v *NullableListRolesResponse) Unset() + func (v NullableListRolesResponse) Get() *ListRolesResponse + func (v NullableListRolesResponse) IsSet() bool + func (v NullableListRolesResponse) MarshalJSON() ([]byte, error) + type NullableListStoragesResponse struct + func NewNullableListStoragesResponse(val *ListStoragesResponse) *NullableListStoragesResponse + func (v *NullableListStoragesResponse) Set(val *ListStoragesResponse) + func (v *NullableListStoragesResponse) UnmarshalJSON(src []byte) error + func (v *NullableListStoragesResponse) Unset() + func (v NullableListStoragesResponse) Get() *ListStoragesResponse + func (v NullableListStoragesResponse) IsSet() bool + func (v NullableListStoragesResponse) MarshalJSON() ([]byte, error) + type NullableListUsersResponse struct + func NewNullableListUsersResponse(val *ListUsersResponse) *NullableListUsersResponse + func (v *NullableListUsersResponse) Set(val *ListUsersResponse) + func (v *NullableListUsersResponse) UnmarshalJSON(src []byte) error + func (v *NullableListUsersResponse) Unset() + func (v NullableListUsersResponse) Get() *ListUsersResponse + func (v NullableListUsersResponse) IsSet() bool + func (v NullableListUsersResponse) MarshalJSON() ([]byte, error) + type NullableListVersionsResponse struct + func NewNullableListVersionsResponse(val *ListVersionsResponse) *NullableListVersionsResponse + func (v *NullableListVersionsResponse) Set(val *ListVersionsResponse) + func (v *NullableListVersionsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListVersionsResponse) Unset() + func (v NullableListVersionsResponse) Get() *ListVersionsResponse + func (v NullableListVersionsResponse) IsSet() bool + func (v NullableListVersionsResponse) MarshalJSON() ([]byte, error) + type NullableMssqlDatabaseCollation struct + func NewNullableMssqlDatabaseCollation(val *MssqlDatabaseCollation) *NullableMssqlDatabaseCollation + func (v *NullableMssqlDatabaseCollation) Set(val *MssqlDatabaseCollation) + func (v *NullableMssqlDatabaseCollation) UnmarshalJSON(src []byte) error + func (v *NullableMssqlDatabaseCollation) Unset() + func (v NullableMssqlDatabaseCollation) Get() *MssqlDatabaseCollation + func (v NullableMssqlDatabaseCollation) IsSet() bool + func (v NullableMssqlDatabaseCollation) MarshalJSON() ([]byte, error) + type NullableMssqlDatabaseCompatibility struct + func NewNullableMssqlDatabaseCompatibility(val *MssqlDatabaseCompatibility) *NullableMssqlDatabaseCompatibility + func (v *NullableMssqlDatabaseCompatibility) Set(val *MssqlDatabaseCompatibility) + func (v *NullableMssqlDatabaseCompatibility) UnmarshalJSON(src []byte) error + func (v *NullableMssqlDatabaseCompatibility) Unset() + func (v NullableMssqlDatabaseCompatibility) Get() *MssqlDatabaseCompatibility + func (v NullableMssqlDatabaseCompatibility) IsSet() bool + func (v NullableMssqlDatabaseCompatibility) 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 NullableResetUserResponse struct + func NewNullableResetUserResponse(val *ResetUserResponse) *NullableResetUserResponse + func (v *NullableResetUserResponse) Set(val *ResetUserResponse) + func (v *NullableResetUserResponse) UnmarshalJSON(src []byte) error + func (v *NullableResetUserResponse) Unset() + func (v NullableResetUserResponse) Get() *ResetUserResponse + func (v NullableResetUserResponse) IsSet() bool + func (v NullableResetUserResponse) MarshalJSON() ([]byte, error) + type NullableRestoreRunningRestore struct + func NewNullableRestoreRunningRestore(val *RestoreRunningRestore) *NullableRestoreRunningRestore + func (v *NullableRestoreRunningRestore) Set(val *RestoreRunningRestore) + func (v *NullableRestoreRunningRestore) UnmarshalJSON(src []byte) error + func (v *NullableRestoreRunningRestore) Unset() + func (v NullableRestoreRunningRestore) Get() *RestoreRunningRestore + func (v NullableRestoreRunningRestore) IsSet() bool + func (v NullableRestoreRunningRestore) MarshalJSON() ([]byte, error) + type NullableSingleDatabase struct + func NewNullableSingleDatabase(val *SingleDatabase) *NullableSingleDatabase + func (v *NullableSingleDatabase) Set(val *SingleDatabase) + func (v *NullableSingleDatabase) UnmarshalJSON(src []byte) error + func (v *NullableSingleDatabase) Unset() + func (v NullableSingleDatabase) Get() *SingleDatabase + func (v NullableSingleDatabase) IsSet() bool + func (v NullableSingleDatabase) MarshalJSON() ([]byte, error) + type NullableSingleUser struct + func NewNullableSingleUser(val *SingleUser) *NullableSingleUser + func (v *NullableSingleUser) Set(val *SingleUser) + func (v *NullableSingleUser) UnmarshalJSON(src []byte) error + func (v *NullableSingleUser) Unset() + func (v NullableSingleUser) Get() *SingleUser + func (v NullableSingleUser) IsSet() bool + func (v NullableSingleUser) MarshalJSON() ([]byte, error) + type NullableStorage struct + func NewNullableStorage(val *Storage) *NullableStorage + func (v *NullableStorage) Set(val *Storage) + func (v *NullableStorage) UnmarshalJSON(src []byte) error + func (v *NullableStorage) Unset() + func (v NullableStorage) Get() *Storage + func (v NullableStorage) IsSet() bool + func (v NullableStorage) MarshalJSON() ([]byte, error) + type NullableStorageRange struct + func NewNullableStorageRange(val *StorageRange) *NullableStorageRange + func (v *NullableStorageRange) Set(val *StorageRange) + func (v *NullableStorageRange) UnmarshalJSON(src []byte) error + func (v *NullableStorageRange) Unset() + func (v NullableStorageRange) Get() *StorageRange + func (v NullableStorageRange) IsSet() bool + func (v NullableStorageRange) 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 NullableTriggerDatabaseRestorePayload struct + func NewNullableTriggerDatabaseRestorePayload(val *TriggerDatabaseRestorePayload) *NullableTriggerDatabaseRestorePayload + func (v *NullableTriggerDatabaseRestorePayload) Set(val *TriggerDatabaseRestorePayload) + func (v *NullableTriggerDatabaseRestorePayload) UnmarshalJSON(src []byte) error + func (v *NullableTriggerDatabaseRestorePayload) Unset() + func (v NullableTriggerDatabaseRestorePayload) Get() *TriggerDatabaseRestorePayload + func (v NullableTriggerDatabaseRestorePayload) IsSet() bool + func (v NullableTriggerDatabaseRestorePayload) MarshalJSON() ([]byte, error) + type NullableType struct + func NewNullableType(val *Type) *NullableType + func (v *NullableType) Set(val *Type) + func (v *NullableType) UnmarshalJSON(src []byte) error + func (v *NullableType) Unset() + func (v NullableType) Get() *Type + func (v NullableType) IsSet() bool + func (v NullableType) MarshalJSON() ([]byte, error) + type NullableUpdateInstancePayload struct + func NewNullableUpdateInstancePayload(val *UpdateInstancePayload) *NullableUpdateInstancePayload + func (v *NullableUpdateInstancePayload) Set(val *UpdateInstancePayload) + func (v *NullableUpdateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateInstancePayload) Unset() + func (v NullableUpdateInstancePayload) Get() *UpdateInstancePayload + func (v NullableUpdateInstancePayload) IsSet() bool + func (v NullableUpdateInstancePayload) MarshalJSON() ([]byte, error) + type NullableUpdateInstanceResponse struct + func NewNullableUpdateInstanceResponse(val *UpdateInstanceResponse) *NullableUpdateInstanceResponse + func (v *NullableUpdateInstanceResponse) Set(val *UpdateInstanceResponse) + func (v *NullableUpdateInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableUpdateInstanceResponse) Unset() + func (v NullableUpdateInstanceResponse) Get() *UpdateInstanceResponse + func (v NullableUpdateInstanceResponse) IsSet() bool + func (v NullableUpdateInstanceResponse) MarshalJSON() ([]byte, error) + type NullableUser struct + func NewNullableUser(val *User) *NullableUser + func (v *NullableUser) Set(val *User) + func (v *NullableUser) UnmarshalJSON(src []byte) error + func (v *NullableUser) Unset() + func (v NullableUser) Get() *User + func (v NullableUser) IsSet() bool + func (v NullableUser) MarshalJSON() ([]byte, error) + type NullableUserResponseUser struct + func NewNullableUserResponseUser(val *UserResponseUser) *NullableUserResponseUser + func (v *NullableUserResponseUser) Set(val *UserResponseUser) + func (v *NullableUserResponseUser) UnmarshalJSON(src []byte) error + func (v *NullableUserResponseUser) Unset() + func (v NullableUserResponseUser) Get() *UserResponseUser + func (v NullableUserResponseUser) IsSet() bool + func (v NullableUserResponseUser) MarshalJSON() ([]byte, error) + type PartialUpdateInstancePayload struct + Acl *InstanceDocumentationACL + BackupSchedule *string + FlavorId *string + Labels map[string]interface{} + Name *string + Version *string + func NewPartialUpdateInstancePayload() *PartialUpdateInstancePayload + func NewPartialUpdateInstancePayloadWithDefaults() *PartialUpdateInstancePayload + func (o *PartialUpdateInstancePayload) GetAcl() InstanceDocumentationACL + func (o *PartialUpdateInstancePayload) GetAclOk() (*InstanceDocumentationACL, bool) + func (o *PartialUpdateInstancePayload) GetBackupSchedule() string + func (o *PartialUpdateInstancePayload) GetBackupScheduleOk() (*string, bool) + func (o *PartialUpdateInstancePayload) GetFlavorId() string + func (o *PartialUpdateInstancePayload) GetFlavorIdOk() (*string, bool) + func (o *PartialUpdateInstancePayload) GetLabels() map[string]interface{} + func (o *PartialUpdateInstancePayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *PartialUpdateInstancePayload) GetName() string + func (o *PartialUpdateInstancePayload) GetNameOk() (*string, bool) + func (o *PartialUpdateInstancePayload) GetVersion() string + func (o *PartialUpdateInstancePayload) GetVersionOk() (*string, bool) + func (o *PartialUpdateInstancePayload) HasAcl() bool + func (o *PartialUpdateInstancePayload) HasBackupSchedule() bool + func (o *PartialUpdateInstancePayload) HasFlavorId() bool + func (o *PartialUpdateInstancePayload) HasLabels() bool + func (o *PartialUpdateInstancePayload) HasName() bool + func (o *PartialUpdateInstancePayload) HasVersion() bool + func (o *PartialUpdateInstancePayload) SetAcl(v InstanceDocumentationACL) + func (o *PartialUpdateInstancePayload) SetBackupSchedule(v string) + func (o *PartialUpdateInstancePayload) SetFlavorId(v string) + func (o *PartialUpdateInstancePayload) SetLabels(v map[string]interface{}) + func (o *PartialUpdateInstancePayload) SetName(v string) + func (o *PartialUpdateInstancePayload) SetVersion(v string) + func (o PartialUpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateInstancePayload) ToMap() (map[string]interface{}, error) + type ResetUserResponse struct + Item *SingleUser + func NewResetUserResponse() *ResetUserResponse + func NewResetUserResponseWithDefaults() *ResetUserResponse + func (o *ResetUserResponse) GetItem() SingleUser + func (o *ResetUserResponse) GetItemOk() (*SingleUser, bool) + func (o *ResetUserResponse) HasItem() bool + func (o *ResetUserResponse) SetItem(v SingleUser) + func (o ResetUserResponse) MarshalJSON() ([]byte, error) + func (o ResetUserResponse) ToMap() (map[string]interface{}, error) + type RestoreRunningRestore struct + Command *string + DatabaseName *string + EstimatedCompletionTime *string + PercentComplete *int32 + StartTime *string + func NewRestoreRunningRestore() *RestoreRunningRestore + func NewRestoreRunningRestoreWithDefaults() *RestoreRunningRestore + func (o *RestoreRunningRestore) GetCommand() string + func (o *RestoreRunningRestore) GetCommandOk() (*string, bool) + func (o *RestoreRunningRestore) GetDatabaseName() string + func (o *RestoreRunningRestore) GetDatabaseNameOk() (*string, bool) + func (o *RestoreRunningRestore) GetEstimatedCompletionTime() string + func (o *RestoreRunningRestore) GetEstimatedCompletionTimeOk() (*string, bool) + func (o *RestoreRunningRestore) GetPercentComplete() int32 + func (o *RestoreRunningRestore) GetPercentCompleteOk() (*int32, bool) + func (o *RestoreRunningRestore) GetStartTime() string + func (o *RestoreRunningRestore) GetStartTimeOk() (*string, bool) + func (o *RestoreRunningRestore) HasCommand() bool + func (o *RestoreRunningRestore) HasDatabaseName() bool + func (o *RestoreRunningRestore) HasEstimatedCompletionTime() bool + func (o *RestoreRunningRestore) HasPercentComplete() bool + func (o *RestoreRunningRestore) HasStartTime() bool + func (o *RestoreRunningRestore) SetCommand(v string) + func (o *RestoreRunningRestore) SetDatabaseName(v string) + func (o *RestoreRunningRestore) SetEstimatedCompletionTime(v string) + func (o *RestoreRunningRestore) SetPercentComplete(v int32) + func (o *RestoreRunningRestore) SetStartTime(v string) + func (o RestoreRunningRestore) MarshalJSON() ([]byte, error) + func (o RestoreRunningRestore) ToMap() (map[string]interface{}, error) + type SingleDatabase struct + Id *string + Name *string + Options *DatabaseOptions + func NewSingleDatabase() *SingleDatabase + func NewSingleDatabaseWithDefaults() *SingleDatabase + func (o *SingleDatabase) GetId() string + func (o *SingleDatabase) GetIdOk() (*string, bool) + func (o *SingleDatabase) GetName() string + func (o *SingleDatabase) GetNameOk() (*string, bool) + func (o *SingleDatabase) GetOptions() DatabaseOptions + func (o *SingleDatabase) GetOptionsOk() (*DatabaseOptions, bool) + func (o *SingleDatabase) HasId() bool + func (o *SingleDatabase) HasName() bool + func (o *SingleDatabase) HasOptions() bool + func (o *SingleDatabase) SetId(v string) + func (o *SingleDatabase) SetName(v string) + func (o *SingleDatabase) SetOptions(v DatabaseOptions) + func (o SingleDatabase) MarshalJSON() ([]byte, error) + func (o SingleDatabase) ToMap() (map[string]interface{}, error) + type SingleUser struct + DefaultDatabase *string + Host *string + Id *string + Password *string + Port *int32 + Roles []string + Uri *string + Username *string + func NewSingleUser() *SingleUser + func NewSingleUserWithDefaults() *SingleUser + func (o *SingleUser) GetDefaultDatabase() string + func (o *SingleUser) GetDefaultDatabaseOk() (*string, bool) + func (o *SingleUser) GetHost() string + func (o *SingleUser) GetHostOk() (*string, bool) + func (o *SingleUser) GetId() string + func (o *SingleUser) GetIdOk() (*string, bool) + func (o *SingleUser) GetPassword() string + func (o *SingleUser) GetPasswordOk() (*string, bool) + func (o *SingleUser) GetPort() int32 + func (o *SingleUser) GetPortOk() (*int32, bool) + func (o *SingleUser) GetRoles() []string + func (o *SingleUser) GetRolesOk() ([]string, bool) + func (o *SingleUser) GetUri() string + func (o *SingleUser) GetUriOk() (*string, bool) + func (o *SingleUser) GetUsername() string + func (o *SingleUser) GetUsernameOk() (*string, bool) + func (o *SingleUser) HasDefaultDatabase() bool + func (o *SingleUser) HasHost() bool + func (o *SingleUser) HasId() bool + func (o *SingleUser) HasPassword() bool + func (o *SingleUser) HasPort() bool + func (o *SingleUser) HasRoles() bool + func (o *SingleUser) HasUri() bool + func (o *SingleUser) HasUsername() bool + func (o *SingleUser) SetDefaultDatabase(v string) + func (o *SingleUser) SetHost(v string) + func (o *SingleUser) SetId(v string) + func (o *SingleUser) SetPassword(v string) + func (o *SingleUser) SetPort(v int32) + func (o *SingleUser) SetRoles(v []string) + func (o *SingleUser) SetUri(v string) + func (o *SingleUser) SetUsername(v string) + func (o SingleUser) MarshalJSON() ([]byte, error) + func (o SingleUser) ToMap() (map[string]interface{}, error) + type Storage struct + Class *string + Size *int32 + func NewStorage() *Storage + func NewStorageWithDefaults() *Storage + func (o *Storage) GetClass() string + func (o *Storage) GetClassOk() (*string, bool) + func (o *Storage) GetSize() int32 + func (o *Storage) GetSizeOk() (*int32, bool) + func (o *Storage) HasClass() bool + func (o *Storage) HasSize() bool + func (o *Storage) SetClass(v string) + func (o *Storage) SetSize(v int32) + func (o Storage) MarshalJSON() ([]byte, error) + func (o Storage) ToMap() (map[string]interface{}, error) + type StorageRange struct + Max *int32 + Min *int32 + func NewStorageRange() *StorageRange + func NewStorageRangeWithDefaults() *StorageRange + func (o *StorageRange) GetMax() int32 + func (o *StorageRange) GetMaxOk() (*int32, bool) + func (o *StorageRange) GetMin() int32 + func (o *StorageRange) GetMinOk() (*int32, bool) + func (o *StorageRange) HasMax() bool + func (o *StorageRange) HasMin() bool + func (o *StorageRange) SetMax(v int32) + func (o *StorageRange) SetMin(v int32) + func (o StorageRange) MarshalJSON() ([]byte, error) + func (o StorageRange) ToMap() (map[string]interface{}, error) + type TriggerDatabaseRestorePayload struct + Name string + RestoreDateTime string + func NewTriggerDatabaseRestorePayload(name string, restoreDateTime string) *TriggerDatabaseRestorePayload + func NewTriggerDatabaseRestorePayloadWithDefaults() *TriggerDatabaseRestorePayload + func (o *TriggerDatabaseRestorePayload) GetName() string + func (o *TriggerDatabaseRestorePayload) GetNameOk() (*string, bool) + func (o *TriggerDatabaseRestorePayload) GetRestoreDateTime() string + func (o *TriggerDatabaseRestorePayload) GetRestoreDateTimeOk() (*string, bool) + func (o *TriggerDatabaseRestorePayload) SetName(v string) + func (o *TriggerDatabaseRestorePayload) SetRestoreDateTime(v string) + func (o *TriggerDatabaseRestorePayload) UnmarshalJSON(data []byte) (err error) + func (o TriggerDatabaseRestorePayload) MarshalJSON() ([]byte, error) + func (o TriggerDatabaseRestorePayload) ToMap() (map[string]interface{}, error) + type Type string + const TYPE_CREATE + const TYPE_DELETE + const TYPE_NOT_FOUND + const TYPE_READ + const TYPE_UPDATE + const TYPE_VALIDATION + func NewTypeFromValue(v string) (*Type, error) + func (v *Type) UnmarshalJSON(src []byte) error + func (v Type) IsValid() bool + func (v Type) Ptr() *Type + type UpdateInstancePayload struct + Acl InstanceDocumentationACL + BackupSchedule string + FlavorId string + Labels map[string]interface{} + Name string + Version string + func NewUpdateInstancePayload(acl InstanceDocumentationACL, backupSchedule string, flavorId string, ...) *UpdateInstancePayload + func NewUpdateInstancePayloadWithDefaults() *UpdateInstancePayload + func (o *UpdateInstancePayload) GetAcl() InstanceDocumentationACL + func (o *UpdateInstancePayload) GetAclOk() (*InstanceDocumentationACL, bool) + func (o *UpdateInstancePayload) GetBackupSchedule() string + func (o *UpdateInstancePayload) GetBackupScheduleOk() (*string, bool) + func (o *UpdateInstancePayload) GetFlavorId() string + func (o *UpdateInstancePayload) GetFlavorIdOk() (*string, bool) + func (o *UpdateInstancePayload) GetLabels() map[string]interface{} + func (o *UpdateInstancePayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateInstancePayload) GetName() string + func (o *UpdateInstancePayload) GetNameOk() (*string, bool) + func (o *UpdateInstancePayload) GetVersion() string + func (o *UpdateInstancePayload) GetVersionOk() (*string, bool) + func (o *UpdateInstancePayload) SetAcl(v InstanceDocumentationACL) + func (o *UpdateInstancePayload) SetBackupSchedule(v string) + func (o *UpdateInstancePayload) SetFlavorId(v string) + func (o *UpdateInstancePayload) SetLabels(v map[string]interface{}) + func (o *UpdateInstancePayload) SetName(v string) + func (o *UpdateInstancePayload) SetVersion(v string) + func (o *UpdateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o UpdateInstancePayload) ToMap() (map[string]interface{}, error) + type UpdateInstanceResponse struct + Item *Instance + func NewUpdateInstanceResponse() *UpdateInstanceResponse + func NewUpdateInstanceResponseWithDefaults() *UpdateInstanceResponse + func (o *UpdateInstanceResponse) GetItem() Instance + func (o *UpdateInstanceResponse) GetItemOk() (*Instance, bool) + func (o *UpdateInstanceResponse) HasItem() bool + func (o *UpdateInstanceResponse) SetItem(v Instance) + func (o UpdateInstanceResponse) MarshalJSON() ([]byte, error) + func (o UpdateInstanceResponse) ToMap() (map[string]interface{}, error) + type User struct + Database *string + Host *string + Id *string + Password *string + Port *int32 + Roles []string + Uri *string + Username *string + func NewUser() *User + func NewUserWithDefaults() *User + func (o *User) GetDatabase() string + func (o *User) GetDatabaseOk() (*string, bool) + func (o *User) GetHost() string + func (o *User) GetHostOk() (*string, bool) + func (o *User) GetId() string + func (o *User) GetIdOk() (*string, bool) + func (o *User) GetPassword() string + func (o *User) GetPasswordOk() (*string, bool) + func (o *User) GetPort() int32 + func (o *User) GetPortOk() (*int32, bool) + func (o *User) GetRoles() []string + func (o *User) GetRolesOk() ([]string, bool) + func (o *User) GetUri() string + func (o *User) GetUriOk() (*string, bool) + func (o *User) GetUsername() string + func (o *User) GetUsernameOk() (*string, bool) + func (o *User) HasDatabase() bool + func (o *User) HasHost() bool + func (o *User) HasId() bool + func (o *User) HasPassword() bool + func (o *User) HasPort() bool + func (o *User) HasRoles() bool + func (o *User) HasUri() bool + func (o *User) HasUsername() bool + func (o *User) SetDatabase(v string) + func (o *User) SetHost(v string) + func (o *User) SetId(v string) + func (o *User) SetPassword(v string) + func (o *User) SetPort(v int32) + func (o *User) SetRoles(v []string) + func (o *User) SetUri(v string) + func (o *User) SetUsername(v string) + func (o User) MarshalJSON() ([]byte, error) + func (o User) ToMap() (map[string]interface{}, error) + type UserResponseUser struct + DefaultDatabase *string + Host *string + Id *string + Port *int32 + Roles []string + Username *string + func NewUserResponseUser() *UserResponseUser + func NewUserResponseUserWithDefaults() *UserResponseUser + func (o *UserResponseUser) GetDefaultDatabase() string + func (o *UserResponseUser) GetDefaultDatabaseOk() (*string, bool) + func (o *UserResponseUser) GetHost() string + func (o *UserResponseUser) GetHostOk() (*string, bool) + func (o *UserResponseUser) GetId() string + func (o *UserResponseUser) GetIdOk() (*string, bool) + func (o *UserResponseUser) GetPort() int32 + func (o *UserResponseUser) GetPortOk() (*int32, bool) + func (o *UserResponseUser) GetRoles() []string + func (o *UserResponseUser) GetRolesOk() ([]string, bool) + func (o *UserResponseUser) GetUsername() string + func (o *UserResponseUser) GetUsernameOk() (*string, bool) + func (o *UserResponseUser) HasDefaultDatabase() bool + func (o *UserResponseUser) HasHost() bool + func (o *UserResponseUser) HasId() bool + func (o *UserResponseUser) HasPort() bool + func (o *UserResponseUser) HasRoles() bool + func (o *UserResponseUser) HasUsername() bool + func (o *UserResponseUser) SetDefaultDatabase(v string) + func (o *UserResponseUser) SetHost(v string) + func (o *UserResponseUser) SetId(v string) + func (o *UserResponseUser) SetPort(v int32) + func (o *UserResponseUser) SetRoles(v []string) + func (o *UserResponseUser) SetUsername(v string) + func (o UserResponseUser) MarshalJSON() ([]byte, error) + func (o UserResponseUser) ToMap() (map[string]interface{}, error)