postgresflex

package module
v0.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 30, 2025 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func NewConfiguration

func NewConfiguration() *config.Configuration

NewConfiguration returns a new Configuration object

func ParameterValueToString

func ParameterValueToString(obj interface{}, key string) string

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type ACL

type ACL struct {
	Items ACLGetItemsAttributeType `json:"items,omitempty"`
}

ACL struct for ACL

func NewACL

func NewACL() *ACL

NewACL instantiates a new ACL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewACLWithDefaults

func NewACLWithDefaults() *ACL

NewACLWithDefaults instantiates a new ACL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ACL) GetItems

func (o *ACL) GetItems() (res ACLGetItemsRetType)

GetItems returns the Items field value if set, zero value otherwise.

func (*ACL) GetItemsOk

func (o *ACL) GetItemsOk() (ret ACLGetItemsRetType, ok bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ACL) HasItems

func (o *ACL) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ACL) SetItems

func (o *ACL) SetItems(v ACLGetItemsRetType)

SetItems gets a reference to the given []string and assigns it to the Items field.

func (ACL) ToMap

func (o ACL) ToMap() (map[string]interface{}, error)

type ACLGetItemsArgType

type ACLGetItemsArgType = []string

type ACLGetItemsAttributeType

type ACLGetItemsAttributeType = *[]string

isArray

type ACLGetItemsRetType

type ACLGetItemsRetType = []string

type APIClient

type APIClient struct {
	// contains filtered or unexported fields
}

APIClient manages communication with the STACKIT PostgreSQL Flex API API v2.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error)

NewAPIClient creates a new API client. Optionally receives configuration options

func (*APIClient) CloneInstance

func (a *APIClient) CloneInstance(ctx context.Context, projectId string, region string, instanceId string) ApiCloneInstanceRequest

CloneInstance: Clone Instance

Clone an existing instance of a postgres database to a new destination instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiCloneInstanceRequest

func (*APIClient) CloneInstanceExecute

func (a *APIClient) CloneInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*CloneInstanceResponse, error)

func (*APIClient) CreateDatabase

func (a *APIClient) CreateDatabase(ctx context.Context, projectId string, region string, instanceId string) ApiCreateDatabaseRequest

CreateDatabase: Create Database

Create database for a user Note: The name of a valid user must be provided in the "options" map field using the key "owner"

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiCreateDatabaseRequest

func (*APIClient) CreateDatabaseExecute

func (a *APIClient) CreateDatabaseExecute(ctx context.Context, projectId string, region string, instanceId string) (*InstanceCreateDatabaseResponse, error)

func (*APIClient) CreateInstance

func (a *APIClient) CreateInstance(ctx context.Context, projectId string, region string) ApiCreateInstanceRequest

CreateInstance: Create Instance

Create a new instance of a postgres database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@return ApiCreateInstanceRequest

func (*APIClient) CreateInstanceExecute

func (a *APIClient) CreateInstanceExecute(ctx context.Context, projectId string, region string) (*CreateInstanceResponse, error)

func (*APIClient) CreateUser

func (a *APIClient) CreateUser(ctx context.Context, projectId string, region string, instanceId string) ApiCreateUserRequest

CreateUser: Create User

Create user for an instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiCreateUserRequest

func (*APIClient) CreateUserExecute

func (a *APIClient) CreateUserExecute(ctx context.Context, projectId string, region string, instanceId string) (*CreateUserResponse, error)

func (*APIClient) DeleteDatabase

func (a *APIClient) DeleteDatabase(ctx context.Context, projectId string, region string, instanceId string, databaseId string) ApiDeleteDatabaseRequest

DeleteDatabase: Delete Database

Delete database for an instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@param databaseId Database ID
@return ApiDeleteDatabaseRequest

func (*APIClient) DeleteDatabaseExecute

func (a *APIClient) DeleteDatabaseExecute(ctx context.Context, projectId string, region string, instanceId string, databaseId string) error

func (*APIClient) DeleteInstance

func (a *APIClient) DeleteInstance(ctx context.Context, projectId string, region string, instanceId string) ApiDeleteInstanceRequest

DeleteInstance: Delete Instance

Delete available instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiDeleteInstanceRequest

func (*APIClient) DeleteInstanceExecute

func (a *APIClient) DeleteInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) error

func (*APIClient) DeleteUser

func (a *APIClient) DeleteUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiDeleteUserRequest

DeleteUser: Delete User

Delete user for an instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@param userId User ID
@return ApiDeleteUserRequest

func (*APIClient) DeleteUserExecute

func (a *APIClient) DeleteUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) error

func (*APIClient) ForceDeleteInstance

func (a *APIClient) ForceDeleteInstance(ctx context.Context, projectId string, region string, instanceId string) ApiForceDeleteInstanceRequest

ForceDeleteInstance: Force delete instance

Forces the deletion of an delayed deleted instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiForceDeleteInstanceRequest

func (*APIClient) ForceDeleteInstanceExecute

func (a *APIClient) ForceDeleteInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) error

func (*APIClient) GetBackup

func (a *APIClient) GetBackup(ctx context.Context, projectId string, region string, instanceId string, backupId string) ApiGetBackupRequest

GetBackup: Get specific backup

Get specific available backup

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@param backupId Backup ID
@return ApiGetBackupRequest

func (*APIClient) GetBackupExecute

func (a *APIClient) GetBackupExecute(ctx context.Context, projectId string, region string, instanceId string, backupId string) (*GetBackupResponse, error)

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *config.Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

func (*APIClient) GetInstance

func (a *APIClient) GetInstance(ctx context.Context, projectId string, region string, instanceId string) ApiGetInstanceRequest

GetInstance: Get specific instance

Get specific available instances

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiGetInstanceRequest

func (*APIClient) GetInstanceExecute

func (a *APIClient) GetInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*InstanceResponse, error)

func (*APIClient) GetUser

func (a *APIClient) GetUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiGetUserRequest

GetUser: Get User

Get specific available user for an instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@param userId User ID
@return ApiGetUserRequest

func (*APIClient) GetUserExecute

func (a *APIClient) GetUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) (*GetUserResponse, error)

func (*APIClient) ListBackups

func (a *APIClient) ListBackups(ctx context.Context, projectId string, region string, instanceId string) ApiListBackupsRequest

ListBackups: List backups

List all backups which are available for a specific instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiListBackupsRequest

func (*APIClient) ListBackupsExecute

func (a *APIClient) ListBackupsExecute(ctx context.Context, projectId string, region string, instanceId string) (*ListBackupsResponse, error)

func (*APIClient) ListDatabaseParameters

func (a *APIClient) ListDatabaseParameters(ctx context.Context, projectId string, region string, instanceId string) ApiListDatabaseParametersRequest

ListDatabaseParameters: List Databases parameter

List available databases parameter

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiListDatabaseParametersRequest

func (*APIClient) ListDatabaseParametersExecute

func (a *APIClient) ListDatabaseParametersExecute(ctx context.Context, projectId string, region string, instanceId string) (*PostgresDatabaseParameterResponse, error)

func (*APIClient) ListDatabases

func (a *APIClient) ListDatabases(ctx context.Context, projectId string, region string, instanceId string) ApiListDatabasesRequest

ListDatabases: List Databases

List available databases for an instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiListDatabasesRequest

func (*APIClient) ListDatabasesExecute

func (a *APIClient) ListDatabasesExecute(ctx context.Context, projectId string, region string, instanceId string) (*InstanceListDatabasesResponse, error)

func (*APIClient) ListFlavors

func (a *APIClient) ListFlavors(ctx context.Context, projectId string, region string) ApiListFlavorsRequest

ListFlavors: Get Flavors

Get available flavors for a specific projectID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@return ApiListFlavorsRequest

func (*APIClient) ListFlavorsExecute

func (a *APIClient) ListFlavorsExecute(ctx context.Context, projectId string, region string) (*ListFlavorsResponse, error)

func (*APIClient) ListInstances

func (a *APIClient) ListInstances(ctx context.Context, projectId string, region string) ApiListInstancesRequest

ListInstances: List Instances

List available instances

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@return ApiListInstancesRequest

func (*APIClient) ListInstancesExecute

func (a *APIClient) ListInstancesExecute(ctx context.Context, projectId string, region string) (*ListInstancesResponse, error)

func (*APIClient) ListMetrics

func (a *APIClient) ListMetrics(ctx context.Context, projectId string, region string, instanceId string, metric string) ApiListMetricsRequest

ListMetrics: Get Metric

Returns a metric for an instance. The metric will only be for the master pod if needed. Granularity parameter is always needed. If start and end time is provided, period is not considered in max-connections and disk-use. If you provide start time, you have to provide end time as well and vice versa.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The UUID of the project.
@param region The region which should be addressed
@param instanceId The UUID of the instance.
@param metric The name of the metric. Valid metrics are 'cpu', 'memory', 'max-connections', 'connections' and 'disk-use'.
@return ApiListMetricsRequest

func (*APIClient) ListMetricsExecute

func (a *APIClient) ListMetricsExecute(ctx context.Context, projectId string, region string, instanceId string, metric string) (*InstanceMetricsResponse, error)

func (*APIClient) ListStorages

func (a *APIClient) ListStorages(ctx context.Context, projectId string, region string, flavorId string) ApiListStoragesRequest

ListStorages: Get Storages

Get available storages for a specific flavor

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param flavorId Flavor ID
@return ApiListStoragesRequest

func (*APIClient) ListStoragesExecute

func (a *APIClient) ListStoragesExecute(ctx context.Context, projectId string, region string, flavorId string) (*ListStoragesResponse, error)

func (*APIClient) ListUsers

func (a *APIClient) ListUsers(ctx context.Context, projectId string, region string, instanceId string) ApiListUsersRequest

ListUsers: List Users

List available users for an instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiListUsersRequest

func (*APIClient) ListUsersExecute

func (a *APIClient) ListUsersExecute(ctx context.Context, projectId string, region string, instanceId string) (*ListUsersResponse, error)

func (*APIClient) ListVersions

func (a *APIClient) ListVersions(ctx context.Context, projectId string, region string) ApiListVersionsRequest

ListVersions: Get Versions

Get available versions for postgres database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@return ApiListVersionsRequest

func (*APIClient) ListVersionsExecute

func (a *APIClient) ListVersionsExecute(ctx context.Context, projectId string, region string) (*ListVersionsResponse, error)

func (*APIClient) PartialUpdateInstance

func (a *APIClient) PartialUpdateInstance(ctx context.Context, projectId string, region string, instanceId string) ApiPartialUpdateInstanceRequest

PartialUpdateInstance: Update Instance

Update available instance of a postgres database. Supported Versions are 12, 13, 14, 15 -- only upgrades are allowed!

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiPartialUpdateInstanceRequest

func (*APIClient) PartialUpdateInstanceExecute

func (a *APIClient) PartialUpdateInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*PartialUpdateInstanceResponse, error)

func (*APIClient) PartialUpdateUser

func (a *APIClient) PartialUpdateUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiPartialUpdateUserRequest

PartialUpdateUser: Update User

Update user for an instance. Only the roles are updatable.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The ID of the project
@param region The region which should be addressed
@param instanceId The ID of the instance
@param userId The ID of the user in the database
@return ApiPartialUpdateUserRequest

func (*APIClient) PartialUpdateUserExecute

func (a *APIClient) PartialUpdateUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) error

func (*APIClient) ResetUser

func (a *APIClient) ResetUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiResetUserRequest

ResetUser: Reset User

Reset user password for a postgres instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@param userId user ID
@return ApiResetUserRequest

func (*APIClient) ResetUserExecute

func (a *APIClient) ResetUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) (*ResetUserResponse, error)

func (*APIClient) UpdateBackupSchedule

func (a *APIClient) UpdateBackupSchedule(ctx context.Context, projectId string, region string, instanceId string) ApiUpdateBackupScheduleRequest

UpdateBackupSchedule: Update Backup Schedule

Update backup schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiUpdateBackupScheduleRequest

func (*APIClient) UpdateBackupScheduleExecute

func (a *APIClient) UpdateBackupScheduleExecute(ctx context.Context, projectId string, region string, instanceId string) error

func (*APIClient) UpdateInstance

func (a *APIClient) UpdateInstance(ctx context.Context, projectId string, region string, instanceId string) ApiUpdateInstanceRequest

UpdateInstance: Update Instance

Update available instance of a postgres database. Supported Versions are 12, 13, 14, 15 -- only upgrades are allowed!

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@param region The region which should be addressed
@param instanceId Instance ID
@return ApiUpdateInstanceRequest

func (*APIClient) UpdateInstanceExecute

func (a *APIClient) UpdateInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*PartialUpdateInstanceResponse, error)

func (*APIClient) UpdateUser

func (a *APIClient) UpdateUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiUpdateUserRequest

UpdateUser: Update User

Update user for an instance. Only the roles are updatable.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The ID of the project
@param region The region which should be addressed
@param instanceId The ID of the instance
@param userId The ID of the user in the database
@return ApiUpdateUserRequest

func (*APIClient) UpdateUserExecute

func (a *APIClient) UpdateUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) error

type ApiCloneInstanceRequest

type ApiCloneInstanceRequest interface {
	// Body
	CloneInstancePayload(cloneInstancePayload CloneInstancePayload) ApiCloneInstanceRequest
	Execute() (*CloneInstanceResponse, error)
}

type ApiConfiguration

type ApiConfiguration struct {
	Name    ApiConfigurationGetNameAttributeType    `json:"name,omitempty"`
	Setting ApiConfigurationGetSettingAttributeType `json:"setting,omitempty"`
}

ApiConfiguration struct for ApiConfiguration

func NewApiConfiguration

func NewApiConfiguration() *ApiConfiguration

NewApiConfiguration instantiates a new ApiConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiConfigurationWithDefaults

func NewApiConfigurationWithDefaults() *ApiConfiguration

NewApiConfigurationWithDefaults instantiates a new ApiConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiConfiguration) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ApiConfiguration) GetNameOk

func (o *ApiConfiguration) GetNameOk() (ret ApiConfigurationGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiConfiguration) GetSetting

GetSetting returns the Setting field value if set, zero value otherwise.

func (*ApiConfiguration) GetSettingOk

func (o *ApiConfiguration) GetSettingOk() (ret ApiConfigurationGetSettingRetType, ok bool)

GetSettingOk returns a tuple with the Setting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiConfiguration) HasName

func (o *ApiConfiguration) HasName() bool

HasName returns a boolean if a field has been set.

func (*ApiConfiguration) HasSetting

func (o *ApiConfiguration) HasSetting() bool

HasSetting returns a boolean if a field has been set.

func (*ApiConfiguration) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ApiConfiguration) SetSetting

SetSetting gets a reference to the given string and assigns it to the Setting field.

func (ApiConfiguration) ToMap

func (o ApiConfiguration) ToMap() (map[string]interface{}, error)

type ApiConfigurationGetNameArgType

type ApiConfigurationGetNameArgType = string

type ApiConfigurationGetNameAttributeType

type ApiConfigurationGetNameAttributeType = *string

isNotNullableString

type ApiConfigurationGetNameRetType

type ApiConfigurationGetNameRetType = string

type ApiConfigurationGetSettingArgType

type ApiConfigurationGetSettingArgType = string

type ApiConfigurationGetSettingAttributeType

type ApiConfigurationGetSettingAttributeType = *string

isNotNullableString

type ApiConfigurationGetSettingRetType

type ApiConfigurationGetSettingRetType = string

type ApiCreateDatabaseRequest

type ApiCreateDatabaseRequest interface {
	// body
	CreateDatabasePayload(createDatabasePayload CreateDatabasePayload) ApiCreateDatabaseRequest
	Execute() (*InstanceCreateDatabaseResponse, error)
}

type ApiCreateInstanceRequest

type ApiCreateInstanceRequest interface {
	// Body
	CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest
	Execute() (*CreateInstanceResponse, error)
}

type ApiCreateUserRequest

type ApiCreateUserRequest interface {
	// body
	CreateUserPayload(createUserPayload CreateUserPayload) ApiCreateUserRequest
	Execute() (*CreateUserResponse, error)
}

type ApiDeleteDatabaseRequest

type ApiDeleteDatabaseRequest interface {
	Execute() error
}

type ApiDeleteInstanceRequest

type ApiDeleteInstanceRequest interface {
	Execute() error
}

type ApiDeleteUserRequest

type ApiDeleteUserRequest interface {
	Execute() error
}

type ApiExtensionConfigLoadResponse

type ApiExtensionConfigLoadResponse struct {
	// Returns marshalled JSON of the new configuration of whatever extension is called
	Configuration ApiExtensionConfigLoadResponseGetConfigurationAttributeType `json:"configuration,omitempty"`
}

ApiExtensionConfigLoadResponse struct for ApiExtensionConfigLoadResponse

func NewApiExtensionConfigLoadResponse

func NewApiExtensionConfigLoadResponse() *ApiExtensionConfigLoadResponse

NewApiExtensionConfigLoadResponse instantiates a new ApiExtensionConfigLoadResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiExtensionConfigLoadResponseWithDefaults

func NewApiExtensionConfigLoadResponseWithDefaults() *ApiExtensionConfigLoadResponse

NewApiExtensionConfigLoadResponseWithDefaults instantiates a new ApiExtensionConfigLoadResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiExtensionConfigLoadResponse) GetConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*ApiExtensionConfigLoadResponse) GetConfigurationOk

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionConfigLoadResponse) HasConfiguration

func (o *ApiExtensionConfigLoadResponse) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ApiExtensionConfigLoadResponse) SetConfiguration

SetConfiguration gets a reference to the given []ApiConfiguration and assigns it to the Configuration field.

func (ApiExtensionConfigLoadResponse) ToMap

func (o ApiExtensionConfigLoadResponse) ToMap() (map[string]interface{}, error)

type ApiExtensionConfigLoadResponseGetConfigurationArgType

type ApiExtensionConfigLoadResponseGetConfigurationArgType = []ApiConfiguration

type ApiExtensionConfigLoadResponseGetConfigurationAttributeType

type ApiExtensionConfigLoadResponseGetConfigurationAttributeType = *[]ApiConfiguration

isArray

type ApiExtensionConfigLoadResponseGetConfigurationRetType

type ApiExtensionConfigLoadResponseGetConfigurationRetType = []ApiConfiguration

type ApiExtensionConfigureResponse

type ApiExtensionConfigureResponse struct {
	// Returns marshalled JSON of the new configuration of whatever extension is called
	Configuration ApiExtensionConfigureResponseGetConfigurationAttributeType `json:"configuration,omitempty"`
}

ApiExtensionConfigureResponse struct for ApiExtensionConfigureResponse

func NewApiExtensionConfigureResponse

func NewApiExtensionConfigureResponse() *ApiExtensionConfigureResponse

NewApiExtensionConfigureResponse instantiates a new ApiExtensionConfigureResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiExtensionConfigureResponseWithDefaults

func NewApiExtensionConfigureResponseWithDefaults() *ApiExtensionConfigureResponse

NewApiExtensionConfigureResponseWithDefaults instantiates a new ApiExtensionConfigureResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiExtensionConfigureResponse) GetConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*ApiExtensionConfigureResponse) GetConfigurationOk

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionConfigureResponse) HasConfiguration

func (o *ApiExtensionConfigureResponse) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ApiExtensionConfigureResponse) SetConfiguration

SetConfiguration gets a reference to the given []ApiConfiguration and assigns it to the Configuration field.

func (ApiExtensionConfigureResponse) ToMap

func (o ApiExtensionConfigureResponse) ToMap() (map[string]interface{}, error)

type ApiExtensionConfigureResponseGetConfigurationArgType

type ApiExtensionConfigureResponseGetConfigurationArgType = []ApiConfiguration

type ApiExtensionConfigureResponseGetConfigurationAttributeType

type ApiExtensionConfigureResponseGetConfigurationAttributeType = *[]ApiConfiguration

isArray

type ApiExtensionConfigureResponseGetConfigurationRetType

type ApiExtensionConfigureResponseGetConfigurationRetType = []ApiConfiguration

type ApiExtensionDeleteResponse

type ApiExtensionDeleteResponse struct {
	IsSucceded ApiExtensionDeleteResponsegetIsSuccededAttributeType `json:"isSucceded,omitempty"`
}

ApiExtensionDeleteResponse struct for ApiExtensionDeleteResponse

func NewApiExtensionDeleteResponse

func NewApiExtensionDeleteResponse() *ApiExtensionDeleteResponse

NewApiExtensionDeleteResponse instantiates a new ApiExtensionDeleteResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiExtensionDeleteResponseWithDefaults

func NewApiExtensionDeleteResponseWithDefaults() *ApiExtensionDeleteResponse

NewApiExtensionDeleteResponseWithDefaults instantiates a new ApiExtensionDeleteResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiExtensionDeleteResponse) GetIsSucceded

GetIsSucceded returns the IsSucceded field value if set, zero value otherwise.

func (*ApiExtensionDeleteResponse) GetIsSuccededOk

GetIsSuccededOk returns a tuple with the IsSucceded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionDeleteResponse) HasIsSucceded

func (o *ApiExtensionDeleteResponse) HasIsSucceded() bool

HasIsSucceded returns a boolean if a field has been set.

func (*ApiExtensionDeleteResponse) SetIsSucceded

SetIsSucceded gets a reference to the given bool and assigns it to the IsSucceded field.

func (ApiExtensionDeleteResponse) ToMap

func (o ApiExtensionDeleteResponse) ToMap() (map[string]interface{}, error)

type ApiExtensionDeleteResponsegetIsSuccededArgType

type ApiExtensionDeleteResponsegetIsSuccededArgType = bool

type ApiExtensionDeleteResponsegetIsSuccededAttributeType

type ApiExtensionDeleteResponsegetIsSuccededAttributeType = *bool

isBoolean

type ApiExtensionDeleteResponsegetIsSuccededRetType

type ApiExtensionDeleteResponsegetIsSuccededRetType = bool

type ApiExtensionList

type ApiExtensionList struct {
	ID          ApiExtensionListGetIDAttributeType          `json:"ID,omitempty"`
	Description ApiExtensionListGetDescriptionAttributeType `json:"description,omitempty"`
	Name        ApiExtensionListGetNameAttributeType        `json:"name,omitempty"`
}

ApiExtensionList struct for ApiExtensionList

func NewApiExtensionList

func NewApiExtensionList() *ApiExtensionList

NewApiExtensionList instantiates a new ApiExtensionList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiExtensionListWithDefaults

func NewApiExtensionListWithDefaults() *ApiExtensionList

NewApiExtensionListWithDefaults instantiates a new ApiExtensionList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiExtensionList) GetDescription

func (o *ApiExtensionList) GetDescription() (res ApiExtensionListGetDescriptionRetType)

GetDescription returns the Description field value if set, zero value otherwise.

func (*ApiExtensionList) GetDescriptionOk

func (o *ApiExtensionList) GetDescriptionOk() (ret ApiExtensionListGetDescriptionRetType, ok bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionList) GetID

GetID returns the ID field value if set, zero value otherwise.

func (*ApiExtensionList) GetIDOk

func (o *ApiExtensionList) GetIDOk() (ret ApiExtensionListGetIDRetType, ok bool)

GetIDOk returns a tuple with the ID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionList) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ApiExtensionList) GetNameOk

func (o *ApiExtensionList) GetNameOk() (ret ApiExtensionListGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionList) HasDescription

func (o *ApiExtensionList) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApiExtensionList) HasID

func (o *ApiExtensionList) HasID() bool

HasID returns a boolean if a field has been set.

func (*ApiExtensionList) HasName

func (o *ApiExtensionList) HasName() bool

HasName returns a boolean if a field has been set.

func (*ApiExtensionList) SetDescription

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ApiExtensionList) SetID

SetID gets a reference to the given int64 and assigns it to the ID field.

func (*ApiExtensionList) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (ApiExtensionList) ToMap

func (o ApiExtensionList) ToMap() (map[string]interface{}, error)

type ApiExtensionListGetDescriptionArgType

type ApiExtensionListGetDescriptionArgType = string

type ApiExtensionListGetDescriptionAttributeType

type ApiExtensionListGetDescriptionAttributeType = *string

isNotNullableString

type ApiExtensionListGetDescriptionRetType

type ApiExtensionListGetDescriptionRetType = string

type ApiExtensionListGetIDArgType

type ApiExtensionListGetIDArgType = int64

type ApiExtensionListGetIDAttributeType

type ApiExtensionListGetIDAttributeType = *int64

isLong

type ApiExtensionListGetIDRetType

type ApiExtensionListGetIDRetType = int64

type ApiExtensionListGetNameArgType

type ApiExtensionListGetNameArgType = string

type ApiExtensionListGetNameAttributeType

type ApiExtensionListGetNameAttributeType = *string

isNotNullableString

type ApiExtensionListGetNameRetType

type ApiExtensionListGetNameRetType = string

type ApiExtensionLoadResponse

type ApiExtensionLoadResponse struct {
	Extension ApiExtensionLoadResponseGetExtensionAttributeType `json:"extension,omitempty"`
}

ApiExtensionLoadResponse struct for ApiExtensionLoadResponse

func NewApiExtensionLoadResponse

func NewApiExtensionLoadResponse() *ApiExtensionLoadResponse

NewApiExtensionLoadResponse instantiates a new ApiExtensionLoadResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiExtensionLoadResponseWithDefaults

func NewApiExtensionLoadResponseWithDefaults() *ApiExtensionLoadResponse

NewApiExtensionLoadResponseWithDefaults instantiates a new ApiExtensionLoadResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiExtensionLoadResponse) GetExtension

GetExtension returns the Extension field value if set, zero value otherwise.

func (*ApiExtensionLoadResponse) GetExtensionOk

GetExtensionOk returns a tuple with the Extension field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiExtensionLoadResponse) HasExtension

func (o *ApiExtensionLoadResponse) HasExtension() bool

HasExtension returns a boolean if a field has been set.

func (*ApiExtensionLoadResponse) SetExtension

SetExtension gets a reference to the given ApiExtensionList and assigns it to the Extension field.

func (ApiExtensionLoadResponse) ToMap

func (o ApiExtensionLoadResponse) ToMap() (map[string]interface{}, error)

type ApiExtensionLoadResponseGetExtensionArgType

type ApiExtensionLoadResponseGetExtensionArgType = ApiExtensionList

type ApiExtensionLoadResponseGetExtensionAttributeType

type ApiExtensionLoadResponseGetExtensionAttributeType = *ApiExtensionList

isModel

type ApiExtensionLoadResponseGetExtensionRetType

type ApiExtensionLoadResponseGetExtensionRetType = ApiExtensionList

type ApiForceDeleteInstanceRequest

type ApiForceDeleteInstanceRequest interface {
	Execute() error
}

type ApiGetBackupRequest

type ApiGetBackupRequest interface {
	Execute() (*GetBackupResponse, error)
}

type ApiGetInstanceRequest

type ApiGetInstanceRequest interface {
	Execute() (*InstanceResponse, error)
}

type ApiGetUserRequest

type ApiGetUserRequest interface {
	Execute() (*GetUserResponse, error)
}

type ApiInstallResponse

type ApiInstallResponse struct {
	Extension ApiInstallResponseGetExtensionAttributeType `json:"extension,omitempty"`
}

ApiInstallResponse struct for ApiInstallResponse

func NewApiInstallResponse

func NewApiInstallResponse() *ApiInstallResponse

NewApiInstallResponse instantiates a new ApiInstallResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiInstallResponseWithDefaults

func NewApiInstallResponseWithDefaults() *ApiInstallResponse

NewApiInstallResponseWithDefaults instantiates a new ApiInstallResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiInstallResponse) GetExtension

GetExtension returns the Extension field value if set, zero value otherwise.

func (*ApiInstallResponse) GetExtensionOk

func (o *ApiInstallResponse) GetExtensionOk() (ret ApiInstallResponseGetExtensionRetType, ok bool)

GetExtensionOk returns a tuple with the Extension field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiInstallResponse) HasExtension

func (o *ApiInstallResponse) HasExtension() bool

HasExtension returns a boolean if a field has been set.

func (*ApiInstallResponse) SetExtension

SetExtension gets a reference to the given ApiExtensionList and assigns it to the Extension field.

func (ApiInstallResponse) ToMap

func (o ApiInstallResponse) ToMap() (map[string]interface{}, error)

type ApiInstallResponseGetExtensionArgType

type ApiInstallResponseGetExtensionArgType = ApiExtensionList

type ApiInstallResponseGetExtensionAttributeType

type ApiInstallResponseGetExtensionAttributeType = *ApiExtensionList

isModel

type ApiInstallResponseGetExtensionRetType

type ApiInstallResponseGetExtensionRetType = ApiExtensionList

type ApiInstalledListResponse

type ApiInstalledListResponse struct {
	Installed ApiInstalledListResponseGetInstalledAttributeType `json:"installed,omitempty"`
}

ApiInstalledListResponse struct for ApiInstalledListResponse

func NewApiInstalledListResponse

func NewApiInstalledListResponse() *ApiInstalledListResponse

NewApiInstalledListResponse instantiates a new ApiInstalledListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiInstalledListResponseWithDefaults

func NewApiInstalledListResponseWithDefaults() *ApiInstalledListResponse

NewApiInstalledListResponseWithDefaults instantiates a new ApiInstalledListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiInstalledListResponse) GetInstalled

GetInstalled returns the Installed field value if set, zero value otherwise.

func (*ApiInstalledListResponse) GetInstalledOk

GetInstalledOk returns a tuple with the Installed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiInstalledListResponse) HasInstalled

func (o *ApiInstalledListResponse) HasInstalled() bool

HasInstalled returns a boolean if a field has been set.

func (*ApiInstalledListResponse) SetInstalled

SetInstalled gets a reference to the given []ApiExtensionList and assigns it to the Installed field.

func (ApiInstalledListResponse) ToMap

func (o ApiInstalledListResponse) ToMap() (map[string]interface{}, error)

type ApiInstalledListResponseGetInstalledArgType

type ApiInstalledListResponseGetInstalledArgType = []ApiExtensionList

type ApiInstalledListResponseGetInstalledAttributeType

type ApiInstalledListResponseGetInstalledAttributeType = *[]ApiExtensionList

isArray

type ApiInstalledListResponseGetInstalledRetType

type ApiInstalledListResponseGetInstalledRetType = []ApiExtensionList

type ApiListBackupsRequest

type ApiListBackupsRequest interface {
	Execute() (*ListBackupsResponse, error)
}

type ApiListDatabaseParametersRequest

type ApiListDatabaseParametersRequest interface {
	Execute() (*PostgresDatabaseParameterResponse, error)
}

type ApiListDatabasesRequest

type ApiListDatabasesRequest interface {
	Execute() (*InstanceListDatabasesResponse, error)
}

type ApiListFlavorsRequest

type ApiListFlavorsRequest interface {
	Execute() (*ListFlavorsResponse, error)
}

type ApiListInstancesRequest

type ApiListInstancesRequest interface {
	Execute() (*ListInstancesResponse, error)
}

type ApiListMetricsRequest

type ApiListMetricsRequest interface {
	// The granularity in ISO8601 e.g. 5 minutes are 'PT5M'.
	Granularity(granularity string) ApiListMetricsRequest
	// The period in ISO8601 format e.g. 5 minutes are 'PT5M'. If no period is provided, the standard value of 5 minutes is used.
	Period(period string) ApiListMetricsRequest
	// The start of the timeframe as timestamp in ISO8601 (RFC3339) e.g. '2023-08-28T07:10:52.536Z'. If no start time is provided, current server time as UTC is used.
	Start(start string) ApiListMetricsRequest
	// The end of the timeframe as timestamp in ISO8601 (RFC3339) e.g. '2023-08-28T07:10:52.536Z'.
	End(end string) ApiListMetricsRequest
	Execute() (*InstanceMetricsResponse, error)
}

type ApiListStoragesRequest

type ApiListStoragesRequest interface {
	Execute() (*ListStoragesResponse, error)
}

type ApiListUsersRequest

type ApiListUsersRequest interface {
	Execute() (*ListUsersResponse, error)
}

type ApiListVersionsRequest

type ApiListVersionsRequest interface {
	// Instance ID
	InstanceId(instanceId string) ApiListVersionsRequest
	Execute() (*ListVersionsResponse, error)
}

type ApiPartialUpdateInstanceRequest

type ApiPartialUpdateInstanceRequest interface {
	// Body
	PartialUpdateInstancePayload(partialUpdateInstancePayload PartialUpdateInstancePayload) ApiPartialUpdateInstanceRequest
	Execute() (*PartialUpdateInstanceResponse, error)
}

type ApiPartialUpdateUserRequest

type ApiPartialUpdateUserRequest interface {
	// The Request body only required in PUT endpoint. If empty request body is send via patch, then login and createdb roles are removed from user. The field
	PartialUpdateUserPayload(partialUpdateUserPayload PartialUpdateUserPayload) ApiPartialUpdateUserRequest
	Execute() error
}

type ApiResetUserRequest

type ApiResetUserRequest interface {
	Execute() (*ResetUserResponse, error)
}

type ApiUpdateBackupScheduleRequest

type ApiUpdateBackupScheduleRequest interface {
	// Body
	UpdateBackupSchedulePayload(updateBackupSchedulePayload UpdateBackupSchedulePayload) ApiUpdateBackupScheduleRequest
	Execute() error
}

type ApiUpdateInstanceRequest

type ApiUpdateInstanceRequest interface {
	// Body
	UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest
	Execute() (*PartialUpdateInstanceResponse, error)
}

type ApiUpdateUserRequest

type ApiUpdateUserRequest interface {
	// The Request body only required in PUT endpoint. If empty request body is send via patch, then login and createdb roles are removed from user. The field
	UpdateUserPayload(updateUserPayload UpdateUserPayload) ApiUpdateUserRequest
	Execute() error
}

type Backup

type Backup struct {
	EndTime   BackupGetEndTimeAttributeType   `json:"endTime,omitempty"`
	Error     BackupGetErrorAttributeType     `json:"error,omitempty"`
	Id        BackupGetIdAttributeType        `json:"id,omitempty"`
	Labels    BackupGetLabelsAttributeType    `json:"labels,omitempty"`
	Name      BackupGetNameAttributeType      `json:"name,omitempty"`
	Options   BackupGetOptionsAttributeType   `json:"options,omitempty"`
	Size      BackupGetSizeAttributeType      `json:"size,omitempty"`
	StartTime BackupGetStartTimeAttributeType `json:"startTime,omitempty"`
}

Backup struct for Backup

func NewBackup

func NewBackup() *Backup

NewBackup instantiates a new Backup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBackupWithDefaults

func NewBackupWithDefaults() *Backup

NewBackupWithDefaults instantiates a new Backup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Backup) GetEndTime

func (o *Backup) GetEndTime() (res BackupGetEndTimeRetType)

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*Backup) GetEndTimeOk

func (o *Backup) GetEndTimeOk() (ret BackupGetEndTimeRetType, ok bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetError

func (o *Backup) GetError() (res BackupGetErrorRetType)

GetError returns the Error field value if set, zero value otherwise.

func (*Backup) GetErrorOk

func (o *Backup) GetErrorOk() (ret BackupGetErrorRetType, ok bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetId

func (o *Backup) GetId() (res BackupGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*Backup) GetIdOk

func (o *Backup) GetIdOk() (ret BackupGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetLabels

func (o *Backup) GetLabels() (res BackupGetLabelsRetType)

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Backup) GetLabelsOk

func (o *Backup) GetLabelsOk() (ret BackupGetLabelsRetType, ok bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetName

func (o *Backup) GetName() (res BackupGetNameRetType)

GetName returns the Name field value if set, zero value otherwise.

func (*Backup) GetNameOk

func (o *Backup) GetNameOk() (ret BackupGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetOptions

func (o *Backup) GetOptions() (res BackupGetOptionsRetType)

GetOptions returns the Options field value if set, zero value otherwise.

func (*Backup) GetOptionsOk

func (o *Backup) GetOptionsOk() (ret BackupGetOptionsRetType, ok bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetSize

func (o *Backup) GetSize() (res BackupGetSizeRetType)

GetSize returns the Size field value if set, zero value otherwise.

func (*Backup) GetSizeOk

func (o *Backup) GetSizeOk() (ret BackupGetSizeRetType, ok bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) GetStartTime

func (o *Backup) GetStartTime() (res BackupGetStartTimeRetType)

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*Backup) GetStartTimeOk

func (o *Backup) GetStartTimeOk() (ret BackupGetStartTimeRetType, ok bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Backup) HasEndTime

func (o *Backup) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*Backup) HasError

func (o *Backup) HasError() bool

HasError returns a boolean if a field has been set.

func (*Backup) HasId

func (o *Backup) HasId() bool

HasId returns a boolean if a field has been set.

func (*Backup) HasLabels

func (o *Backup) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Backup) HasName

func (o *Backup) HasName() bool

HasName returns a boolean if a field has been set.

func (*Backup) HasOptions

func (o *Backup) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*Backup) HasSize

func (o *Backup) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*Backup) HasStartTime

func (o *Backup) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*Backup) SetEndTime

func (o *Backup) SetEndTime(v BackupGetEndTimeRetType)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*Backup) SetError

func (o *Backup) SetError(v BackupGetErrorRetType)

SetError gets a reference to the given string and assigns it to the Error field.

func (*Backup) SetId

func (o *Backup) SetId(v BackupGetIdRetType)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Backup) SetLabels

func (o *Backup) SetLabels(v BackupGetLabelsRetType)

SetLabels gets a reference to the given []string and assigns it to the Labels field.

func (*Backup) SetName

func (o *Backup) SetName(v BackupGetNameRetType)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Backup) SetOptions

func (o *Backup) SetOptions(v BackupGetOptionsRetType)

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (*Backup) SetSize

func (o *Backup) SetSize(v BackupGetSizeRetType)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*Backup) SetStartTime

func (o *Backup) SetStartTime(v BackupGetStartTimeRetType)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (Backup) ToMap

func (o Backup) ToMap() (map[string]interface{}, error)

type BackupGetEndTimeArgType

type BackupGetEndTimeArgType = string

type BackupGetEndTimeAttributeType

type BackupGetEndTimeAttributeType = *string

isNotNullableString

type BackupGetEndTimeRetType

type BackupGetEndTimeRetType = string

type BackupGetErrorArgType

type BackupGetErrorArgType = string

type BackupGetErrorAttributeType

type BackupGetErrorAttributeType = *string

isNotNullableString

type BackupGetErrorRetType

type BackupGetErrorRetType = string

type BackupGetIdArgType

type BackupGetIdArgType = string

type BackupGetIdAttributeType

type BackupGetIdAttributeType = *string

isNotNullableString

type BackupGetIdRetType

type BackupGetIdRetType = string

type BackupGetLabelsArgType

type BackupGetLabelsArgType = []string

type BackupGetLabelsAttributeType

type BackupGetLabelsAttributeType = *[]string

isArray

type BackupGetLabelsRetType

type BackupGetLabelsRetType = []string

type BackupGetNameArgType

type BackupGetNameArgType = string

type BackupGetNameAttributeType

type BackupGetNameAttributeType = *string

isNotNullableString

type BackupGetNameRetType

type BackupGetNameRetType = string

type BackupGetOptionsArgType

type BackupGetOptionsArgType = map[string]string

type BackupGetOptionsAttributeType

type BackupGetOptionsAttributeType = *map[string]string

isContainer

type BackupGetOptionsRetType

type BackupGetOptionsRetType = map[string]string

type BackupGetSizeArgType

type BackupGetSizeArgType = int64

type BackupGetSizeAttributeType

type BackupGetSizeAttributeType = *int64

isLong

type BackupGetSizeRetType

type BackupGetSizeRetType = int64

type BackupGetStartTimeArgType

type BackupGetStartTimeArgType = string

type BackupGetStartTimeAttributeType

type BackupGetStartTimeAttributeType = *string

isNotNullableString

type BackupGetStartTimeRetType

type BackupGetStartTimeRetType = string

type CloneInstancePayload

type CloneInstancePayload struct {
	Class CloneInstancePayloadGetClassAttributeType `json:"class,omitempty"`
	Size  CloneInstancePayloadGetSizeAttributeType  `json:"size,omitempty"`
	// The timestamp should be specified in UTC time following the format provided in the example.
	Timestamp CloneInstancePayloadGetTimestampAttributeType `json:"timestamp,omitempty"`
}

CloneInstancePayload struct for CloneInstancePayload

func NewCloneInstancePayload

func NewCloneInstancePayload() *CloneInstancePayload

NewCloneInstancePayload instantiates a new CloneInstancePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCloneInstancePayloadWithDefaults

func NewCloneInstancePayloadWithDefaults() *CloneInstancePayload

NewCloneInstancePayloadWithDefaults instantiates a new CloneInstancePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CloneInstancePayload) GetClass

GetClass returns the Class field value if set, zero value otherwise.

func (*CloneInstancePayload) GetClassOk

GetClassOk returns a tuple with the Class field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloneInstancePayload) GetSize

GetSize returns the Size field value if set, zero value otherwise.

func (*CloneInstancePayload) GetSizeOk

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloneInstancePayload) GetTimestamp

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*CloneInstancePayload) GetTimestampOk

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloneInstancePayload) HasClass

func (o *CloneInstancePayload) HasClass() bool

HasClass returns a boolean if a field has been set.

func (*CloneInstancePayload) HasSize

func (o *CloneInstancePayload) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*CloneInstancePayload) HasTimestamp

func (o *CloneInstancePayload) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*CloneInstancePayload) SetClass

SetClass gets a reference to the given string and assigns it to the Class field.

func (*CloneInstancePayload) SetSize

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*CloneInstancePayload) SetTimestamp

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (CloneInstancePayload) ToMap

func (o CloneInstancePayload) ToMap() (map[string]interface{}, error)

type CloneInstancePayloadGetClassArgType

type CloneInstancePayloadGetClassArgType = string

type CloneInstancePayloadGetClassAttributeType

type CloneInstancePayloadGetClassAttributeType = *string

isNotNullableString

type CloneInstancePayloadGetClassRetType

type CloneInstancePayloadGetClassRetType = string

type CloneInstancePayloadGetSizeArgType

type CloneInstancePayloadGetSizeArgType = int64

type CloneInstancePayloadGetSizeAttributeType

type CloneInstancePayloadGetSizeAttributeType = *int64

isLong

type CloneInstancePayloadGetSizeRetType

type CloneInstancePayloadGetSizeRetType = int64

type CloneInstancePayloadGetTimestampArgType

type CloneInstancePayloadGetTimestampArgType = string

type CloneInstancePayloadGetTimestampAttributeType

type CloneInstancePayloadGetTimestampAttributeType = *string

isNotNullableString

type CloneInstancePayloadGetTimestampRetType

type CloneInstancePayloadGetTimestampRetType = string

type CloneInstanceRequest

type CloneInstanceRequest struct {
	// contains filtered or unexported fields
}

func (CloneInstanceRequest) CloneInstancePayload

func (r CloneInstanceRequest) CloneInstancePayload(cloneInstancePayload CloneInstancePayload) ApiCloneInstanceRequest

func (CloneInstanceRequest) Execute

type CloneInstanceResponse

type CloneInstanceResponse struct {
	InstanceId CloneInstanceResponseGetInstanceIdAttributeType `json:"instanceId,omitempty"`
}

CloneInstanceResponse struct for CloneInstanceResponse

func NewCloneInstanceResponse

func NewCloneInstanceResponse() *CloneInstanceResponse

NewCloneInstanceResponse instantiates a new CloneInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCloneInstanceResponseWithDefaults

func NewCloneInstanceResponseWithDefaults() *CloneInstanceResponse

NewCloneInstanceResponseWithDefaults instantiates a new CloneInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CloneInstanceResponse) GetInstanceId

GetInstanceId returns the InstanceId field value if set, zero value otherwise.

func (*CloneInstanceResponse) GetInstanceIdOk

GetInstanceIdOk returns a tuple with the InstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloneInstanceResponse) HasInstanceId

func (o *CloneInstanceResponse) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*CloneInstanceResponse) SetInstanceId

SetInstanceId gets a reference to the given string and assigns it to the InstanceId field.

func (CloneInstanceResponse) ToMap

func (o CloneInstanceResponse) ToMap() (map[string]interface{}, error)

type CloneInstanceResponseGetInstanceIdArgType

type CloneInstanceResponseGetInstanceIdArgType = string

type CloneInstanceResponseGetInstanceIdAttributeType

type CloneInstanceResponseGetInstanceIdAttributeType = *string

isNotNullableString

type CloneInstanceResponseGetInstanceIdRetType

type CloneInstanceResponseGetInstanceIdRetType = string

type CreateDatabasePayload

type CreateDatabasePayload struct {
	Name CreateDatabasePayloadGetNameAttributeType `json:"name,omitempty"`
	// Database specific options
	Options CreateDatabasePayloadGetOptionsAttributeType `json:"options,omitempty"`
}

CreateDatabasePayload struct for CreateDatabasePayload

func NewCreateDatabasePayload

func NewCreateDatabasePayload() *CreateDatabasePayload

NewCreateDatabasePayload instantiates a new CreateDatabasePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateDatabasePayloadWithDefaults

func NewCreateDatabasePayloadWithDefaults() *CreateDatabasePayload

NewCreateDatabasePayloadWithDefaults instantiates a new CreateDatabasePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateDatabasePayload) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*CreateDatabasePayload) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateDatabasePayload) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*CreateDatabasePayload) GetOptionsOk

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateDatabasePayload) HasName

func (o *CreateDatabasePayload) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateDatabasePayload) HasOptions

func (o *CreateDatabasePayload) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*CreateDatabasePayload) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*CreateDatabasePayload) SetOptions

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (CreateDatabasePayload) ToMap

func (o CreateDatabasePayload) ToMap() (map[string]interface{}, error)

type CreateDatabasePayloadGetNameArgType

type CreateDatabasePayloadGetNameArgType = string

type CreateDatabasePayloadGetNameAttributeType

type CreateDatabasePayloadGetNameAttributeType = *string

isNotNullableString

type CreateDatabasePayloadGetNameRetType

type CreateDatabasePayloadGetNameRetType = string

type CreateDatabasePayloadGetOptionsArgType

type CreateDatabasePayloadGetOptionsArgType = map[string]string

type CreateDatabasePayloadGetOptionsAttributeType

type CreateDatabasePayloadGetOptionsAttributeType = *map[string]string

isContainer

type CreateDatabasePayloadGetOptionsRetType

type CreateDatabasePayloadGetOptionsRetType = map[string]string

type CreateDatabaseRequest

type CreateDatabaseRequest struct {
	// contains filtered or unexported fields
}

func (CreateDatabaseRequest) CreateDatabasePayload

func (r CreateDatabaseRequest) CreateDatabasePayload(createDatabasePayload CreateDatabasePayload) ApiCreateDatabaseRequest

func (CreateDatabaseRequest) Execute

type CreateInstancePayload

type CreateInstancePayload struct {
	// REQUIRED
	Acl CreateInstancePayloadGetAclAttributeType `json:"acl" required:"true"`
	// REQUIRED
	BackupSchedule CreateInstancePayloadGetBackupScheduleAttributeType `json:"backupSchedule" required:"true"`
	// REQUIRED
	FlavorId CreateInstancePayloadGetFlavorIdAttributeType `json:"flavorId" required:"true"`
	// Labels field is not certain/clear
	Labels CreateInstancePayloadGetLabelsAttributeType `json:"labels,omitempty"`
	// REQUIRED
	Name CreateInstancePayloadGetNameAttributeType `json:"name" required:"true"`
	// REQUIRED
	Options CreateInstancePayloadGetOptionsAttributeType `json:"options" required:"true"`
	// Can be cast to int32 without loss of precision.
	// REQUIRED
	Replicas CreateInstancePayloadGetReplicasAttributeType `json:"replicas" required:"true"`
	// REQUIRED
	Storage CreateInstancePayloadGetStorageAttributeType `json:"storage" required:"true"`
	// REQUIRED
	Version CreateInstancePayloadGetVersionAttributeType `json:"version" required:"true"`
}

CreateInstancePayload struct for CreateInstancePayload

func NewCreateInstancePayload

NewCreateInstancePayload instantiates a new CreateInstancePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateInstancePayloadWithDefaults

func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload

NewCreateInstancePayloadWithDefaults instantiates a new CreateInstancePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateInstancePayload) GetAcl

GetAcl returns the Acl field value

func (*CreateInstancePayload) GetAclOk

GetAclOk returns a tuple with the Acl field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetBackupSchedule

GetBackupSchedule returns the BackupSchedule field value

func (*CreateInstancePayload) GetBackupScheduleOk

GetBackupScheduleOk returns a tuple with the BackupSchedule field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetFlavorId

GetFlavorId returns the FlavorId field value

func (*CreateInstancePayload) GetFlavorIdOk

GetFlavorIdOk returns a tuple with the FlavorId field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetLabels

GetLabels returns the Labels field value if set, zero value otherwise.

func (*CreateInstancePayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetName

GetName returns the Name field value

func (*CreateInstancePayload) GetNameOk

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetOptions

GetOptions returns the Options field value

func (*CreateInstancePayload) GetOptionsOk

GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetReplicas

GetReplicas returns the Replicas field value

func (*CreateInstancePayload) GetReplicasOk

GetReplicasOk returns a tuple with the Replicas field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetStorage

GetStorage returns the Storage field value

func (*CreateInstancePayload) GetStorageOk

GetStorageOk returns a tuple with the Storage field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) GetVersion

GetVersion returns the Version field value

func (*CreateInstancePayload) GetVersionOk

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*CreateInstancePayload) HasLabels

func (o *CreateInstancePayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*CreateInstancePayload) SetAcl

SetAcl sets field value

func (*CreateInstancePayload) SetBackupSchedule

SetBackupSchedule sets field value

func (*CreateInstancePayload) SetFlavorId

SetFlavorId sets field value

func (*CreateInstancePayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*CreateInstancePayload) SetName

SetName sets field value

func (*CreateInstancePayload) SetOptions

SetOptions sets field value

func (*CreateInstancePayload) SetReplicas

SetReplicas sets field value

func (*CreateInstancePayload) SetStorage

SetStorage sets field value

func (*CreateInstancePayload) SetVersion

SetVersion sets field value

func (CreateInstancePayload) ToMap

func (o CreateInstancePayload) ToMap() (map[string]interface{}, error)

type CreateInstancePayloadGetAclArgType

type CreateInstancePayloadGetAclArgType = ACL

type CreateInstancePayloadGetAclAttributeType

type CreateInstancePayloadGetAclAttributeType = *ACL

isModel

type CreateInstancePayloadGetAclRetType

type CreateInstancePayloadGetAclRetType = ACL

type CreateInstancePayloadGetBackupScheduleArgType

type CreateInstancePayloadGetBackupScheduleArgType = string

type CreateInstancePayloadGetBackupScheduleAttributeType

type CreateInstancePayloadGetBackupScheduleAttributeType = *string

isNotNullableString

type CreateInstancePayloadGetBackupScheduleRetType

type CreateInstancePayloadGetBackupScheduleRetType = string

type CreateInstancePayloadGetFlavorIdArgType

type CreateInstancePayloadGetFlavorIdArgType = string

type CreateInstancePayloadGetFlavorIdAttributeType

type CreateInstancePayloadGetFlavorIdAttributeType = *string

isNotNullableString

type CreateInstancePayloadGetFlavorIdRetType

type CreateInstancePayloadGetFlavorIdRetType = string

type CreateInstancePayloadGetLabelsArgType

type CreateInstancePayloadGetLabelsArgType = map[string]string

type CreateInstancePayloadGetLabelsAttributeType

type CreateInstancePayloadGetLabelsAttributeType = *map[string]string

isContainer

type CreateInstancePayloadGetLabelsRetType

type CreateInstancePayloadGetLabelsRetType = map[string]string

type CreateInstancePayloadGetNameArgType

type CreateInstancePayloadGetNameArgType = string

type CreateInstancePayloadGetNameAttributeType

type CreateInstancePayloadGetNameAttributeType = *string

isNotNullableString

type CreateInstancePayloadGetNameRetType

type CreateInstancePayloadGetNameRetType = string

type CreateInstancePayloadGetOptionsArgType

type CreateInstancePayloadGetOptionsArgType = map[string]string

type CreateInstancePayloadGetOptionsAttributeType

type CreateInstancePayloadGetOptionsAttributeType = *map[string]string

isContainer

type CreateInstancePayloadGetOptionsRetType

type CreateInstancePayloadGetOptionsRetType = map[string]string

type CreateInstancePayloadGetReplicasArgType

type CreateInstancePayloadGetReplicasArgType = int64

type CreateInstancePayloadGetReplicasAttributeType

type CreateInstancePayloadGetReplicasAttributeType = *int64

isInteger

type CreateInstancePayloadGetReplicasRetType

type CreateInstancePayloadGetReplicasRetType = int64

type CreateInstancePayloadGetStorageArgType

type CreateInstancePayloadGetStorageArgType = Storage

type CreateInstancePayloadGetStorageAttributeType

type CreateInstancePayloadGetStorageAttributeType = *Storage

isModel

type CreateInstancePayloadGetStorageRetType

type CreateInstancePayloadGetStorageRetType = Storage

type CreateInstancePayloadGetVersionArgType

type CreateInstancePayloadGetVersionArgType = string

type CreateInstancePayloadGetVersionAttributeType

type CreateInstancePayloadGetVersionAttributeType = *string

isNotNullableString

type CreateInstancePayloadGetVersionRetType

type CreateInstancePayloadGetVersionRetType = string

type CreateInstanceRequest

type CreateInstanceRequest struct {
	// contains filtered or unexported fields
}

func (CreateInstanceRequest) CreateInstancePayload

func (r CreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest

func (CreateInstanceRequest) Execute

type CreateInstanceResponse

type CreateInstanceResponse struct {
	Id CreateInstanceResponseGetIdAttributeType `json:"id,omitempty"`
}

CreateInstanceResponse struct for CreateInstanceResponse

func NewCreateInstanceResponse

func NewCreateInstanceResponse() *CreateInstanceResponse

NewCreateInstanceResponse instantiates a new CreateInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateInstanceResponseWithDefaults

func NewCreateInstanceResponseWithDefaults() *CreateInstanceResponse

NewCreateInstanceResponseWithDefaults instantiates a new CreateInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateInstanceResponse) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*CreateInstanceResponse) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateInstanceResponse) HasId

func (o *CreateInstanceResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateInstanceResponse) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (CreateInstanceResponse) ToMap

func (o CreateInstanceResponse) ToMap() (map[string]interface{}, error)

type CreateInstanceResponseGetIdArgType

type CreateInstanceResponseGetIdArgType = string

type CreateInstanceResponseGetIdAttributeType

type CreateInstanceResponseGetIdAttributeType = *string

isNotNullableString

type CreateInstanceResponseGetIdRetType

type CreateInstanceResponseGetIdRetType = string

type CreateUserPayload

type CreateUserPayload struct {
	Roles    CreateUserPayloadGetRolesAttributeType    `json:"roles,omitempty"`
	Username CreateUserPayloadGetUsernameAttributeType `json:"name,omitempty"`
}

CreateUserPayload struct for CreateUserPayload

func NewCreateUserPayload

func NewCreateUserPayload() *CreateUserPayload

NewCreateUserPayload instantiates a new CreateUserPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateUserPayloadWithDefaults

func NewCreateUserPayloadWithDefaults() *CreateUserPayload

NewCreateUserPayloadWithDefaults instantiates a new CreateUserPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateUserPayload) GetRoles

GetRoles returns the Roles field value if set, zero value otherwise.

func (*CreateUserPayload) GetRolesOk

func (o *CreateUserPayload) GetRolesOk() (ret CreateUserPayloadGetRolesRetType, ok bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateUserPayload) GetUsername

GetUsername returns the Username field value if set, zero value otherwise.

func (*CreateUserPayload) GetUsernameOk

func (o *CreateUserPayload) GetUsernameOk() (ret CreateUserPayloadGetUsernameRetType, ok bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateUserPayload) HasRoles

func (o *CreateUserPayload) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*CreateUserPayload) HasUsername

func (o *CreateUserPayload) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*CreateUserPayload) SetRoles

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (*CreateUserPayload) SetUsername

SetUsername gets a reference to the given string and assigns it to the Username field.

func (CreateUserPayload) ToMap

func (o CreateUserPayload) ToMap() (map[string]interface{}, error)

type CreateUserPayloadGetRolesArgType

type CreateUserPayloadGetRolesArgType = []string

type CreateUserPayloadGetRolesAttributeType

type CreateUserPayloadGetRolesAttributeType = *[]string

isArray

type CreateUserPayloadGetRolesRetType

type CreateUserPayloadGetRolesRetType = []string

type CreateUserPayloadGetUsernameArgType

type CreateUserPayloadGetUsernameArgType = string

type CreateUserPayloadGetUsernameAttributeType

type CreateUserPayloadGetUsernameAttributeType = *string

isNotNullableString

type CreateUserPayloadGetUsernameRetType

type CreateUserPayloadGetUsernameRetType = string

type CreateUserRequest

type CreateUserRequest struct {
	// contains filtered or unexported fields
}

func (CreateUserRequest) CreateUserPayload

func (r CreateUserRequest) CreateUserPayload(createUserPayload CreateUserPayload) ApiCreateUserRequest

func (CreateUserRequest) Execute

func (r CreateUserRequest) Execute() (*CreateUserResponse, error)

type CreateUserResponse

type CreateUserResponse struct {
	Item CreateUserResponseGetItemAttributeType `json:"item,omitempty"`
}

CreateUserResponse struct for CreateUserResponse

func NewCreateUserResponse

func NewCreateUserResponse() *CreateUserResponse

NewCreateUserResponse instantiates a new CreateUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateUserResponseWithDefaults

func NewCreateUserResponseWithDefaults() *CreateUserResponse

NewCreateUserResponseWithDefaults instantiates a new CreateUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateUserResponse) GetItem

GetItem returns the Item field value if set, zero value otherwise.

func (*CreateUserResponse) GetItemOk

func (o *CreateUserResponse) GetItemOk() (ret CreateUserResponseGetItemRetType, ok bool)

GetItemOk returns a tuple with the Item field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateUserResponse) HasItem

func (o *CreateUserResponse) HasItem() bool

HasItem returns a boolean if a field has been set.

func (*CreateUserResponse) SetItem

SetItem gets a reference to the given User and assigns it to the Item field.

func (CreateUserResponse) ToMap

func (o CreateUserResponse) ToMap() (map[string]interface{}, error)

func (*CreateUserResponse) UnmarshalJSON

func (o *CreateUserResponse) UnmarshalJSON(src []byte) error

UnmarshalJSON custom unmarshaling to handle both old and new API response formats

type CreateUserResponseGetItemArgType

type CreateUserResponseGetItemArgType = User

type CreateUserResponseGetItemAttributeType

type CreateUserResponseGetItemAttributeType = *User

isModel

type CreateUserResponseGetItemRetType

type CreateUserResponseGetItemRetType = User

type DefaultApi

type DefaultApi interface {
	/*
		CloneInstance Clone Instance
		Clone an existing instance of a postgres database to a new destination instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiCloneInstanceRequest
	*/
	CloneInstance(ctx context.Context, projectId string, region string, instanceId string) ApiCloneInstanceRequest
	/*
		CloneInstanceExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return CloneInstanceResponse

	*/
	CloneInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*CloneInstanceResponse, error)
	/*
		CreateDatabase Create Database
		Create database for a user
		Note: The name of a valid user must be provided in the "options" map field using the key "owner"

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiCreateDatabaseRequest
	*/
	CreateDatabase(ctx context.Context, projectId string, region string, instanceId string) ApiCreateDatabaseRequest
	/*
		CreateDatabaseExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return InstanceCreateDatabaseResponse

	*/
	CreateDatabaseExecute(ctx context.Context, projectId string, region string, instanceId string) (*InstanceCreateDatabaseResponse, error)
	/*
		CreateInstance Create Instance
		Create a new instance of a postgres database

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ApiCreateInstanceRequest
	*/
	CreateInstance(ctx context.Context, projectId string, region string) ApiCreateInstanceRequest
	/*
		CreateInstanceExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return CreateInstanceResponse

	*/
	CreateInstanceExecute(ctx context.Context, projectId string, region string) (*CreateInstanceResponse, error)
	/*
		CreateUser Create User
		Create user for an instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiCreateUserRequest
	*/
	CreateUser(ctx context.Context, projectId string, region string, instanceId string) ApiCreateUserRequest
	/*
		CreateUserExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return CreateUserResponse

	*/
	CreateUserExecute(ctx context.Context, projectId string, region string, instanceId string) (*CreateUserResponse, error)
	/*
		DeleteDatabase Delete Database
		Delete database for an instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param databaseId Database ID
		@return ApiDeleteDatabaseRequest
	*/
	DeleteDatabase(ctx context.Context, projectId string, region string, instanceId string, databaseId string) ApiDeleteDatabaseRequest
	/*
		DeleteDatabaseExecute executes the request

	*/
	DeleteDatabaseExecute(ctx context.Context, projectId string, region string, instanceId string, databaseId string) error
	/*
		DeleteInstance Delete Instance
		Delete available instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiDeleteInstanceRequest
	*/
	DeleteInstance(ctx context.Context, projectId string, region string, instanceId string) ApiDeleteInstanceRequest
	/*
		DeleteInstanceExecute executes the request

	*/
	DeleteInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) error
	/*
		DeleteUser Delete User
		Delete user for an instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param userId User ID
		@return ApiDeleteUserRequest
	*/
	DeleteUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiDeleteUserRequest
	/*
		DeleteUserExecute executes the request

	*/
	DeleteUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) error
	/*
		ForceDeleteInstance Force delete instance
		Forces the deletion of an delayed deleted instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiForceDeleteInstanceRequest
	*/
	ForceDeleteInstance(ctx context.Context, projectId string, region string, instanceId string) ApiForceDeleteInstanceRequest
	/*
		ForceDeleteInstanceExecute executes the request

	*/
	ForceDeleteInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) error
	/*
		GetBackup Get specific backup
		Get specific available backup

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param backupId Backup ID
		@return ApiGetBackupRequest
	*/
	GetBackup(ctx context.Context, projectId string, region string, instanceId string, backupId string) ApiGetBackupRequest
	/*
		GetBackupExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param backupId Backup ID
		@return GetBackupResponse

	*/
	GetBackupExecute(ctx context.Context, projectId string, region string, instanceId string, backupId string) (*GetBackupResponse, error)
	/*
		GetInstance Get specific instance
		Get specific available instances

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiGetInstanceRequest
	*/
	GetInstance(ctx context.Context, projectId string, region string, instanceId string) ApiGetInstanceRequest
	/*
		GetInstanceExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return InstanceResponse

	*/
	GetInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*InstanceResponse, error)
	/*
		GetUser Get User
		Get specific available user for an instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param userId User ID
		@return ApiGetUserRequest
	*/
	GetUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiGetUserRequest
	/*
		GetUserExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param userId User ID
		@return GetUserResponse

	*/
	GetUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) (*GetUserResponse, error)
	/*
		ListBackups List backups
		List all backups which are available for a specific instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiListBackupsRequest
	*/
	ListBackups(ctx context.Context, projectId string, region string, instanceId string) ApiListBackupsRequest
	/*
		ListBackupsExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ListBackupsResponse

	*/
	ListBackupsExecute(ctx context.Context, projectId string, region string, instanceId string) (*ListBackupsResponse, error)
	/*
		ListDatabaseParameters List Databases parameter
		List available databases parameter

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiListDatabaseParametersRequest
	*/
	ListDatabaseParameters(ctx context.Context, projectId string, region string, instanceId string) ApiListDatabaseParametersRequest
	/*
		ListDatabaseParametersExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return PostgresDatabaseParameterResponse

	*/
	ListDatabaseParametersExecute(ctx context.Context, projectId string, region string, instanceId string) (*PostgresDatabaseParameterResponse, error)
	/*
		ListDatabases List Databases
		List available databases for an instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiListDatabasesRequest
	*/
	ListDatabases(ctx context.Context, projectId string, region string, instanceId string) ApiListDatabasesRequest
	/*
		ListDatabasesExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return InstanceListDatabasesResponse

	*/
	ListDatabasesExecute(ctx context.Context, projectId string, region string, instanceId string) (*InstanceListDatabasesResponse, error)
	/*
		ListFlavors Get Flavors
		Get available flavors for a specific projectID

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ApiListFlavorsRequest
	*/
	ListFlavors(ctx context.Context, projectId string, region string) ApiListFlavorsRequest
	/*
		ListFlavorsExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ListFlavorsResponse

	*/
	ListFlavorsExecute(ctx context.Context, projectId string, region string) (*ListFlavorsResponse, error)
	/*
		ListInstances List Instances
		List available instances

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ApiListInstancesRequest
	*/
	ListInstances(ctx context.Context, projectId string, region string) ApiListInstancesRequest
	/*
		ListInstancesExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ListInstancesResponse

	*/
	ListInstancesExecute(ctx context.Context, projectId string, region string) (*ListInstancesResponse, error)
	/*
		ListMetrics Get Metric
		Returns a metric for an instance. The metric will only be for the master pod if needed. Granularity parameter is always needed. If start and end time is provided, period is not considered in max-connections and disk-use. If you provide start time, you have to provide end time as well and vice versa.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The UUID of the project.
		@param region The region which should be addressed
		@param instanceId The UUID of the instance.
		@param metric The name of the metric. Valid metrics are 'cpu', 'memory', 'max-connections', 'connections' and 'disk-use'.
		@return ApiListMetricsRequest
	*/
	ListMetrics(ctx context.Context, projectId string, region string, instanceId string, metric string) ApiListMetricsRequest
	/*
		ListMetricsExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The UUID of the project.
		@param region The region which should be addressed
		@param instanceId The UUID of the instance.
		@param metric The name of the metric. Valid metrics are 'cpu', 'memory', 'max-connections', 'connections' and 'disk-use'.
		@return InstanceMetricsResponse

	*/
	ListMetricsExecute(ctx context.Context, projectId string, region string, instanceId string, metric string) (*InstanceMetricsResponse, error)
	/*
		ListStorages Get Storages
		Get available storages for a specific flavor

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param flavorId Flavor ID
		@return ApiListStoragesRequest
	*/
	ListStorages(ctx context.Context, projectId string, region string, flavorId string) ApiListStoragesRequest
	/*
		ListStoragesExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param flavorId Flavor ID
		@return ListStoragesResponse

	*/
	ListStoragesExecute(ctx context.Context, projectId string, region string, flavorId string) (*ListStoragesResponse, error)
	/*
		ListUsers List Users
		List available users for an instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiListUsersRequest
	*/
	ListUsers(ctx context.Context, projectId string, region string, instanceId string) ApiListUsersRequest
	/*
		ListUsersExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ListUsersResponse

	*/
	ListUsersExecute(ctx context.Context, projectId string, region string, instanceId string) (*ListUsersResponse, error)
	/*
		ListVersions Get Versions
		Get available versions for postgres database

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ApiListVersionsRequest
	*/
	ListVersions(ctx context.Context, projectId string, region string) ApiListVersionsRequest
	/*
		ListVersionsExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@return ListVersionsResponse

	*/
	ListVersionsExecute(ctx context.Context, projectId string, region string) (*ListVersionsResponse, error)
	/*
		PartialUpdateInstance Update Instance
		Update available instance of a postgres database. Supported Versions are 12, 13, 14, 15 -- only upgrades are allowed!

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiPartialUpdateInstanceRequest
	*/
	PartialUpdateInstance(ctx context.Context, projectId string, region string, instanceId string) ApiPartialUpdateInstanceRequest
	/*
		PartialUpdateInstanceExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return PartialUpdateInstanceResponse

	*/
	PartialUpdateInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*PartialUpdateInstanceResponse, error)
	/*
		PartialUpdateUser Update User
		Update user for an instance. Only the roles are updatable.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The ID of the project
		@param region The region which should be addressed
		@param instanceId The ID of the instance
		@param userId The ID of the user in the database
		@return ApiPartialUpdateUserRequest
	*/
	PartialUpdateUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiPartialUpdateUserRequest
	/*
		PartialUpdateUserExecute executes the request

	*/
	PartialUpdateUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) error
	/*
		ResetUser Reset User
		Reset user password for a postgres instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param userId user ID
		@return ApiResetUserRequest
	*/
	ResetUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiResetUserRequest
	/*
		ResetUserExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@param userId user ID
		@return ResetUserResponse

	*/
	ResetUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) (*ResetUserResponse, error)
	/*
		UpdateBackupSchedule Update Backup Schedule
		Update backup schedule

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiUpdateBackupScheduleRequest
	*/
	UpdateBackupSchedule(ctx context.Context, projectId string, region string, instanceId string) ApiUpdateBackupScheduleRequest
	/*
		UpdateBackupScheduleExecute executes the request

	*/
	UpdateBackupScheduleExecute(ctx context.Context, projectId string, region string, instanceId string) error
	/*
		UpdateInstance Update Instance
		Update available instance of a postgres database. Supported Versions are 12, 13, 14, 15 -- only upgrades are allowed!

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return ApiUpdateInstanceRequest
	*/
	UpdateInstance(ctx context.Context, projectId string, region string, instanceId string) ApiUpdateInstanceRequest
	/*
		UpdateInstanceExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@param region The region which should be addressed
		@param instanceId Instance ID
		@return PartialUpdateInstanceResponse

	*/
	UpdateInstanceExecute(ctx context.Context, projectId string, region string, instanceId string) (*PartialUpdateInstanceResponse, error)
	/*
		UpdateUser Update User
		Update user for an instance. Only the roles are updatable.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The ID of the project
		@param region The region which should be addressed
		@param instanceId The ID of the instance
		@param userId The ID of the user in the database
		@return ApiUpdateUserRequest
	*/
	UpdateUser(ctx context.Context, projectId string, region string, instanceId string, userId string) ApiUpdateUserRequest
	/*
		UpdateUserExecute executes the request

	*/
	UpdateUserExecute(ctx context.Context, projectId string, region string, instanceId string, userId string) error
}

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

type DeleteDatabaseRequest

type DeleteDatabaseRequest struct {
	// contains filtered or unexported fields
}

func (DeleteDatabaseRequest) Execute

func (r DeleteDatabaseRequest) Execute() error

type DeleteInstanceRequest

type DeleteInstanceRequest struct {
	// contains filtered or unexported fields
}

func (DeleteInstanceRequest) Execute

func (r DeleteInstanceRequest) Execute() error

type DeleteUserRequest

type DeleteUserRequest struct {
	// contains filtered or unexported fields
}

func (DeleteUserRequest) Execute

func (r DeleteUserRequest) Execute() error

type Error

type Error struct {
	// Can be cast to int32 without loss of precision.
	Code    ErrorGetCodeAttributeType    `json:"code,omitempty"`
	Fields  ErrorGetFieldsAttributeType  `json:"fields,omitempty"`
	Message ErrorGetMessageAttributeType `json:"message,omitempty"`
	Type    ErrorGetTypeAttributeType    `json:"type,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetCode

func (o *Error) GetCode() (res ErrorGetCodeRetType)

GetCode returns the Code field value if set, zero value otherwise.

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (ret ErrorGetCodeRetType, ok bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetFields

func (o *Error) GetFields() (res ErrorGetFieldsRetType)

GetFields returns the Fields field value if set, zero value otherwise.

func (*Error) GetFieldsOk

func (o *Error) GetFieldsOk() (ret ErrorGetFieldsRetType, ok bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetMessage

func (o *Error) GetMessage() (res ErrorGetMessageRetType)

GetMessage returns the Message field value if set, zero value otherwise.

func (*Error) GetMessageOk

func (o *Error) GetMessageOk() (ret ErrorGetMessageRetType, ok bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetType

func (o *Error) GetType() (res ErrorGetTypeRetType)

GetType returns the Type field value if set, zero value otherwise.

func (*Error) GetTypeOk

func (o *Error) GetTypeOk() (ret ErrorGetTypeRetType, ok bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasFields

func (o *Error) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*Error) HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Error) HasType

func (o *Error) HasType() bool

HasType returns a boolean if a field has been set.

func (*Error) SetCode

func (o *Error) SetCode(v ErrorGetCodeRetType)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*Error) SetFields

func (o *Error) SetFields(v ErrorGetFieldsRetType)

SetFields gets a reference to the given map[string][]string and assigns it to the Fields field.

func (*Error) SetMessage

func (o *Error) SetMessage(v ErrorGetMessageRetType)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*Error) SetType

func (o *Error) SetType(v ErrorGetTypeRetType)

SetType gets a reference to the given string and assigns it to the Type field.

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

type ErrorGetCodeArgType

type ErrorGetCodeArgType = int64

type ErrorGetCodeAttributeType

type ErrorGetCodeAttributeType = *int64

isInteger

type ErrorGetCodeRetType

type ErrorGetCodeRetType = int64

type ErrorGetFieldsArgType

type ErrorGetFieldsArgType = map[string][]string

type ErrorGetFieldsAttributeType

type ErrorGetFieldsAttributeType = *map[string][]string

isContainer

type ErrorGetFieldsRetType

type ErrorGetFieldsRetType = map[string][]string

type ErrorGetMessageArgType

type ErrorGetMessageArgType = string

type ErrorGetMessageAttributeType

type ErrorGetMessageAttributeType = *string

isNotNullableString

type ErrorGetMessageRetType

type ErrorGetMessageRetType = string

type ErrorGetTypeArgType

type ErrorGetTypeArgType = string

type ErrorGetTypeAttributeType

type ErrorGetTypeAttributeType = *string

isNotNullableString

type ErrorGetTypeRetType

type ErrorGetTypeRetType = string

type ExtensionsConfiguration

type ExtensionsConfiguration struct {
	Name    ExtensionsConfigurationGetNameAttributeType    `json:"name,omitempty"`
	Setting ExtensionsConfigurationGetSettingAttributeType `json:"setting,omitempty"`
}

ExtensionsConfiguration struct for ExtensionsConfiguration

func NewExtensionsConfiguration

func NewExtensionsConfiguration() *ExtensionsConfiguration

NewExtensionsConfiguration instantiates a new ExtensionsConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtensionsConfigurationWithDefaults

func NewExtensionsConfigurationWithDefaults() *ExtensionsConfiguration

NewExtensionsConfigurationWithDefaults instantiates a new ExtensionsConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtensionsConfiguration) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ExtensionsConfiguration) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtensionsConfiguration) GetSetting

GetSetting returns the Setting field value if set, zero value otherwise.

func (*ExtensionsConfiguration) GetSettingOk

GetSettingOk returns a tuple with the Setting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtensionsConfiguration) HasName

func (o *ExtensionsConfiguration) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExtensionsConfiguration) HasSetting

func (o *ExtensionsConfiguration) HasSetting() bool

HasSetting returns a boolean if a field has been set.

func (*ExtensionsConfiguration) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ExtensionsConfiguration) SetSetting

SetSetting gets a reference to the given string and assigns it to the Setting field.

func (ExtensionsConfiguration) ToMap

func (o ExtensionsConfiguration) ToMap() (map[string]interface{}, error)

type ExtensionsConfigurationGetNameArgType

type ExtensionsConfigurationGetNameArgType = string

type ExtensionsConfigurationGetNameAttributeType

type ExtensionsConfigurationGetNameAttributeType = *string

isNotNullableString

type ExtensionsConfigurationGetNameRetType

type ExtensionsConfigurationGetNameRetType = string

type ExtensionsConfigurationGetSettingArgType

type ExtensionsConfigurationGetSettingArgType = string

type ExtensionsConfigurationGetSettingAttributeType

type ExtensionsConfigurationGetSettingAttributeType = *string

isNotNullableString

type ExtensionsConfigurationGetSettingRetType

type ExtensionsConfigurationGetSettingRetType = string

type ExtensionsExtensionListResponse

type ExtensionsExtensionListResponse struct {
	List ExtensionsExtensionListResponseGetListAttributeType `json:"list,omitempty"`
}

ExtensionsExtensionListResponse struct for ExtensionsExtensionListResponse

func NewExtensionsExtensionListResponse

func NewExtensionsExtensionListResponse() *ExtensionsExtensionListResponse

NewExtensionsExtensionListResponse instantiates a new ExtensionsExtensionListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtensionsExtensionListResponseWithDefaults

func NewExtensionsExtensionListResponseWithDefaults() *ExtensionsExtensionListResponse

NewExtensionsExtensionListResponseWithDefaults instantiates a new ExtensionsExtensionListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtensionsExtensionListResponse) GetList

GetList returns the List field value if set, zero value otherwise.

func (*ExtensionsExtensionListResponse) GetListOk

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtensionsExtensionListResponse) HasList

HasList returns a boolean if a field has been set.

func (*ExtensionsExtensionListResponse) SetList

SetList gets a reference to the given []ApiExtensionList and assigns it to the List field.

func (ExtensionsExtensionListResponse) ToMap

func (o ExtensionsExtensionListResponse) ToMap() (map[string]interface{}, error)

type ExtensionsExtensionListResponseGetListArgType

type ExtensionsExtensionListResponseGetListArgType = []ApiExtensionList

type ExtensionsExtensionListResponseGetListAttributeType

type ExtensionsExtensionListResponseGetListAttributeType = *[]ApiExtensionList

isArray

type ExtensionsExtensionListResponseGetListRetType

type ExtensionsExtensionListResponseGetListRetType = []ApiExtensionList

type ExtensionsNewConfig

type ExtensionsNewConfig struct {
	Configuration ExtensionsNewConfigGetConfigurationAttributeType `json:"configuration,omitempty"`
}

ExtensionsNewConfig struct for ExtensionsNewConfig

func NewExtensionsNewConfig

func NewExtensionsNewConfig() *ExtensionsNewConfig

NewExtensionsNewConfig instantiates a new ExtensionsNewConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtensionsNewConfigWithDefaults

func NewExtensionsNewConfigWithDefaults() *ExtensionsNewConfig

NewExtensionsNewConfigWithDefaults instantiates a new ExtensionsNewConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtensionsNewConfig) GetConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*ExtensionsNewConfig) GetConfigurationOk

func (o *ExtensionsNewConfig) GetConfigurationOk() (ret ExtensionsNewConfigGetConfigurationRetType, ok bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtensionsNewConfig) HasConfiguration

func (o *ExtensionsNewConfig) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*ExtensionsNewConfig) SetConfiguration

SetConfiguration gets a reference to the given []ExtensionsConfiguration and assigns it to the Configuration field.

func (ExtensionsNewConfig) ToMap

func (o ExtensionsNewConfig) ToMap() (map[string]interface{}, error)

type ExtensionsNewConfigGetConfigurationArgType

type ExtensionsNewConfigGetConfigurationArgType = []ExtensionsConfiguration

type ExtensionsNewConfigGetConfigurationAttributeType

type ExtensionsNewConfigGetConfigurationAttributeType = *[]ExtensionsConfiguration

isArray

type ExtensionsNewConfigGetConfigurationRetType

type ExtensionsNewConfigGetConfigurationRetType = []ExtensionsConfiguration

type Flavor

type Flavor struct {
	Cpu         FlavorGetCpuAttributeType         `json:"cpu,omitempty"`
	Description FlavorGetDescriptionAttributeType `json:"description,omitempty"`
	Id          FlavorGetIdAttributeType          `json:"id,omitempty"`
	Memory      FlavorGetMemoryAttributeType      `json:"memory,omitempty"`
}

Flavor struct for Flavor

func NewFlavor

func NewFlavor() *Flavor

NewFlavor instantiates a new Flavor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFlavorWithDefaults

func NewFlavorWithDefaults() *Flavor

NewFlavorWithDefaults instantiates a new Flavor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Flavor) GetCpu

func (o *Flavor) GetCpu() (res FlavorGetCpuRetType)

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*Flavor) GetCpuOk

func (o *Flavor) GetCpuOk() (ret FlavorGetCpuRetType, ok bool)

GetCpuOk returns a tuple with the Cpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Flavor) GetDescription

func (o *Flavor) GetDescription() (res FlavorGetDescriptionRetType)

GetDescription returns the Description field value if set, zero value otherwise.

func (*Flavor) GetDescriptionOk

func (o *Flavor) GetDescriptionOk() (ret FlavorGetDescriptionRetType, ok bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Flavor) GetId

func (o *Flavor) GetId() (res FlavorGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*Flavor) GetIdOk

func (o *Flavor) GetIdOk() (ret FlavorGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Flavor) GetMemory

func (o *Flavor) GetMemory() (res FlavorGetMemoryRetType)

GetMemory returns the Memory field value if set, zero value otherwise.

func (*Flavor) GetMemoryOk

func (o *Flavor) GetMemoryOk() (ret FlavorGetMemoryRetType, ok bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Flavor) HasCpu

func (o *Flavor) HasCpu() bool

HasCpu returns a boolean if a field has been set.

func (*Flavor) HasDescription

func (o *Flavor) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Flavor) HasId

func (o *Flavor) HasId() bool

HasId returns a boolean if a field has been set.

func (*Flavor) HasMemory

func (o *Flavor) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*Flavor) SetCpu

func (o *Flavor) SetCpu(v FlavorGetCpuRetType)

SetCpu gets a reference to the given int64 and assigns it to the Cpu field.

func (*Flavor) SetDescription

func (o *Flavor) SetDescription(v FlavorGetDescriptionRetType)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Flavor) SetId

func (o *Flavor) SetId(v FlavorGetIdRetType)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Flavor) SetMemory

func (o *Flavor) SetMemory(v FlavorGetMemoryRetType)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (Flavor) ToMap

func (o Flavor) ToMap() (map[string]interface{}, error)

type FlavorGetCpuArgType

type FlavorGetCpuArgType = int64

type FlavorGetCpuAttributeType

type FlavorGetCpuAttributeType = *int64

isLong

type FlavorGetCpuRetType

type FlavorGetCpuRetType = int64

type FlavorGetDescriptionArgType

type FlavorGetDescriptionArgType = string

type FlavorGetDescriptionAttributeType

type FlavorGetDescriptionAttributeType = *string

isNotNullableString

type FlavorGetDescriptionRetType

type FlavorGetDescriptionRetType = string

type FlavorGetIdArgType

type FlavorGetIdArgType = string

type FlavorGetIdAttributeType

type FlavorGetIdAttributeType = *string

isNotNullableString

type FlavorGetIdRetType

type FlavorGetIdRetType = string

type FlavorGetMemoryArgType

type FlavorGetMemoryArgType = int64

type FlavorGetMemoryAttributeType

type FlavorGetMemoryAttributeType = *int64

isLong

type FlavorGetMemoryRetType

type FlavorGetMemoryRetType = int64

type ForceDeleteInstanceRequest

type ForceDeleteInstanceRequest struct {
	// contains filtered or unexported fields
}

func (ForceDeleteInstanceRequest) Execute

func (r ForceDeleteInstanceRequest) Execute() error

type GetBackupRequest

type GetBackupRequest struct {
	// contains filtered or unexported fields
}

func (GetBackupRequest) Execute

func (r GetBackupRequest) Execute() (*GetBackupResponse, error)

type GetBackupResponse

type GetBackupResponse struct {
	Item GetBackupResponseGetItemAttributeType `json:"item,omitempty"`
}

GetBackupResponse struct for GetBackupResponse

func NewGetBackupResponse

func NewGetBackupResponse() *GetBackupResponse

NewGetBackupResponse instantiates a new GetBackupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetBackupResponseWithDefaults

func NewGetBackupResponseWithDefaults() *GetBackupResponse

NewGetBackupResponseWithDefaults instantiates a new GetBackupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetBackupResponse) GetItem

GetItem returns the Item field value if set, zero value otherwise.

func (*GetBackupResponse) GetItemOk

func (o *GetBackupResponse) GetItemOk() (ret GetBackupResponseGetItemRetType, ok bool)

GetItemOk returns a tuple with the Item field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBackupResponse) HasItem

func (o *GetBackupResponse) HasItem() bool

HasItem returns a boolean if a field has been set.

func (*GetBackupResponse) SetItem

SetItem gets a reference to the given Backup and assigns it to the Item field.

func (GetBackupResponse) ToMap

func (o GetBackupResponse) ToMap() (map[string]interface{}, error)

type GetBackupResponseGetItemArgType

type GetBackupResponseGetItemArgType = Backup

type GetBackupResponseGetItemAttributeType

type GetBackupResponseGetItemAttributeType = *Backup

isModel

type GetBackupResponseGetItemRetType

type GetBackupResponseGetItemRetType = Backup

type GetInstanceRequest

type GetInstanceRequest struct {
	// contains filtered or unexported fields
}

func (GetInstanceRequest) Execute

func (r GetInstanceRequest) Execute() (*InstanceResponse, error)

type GetUserRequest

type GetUserRequest struct {
	// contains filtered or unexported fields
}

func (GetUserRequest) Execute

func (r GetUserRequest) Execute() (*GetUserResponse, error)

type GetUserResponse

type GetUserResponse struct {
	ConnectionString UserResponseGetConnectionStringAttributeType `json:"connectionString,omitempty"`
	Host             UserResponseGetHostAttributeType             `json:"host,omitempty"`
	Id               UserResponseGetIdAttributeType               `json:"id,omitempty"`
	Port             UserResponseGetPortAttributeType             `json:"port,omitempty"`
	Roles            UserResponseGetRolesAttributeType            `json:"roles,omitempty"`
	Status           UserResponseGetStatusAttributeType           `json:"status,omitempty"`
	Username         UserResponseGetUsernameAttributeType         `json:"name,omitempty"`
}

GetUserResponse struct for GetUserResponse

func NewGetUserResponse

func NewGetUserResponse() *GetUserResponse

NewGetUserResponse instantiates a new GetUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetUserResponseWithDefaults

func NewGetUserResponseWithDefaults() *GetUserResponse

NewGetUserResponseWithDefaults instantiates a new GetUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetUserResponse) GetConnectionString

func (o *GetUserResponse) GetConnectionString() (res UserResponseGetConnectionStringRetType)

GetConnectionString returns the ConnectionString field value if set, zero value otherwise.

func (*GetUserResponse) GetConnectionStringOk

func (o *GetUserResponse) GetConnectionStringOk() (ret UserResponseGetConnectionStringRetType, ok bool)

GetConnectionStringOk returns a tuple with the ConnectionString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) GetHost

func (o *GetUserResponse) GetHost() (res UserResponseGetHostRetType)

GetHost returns the Host field value if set, zero value otherwise.

func (*GetUserResponse) GetHostOk

func (o *GetUserResponse) GetHostOk() (ret UserResponseGetHostRetType, ok bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) GetId

func (o *GetUserResponse) GetId() (res UserResponseGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*GetUserResponse) GetIdOk

func (o *GetUserResponse) GetIdOk() (ret UserResponseGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) GetPort

func (o *GetUserResponse) GetPort() (res UserResponseGetPortRetType)

GetPort returns the Port field value if set, zero value otherwise.

func (*GetUserResponse) GetPortOk

func (o *GetUserResponse) GetPortOk() (ret UserResponseGetPortRetType, ok bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) GetRoles

func (o *GetUserResponse) GetRoles() (res UserResponseGetRolesRetType)

GetRoles returns the Roles field value if set, zero value otherwise.

func (*GetUserResponse) GetRolesOk

func (o *GetUserResponse) GetRolesOk() (ret UserResponseGetRolesRetType, ok bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) GetStatus

func (o *GetUserResponse) GetStatus() (res UserResponseGetStatusRetType)

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUserResponse) GetStatusOk

func (o *GetUserResponse) GetStatusOk() (ret UserResponseGetStatusRetType, ok bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) GetUsername added in v0.0.3

func (o *GetUserResponse) GetUsername() (res UserResponseGetUsernameRetType)

GetUsername returns the Username field value if set, zero value otherwise.

func (*GetUserResponse) GetUsernameOk added in v0.0.3

func (o *GetUserResponse) GetUsernameOk() (ret UserResponseGetUsernameRetType, ok bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUserResponse) SetConnectionString

func (o *GetUserResponse) SetConnectionString(v UserResponseGetConnectionStringRetType)

SetConnectionString gets a reference to the given string and assigns it to the ConnectionString field.

func (*GetUserResponse) SetHost

SetHost gets a reference to the given string and assigns it to the Host field.

func (*GetUserResponse) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*GetUserResponse) SetPort

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*GetUserResponse) SetRoles

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (*GetUserResponse) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUserResponse) SetUsername added in v0.0.3

SetUsername gets a reference to the given string and assigns it to the Username field.

func (GetUserResponse) ToMap

func (o GetUserResponse) ToMap() (map[string]interface{}, error)

type Instance

type Instance struct {
	Acl            InstanceGetAclAttributeType            `json:"acl,omitempty"`
	BackupSchedule InstanceGetBackupScheduleAttributeType `json:"backupSchedule,omitempty"`
	Flavor         InstanceGetFlavorAttributeType         `json:"flavor,omitempty"`
	Id             InstanceGetIdAttributeType             `json:"id,omitempty"`
	Name           InstanceGetNameAttributeType           `json:"name,omitempty"`
	Options        InstanceGetOptionsAttributeType        `json:"options,omitempty"`
	// Can be cast to int32 without loss of precision.
	Replicas InstanceGetReplicasAttributeType `json:"replicas,omitempty"`
	Status   InstanceGetStatusAttributeType   `json:"status,omitempty"`
	Storage  InstanceGetStorageAttributeType  `json:"storage,omitempty"`
	Version  InstanceGetVersionAttributeType  `json:"version,omitempty"`
}

Instance struct for Instance

func NewInstance

func NewInstance() *Instance

NewInstance instantiates a new Instance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceWithDefaults

func NewInstanceWithDefaults() *Instance

NewInstanceWithDefaults instantiates a new Instance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Instance) GetAcl

func (o *Instance) GetAcl() (res InstanceGetAclRetType)

GetAcl returns the Acl field value if set, zero value otherwise.

func (*Instance) GetAclOk

func (o *Instance) GetAclOk() (ret InstanceGetAclRetType, ok bool)

GetAclOk returns a tuple with the Acl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetBackupSchedule

func (o *Instance) GetBackupSchedule() (res InstanceGetBackupScheduleRetType)

GetBackupSchedule returns the BackupSchedule field value if set, zero value otherwise.

func (*Instance) GetBackupScheduleOk

func (o *Instance) GetBackupScheduleOk() (ret InstanceGetBackupScheduleRetType, ok bool)

GetBackupScheduleOk returns a tuple with the BackupSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetFlavor

func (o *Instance) GetFlavor() (res InstanceGetFlavorRetType)

GetFlavor returns the Flavor field value if set, zero value otherwise.

func (*Instance) GetFlavorOk

func (o *Instance) GetFlavorOk() (ret InstanceGetFlavorRetType, ok bool)

GetFlavorOk returns a tuple with the Flavor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetId

func (o *Instance) GetId() (res InstanceGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*Instance) GetIdOk

func (o *Instance) GetIdOk() (ret InstanceGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetName

func (o *Instance) GetName() (res InstanceGetNameRetType)

GetName returns the Name field value if set, zero value otherwise.

func (*Instance) GetNameOk

func (o *Instance) GetNameOk() (ret InstanceGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetOptions

func (o *Instance) GetOptions() (res InstanceGetOptionsRetType)

GetOptions returns the Options field value if set, zero value otherwise.

func (*Instance) GetOptionsOk

func (o *Instance) GetOptionsOk() (ret InstanceGetOptionsRetType, ok bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetReplicas

func (o *Instance) GetReplicas() (res InstanceGetReplicasRetType)

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*Instance) GetReplicasOk

func (o *Instance) GetReplicasOk() (ret InstanceGetReplicasRetType, ok bool)

GetReplicasOk returns a tuple with the Replicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetStatus

func (o *Instance) GetStatus() (res InstanceGetStatusRetType)

GetStatus returns the Status field value if set, zero value otherwise.

func (*Instance) GetStatusOk

func (o *Instance) GetStatusOk() (ret InstanceGetStatusRetType, ok bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetStorage

func (o *Instance) GetStorage() (res InstanceGetStorageRetType)

GetStorage returns the Storage field value if set, zero value otherwise.

func (*Instance) GetStorageOk

func (o *Instance) GetStorageOk() (ret InstanceGetStorageRetType, ok bool)

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) GetVersion

func (o *Instance) GetVersion() (res InstanceGetVersionRetType)

GetVersion returns the Version field value if set, zero value otherwise.

func (*Instance) GetVersionOk

func (o *Instance) GetVersionOk() (ret InstanceGetVersionRetType, ok bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instance) HasAcl

func (o *Instance) HasAcl() bool

HasAcl returns a boolean if a field has been set.

func (*Instance) HasBackupSchedule

func (o *Instance) HasBackupSchedule() bool

HasBackupSchedule returns a boolean if a field has been set.

func (*Instance) HasFlavor

func (o *Instance) HasFlavor() bool

HasFlavor returns a boolean if a field has been set.

func (*Instance) HasId

func (o *Instance) HasId() bool

HasId returns a boolean if a field has been set.

func (*Instance) HasName

func (o *Instance) HasName() bool

HasName returns a boolean if a field has been set.

func (*Instance) HasOptions

func (o *Instance) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*Instance) HasReplicas

func (o *Instance) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (*Instance) HasStatus

func (o *Instance) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Instance) HasStorage

func (o *Instance) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*Instance) HasVersion

func (o *Instance) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*Instance) SetAcl

func (o *Instance) SetAcl(v InstanceGetAclRetType)

SetAcl gets a reference to the given ACL and assigns it to the Acl field.

func (*Instance) SetBackupSchedule

func (o *Instance) SetBackupSchedule(v InstanceGetBackupScheduleRetType)

SetBackupSchedule gets a reference to the given string and assigns it to the BackupSchedule field.

func (*Instance) SetFlavor

func (o *Instance) SetFlavor(v InstanceGetFlavorRetType)

SetFlavor gets a reference to the given Flavor and assigns it to the Flavor field.

func (*Instance) SetId

func (o *Instance) SetId(v InstanceGetIdRetType)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Instance) SetName

func (o *Instance) SetName(v InstanceGetNameRetType)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Instance) SetOptions

func (o *Instance) SetOptions(v InstanceGetOptionsRetType)

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (*Instance) SetReplicas

func (o *Instance) SetReplicas(v InstanceGetReplicasRetType)

SetReplicas gets a reference to the given int64 and assigns it to the Replicas field.

func (*Instance) SetStatus

func (o *Instance) SetStatus(v InstanceGetStatusRetType)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Instance) SetStorage

func (o *Instance) SetStorage(v InstanceGetStorageRetType)

SetStorage gets a reference to the given Storage and assigns it to the Storage field.

func (*Instance) SetVersion

func (o *Instance) SetVersion(v InstanceGetVersionRetType)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Instance) ToMap

func (o Instance) ToMap() (map[string]interface{}, error)

type InstanceCreateDatabaseResponse

type InstanceCreateDatabaseResponse struct {
	Id InstanceCreateDatabaseResponseGetIdAttributeType `json:"id,omitempty"`
}

InstanceCreateDatabaseResponse struct for InstanceCreateDatabaseResponse

func NewInstanceCreateDatabaseResponse

func NewInstanceCreateDatabaseResponse() *InstanceCreateDatabaseResponse

NewInstanceCreateDatabaseResponse instantiates a new InstanceCreateDatabaseResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceCreateDatabaseResponseWithDefaults

func NewInstanceCreateDatabaseResponseWithDefaults() *InstanceCreateDatabaseResponse

NewInstanceCreateDatabaseResponseWithDefaults instantiates a new InstanceCreateDatabaseResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceCreateDatabaseResponse) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*InstanceCreateDatabaseResponse) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceCreateDatabaseResponse) HasId

HasId returns a boolean if a field has been set.

func (*InstanceCreateDatabaseResponse) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (InstanceCreateDatabaseResponse) ToMap

func (o InstanceCreateDatabaseResponse) ToMap() (map[string]interface{}, error)

type InstanceCreateDatabaseResponseGetIdArgType

type InstanceCreateDatabaseResponseGetIdArgType = string

type InstanceCreateDatabaseResponseGetIdAttributeType

type InstanceCreateDatabaseResponseGetIdAttributeType = *string

isNotNullableString

type InstanceCreateDatabaseResponseGetIdRetType

type InstanceCreateDatabaseResponseGetIdRetType = string

type InstanceDataPoint

type InstanceDataPoint struct {
	Timestamp InstanceDataPointGetTimestampAttributeType `json:"timestamp,omitempty"`
	Value     InstanceDataPointGetValueAttributeType     `json:"value,omitempty"`
}

InstanceDataPoint struct for InstanceDataPoint

func NewInstanceDataPoint

func NewInstanceDataPoint() *InstanceDataPoint

NewInstanceDataPoint instantiates a new InstanceDataPoint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceDataPointWithDefaults

func NewInstanceDataPointWithDefaults() *InstanceDataPoint

NewInstanceDataPointWithDefaults instantiates a new InstanceDataPoint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceDataPoint) GetTimestamp

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*InstanceDataPoint) GetTimestampOk

func (o *InstanceDataPoint) GetTimestampOk() (ret InstanceDataPointGetTimestampRetType, ok bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceDataPoint) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*InstanceDataPoint) GetValueOk

func (o *InstanceDataPoint) GetValueOk() (ret InstanceDataPointGetValueRetType, ok bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceDataPoint) HasTimestamp

func (o *InstanceDataPoint) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*InstanceDataPoint) HasValue

func (o *InstanceDataPoint) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*InstanceDataPoint) SetTimestamp

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*InstanceDataPoint) SetValue

SetValue gets a reference to the given float64 and assigns it to the Value field.

func (InstanceDataPoint) ToMap

func (o InstanceDataPoint) ToMap() (map[string]interface{}, error)

type InstanceDataPointGetTimestampArgType

type InstanceDataPointGetTimestampArgType = string

type InstanceDataPointGetTimestampAttributeType

type InstanceDataPointGetTimestampAttributeType = *string

isNotNullableString

type InstanceDataPointGetTimestampRetType

type InstanceDataPointGetTimestampRetType = string

type InstanceDataPointGetValueArgType

type InstanceDataPointGetValueArgType = float64

type InstanceDataPointGetValueAttributeType

type InstanceDataPointGetValueAttributeType = *float64

isNumber

type InstanceDataPointGetValueRetType

type InstanceDataPointGetValueRetType = float64

type InstanceDatabase

type InstanceDatabase struct {
	Id   InstanceDatabaseGetIdAttributeType   `json:"id,omitempty"`
	Name InstanceDatabaseGetNameAttributeType `json:"name,omitempty"`
	// Database specific options
	Options InstanceDatabaseGetOptionsAttributeType `json:"options,omitempty"`
}

InstanceDatabase struct for InstanceDatabase

func NewInstanceDatabase

func NewInstanceDatabase() *InstanceDatabase

NewInstanceDatabase instantiates a new InstanceDatabase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceDatabaseWithDefaults

func NewInstanceDatabaseWithDefaults() *InstanceDatabase

NewInstanceDatabaseWithDefaults instantiates a new InstanceDatabase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceDatabase) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*InstanceDatabase) GetIdOk

func (o *InstanceDatabase) GetIdOk() (ret InstanceDatabaseGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceDatabase) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*InstanceDatabase) GetNameOk

func (o *InstanceDatabase) GetNameOk() (ret InstanceDatabaseGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceDatabase) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*InstanceDatabase) GetOptionsOk

func (o *InstanceDatabase) GetOptionsOk() (ret InstanceDatabaseGetOptionsRetType, ok bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceDatabase) HasId

func (o *InstanceDatabase) HasId() bool

HasId returns a boolean if a field has been set.

func (*InstanceDatabase) HasName

func (o *InstanceDatabase) HasName() bool

HasName returns a boolean if a field has been set.

func (*InstanceDatabase) HasOptions

func (o *InstanceDatabase) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*InstanceDatabase) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*InstanceDatabase) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*InstanceDatabase) SetOptions

SetOptions gets a reference to the given map[string]interface{} and assigns it to the Options field.

func (InstanceDatabase) ToMap

func (o InstanceDatabase) ToMap() (map[string]interface{}, error)

type InstanceDatabaseGetIdArgType

type InstanceDatabaseGetIdArgType = string

type InstanceDatabaseGetIdAttributeType

type InstanceDatabaseGetIdAttributeType = *string

isNotNullableString

type InstanceDatabaseGetIdRetType

type InstanceDatabaseGetIdRetType = string

type InstanceDatabaseGetNameArgType

type InstanceDatabaseGetNameArgType = string

type InstanceDatabaseGetNameAttributeType

type InstanceDatabaseGetNameAttributeType = *string

isNotNullableString

type InstanceDatabaseGetNameRetType

type InstanceDatabaseGetNameRetType = string

type InstanceDatabaseGetOptionsArgType

type InstanceDatabaseGetOptionsArgType = map[string]interface{}

type InstanceDatabaseGetOptionsAttributeType

type InstanceDatabaseGetOptionsAttributeType = *map[string]interface{}

isFreeform

type InstanceDatabaseGetOptionsRetType

type InstanceDatabaseGetOptionsRetType = map[string]interface{}

type InstanceGetAclArgType

type InstanceGetAclArgType = ACL

type InstanceGetAclAttributeType

type InstanceGetAclAttributeType = *ACL

isModel

type InstanceGetAclRetType

type InstanceGetAclRetType = ACL

type InstanceGetBackupScheduleArgType

type InstanceGetBackupScheduleArgType = string

type InstanceGetBackupScheduleAttributeType

type InstanceGetBackupScheduleAttributeType = *string

isNotNullableString

type InstanceGetBackupScheduleRetType

type InstanceGetBackupScheduleRetType = string

type InstanceGetFlavorArgType

type InstanceGetFlavorArgType = Flavor

type InstanceGetFlavorAttributeType

type InstanceGetFlavorAttributeType = *Flavor

isModel

type InstanceGetFlavorRetType

type InstanceGetFlavorRetType = Flavor

type InstanceGetIdArgType

type InstanceGetIdArgType = string

type InstanceGetIdAttributeType

type InstanceGetIdAttributeType = *string

isNotNullableString

type InstanceGetIdRetType

type InstanceGetIdRetType = string

type InstanceGetNameArgType

type InstanceGetNameArgType = string

type InstanceGetNameAttributeType

type InstanceGetNameAttributeType = *string

isNotNullableString

type InstanceGetNameRetType

type InstanceGetNameRetType = string

type InstanceGetOptionsArgType

type InstanceGetOptionsArgType = map[string]string

type InstanceGetOptionsAttributeType

type InstanceGetOptionsAttributeType = *map[string]string

isContainer

type InstanceGetOptionsRetType

type InstanceGetOptionsRetType = map[string]string

type InstanceGetReplicasArgType

type InstanceGetReplicasArgType = int64

type InstanceGetReplicasAttributeType

type InstanceGetReplicasAttributeType = *int64

isInteger

type InstanceGetReplicasRetType

type InstanceGetReplicasRetType = int64

type InstanceGetStatusArgType

type InstanceGetStatusArgType = string

type InstanceGetStatusAttributeType

type InstanceGetStatusAttributeType = *string

isNotNullableString

type InstanceGetStatusRetType

type InstanceGetStatusRetType = string

type InstanceGetStorageArgType

type InstanceGetStorageArgType = Storage

type InstanceGetStorageAttributeType

type InstanceGetStorageAttributeType = *Storage

isModel

type InstanceGetStorageRetType

type InstanceGetStorageRetType = Storage

type InstanceGetVersionArgType

type InstanceGetVersionArgType = string

type InstanceGetVersionAttributeType

type InstanceGetVersionAttributeType = *string

isNotNullableString

type InstanceGetVersionRetType

type InstanceGetVersionRetType = string

type InstanceHost

type InstanceHost struct {
	HostMetrics InstanceHostGetHostMetricsAttributeType `json:"hostMetrics,omitempty"`
	Id          InstanceHostGetIdAttributeType          `json:"id,omitempty"`
}

InstanceHost struct for InstanceHost

func NewInstanceHost

func NewInstanceHost() *InstanceHost

NewInstanceHost instantiates a new InstanceHost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceHostWithDefaults

func NewInstanceHostWithDefaults() *InstanceHost

NewInstanceHostWithDefaults instantiates a new InstanceHost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceHost) GetHostMetrics

func (o *InstanceHost) GetHostMetrics() (res InstanceHostGetHostMetricsRetType)

GetHostMetrics returns the HostMetrics field value if set, zero value otherwise.

func (*InstanceHost) GetHostMetricsOk

func (o *InstanceHost) GetHostMetricsOk() (ret InstanceHostGetHostMetricsRetType, ok bool)

GetHostMetricsOk returns a tuple with the HostMetrics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceHost) GetId

func (o *InstanceHost) GetId() (res InstanceHostGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*InstanceHost) GetIdOk

func (o *InstanceHost) GetIdOk() (ret InstanceHostGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceHost) HasHostMetrics

func (o *InstanceHost) HasHostMetrics() bool

HasHostMetrics returns a boolean if a field has been set.

func (*InstanceHost) HasId

func (o *InstanceHost) HasId() bool

HasId returns a boolean if a field has been set.

func (*InstanceHost) SetHostMetrics

func (o *InstanceHost) SetHostMetrics(v InstanceHostGetHostMetricsRetType)

SetHostMetrics gets a reference to the given []InstanceHostMetric and assigns it to the HostMetrics field.

func (*InstanceHost) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (InstanceHost) ToMap

func (o InstanceHost) ToMap() (map[string]interface{}, error)

type InstanceHostGetHostMetricsArgType

type InstanceHostGetHostMetricsArgType = []InstanceHostMetric

type InstanceHostGetHostMetricsAttributeType

type InstanceHostGetHostMetricsAttributeType = *[]InstanceHostMetric

isArray

type InstanceHostGetHostMetricsRetType

type InstanceHostGetHostMetricsRetType = []InstanceHostMetric

type InstanceHostGetIdArgType

type InstanceHostGetIdArgType = string

type InstanceHostGetIdAttributeType

type InstanceHostGetIdAttributeType = *string

isNotNullableString

type InstanceHostGetIdRetType

type InstanceHostGetIdRetType = string

type InstanceHostMetric

type InstanceHostMetric struct {
	Datapoints InstanceHostMetricGetDatapointsAttributeType `json:"datapoints,omitempty"`
	Name       InstanceHostMetricGetNameAttributeType       `json:"name,omitempty"`
	Units      InstanceHostMetricGetUnitsAttributeType      `json:"units,omitempty"`
}

InstanceHostMetric struct for InstanceHostMetric

func NewInstanceHostMetric

func NewInstanceHostMetric() *InstanceHostMetric

NewInstanceHostMetric instantiates a new InstanceHostMetric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceHostMetricWithDefaults

func NewInstanceHostMetricWithDefaults() *InstanceHostMetric

NewInstanceHostMetricWithDefaults instantiates a new InstanceHostMetric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceHostMetric) GetDatapoints

GetDatapoints returns the Datapoints field value if set, zero value otherwise.

func (*InstanceHostMetric) GetDatapointsOk

func (o *InstanceHostMetric) GetDatapointsOk() (ret InstanceHostMetricGetDatapointsRetType, ok bool)

GetDatapointsOk returns a tuple with the Datapoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceHostMetric) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*InstanceHostMetric) GetNameOk

func (o *InstanceHostMetric) GetNameOk() (ret InstanceHostMetricGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceHostMetric) GetUnits

GetUnits returns the Units field value if set, zero value otherwise.

func (*InstanceHostMetric) GetUnitsOk

func (o *InstanceHostMetric) GetUnitsOk() (ret InstanceHostMetricGetUnitsRetType, ok bool)

GetUnitsOk returns a tuple with the Units field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceHostMetric) HasDatapoints

func (o *InstanceHostMetric) HasDatapoints() bool

HasDatapoints returns a boolean if a field has been set.

func (*InstanceHostMetric) HasName

func (o *InstanceHostMetric) HasName() bool

HasName returns a boolean if a field has been set.

func (*InstanceHostMetric) HasUnits

func (o *InstanceHostMetric) HasUnits() bool

HasUnits returns a boolean if a field has been set.

func (*InstanceHostMetric) SetDatapoints

SetDatapoints gets a reference to the given []InstanceDataPoint and assigns it to the Datapoints field.

func (*InstanceHostMetric) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*InstanceHostMetric) SetUnits

SetUnits gets a reference to the given string and assigns it to the Units field.

func (InstanceHostMetric) ToMap

func (o InstanceHostMetric) ToMap() (map[string]interface{}, error)

type InstanceHostMetricGetDatapointsArgType

type InstanceHostMetricGetDatapointsArgType = []InstanceDataPoint

type InstanceHostMetricGetDatapointsAttributeType

type InstanceHostMetricGetDatapointsAttributeType = *[]InstanceDataPoint

isArray

type InstanceHostMetricGetDatapointsRetType

type InstanceHostMetricGetDatapointsRetType = []InstanceDataPoint

type InstanceHostMetricGetNameArgType

type InstanceHostMetricGetNameArgType = string

type InstanceHostMetricGetNameAttributeType

type InstanceHostMetricGetNameAttributeType = *string

isNotNullableString

type InstanceHostMetricGetNameRetType

type InstanceHostMetricGetNameRetType = string

type InstanceHostMetricGetUnitsArgType

type InstanceHostMetricGetUnitsArgType = string

type InstanceHostMetricGetUnitsAttributeType

type InstanceHostMetricGetUnitsAttributeType = *string

isNotNullableString

type InstanceHostMetricGetUnitsRetType

type InstanceHostMetricGetUnitsRetType = string

type InstanceListDatabasesResponse

type InstanceListDatabasesResponse struct {
	Databases InstanceListDatabasesResponseGetDatabasesAttributeType `json:"databases,omitempty"`
}

InstanceListDatabasesResponse struct for InstanceListDatabasesResponse

func NewInstanceListDatabasesResponse

func NewInstanceListDatabasesResponse() *InstanceListDatabasesResponse

NewInstanceListDatabasesResponse instantiates a new InstanceListDatabasesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceListDatabasesResponseWithDefaults

func NewInstanceListDatabasesResponseWithDefaults() *InstanceListDatabasesResponse

NewInstanceListDatabasesResponseWithDefaults instantiates a new InstanceListDatabasesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceListDatabasesResponse) GetDatabases

GetDatabases returns the Databases field value if set, zero value otherwise.

func (*InstanceListDatabasesResponse) GetDatabasesOk

GetDatabasesOk returns a tuple with the Databases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceListDatabasesResponse) HasDatabases

func (o *InstanceListDatabasesResponse) HasDatabases() bool

HasDatabases returns a boolean if a field has been set.

func (*InstanceListDatabasesResponse) SetDatabases

SetDatabases gets a reference to the given []InstanceDatabase and assigns it to the Databases field.

func (InstanceListDatabasesResponse) ToMap

func (o InstanceListDatabasesResponse) ToMap() (map[string]interface{}, error)

type InstanceListDatabasesResponseGetDatabasesArgType

type InstanceListDatabasesResponseGetDatabasesArgType = []InstanceDatabase

type InstanceListDatabasesResponseGetDatabasesAttributeType

type InstanceListDatabasesResponseGetDatabasesAttributeType = *[]InstanceDatabase

isArray

type InstanceListDatabasesResponseGetDatabasesRetType

type InstanceListDatabasesResponseGetDatabasesRetType = []InstanceDatabase

type InstanceListInstance

type InstanceListInstance struct {
	Id     InstanceListInstanceGetIdAttributeType     `json:"id,omitempty"`
	Name   InstanceListInstanceGetNameAttributeType   `json:"name,omitempty"`
	Status InstanceListInstanceGetStatusAttributeType `json:"status,omitempty"`
}

InstanceListInstance struct for InstanceListInstance

func NewInstanceListInstance

func NewInstanceListInstance() *InstanceListInstance

NewInstanceListInstance instantiates a new InstanceListInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceListInstanceWithDefaults

func NewInstanceListInstanceWithDefaults() *InstanceListInstance

NewInstanceListInstanceWithDefaults instantiates a new InstanceListInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceListInstance) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*InstanceListInstance) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceListInstance) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*InstanceListInstance) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceListInstance) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*InstanceListInstance) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceListInstance) HasId

func (o *InstanceListInstance) HasId() bool

HasId returns a boolean if a field has been set.

func (*InstanceListInstance) HasName

func (o *InstanceListInstance) HasName() bool

HasName returns a boolean if a field has been set.

func (*InstanceListInstance) HasStatus

func (o *InstanceListInstance) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*InstanceListInstance) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*InstanceListInstance) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*InstanceListInstance) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (InstanceListInstance) ToMap

func (o InstanceListInstance) ToMap() (map[string]interface{}, error)

type InstanceListInstanceGetIdArgType

type InstanceListInstanceGetIdArgType = string

type InstanceListInstanceGetIdAttributeType

type InstanceListInstanceGetIdAttributeType = *string

isNotNullableString

type InstanceListInstanceGetIdRetType

type InstanceListInstanceGetIdRetType = string

type InstanceListInstanceGetNameArgType

type InstanceListInstanceGetNameArgType = string

type InstanceListInstanceGetNameAttributeType

type InstanceListInstanceGetNameAttributeType = *string

isNotNullableString

type InstanceListInstanceGetNameRetType

type InstanceListInstanceGetNameRetType = string

type InstanceListInstanceGetStatusArgType

type InstanceListInstanceGetStatusArgType = string

type InstanceListInstanceGetStatusAttributeType

type InstanceListInstanceGetStatusAttributeType = *string

isNotNullableString

type InstanceListInstanceGetStatusRetType

type InstanceListInstanceGetStatusRetType = string

type InstanceMetricsResponse

type InstanceMetricsResponse struct {
	Hosts InstanceMetricsResponseGetHostsAttributeType `json:"hosts,omitempty"`
}

InstanceMetricsResponse struct for InstanceMetricsResponse

func NewInstanceMetricsResponse

func NewInstanceMetricsResponse() *InstanceMetricsResponse

NewInstanceMetricsResponse instantiates a new InstanceMetricsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceMetricsResponseWithDefaults

func NewInstanceMetricsResponseWithDefaults() *InstanceMetricsResponse

NewInstanceMetricsResponseWithDefaults instantiates a new InstanceMetricsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceMetricsResponse) GetHosts

GetHosts returns the Hosts field value if set, zero value otherwise.

func (*InstanceMetricsResponse) GetHostsOk

GetHostsOk returns a tuple with the Hosts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceMetricsResponse) HasHosts

func (o *InstanceMetricsResponse) HasHosts() bool

HasHosts returns a boolean if a field has been set.

func (*InstanceMetricsResponse) SetHosts

SetHosts gets a reference to the given []InstanceHost and assigns it to the Hosts field.

func (InstanceMetricsResponse) ToMap

func (o InstanceMetricsResponse) ToMap() (map[string]interface{}, error)

type InstanceMetricsResponseGetHostsArgType

type InstanceMetricsResponseGetHostsArgType = []InstanceHost

type InstanceMetricsResponseGetHostsAttributeType

type InstanceMetricsResponseGetHostsAttributeType = *[]InstanceHost

isArray

type InstanceMetricsResponseGetHostsRetType

type InstanceMetricsResponseGetHostsRetType = []InstanceHost

type InstanceResponse

type InstanceResponse struct {
	Item InstanceResponseGetItemAttributeType `json:"item,omitempty"`
}

InstanceResponse struct for InstanceResponse

func NewInstanceResponse

func NewInstanceResponse() *InstanceResponse

NewInstanceResponse instantiates a new InstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstanceResponseWithDefaults

func NewInstanceResponseWithDefaults() *InstanceResponse

NewInstanceResponseWithDefaults instantiates a new InstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstanceResponse) GetItem

GetItem returns the Item field value if set, zero value otherwise.

func (*InstanceResponse) GetItemOk

func (o *InstanceResponse) GetItemOk() (ret InstanceResponseGetItemRetType, ok bool)

GetItemOk returns a tuple with the Item field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceResponse) HasItem

func (o *InstanceResponse) HasItem() bool

HasItem returns a boolean if a field has been set.

func (*InstanceResponse) SetItem

SetItem gets a reference to the given Instance and assigns it to the Item field.

func (InstanceResponse) ToMap

func (o InstanceResponse) ToMap() (map[string]interface{}, error)

type InstanceResponseGetItemArgType

type InstanceResponseGetItemArgType = Instance

type InstanceResponseGetItemAttributeType

type InstanceResponseGetItemAttributeType = *Instance

isModel

type InstanceResponseGetItemRetType

type InstanceResponseGetItemRetType = Instance

type ListBackupsRequest

type ListBackupsRequest struct {
	// contains filtered or unexported fields
}

func (ListBackupsRequest) Execute

type ListBackupsResponse

type ListBackupsResponse struct {
	Count ListBackupsResponseGetCountAttributeType `json:"count,omitempty"`
	Items ListBackupsResponseGetItemsAttributeType `json:"items,omitempty"`
}

ListBackupsResponse struct for ListBackupsResponse

func NewListBackupsResponse

func NewListBackupsResponse() *ListBackupsResponse

NewListBackupsResponse instantiates a new ListBackupsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListBackupsResponseWithDefaults

func NewListBackupsResponseWithDefaults() *ListBackupsResponse

NewListBackupsResponseWithDefaults instantiates a new ListBackupsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListBackupsResponse) GetCount

GetCount returns the Count field value if set, zero value otherwise.

func (*ListBackupsResponse) GetCountOk

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListBackupsResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListBackupsResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListBackupsResponse) HasCount

func (o *ListBackupsResponse) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListBackupsResponse) HasItems

func (o *ListBackupsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListBackupsResponse) SetCount

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListBackupsResponse) SetItems

SetItems gets a reference to the given []Backup and assigns it to the Items field.

func (ListBackupsResponse) ToMap

func (o ListBackupsResponse) ToMap() (map[string]interface{}, error)

type ListBackupsResponseGetCountArgType

type ListBackupsResponseGetCountArgType = int64

type ListBackupsResponseGetCountAttributeType

type ListBackupsResponseGetCountAttributeType = *int64

isLong

type ListBackupsResponseGetCountRetType

type ListBackupsResponseGetCountRetType = int64

type ListBackupsResponseGetItemsArgType

type ListBackupsResponseGetItemsArgType = []Backup

type ListBackupsResponseGetItemsAttributeType

type ListBackupsResponseGetItemsAttributeType = *[]Backup

isArray

type ListBackupsResponseGetItemsRetType

type ListBackupsResponseGetItemsRetType = []Backup

type ListDatabaseParametersRequest

type ListDatabaseParametersRequest struct {
	// contains filtered or unexported fields
}

func (ListDatabaseParametersRequest) Execute

type ListDatabasesRequest

type ListDatabasesRequest struct {
	// contains filtered or unexported fields
}

func (ListDatabasesRequest) Execute

type ListFlavorsRequest

type ListFlavorsRequest struct {
	// contains filtered or unexported fields
}

func (ListFlavorsRequest) Execute

type ListFlavorsResponse

type ListFlavorsResponse struct {
	Flavors ListFlavorsResponseGetFlavorsAttributeType `json:"flavors,omitempty"`
}

ListFlavorsResponse struct for ListFlavorsResponse

func NewListFlavorsResponse

func NewListFlavorsResponse() *ListFlavorsResponse

NewListFlavorsResponse instantiates a new ListFlavorsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListFlavorsResponseWithDefaults

func NewListFlavorsResponseWithDefaults() *ListFlavorsResponse

NewListFlavorsResponseWithDefaults instantiates a new ListFlavorsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListFlavorsResponse) GetFlavors

GetFlavors returns the Flavors field value if set, zero value otherwise.

func (*ListFlavorsResponse) GetFlavorsOk

GetFlavorsOk returns a tuple with the Flavors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListFlavorsResponse) HasFlavors

func (o *ListFlavorsResponse) HasFlavors() bool

HasFlavors returns a boolean if a field has been set.

func (*ListFlavorsResponse) SetFlavors

SetFlavors gets a reference to the given []Flavor and assigns it to the Flavors field.

func (ListFlavorsResponse) ToMap

func (o ListFlavorsResponse) ToMap() (map[string]interface{}, error)

type ListFlavorsResponseGetFlavorsArgType

type ListFlavorsResponseGetFlavorsArgType = []Flavor

type ListFlavorsResponseGetFlavorsAttributeType

type ListFlavorsResponseGetFlavorsAttributeType = *[]Flavor

isArray

type ListFlavorsResponseGetFlavorsRetType

type ListFlavorsResponseGetFlavorsRetType = []Flavor

type ListInstancesRequest

type ListInstancesRequest struct {
	// contains filtered or unexported fields
}

func (ListInstancesRequest) Execute

type ListInstancesResponse

type ListInstancesResponse struct {
	Count ListInstancesResponseGetCountAttributeType `json:"count,omitempty"`
	Items ListInstancesResponseGetItemsAttributeType `json:"items,omitempty"`
}

ListInstancesResponse struct for ListInstancesResponse

func NewListInstancesResponse

func NewListInstancesResponse() *ListInstancesResponse

NewListInstancesResponse instantiates a new ListInstancesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListInstancesResponseWithDefaults

func NewListInstancesResponseWithDefaults() *ListInstancesResponse

NewListInstancesResponseWithDefaults instantiates a new ListInstancesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListInstancesResponse) GetCount

GetCount returns the Count field value if set, zero value otherwise.

func (*ListInstancesResponse) GetCountOk

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListInstancesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListInstancesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListInstancesResponse) HasCount

func (o *ListInstancesResponse) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListInstancesResponse) HasItems

func (o *ListInstancesResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListInstancesResponse) SetCount

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListInstancesResponse) SetItems

SetItems gets a reference to the given []InstanceListInstance and assigns it to the Items field.

func (ListInstancesResponse) ToMap

func (o ListInstancesResponse) ToMap() (map[string]interface{}, error)

type ListInstancesResponseGetCountArgType

type ListInstancesResponseGetCountArgType = int64

type ListInstancesResponseGetCountAttributeType

type ListInstancesResponseGetCountAttributeType = *int64

isLong

type ListInstancesResponseGetCountRetType

type ListInstancesResponseGetCountRetType = int64

type ListInstancesResponseGetItemsArgType

type ListInstancesResponseGetItemsArgType = []InstanceListInstance

type ListInstancesResponseGetItemsAttributeType

type ListInstancesResponseGetItemsAttributeType = *[]InstanceListInstance

isArray

type ListInstancesResponseGetItemsRetType

type ListInstancesResponseGetItemsRetType = []InstanceListInstance

type ListMetricsRequest

type ListMetricsRequest struct {
	// contains filtered or unexported fields
}

func (ListMetricsRequest) End

func (ListMetricsRequest) Execute

func (ListMetricsRequest) Granularity

func (r ListMetricsRequest) Granularity(granularity string) ApiListMetricsRequest

func (ListMetricsRequest) Period

func (ListMetricsRequest) Start

type ListStoragesRequest

type ListStoragesRequest struct {
	// contains filtered or unexported fields
}

func (ListStoragesRequest) Execute

type ListStoragesResponse

type ListStoragesResponse struct {
	StorageClasses ListStoragesResponseGetStorageClassesAttributeType `json:"storageClasses,omitempty"`
	StorageRange   ListStoragesResponseGetStorageRangeAttributeType   `json:"storageRange,omitempty"`
}

ListStoragesResponse struct for ListStoragesResponse

func NewListStoragesResponse

func NewListStoragesResponse() *ListStoragesResponse

NewListStoragesResponse instantiates a new ListStoragesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListStoragesResponseWithDefaults

func NewListStoragesResponseWithDefaults() *ListStoragesResponse

NewListStoragesResponseWithDefaults instantiates a new ListStoragesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListStoragesResponse) GetStorageClasses

GetStorageClasses returns the StorageClasses field value if set, zero value otherwise.

func (*ListStoragesResponse) GetStorageClassesOk

func (o *ListStoragesResponse) GetStorageClassesOk() (ret ListStoragesResponseGetStorageClassesRetType, ok bool)

GetStorageClassesOk returns a tuple with the StorageClasses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListStoragesResponse) GetStorageRange

GetStorageRange returns the StorageRange field value if set, zero value otherwise.

func (*ListStoragesResponse) GetStorageRangeOk

func (o *ListStoragesResponse) GetStorageRangeOk() (ret ListStoragesResponseGetStorageRangeRetType, ok bool)

GetStorageRangeOk returns a tuple with the StorageRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListStoragesResponse) HasStorageClasses

func (o *ListStoragesResponse) HasStorageClasses() bool

HasStorageClasses returns a boolean if a field has been set.

func (*ListStoragesResponse) HasStorageRange

func (o *ListStoragesResponse) HasStorageRange() bool

HasStorageRange returns a boolean if a field has been set.

func (*ListStoragesResponse) SetStorageClasses

SetStorageClasses gets a reference to the given []string and assigns it to the StorageClasses field.

func (*ListStoragesResponse) SetStorageRange

SetStorageRange gets a reference to the given StorageRange and assigns it to the StorageRange field.

func (ListStoragesResponse) ToMap

func (o ListStoragesResponse) ToMap() (map[string]interface{}, error)

type ListStoragesResponseGetStorageClassesArgType

type ListStoragesResponseGetStorageClassesArgType = []string

type ListStoragesResponseGetStorageClassesAttributeType

type ListStoragesResponseGetStorageClassesAttributeType = *[]string

isArray

type ListStoragesResponseGetStorageClassesRetType

type ListStoragesResponseGetStorageClassesRetType = []string

type ListStoragesResponseGetStorageRangeArgType

type ListStoragesResponseGetStorageRangeArgType = StorageRange

type ListStoragesResponseGetStorageRangeAttributeType

type ListStoragesResponseGetStorageRangeAttributeType = *StorageRange

isModel

type ListStoragesResponseGetStorageRangeRetType

type ListStoragesResponseGetStorageRangeRetType = StorageRange

type ListUsersRequest

type ListUsersRequest struct {
	// contains filtered or unexported fields
}

func (ListUsersRequest) Execute

func (r ListUsersRequest) Execute() (*ListUsersResponse, error)

type ListUsersResponse

type ListUsersResponse struct {
	Count ListUsersResponseGetCountAttributeType `json:"count,omitempty"`
	Items ListUsersResponseGetItemsAttributeType `json:"items,omitempty"`
}

ListUsersResponse struct for ListUsersResponse

func NewListUsersResponse

func NewListUsersResponse() *ListUsersResponse

NewListUsersResponse instantiates a new ListUsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListUsersResponseWithDefaults

func NewListUsersResponseWithDefaults() *ListUsersResponse

NewListUsersResponseWithDefaults instantiates a new ListUsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListUsersResponse) GetCount

GetCount returns the Count field value if set, zero value otherwise.

func (*ListUsersResponse) GetCountOk

func (o *ListUsersResponse) GetCountOk() (ret ListUsersResponseGetCountRetType, ok bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUsersResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ListUsersResponse) GetItemsOk

func (o *ListUsersResponse) GetItemsOk() (ret ListUsersResponseGetItemsRetType, ok bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUsersResponse) HasCount

func (o *ListUsersResponse) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListUsersResponse) HasItems

func (o *ListUsersResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListUsersResponse) SetCount

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListUsersResponse) SetItems

SetItems gets a reference to the given []ListUsersResponseItem and assigns it to the Items field.

func (ListUsersResponse) ToMap

func (o ListUsersResponse) ToMap() (map[string]interface{}, error)

type ListUsersResponseGetCountArgType

type ListUsersResponseGetCountArgType = int64

type ListUsersResponseGetCountAttributeType

type ListUsersResponseGetCountAttributeType = *int64

isLong

type ListUsersResponseGetCountRetType

type ListUsersResponseGetCountRetType = int64

type ListUsersResponseGetItemsArgType

type ListUsersResponseGetItemsArgType = []ListUsersResponseItem

type ListUsersResponseGetItemsAttributeType

type ListUsersResponseGetItemsAttributeType = *[]ListUsersResponseItem

isArray

type ListUsersResponseGetItemsRetType

type ListUsersResponseGetItemsRetType = []ListUsersResponseItem

type ListUsersResponseItem

type ListUsersResponseItem struct {
	Id       ListUsersResponseItemGetIdAttributeType       `json:"id,omitempty"`
	Username ListUsersResponseItemGetUsernameAttributeType `json:"username,omitempty"`
}

ListUsersResponseItem struct for ListUsersResponseItem

func NewListUsersResponseItem

func NewListUsersResponseItem() *ListUsersResponseItem

NewListUsersResponseItem instantiates a new ListUsersResponseItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListUsersResponseItemWithDefaults

func NewListUsersResponseItemWithDefaults() *ListUsersResponseItem

NewListUsersResponseItemWithDefaults instantiates a new ListUsersResponseItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListUsersResponseItem) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ListUsersResponseItem) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUsersResponseItem) GetUsername

GetUsername returns the Username field value if set, zero value otherwise.

func (*ListUsersResponseItem) GetUsernameOk

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUsersResponseItem) HasId

func (o *ListUsersResponseItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*ListUsersResponseItem) HasUsername

func (o *ListUsersResponseItem) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*ListUsersResponseItem) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*ListUsersResponseItem) SetUsername

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ListUsersResponseItem) ToMap

func (o ListUsersResponseItem) ToMap() (map[string]interface{}, error)

type ListUsersResponseItemGetIdArgType

type ListUsersResponseItemGetIdArgType = string

type ListUsersResponseItemGetIdAttributeType

type ListUsersResponseItemGetIdAttributeType = *string

isNotNullableString

type ListUsersResponseItemGetIdRetType

type ListUsersResponseItemGetIdRetType = string

type ListUsersResponseItemGetUsernameArgType

type ListUsersResponseItemGetUsernameArgType = string

type ListUsersResponseItemGetUsernameAttributeType

type ListUsersResponseItemGetUsernameAttributeType = *string

isNotNullableString

type ListUsersResponseItemGetUsernameRetType

type ListUsersResponseItemGetUsernameRetType = string

type ListVersionsRequest

type ListVersionsRequest struct {
	// contains filtered or unexported fields
}

func (ListVersionsRequest) Execute

func (ListVersionsRequest) InstanceId

func (r ListVersionsRequest) InstanceId(instanceId string) ApiListVersionsRequest

type ListVersionsResponse

type ListVersionsResponse struct {
	Versions ListVersionsResponseGetVersionsAttributeType `json:"versions,omitempty"`
}

ListVersionsResponse struct for ListVersionsResponse

func NewListVersionsResponse

func NewListVersionsResponse() *ListVersionsResponse

NewListVersionsResponse instantiates a new ListVersionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListVersionsResponseWithDefaults

func NewListVersionsResponseWithDefaults() *ListVersionsResponse

NewListVersionsResponseWithDefaults instantiates a new ListVersionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListVersionsResponse) GetVersions

GetVersions returns the Versions field value if set, zero value otherwise.

func (*ListVersionsResponse) GetVersionsOk

GetVersionsOk returns a tuple with the Versions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListVersionsResponse) HasVersions

func (o *ListVersionsResponse) HasVersions() bool

HasVersions returns a boolean if a field has been set.

func (*ListVersionsResponse) SetVersions

SetVersions gets a reference to the given []string and assigns it to the Versions field.

func (ListVersionsResponse) ToMap

func (o ListVersionsResponse) ToMap() (map[string]interface{}, error)

type ListVersionsResponseGetVersionsArgType

type ListVersionsResponseGetVersionsArgType = []string

type ListVersionsResponseGetVersionsAttributeType

type ListVersionsResponseGetVersionsAttributeType = *[]string

isArray

type ListVersionsResponseGetVersionsRetType

type ListVersionsResponseGetVersionsRetType = []string

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableACL

type NullableACL struct {
	// contains filtered or unexported fields
}

func NewNullableACL

func NewNullableACL(val *ACL) *NullableACL

func (NullableACL) Get

func (v NullableACL) Get() *ACL

func (NullableACL) IsSet

func (v NullableACL) IsSet() bool

func (NullableACL) MarshalJSON

func (v NullableACL) MarshalJSON() ([]byte, error)

func (*NullableACL) Set

func (v *NullableACL) Set(val *ACL)

func (*NullableACL) UnmarshalJSON

func (v *NullableACL) UnmarshalJSON(src []byte) error

func (*NullableACL) Unset

func (v *NullableACL) Unset()

type NullableApiConfiguration

type NullableApiConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableApiConfiguration

func NewNullableApiConfiguration(val *ApiConfiguration) *NullableApiConfiguration

func (NullableApiConfiguration) Get

func (NullableApiConfiguration) IsSet

func (v NullableApiConfiguration) IsSet() bool

func (NullableApiConfiguration) MarshalJSON

func (v NullableApiConfiguration) MarshalJSON() ([]byte, error)

func (*NullableApiConfiguration) Set

func (*NullableApiConfiguration) UnmarshalJSON

func (v *NullableApiConfiguration) UnmarshalJSON(src []byte) error

func (*NullableApiConfiguration) Unset

func (v *NullableApiConfiguration) Unset()

type NullableApiExtensionConfigLoadResponse

type NullableApiExtensionConfigLoadResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiExtensionConfigLoadResponse) Get

func (NullableApiExtensionConfigLoadResponse) IsSet

func (NullableApiExtensionConfigLoadResponse) MarshalJSON

func (v NullableApiExtensionConfigLoadResponse) MarshalJSON() ([]byte, error)

func (*NullableApiExtensionConfigLoadResponse) Set

func (*NullableApiExtensionConfigLoadResponse) UnmarshalJSON

func (v *NullableApiExtensionConfigLoadResponse) UnmarshalJSON(src []byte) error

func (*NullableApiExtensionConfigLoadResponse) Unset

type NullableApiExtensionConfigureResponse

type NullableApiExtensionConfigureResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiExtensionConfigureResponse) Get

func (NullableApiExtensionConfigureResponse) IsSet

func (NullableApiExtensionConfigureResponse) MarshalJSON

func (v NullableApiExtensionConfigureResponse) MarshalJSON() ([]byte, error)

func (*NullableApiExtensionConfigureResponse) Set

func (*NullableApiExtensionConfigureResponse) UnmarshalJSON

func (v *NullableApiExtensionConfigureResponse) UnmarshalJSON(src []byte) error

func (*NullableApiExtensionConfigureResponse) Unset

type NullableApiExtensionDeleteResponse

type NullableApiExtensionDeleteResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiExtensionDeleteResponse) Get

func (NullableApiExtensionDeleteResponse) IsSet

func (NullableApiExtensionDeleteResponse) MarshalJSON

func (v NullableApiExtensionDeleteResponse) MarshalJSON() ([]byte, error)

func (*NullableApiExtensionDeleteResponse) Set

func (*NullableApiExtensionDeleteResponse) UnmarshalJSON

func (v *NullableApiExtensionDeleteResponse) UnmarshalJSON(src []byte) error

func (*NullableApiExtensionDeleteResponse) Unset

type NullableApiExtensionList

type NullableApiExtensionList struct {
	// contains filtered or unexported fields
}

func NewNullableApiExtensionList

func NewNullableApiExtensionList(val *ApiExtensionList) *NullableApiExtensionList

func (NullableApiExtensionList) Get

func (NullableApiExtensionList) IsSet

func (v NullableApiExtensionList) IsSet() bool

func (NullableApiExtensionList) MarshalJSON

func (v NullableApiExtensionList) MarshalJSON() ([]byte, error)

func (*NullableApiExtensionList) Set

func (*NullableApiExtensionList) UnmarshalJSON

func (v *NullableApiExtensionList) UnmarshalJSON(src []byte) error

func (*NullableApiExtensionList) Unset

func (v *NullableApiExtensionList) Unset()

type NullableApiExtensionLoadResponse

type NullableApiExtensionLoadResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiExtensionLoadResponse) Get

func (NullableApiExtensionLoadResponse) IsSet

func (NullableApiExtensionLoadResponse) MarshalJSON

func (v NullableApiExtensionLoadResponse) MarshalJSON() ([]byte, error)

func (*NullableApiExtensionLoadResponse) Set

func (*NullableApiExtensionLoadResponse) UnmarshalJSON

func (v *NullableApiExtensionLoadResponse) UnmarshalJSON(src []byte) error

func (*NullableApiExtensionLoadResponse) Unset

type NullableApiInstallResponse

type NullableApiInstallResponse struct {
	// contains filtered or unexported fields
}

func NewNullableApiInstallResponse

func NewNullableApiInstallResponse(val *ApiInstallResponse) *NullableApiInstallResponse

func (NullableApiInstallResponse) Get

func (NullableApiInstallResponse) IsSet

func (v NullableApiInstallResponse) IsSet() bool

func (NullableApiInstallResponse) MarshalJSON

func (v NullableApiInstallResponse) MarshalJSON() ([]byte, error)

func (*NullableApiInstallResponse) Set

func (*NullableApiInstallResponse) UnmarshalJSON

func (v *NullableApiInstallResponse) UnmarshalJSON(src []byte) error

func (*NullableApiInstallResponse) Unset

func (v *NullableApiInstallResponse) Unset()

type NullableApiInstalledListResponse

type NullableApiInstalledListResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiInstalledListResponse) Get

func (NullableApiInstalledListResponse) IsSet

func (NullableApiInstalledListResponse) MarshalJSON

func (v NullableApiInstalledListResponse) MarshalJSON() ([]byte, error)

func (*NullableApiInstalledListResponse) Set

func (*NullableApiInstalledListResponse) UnmarshalJSON

func (v *NullableApiInstalledListResponse) UnmarshalJSON(src []byte) error

func (*NullableApiInstalledListResponse) Unset

type NullableBackup

type NullableBackup struct {
	// contains filtered or unexported fields
}

func NewNullableBackup

func NewNullableBackup(val *Backup) *NullableBackup

func (NullableBackup) Get

func (v NullableBackup) Get() *Backup

func (NullableBackup) IsSet

func (v NullableBackup) IsSet() bool

func (NullableBackup) MarshalJSON

func (v NullableBackup) MarshalJSON() ([]byte, error)

func (*NullableBackup) Set

func (v *NullableBackup) Set(val *Backup)

func (*NullableBackup) UnmarshalJSON

func (v *NullableBackup) UnmarshalJSON(src []byte) error

func (*NullableBackup) Unset

func (v *NullableBackup) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCloneInstancePayload

type NullableCloneInstancePayload struct {
	// contains filtered or unexported fields
}

func NewNullableCloneInstancePayload

func NewNullableCloneInstancePayload(val *CloneInstancePayload) *NullableCloneInstancePayload

func (NullableCloneInstancePayload) Get

func (NullableCloneInstancePayload) IsSet

func (NullableCloneInstancePayload) MarshalJSON

func (v NullableCloneInstancePayload) MarshalJSON() ([]byte, error)

func (*NullableCloneInstancePayload) Set

func (*NullableCloneInstancePayload) UnmarshalJSON

func (v *NullableCloneInstancePayload) UnmarshalJSON(src []byte) error

func (*NullableCloneInstancePayload) Unset

func (v *NullableCloneInstancePayload) Unset()

type NullableCloneInstanceResponse

type NullableCloneInstanceResponse struct {
	// contains filtered or unexported fields
}

func (NullableCloneInstanceResponse) Get

func (NullableCloneInstanceResponse) IsSet

func (NullableCloneInstanceResponse) MarshalJSON

func (v NullableCloneInstanceResponse) MarshalJSON() ([]byte, error)

func (*NullableCloneInstanceResponse) Set

func (*NullableCloneInstanceResponse) UnmarshalJSON

func (v *NullableCloneInstanceResponse) UnmarshalJSON(src []byte) error

func (*NullableCloneInstanceResponse) Unset

func (v *NullableCloneInstanceResponse) Unset()

type NullableCreateDatabasePayload

type NullableCreateDatabasePayload struct {
	// contains filtered or unexported fields
}

func (NullableCreateDatabasePayload) Get

func (NullableCreateDatabasePayload) IsSet

func (NullableCreateDatabasePayload) MarshalJSON

func (v NullableCreateDatabasePayload) MarshalJSON() ([]byte, error)

func (*NullableCreateDatabasePayload) Set

func (*NullableCreateDatabasePayload) UnmarshalJSON

func (v *NullableCreateDatabasePayload) UnmarshalJSON(src []byte) error

func (*NullableCreateDatabasePayload) Unset

func (v *NullableCreateDatabasePayload) Unset()

type NullableCreateInstancePayload

type NullableCreateInstancePayload struct {
	// contains filtered or unexported fields
}

func (NullableCreateInstancePayload) Get

func (NullableCreateInstancePayload) IsSet

func (NullableCreateInstancePayload) MarshalJSON

func (v NullableCreateInstancePayload) MarshalJSON() ([]byte, error)

func (*NullableCreateInstancePayload) Set

func (*NullableCreateInstancePayload) UnmarshalJSON

func (v *NullableCreateInstancePayload) UnmarshalJSON(src []byte) error

func (*NullableCreateInstancePayload) Unset

func (v *NullableCreateInstancePayload) Unset()

type NullableCreateInstanceResponse

type NullableCreateInstanceResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateInstanceResponse) Get

func (NullableCreateInstanceResponse) IsSet

func (NullableCreateInstanceResponse) MarshalJSON

func (v NullableCreateInstanceResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateInstanceResponse) Set

func (*NullableCreateInstanceResponse) UnmarshalJSON

func (v *NullableCreateInstanceResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateInstanceResponse) Unset

func (v *NullableCreateInstanceResponse) Unset()

type NullableCreateUserPayload

type NullableCreateUserPayload struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserPayload

func NewNullableCreateUserPayload(val *CreateUserPayload) *NullableCreateUserPayload

func (NullableCreateUserPayload) Get

func (NullableCreateUserPayload) IsSet

func (v NullableCreateUserPayload) IsSet() bool

func (NullableCreateUserPayload) MarshalJSON

func (v NullableCreateUserPayload) MarshalJSON() ([]byte, error)

func (*NullableCreateUserPayload) Set

func (*NullableCreateUserPayload) UnmarshalJSON

func (v *NullableCreateUserPayload) UnmarshalJSON(src []byte) error

func (*NullableCreateUserPayload) Unset

func (v *NullableCreateUserPayload) Unset()

type NullableCreateUserResponse

type NullableCreateUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserResponse

func NewNullableCreateUserResponse(val *CreateUserResponse) *NullableCreateUserResponse

func (NullableCreateUserResponse) Get

func (NullableCreateUserResponse) IsSet

func (v NullableCreateUserResponse) IsSet() bool

func (NullableCreateUserResponse) MarshalJSON

func (v NullableCreateUserResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateUserResponse) Set

func (*NullableCreateUserResponse) UnmarshalJSON

func (v *NullableCreateUserResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateUserResponse) Unset

func (v *NullableCreateUserResponse) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableExtensionsConfiguration

type NullableExtensionsConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableExtensionsConfiguration) Get

func (NullableExtensionsConfiguration) IsSet

func (NullableExtensionsConfiguration) MarshalJSON

func (v NullableExtensionsConfiguration) MarshalJSON() ([]byte, error)

func (*NullableExtensionsConfiguration) Set

func (*NullableExtensionsConfiguration) UnmarshalJSON

func (v *NullableExtensionsConfiguration) UnmarshalJSON(src []byte) error

func (*NullableExtensionsConfiguration) Unset

type NullableExtensionsExtensionListResponse

type NullableExtensionsExtensionListResponse struct {
	// contains filtered or unexported fields
}

func (NullableExtensionsExtensionListResponse) Get

func (NullableExtensionsExtensionListResponse) IsSet

func (NullableExtensionsExtensionListResponse) MarshalJSON

func (v NullableExtensionsExtensionListResponse) MarshalJSON() ([]byte, error)

func (*NullableExtensionsExtensionListResponse) Set

func (*NullableExtensionsExtensionListResponse) UnmarshalJSON

func (v *NullableExtensionsExtensionListResponse) UnmarshalJSON(src []byte) error

func (*NullableExtensionsExtensionListResponse) Unset

type NullableExtensionsNewConfig

type NullableExtensionsNewConfig struct {
	// contains filtered or unexported fields
}

func NewNullableExtensionsNewConfig

func NewNullableExtensionsNewConfig(val *ExtensionsNewConfig) *NullableExtensionsNewConfig

func (NullableExtensionsNewConfig) Get

func (NullableExtensionsNewConfig) IsSet

func (NullableExtensionsNewConfig) MarshalJSON

func (v NullableExtensionsNewConfig) MarshalJSON() ([]byte, error)

func (*NullableExtensionsNewConfig) Set

func (*NullableExtensionsNewConfig) UnmarshalJSON

func (v *NullableExtensionsNewConfig) UnmarshalJSON(src []byte) error

func (*NullableExtensionsNewConfig) Unset

func (v *NullableExtensionsNewConfig) Unset()

type NullableFlavor

type NullableFlavor struct {
	// contains filtered or unexported fields
}

func NewNullableFlavor

func NewNullableFlavor(val *Flavor) *NullableFlavor

func (NullableFlavor) Get

func (v NullableFlavor) Get() *Flavor

func (NullableFlavor) IsSet

func (v NullableFlavor) IsSet() bool

func (NullableFlavor) MarshalJSON

func (v NullableFlavor) MarshalJSON() ([]byte, error)

func (*NullableFlavor) Set

func (v *NullableFlavor) Set(val *Flavor)

func (*NullableFlavor) UnmarshalJSON

func (v *NullableFlavor) UnmarshalJSON(src []byte) error

func (*NullableFlavor) Unset

func (v *NullableFlavor) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetBackupResponse

type NullableGetBackupResponse struct {
	// contains filtered or unexported fields
}

func NewNullableGetBackupResponse

func NewNullableGetBackupResponse(val *GetBackupResponse) *NullableGetBackupResponse

func (NullableGetBackupResponse) Get

func (NullableGetBackupResponse) IsSet

func (v NullableGetBackupResponse) IsSet() bool

func (NullableGetBackupResponse) MarshalJSON

func (v NullableGetBackupResponse) MarshalJSON() ([]byte, error)

func (*NullableGetBackupResponse) Set

func (*NullableGetBackupResponse) UnmarshalJSON

func (v *NullableGetBackupResponse) UnmarshalJSON(src []byte) error

func (*NullableGetBackupResponse) Unset

func (v *NullableGetBackupResponse) Unset()

type NullableGetUserResponse

type NullableGetUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableGetUserResponse

func NewNullableGetUserResponse(val *GetUserResponse) *NullableGetUserResponse

func (NullableGetUserResponse) Get

func (NullableGetUserResponse) IsSet

func (v NullableGetUserResponse) IsSet() bool

func (NullableGetUserResponse) MarshalJSON

func (v NullableGetUserResponse) MarshalJSON() ([]byte, error)

func (*NullableGetUserResponse) Set

func (*NullableGetUserResponse) UnmarshalJSON

func (v *NullableGetUserResponse) UnmarshalJSON(src []byte) error

func (*NullableGetUserResponse) Unset

func (v *NullableGetUserResponse) Unset()

type NullableInstance

type NullableInstance struct {
	// contains filtered or unexported fields
}

func NewNullableInstance

func NewNullableInstance(val *Instance) *NullableInstance

func (NullableInstance) Get

func (v NullableInstance) Get() *Instance

func (NullableInstance) IsSet

func (v NullableInstance) IsSet() bool

func (NullableInstance) MarshalJSON

func (v NullableInstance) MarshalJSON() ([]byte, error)

func (*NullableInstance) Set

func (v *NullableInstance) Set(val *Instance)

func (*NullableInstance) UnmarshalJSON

func (v *NullableInstance) UnmarshalJSON(src []byte) error

func (*NullableInstance) Unset

func (v *NullableInstance) Unset()

type NullableInstanceCreateDatabaseResponse

type NullableInstanceCreateDatabaseResponse struct {
	// contains filtered or unexported fields
}

func (NullableInstanceCreateDatabaseResponse) Get

func (NullableInstanceCreateDatabaseResponse) IsSet

func (NullableInstanceCreateDatabaseResponse) MarshalJSON

func (v NullableInstanceCreateDatabaseResponse) MarshalJSON() ([]byte, error)

func (*NullableInstanceCreateDatabaseResponse) Set

func (*NullableInstanceCreateDatabaseResponse) UnmarshalJSON

func (v *NullableInstanceCreateDatabaseResponse) UnmarshalJSON(src []byte) error

func (*NullableInstanceCreateDatabaseResponse) Unset

type NullableInstanceDataPoint

type NullableInstanceDataPoint struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceDataPoint

func NewNullableInstanceDataPoint(val *InstanceDataPoint) *NullableInstanceDataPoint

func (NullableInstanceDataPoint) Get

func (NullableInstanceDataPoint) IsSet

func (v NullableInstanceDataPoint) IsSet() bool

func (NullableInstanceDataPoint) MarshalJSON

func (v NullableInstanceDataPoint) MarshalJSON() ([]byte, error)

func (*NullableInstanceDataPoint) Set

func (*NullableInstanceDataPoint) UnmarshalJSON

func (v *NullableInstanceDataPoint) UnmarshalJSON(src []byte) error

func (*NullableInstanceDataPoint) Unset

func (v *NullableInstanceDataPoint) Unset()

type NullableInstanceDatabase

type NullableInstanceDatabase struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceDatabase

func NewNullableInstanceDatabase(val *InstanceDatabase) *NullableInstanceDatabase

func (NullableInstanceDatabase) Get

func (NullableInstanceDatabase) IsSet

func (v NullableInstanceDatabase) IsSet() bool

func (NullableInstanceDatabase) MarshalJSON

func (v NullableInstanceDatabase) MarshalJSON() ([]byte, error)

func (*NullableInstanceDatabase) Set

func (*NullableInstanceDatabase) UnmarshalJSON

func (v *NullableInstanceDatabase) UnmarshalJSON(src []byte) error

func (*NullableInstanceDatabase) Unset

func (v *NullableInstanceDatabase) Unset()

type NullableInstanceHost

type NullableInstanceHost struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceHost

func NewNullableInstanceHost(val *InstanceHost) *NullableInstanceHost

func (NullableInstanceHost) Get

func (NullableInstanceHost) IsSet

func (v NullableInstanceHost) IsSet() bool

func (NullableInstanceHost) MarshalJSON

func (v NullableInstanceHost) MarshalJSON() ([]byte, error)

func (*NullableInstanceHost) Set

func (v *NullableInstanceHost) Set(val *InstanceHost)

func (*NullableInstanceHost) UnmarshalJSON

func (v *NullableInstanceHost) UnmarshalJSON(src []byte) error

func (*NullableInstanceHost) Unset

func (v *NullableInstanceHost) Unset()

type NullableInstanceHostMetric

type NullableInstanceHostMetric struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceHostMetric

func NewNullableInstanceHostMetric(val *InstanceHostMetric) *NullableInstanceHostMetric

func (NullableInstanceHostMetric) Get

func (NullableInstanceHostMetric) IsSet

func (v NullableInstanceHostMetric) IsSet() bool

func (NullableInstanceHostMetric) MarshalJSON

func (v NullableInstanceHostMetric) MarshalJSON() ([]byte, error)

func (*NullableInstanceHostMetric) Set

func (*NullableInstanceHostMetric) UnmarshalJSON

func (v *NullableInstanceHostMetric) UnmarshalJSON(src []byte) error

func (*NullableInstanceHostMetric) Unset

func (v *NullableInstanceHostMetric) Unset()

type NullableInstanceListDatabasesResponse

type NullableInstanceListDatabasesResponse struct {
	// contains filtered or unexported fields
}

func (NullableInstanceListDatabasesResponse) Get

func (NullableInstanceListDatabasesResponse) IsSet

func (NullableInstanceListDatabasesResponse) MarshalJSON

func (v NullableInstanceListDatabasesResponse) MarshalJSON() ([]byte, error)

func (*NullableInstanceListDatabasesResponse) Set

func (*NullableInstanceListDatabasesResponse) UnmarshalJSON

func (v *NullableInstanceListDatabasesResponse) UnmarshalJSON(src []byte) error

func (*NullableInstanceListDatabasesResponse) Unset

type NullableInstanceListInstance

type NullableInstanceListInstance struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceListInstance

func NewNullableInstanceListInstance(val *InstanceListInstance) *NullableInstanceListInstance

func (NullableInstanceListInstance) Get

func (NullableInstanceListInstance) IsSet

func (NullableInstanceListInstance) MarshalJSON

func (v NullableInstanceListInstance) MarshalJSON() ([]byte, error)

func (*NullableInstanceListInstance) Set

func (*NullableInstanceListInstance) UnmarshalJSON

func (v *NullableInstanceListInstance) UnmarshalJSON(src []byte) error

func (*NullableInstanceListInstance) Unset

func (v *NullableInstanceListInstance) Unset()

type NullableInstanceMetricsResponse

type NullableInstanceMetricsResponse struct {
	// contains filtered or unexported fields
}

func (NullableInstanceMetricsResponse) Get

func (NullableInstanceMetricsResponse) IsSet

func (NullableInstanceMetricsResponse) MarshalJSON

func (v NullableInstanceMetricsResponse) MarshalJSON() ([]byte, error)

func (*NullableInstanceMetricsResponse) Set

func (*NullableInstanceMetricsResponse) UnmarshalJSON

func (v *NullableInstanceMetricsResponse) UnmarshalJSON(src []byte) error

func (*NullableInstanceMetricsResponse) Unset

type NullableInstanceResponse

type NullableInstanceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceResponse

func NewNullableInstanceResponse(val *InstanceResponse) *NullableInstanceResponse

func (NullableInstanceResponse) Get

func (NullableInstanceResponse) IsSet

func (v NullableInstanceResponse) IsSet() bool

func (NullableInstanceResponse) MarshalJSON

func (v NullableInstanceResponse) MarshalJSON() ([]byte, error)

func (*NullableInstanceResponse) Set

func (*NullableInstanceResponse) UnmarshalJSON

func (v *NullableInstanceResponse) UnmarshalJSON(src []byte) error

func (*NullableInstanceResponse) Unset

func (v *NullableInstanceResponse) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableListBackupsResponse

type NullableListBackupsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListBackupsResponse

func NewNullableListBackupsResponse(val *ListBackupsResponse) *NullableListBackupsResponse

func (NullableListBackupsResponse) Get

func (NullableListBackupsResponse) IsSet

func (NullableListBackupsResponse) MarshalJSON

func (v NullableListBackupsResponse) MarshalJSON() ([]byte, error)

func (*NullableListBackupsResponse) Set

func (*NullableListBackupsResponse) UnmarshalJSON

func (v *NullableListBackupsResponse) UnmarshalJSON(src []byte) error

func (*NullableListBackupsResponse) Unset

func (v *NullableListBackupsResponse) Unset()

type NullableListFlavorsResponse

type NullableListFlavorsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListFlavorsResponse

func NewNullableListFlavorsResponse(val *ListFlavorsResponse) *NullableListFlavorsResponse

func (NullableListFlavorsResponse) Get

func (NullableListFlavorsResponse) IsSet

func (NullableListFlavorsResponse) MarshalJSON

func (v NullableListFlavorsResponse) MarshalJSON() ([]byte, error)

func (*NullableListFlavorsResponse) Set

func (*NullableListFlavorsResponse) UnmarshalJSON

func (v *NullableListFlavorsResponse) UnmarshalJSON(src []byte) error

func (*NullableListFlavorsResponse) Unset

func (v *NullableListFlavorsResponse) Unset()

type NullableListInstancesResponse

type NullableListInstancesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListInstancesResponse) Get

func (NullableListInstancesResponse) IsSet

func (NullableListInstancesResponse) MarshalJSON

func (v NullableListInstancesResponse) MarshalJSON() ([]byte, error)

func (*NullableListInstancesResponse) Set

func (*NullableListInstancesResponse) UnmarshalJSON

func (v *NullableListInstancesResponse) UnmarshalJSON(src []byte) error

func (*NullableListInstancesResponse) Unset

func (v *NullableListInstancesResponse) Unset()

type NullableListStoragesResponse

type NullableListStoragesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListStoragesResponse

func NewNullableListStoragesResponse(val *ListStoragesResponse) *NullableListStoragesResponse

func (NullableListStoragesResponse) Get

func (NullableListStoragesResponse) IsSet

func (NullableListStoragesResponse) MarshalJSON

func (v NullableListStoragesResponse) MarshalJSON() ([]byte, error)

func (*NullableListStoragesResponse) Set

func (*NullableListStoragesResponse) UnmarshalJSON

func (v *NullableListStoragesResponse) UnmarshalJSON(src []byte) error

func (*NullableListStoragesResponse) Unset

func (v *NullableListStoragesResponse) Unset()

type NullableListUsersResponse

type NullableListUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListUsersResponse

func NewNullableListUsersResponse(val *ListUsersResponse) *NullableListUsersResponse

func (NullableListUsersResponse) Get

func (NullableListUsersResponse) IsSet

func (v NullableListUsersResponse) IsSet() bool

func (NullableListUsersResponse) MarshalJSON

func (v NullableListUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableListUsersResponse) Set

func (*NullableListUsersResponse) UnmarshalJSON

func (v *NullableListUsersResponse) UnmarshalJSON(src []byte) error

func (*NullableListUsersResponse) Unset

func (v *NullableListUsersResponse) Unset()

type NullableListUsersResponseItem

type NullableListUsersResponseItem struct {
	// contains filtered or unexported fields
}

func (NullableListUsersResponseItem) Get

func (NullableListUsersResponseItem) IsSet

func (NullableListUsersResponseItem) MarshalJSON

func (v NullableListUsersResponseItem) MarshalJSON() ([]byte, error)

func (*NullableListUsersResponseItem) Set

func (*NullableListUsersResponseItem) UnmarshalJSON

func (v *NullableListUsersResponseItem) UnmarshalJSON(src []byte) error

func (*NullableListUsersResponseItem) Unset

func (v *NullableListUsersResponseItem) Unset()

type NullableListVersionsResponse

type NullableListVersionsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListVersionsResponse

func NewNullableListVersionsResponse(val *ListVersionsResponse) *NullableListVersionsResponse

func (NullableListVersionsResponse) Get

func (NullableListVersionsResponse) IsSet

func (NullableListVersionsResponse) MarshalJSON

func (v NullableListVersionsResponse) MarshalJSON() ([]byte, error)

func (*NullableListVersionsResponse) Set

func (*NullableListVersionsResponse) UnmarshalJSON

func (v *NullableListVersionsResponse) UnmarshalJSON(src []byte) error

func (*NullableListVersionsResponse) Unset

func (v *NullableListVersionsResponse) Unset()

type NullablePartialUpdateInstancePayload

type NullablePartialUpdateInstancePayload struct {
	// contains filtered or unexported fields
}

func (NullablePartialUpdateInstancePayload) Get

func (NullablePartialUpdateInstancePayload) IsSet

func (NullablePartialUpdateInstancePayload) MarshalJSON

func (v NullablePartialUpdateInstancePayload) MarshalJSON() ([]byte, error)

func (*NullablePartialUpdateInstancePayload) Set

func (*NullablePartialUpdateInstancePayload) UnmarshalJSON

func (v *NullablePartialUpdateInstancePayload) UnmarshalJSON(src []byte) error

func (*NullablePartialUpdateInstancePayload) Unset

type NullablePartialUpdateInstanceResponse

type NullablePartialUpdateInstanceResponse struct {
	// contains filtered or unexported fields
}

func (NullablePartialUpdateInstanceResponse) Get

func (NullablePartialUpdateInstanceResponse) IsSet

func (NullablePartialUpdateInstanceResponse) MarshalJSON

func (v NullablePartialUpdateInstanceResponse) MarshalJSON() ([]byte, error)

func (*NullablePartialUpdateInstanceResponse) Set

func (*NullablePartialUpdateInstanceResponse) UnmarshalJSON

func (v *NullablePartialUpdateInstanceResponse) UnmarshalJSON(src []byte) error

func (*NullablePartialUpdateInstanceResponse) Unset

type NullablePartialUpdateUserPayload

type NullablePartialUpdateUserPayload struct {
	// contains filtered or unexported fields
}

func (NullablePartialUpdateUserPayload) Get

func (NullablePartialUpdateUserPayload) IsSet

func (NullablePartialUpdateUserPayload) MarshalJSON

func (v NullablePartialUpdateUserPayload) MarshalJSON() ([]byte, error)

func (*NullablePartialUpdateUserPayload) Set

func (*NullablePartialUpdateUserPayload) UnmarshalJSON

func (v *NullablePartialUpdateUserPayload) UnmarshalJSON(src []byte) error

func (*NullablePartialUpdateUserPayload) Unset

type NullablePostgresDatabaseParameter

type NullablePostgresDatabaseParameter struct {
	// contains filtered or unexported fields
}

func (NullablePostgresDatabaseParameter) Get

func (NullablePostgresDatabaseParameter) IsSet

func (NullablePostgresDatabaseParameter) MarshalJSON

func (v NullablePostgresDatabaseParameter) MarshalJSON() ([]byte, error)

func (*NullablePostgresDatabaseParameter) Set

func (*NullablePostgresDatabaseParameter) UnmarshalJSON

func (v *NullablePostgresDatabaseParameter) UnmarshalJSON(src []byte) error

func (*NullablePostgresDatabaseParameter) Unset

type NullablePostgresDatabaseParameterResponse

type NullablePostgresDatabaseParameterResponse struct {
	// contains filtered or unexported fields
}

func (NullablePostgresDatabaseParameterResponse) Get

func (NullablePostgresDatabaseParameterResponse) IsSet

func (NullablePostgresDatabaseParameterResponse) MarshalJSON

func (*NullablePostgresDatabaseParameterResponse) Set

func (*NullablePostgresDatabaseParameterResponse) UnmarshalJSON

func (v *NullablePostgresDatabaseParameterResponse) UnmarshalJSON(src []byte) error

func (*NullablePostgresDatabaseParameterResponse) Unset

type NullableResetUserResponse

type NullableResetUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableResetUserResponse

func NewNullableResetUserResponse(val *ResetUserResponse) *NullableResetUserResponse

func (NullableResetUserResponse) Get

func (NullableResetUserResponse) IsSet

func (v NullableResetUserResponse) IsSet() bool

func (NullableResetUserResponse) MarshalJSON

func (v NullableResetUserResponse) MarshalJSON() ([]byte, error)

func (*NullableResetUserResponse) Set

func (*NullableResetUserResponse) UnmarshalJSON

func (v *NullableResetUserResponse) UnmarshalJSON(src []byte) error

func (*NullableResetUserResponse) Unset

func (v *NullableResetUserResponse) Unset()

type NullableStorage

type NullableStorage struct {
	// contains filtered or unexported fields
}

func NewNullableStorage

func NewNullableStorage(val *Storage) *NullableStorage

func (NullableStorage) Get

func (v NullableStorage) Get() *Storage

func (NullableStorage) IsSet

func (v NullableStorage) IsSet() bool

func (NullableStorage) MarshalJSON

func (v NullableStorage) MarshalJSON() ([]byte, error)

func (*NullableStorage) Set

func (v *NullableStorage) Set(val *Storage)

func (*NullableStorage) UnmarshalJSON

func (v *NullableStorage) UnmarshalJSON(src []byte) error

func (*NullableStorage) Unset

func (v *NullableStorage) Unset()

type NullableStorageRange

type NullableStorageRange struct {
	// contains filtered or unexported fields
}

func NewNullableStorageRange

func NewNullableStorageRange(val *StorageRange) *NullableStorageRange

func (NullableStorageRange) Get

func (NullableStorageRange) IsSet

func (v NullableStorageRange) IsSet() bool

func (NullableStorageRange) MarshalJSON

func (v NullableStorageRange) MarshalJSON() ([]byte, error)

func (*NullableStorageRange) Set

func (v *NullableStorageRange) Set(val *StorageRange)

func (*NullableStorageRange) UnmarshalJSON

func (v *NullableStorageRange) UnmarshalJSON(src []byte) error

func (*NullableStorageRange) Unset

func (v *NullableStorageRange) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateBackupSchedulePayload

type NullableUpdateBackupSchedulePayload struct {
	// contains filtered or unexported fields
}

func (NullableUpdateBackupSchedulePayload) Get

func (NullableUpdateBackupSchedulePayload) IsSet

func (NullableUpdateBackupSchedulePayload) MarshalJSON

func (v NullableUpdateBackupSchedulePayload) MarshalJSON() ([]byte, error)

func (*NullableUpdateBackupSchedulePayload) Set

func (*NullableUpdateBackupSchedulePayload) UnmarshalJSON

func (v *NullableUpdateBackupSchedulePayload) UnmarshalJSON(src []byte) error

func (*NullableUpdateBackupSchedulePayload) Unset

type NullableUpdateInstancePayload

type NullableUpdateInstancePayload struct {
	// contains filtered or unexported fields
}

func (NullableUpdateInstancePayload) Get

func (NullableUpdateInstancePayload) IsSet

func (NullableUpdateInstancePayload) MarshalJSON

func (v NullableUpdateInstancePayload) MarshalJSON() ([]byte, error)

func (*NullableUpdateInstancePayload) Set

func (*NullableUpdateInstancePayload) UnmarshalJSON

func (v *NullableUpdateInstancePayload) UnmarshalJSON(src []byte) error

func (*NullableUpdateInstancePayload) Unset

func (v *NullableUpdateInstancePayload) Unset()

type NullableUpdateUserPayload

type NullableUpdateUserPayload struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateUserPayload

func NewNullableUpdateUserPayload(val *UpdateUserPayload) *NullableUpdateUserPayload

func (NullableUpdateUserPayload) Get

func (NullableUpdateUserPayload) IsSet

func (v NullableUpdateUserPayload) IsSet() bool

func (NullableUpdateUserPayload) MarshalJSON

func (v NullableUpdateUserPayload) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserPayload) Set

func (*NullableUpdateUserPayload) UnmarshalJSON

func (v *NullableUpdateUserPayload) UnmarshalJSON(src []byte) error

func (*NullableUpdateUserPayload) Unset

func (v *NullableUpdateUserPayload) Unset()

type NullableUser

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get

func (v NullableUser) Get() *User

func (NullableUser) IsSet

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON

func (v *NullableUser) UnmarshalJSON(src []byte) error

func (*NullableUser) Unset

func (v *NullableUser) Unset()

type NullableUserResponse

type NullableUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUserResponse

func NewNullableUserResponse(val *UserResponse) *NullableUserResponse

func (NullableUserResponse) Get

func (NullableUserResponse) IsSet

func (v NullableUserResponse) IsSet() bool

func (NullableUserResponse) MarshalJSON

func (v NullableUserResponse) MarshalJSON() ([]byte, error)

func (*NullableUserResponse) Set

func (v *NullableUserResponse) Set(val *UserResponse)

func (*NullableUserResponse) UnmarshalJSON

func (v *NullableUserResponse) UnmarshalJSON(src []byte) error

func (*NullableUserResponse) Unset

func (v *NullableUserResponse) Unset()

type NullableValue

type NullableValue[T any] struct {
	// contains filtered or unexported fields
}

func (NullableValue[T]) Get

func (v NullableValue[T]) Get() *T

func (NullableValue[T]) IsSet

func (v NullableValue[T]) IsSet() bool

func (*NullableValue[T]) Set

func (v *NullableValue[T]) Set(val *T)

func (*NullableValue[T]) Unset

func (v *NullableValue[T]) Unset()

type PartialUpdateInstancePayload

type PartialUpdateInstancePayload struct {
	Acl            PartialUpdateInstancePayloadGetAclAttributeType            `json:"acl,omitempty"`
	BackupSchedule PartialUpdateInstancePayloadGetBackupScheduleAttributeType `json:"backupSchedule,omitempty"`
	FlavorId       PartialUpdateInstancePayloadGetFlavorIdAttributeType       `json:"flavorId,omitempty"`
	// Labels field is not certain/clear
	Labels  PartialUpdateInstancePayloadGetLabelsAttributeType  `json:"labels,omitempty"`
	Name    PartialUpdateInstancePayloadGetNameAttributeType    `json:"name,omitempty"`
	Options PartialUpdateInstancePayloadGetOptionsAttributeType `json:"options,omitempty"`
	// Can be cast to int32 without loss of precision.
	Replicas PartialUpdateInstancePayloadGetReplicasAttributeType `json:"replicas,omitempty"`
	Storage  PartialUpdateInstancePayloadGetStorageAttributeType  `json:"storage,omitempty"`
	Version  PartialUpdateInstancePayloadGetVersionAttributeType  `json:"version,omitempty"`
}

PartialUpdateInstancePayload struct for PartialUpdateInstancePayload

func NewPartialUpdateInstancePayload

func NewPartialUpdateInstancePayload() *PartialUpdateInstancePayload

NewPartialUpdateInstancePayload instantiates a new PartialUpdateInstancePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartialUpdateInstancePayloadWithDefaults

func NewPartialUpdateInstancePayloadWithDefaults() *PartialUpdateInstancePayload

NewPartialUpdateInstancePayloadWithDefaults instantiates a new PartialUpdateInstancePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartialUpdateInstancePayload) GetAcl

GetAcl returns the Acl field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetAclOk

GetAclOk returns a tuple with the Acl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetBackupSchedule

GetBackupSchedule returns the BackupSchedule field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetBackupScheduleOk

GetBackupScheduleOk returns a tuple with the BackupSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetFlavorId

GetFlavorId returns the FlavorId field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetFlavorIdOk

GetFlavorIdOk returns a tuple with the FlavorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetLabels

GetLabels returns the Labels field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetOptionsOk

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetReplicas

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetReplicasOk

GetReplicasOk returns a tuple with the Replicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetStorage

GetStorage returns the Storage field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetStorageOk

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*PartialUpdateInstancePayload) GetVersionOk

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstancePayload) HasAcl

func (o *PartialUpdateInstancePayload) HasAcl() bool

HasAcl returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasBackupSchedule

func (o *PartialUpdateInstancePayload) HasBackupSchedule() bool

HasBackupSchedule returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasFlavorId

func (o *PartialUpdateInstancePayload) HasFlavorId() bool

HasFlavorId returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasLabels

func (o *PartialUpdateInstancePayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasName

func (o *PartialUpdateInstancePayload) HasName() bool

HasName returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasOptions

func (o *PartialUpdateInstancePayload) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasReplicas

func (o *PartialUpdateInstancePayload) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasStorage

func (o *PartialUpdateInstancePayload) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) HasVersion

func (o *PartialUpdateInstancePayload) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*PartialUpdateInstancePayload) SetAcl

SetAcl gets a reference to the given ACL and assigns it to the Acl field.

func (*PartialUpdateInstancePayload) SetBackupSchedule

SetBackupSchedule gets a reference to the given string and assigns it to the BackupSchedule field.

func (*PartialUpdateInstancePayload) SetFlavorId

SetFlavorId gets a reference to the given string and assigns it to the FlavorId field.

func (*PartialUpdateInstancePayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*PartialUpdateInstancePayload) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*PartialUpdateInstancePayload) SetOptions

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (*PartialUpdateInstancePayload) SetReplicas

SetReplicas gets a reference to the given int64 and assigns it to the Replicas field.

func (*PartialUpdateInstancePayload) SetStorage

SetStorage gets a reference to the given Storage and assigns it to the Storage field.

func (*PartialUpdateInstancePayload) SetVersion

SetVersion gets a reference to the given string and assigns it to the Version field.

func (PartialUpdateInstancePayload) ToMap

func (o PartialUpdateInstancePayload) ToMap() (map[string]interface{}, error)

type PartialUpdateInstancePayloadGetAclArgType

type PartialUpdateInstancePayloadGetAclArgType = ACL

type PartialUpdateInstancePayloadGetAclAttributeType

type PartialUpdateInstancePayloadGetAclAttributeType = *ACL

isModel

type PartialUpdateInstancePayloadGetAclRetType

type PartialUpdateInstancePayloadGetAclRetType = ACL

type PartialUpdateInstancePayloadGetBackupScheduleArgType

type PartialUpdateInstancePayloadGetBackupScheduleArgType = string

type PartialUpdateInstancePayloadGetBackupScheduleAttributeType

type PartialUpdateInstancePayloadGetBackupScheduleAttributeType = *string

isNotNullableString

type PartialUpdateInstancePayloadGetBackupScheduleRetType

type PartialUpdateInstancePayloadGetBackupScheduleRetType = string

type PartialUpdateInstancePayloadGetFlavorIdArgType

type PartialUpdateInstancePayloadGetFlavorIdArgType = string

type PartialUpdateInstancePayloadGetFlavorIdAttributeType

type PartialUpdateInstancePayloadGetFlavorIdAttributeType = *string

isNotNullableString

type PartialUpdateInstancePayloadGetFlavorIdRetType

type PartialUpdateInstancePayloadGetFlavorIdRetType = string

type PartialUpdateInstancePayloadGetLabelsArgType

type PartialUpdateInstancePayloadGetLabelsArgType = map[string]string

type PartialUpdateInstancePayloadGetLabelsAttributeType

type PartialUpdateInstancePayloadGetLabelsAttributeType = *map[string]string

isContainer

type PartialUpdateInstancePayloadGetLabelsRetType

type PartialUpdateInstancePayloadGetLabelsRetType = map[string]string

type PartialUpdateInstancePayloadGetNameArgType

type PartialUpdateInstancePayloadGetNameArgType = string

type PartialUpdateInstancePayloadGetNameAttributeType

type PartialUpdateInstancePayloadGetNameAttributeType = *string

isNotNullableString

type PartialUpdateInstancePayloadGetNameRetType

type PartialUpdateInstancePayloadGetNameRetType = string

type PartialUpdateInstancePayloadGetOptionsArgType

type PartialUpdateInstancePayloadGetOptionsArgType = map[string]string

type PartialUpdateInstancePayloadGetOptionsAttributeType

type PartialUpdateInstancePayloadGetOptionsAttributeType = *map[string]string

isContainer

type PartialUpdateInstancePayloadGetOptionsRetType

type PartialUpdateInstancePayloadGetOptionsRetType = map[string]string

type PartialUpdateInstancePayloadGetReplicasArgType

type PartialUpdateInstancePayloadGetReplicasArgType = int64

type PartialUpdateInstancePayloadGetReplicasAttributeType

type PartialUpdateInstancePayloadGetReplicasAttributeType = *int64

isInteger

type PartialUpdateInstancePayloadGetReplicasRetType

type PartialUpdateInstancePayloadGetReplicasRetType = int64

type PartialUpdateInstancePayloadGetStorageArgType

type PartialUpdateInstancePayloadGetStorageArgType = Storage

type PartialUpdateInstancePayloadGetStorageAttributeType

type PartialUpdateInstancePayloadGetStorageAttributeType = *Storage

isModel

type PartialUpdateInstancePayloadGetStorageRetType

type PartialUpdateInstancePayloadGetStorageRetType = Storage

type PartialUpdateInstancePayloadGetVersionArgType

type PartialUpdateInstancePayloadGetVersionArgType = string

type PartialUpdateInstancePayloadGetVersionAttributeType

type PartialUpdateInstancePayloadGetVersionAttributeType = *string

isNotNullableString

type PartialUpdateInstancePayloadGetVersionRetType

type PartialUpdateInstancePayloadGetVersionRetType = string

type PartialUpdateInstanceRequest

type PartialUpdateInstanceRequest struct {
	// contains filtered or unexported fields
}

func (PartialUpdateInstanceRequest) Execute

func (PartialUpdateInstanceRequest) PartialUpdateInstancePayload

func (r PartialUpdateInstanceRequest) PartialUpdateInstancePayload(partialUpdateInstancePayload PartialUpdateInstancePayload) ApiPartialUpdateInstanceRequest

type PartialUpdateInstanceResponse

type PartialUpdateInstanceResponse struct {
	Item PartialUpdateInstanceResponseGetItemAttributeType `json:"item,omitempty"`
}

PartialUpdateInstanceResponse struct for PartialUpdateInstanceResponse

func NewPartialUpdateInstanceResponse

func NewPartialUpdateInstanceResponse() *PartialUpdateInstanceResponse

NewPartialUpdateInstanceResponse instantiates a new PartialUpdateInstanceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartialUpdateInstanceResponseWithDefaults

func NewPartialUpdateInstanceResponseWithDefaults() *PartialUpdateInstanceResponse

NewPartialUpdateInstanceResponseWithDefaults instantiates a new PartialUpdateInstanceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartialUpdateInstanceResponse) GetItem

GetItem returns the Item field value if set, zero value otherwise.

func (*PartialUpdateInstanceResponse) GetItemOk

GetItemOk returns a tuple with the Item field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateInstanceResponse) HasItem

func (o *PartialUpdateInstanceResponse) HasItem() bool

HasItem returns a boolean if a field has been set.

func (*PartialUpdateInstanceResponse) SetItem

SetItem gets a reference to the given Instance and assigns it to the Item field.

func (PartialUpdateInstanceResponse) ToMap

func (o PartialUpdateInstanceResponse) ToMap() (map[string]interface{}, error)

type PartialUpdateInstanceResponseGetItemArgType

type PartialUpdateInstanceResponseGetItemArgType = Instance

type PartialUpdateInstanceResponseGetItemAttributeType

type PartialUpdateInstanceResponseGetItemAttributeType = *Instance

isModel

type PartialUpdateInstanceResponseGetItemRetType

type PartialUpdateInstanceResponseGetItemRetType = Instance

type PartialUpdateUserPayload

type PartialUpdateUserPayload struct {
	Database PartialUpdateUserPayloadGetDatabaseAttributeType `json:"database,omitempty"`
	Roles    PartialUpdateUserPayloadGetRolesAttributeType    `json:"roles,omitempty"`
}

PartialUpdateUserPayload struct for PartialUpdateUserPayload

func NewPartialUpdateUserPayload

func NewPartialUpdateUserPayload() *PartialUpdateUserPayload

NewPartialUpdateUserPayload instantiates a new PartialUpdateUserPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartialUpdateUserPayloadWithDefaults

func NewPartialUpdateUserPayloadWithDefaults() *PartialUpdateUserPayload

NewPartialUpdateUserPayloadWithDefaults instantiates a new PartialUpdateUserPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartialUpdateUserPayload) GetDatabase

GetDatabase returns the Database field value if set, zero value otherwise.

func (*PartialUpdateUserPayload) GetDatabaseOk

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateUserPayload) GetRoles

GetRoles returns the Roles field value if set, zero value otherwise.

func (*PartialUpdateUserPayload) GetRolesOk

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialUpdateUserPayload) HasDatabase

func (o *PartialUpdateUserPayload) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*PartialUpdateUserPayload) HasRoles

func (o *PartialUpdateUserPayload) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*PartialUpdateUserPayload) SetDatabase

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*PartialUpdateUserPayload) SetRoles

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (PartialUpdateUserPayload) ToMap

func (o PartialUpdateUserPayload) ToMap() (map[string]interface{}, error)

type PartialUpdateUserPayloadGetDatabaseArgType

type PartialUpdateUserPayloadGetDatabaseArgType = string

type PartialUpdateUserPayloadGetDatabaseAttributeType

type PartialUpdateUserPayloadGetDatabaseAttributeType = *string

isNotNullableString

type PartialUpdateUserPayloadGetDatabaseRetType

type PartialUpdateUserPayloadGetDatabaseRetType = string

type PartialUpdateUserPayloadGetRolesArgType

type PartialUpdateUserPayloadGetRolesArgType = []string

type PartialUpdateUserPayloadGetRolesAttributeType

type PartialUpdateUserPayloadGetRolesAttributeType = *[]string

isArray

type PartialUpdateUserPayloadGetRolesRetType

type PartialUpdateUserPayloadGetRolesRetType = []string

type PartialUpdateUserRequest

type PartialUpdateUserRequest struct {
	// contains filtered or unexported fields
}

func (PartialUpdateUserRequest) Execute

func (r PartialUpdateUserRequest) Execute() error

func (PartialUpdateUserRequest) PartialUpdateUserPayload

func (r PartialUpdateUserRequest) PartialUpdateUserPayload(partialUpdateUserPayload PartialUpdateUserPayload) ApiPartialUpdateUserRequest

type PostgresDatabaseParameter

type PostgresDatabaseParameter struct {
	// Context of the parameter.
	Context PostgresDatabaseParameterGetContextAttributeType `json:"context,omitempty"`
	// Datatype describes the type of data that is used in the Value field.
	DataType PostgresDatabaseParameterGetDataTypeAttributeType `json:"dataType,omitempty"`
	// DefaultValue for the value field.
	DefaultValue PostgresDatabaseParameterGetDefaultValueAttributeType `json:"defaultValue,omitempty"`
	// Description of the parameter.
	Description PostgresDatabaseParameterGetDescriptionAttributeType `json:"description,omitempty"`
	// Edit shows if the user can change this value.
	Edit PostgresDatabaseParametergetEditAttributeType `json:"edit,omitempty"`
	// MaxValue describes the highest possible value that can be set.
	MaxValue PostgresDatabaseParameterGetMaxValueAttributeType `json:"maxValue,omitempty"`
	// MinValue describes the lowest possible value that can be set.
	MinValue PostgresDatabaseParameterGetMinValueAttributeType `json:"minValue,omitempty"`
	// Name of the parameter.
	Name PostgresDatabaseParameterGetNameAttributeType `json:"name,omitempty"`
	// PendingRestart describes if a parameter change requires a restart of the server.
	PendingRestart PostgresDatabaseParametergetPendingRestartAttributeType `json:"pendingRestart,omitempty"`
	// ResetValue for the value field af.ter a reset.
	ResetValue PostgresDatabaseParameterGetResetValueAttributeType `json:"resetValue,omitempty"`
	// Unit if the parameter has a unit if not empty.
	Unit PostgresDatabaseParameterGetUnitAttributeType `json:"unit,omitempty"`
	// Value of this parameter.
	Value PostgresDatabaseParameterGetValueAttributeType `json:"value,omitempty"`
}

PostgresDatabaseParameter struct for PostgresDatabaseParameter

func NewPostgresDatabaseParameter

func NewPostgresDatabaseParameter() *PostgresDatabaseParameter

NewPostgresDatabaseParameter instantiates a new PostgresDatabaseParameter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresDatabaseParameterWithDefaults

func NewPostgresDatabaseParameterWithDefaults() *PostgresDatabaseParameter

NewPostgresDatabaseParameterWithDefaults instantiates a new PostgresDatabaseParameter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresDatabaseParameter) GetContext

GetContext returns the Context field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetContextOk

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetDataType

GetDataType returns the DataType field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetDataTypeOk

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetDefaultValue

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetDefaultValueOk

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetDescription

GetDescription returns the Description field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetDescriptionOk

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetEdit

GetEdit returns the Edit field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetEditOk

GetEditOk returns a tuple with the Edit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetMaxValue

GetMaxValue returns the MaxValue field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetMaxValueOk

GetMaxValueOk returns a tuple with the MaxValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetMinValue

GetMinValue returns the MinValue field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetMinValueOk

GetMinValueOk returns a tuple with the MinValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetPendingRestart

GetPendingRestart returns the PendingRestart field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetPendingRestartOk

GetPendingRestartOk returns a tuple with the PendingRestart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetResetValue

GetResetValue returns the ResetValue field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetResetValueOk

GetResetValueOk returns a tuple with the ResetValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetUnit

GetUnit returns the Unit field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetUnitOk

GetUnitOk returns a tuple with the Unit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*PostgresDatabaseParameter) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameter) HasContext

func (o *PostgresDatabaseParameter) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasDataType

func (o *PostgresDatabaseParameter) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasDefaultValue

func (o *PostgresDatabaseParameter) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasDescription

func (o *PostgresDatabaseParameter) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasEdit

func (o *PostgresDatabaseParameter) HasEdit() bool

HasEdit returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasMaxValue

func (o *PostgresDatabaseParameter) HasMaxValue() bool

HasMaxValue returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasMinValue

func (o *PostgresDatabaseParameter) HasMinValue() bool

HasMinValue returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasName

func (o *PostgresDatabaseParameter) HasName() bool

HasName returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasPendingRestart

func (o *PostgresDatabaseParameter) HasPendingRestart() bool

HasPendingRestart returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasResetValue

func (o *PostgresDatabaseParameter) HasResetValue() bool

HasResetValue returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasUnit

func (o *PostgresDatabaseParameter) HasUnit() bool

HasUnit returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) HasValue

func (o *PostgresDatabaseParameter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*PostgresDatabaseParameter) SetContext

SetContext gets a reference to the given string and assigns it to the Context field.

func (*PostgresDatabaseParameter) SetDataType

SetDataType gets a reference to the given string and assigns it to the DataType field.

func (*PostgresDatabaseParameter) SetDefaultValue

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*PostgresDatabaseParameter) SetDescription

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*PostgresDatabaseParameter) SetEdit

SetEdit gets a reference to the given bool and assigns it to the Edit field.

func (*PostgresDatabaseParameter) SetMaxValue

SetMaxValue gets a reference to the given string and assigns it to the MaxValue field.

func (*PostgresDatabaseParameter) SetMinValue

SetMinValue gets a reference to the given string and assigns it to the MinValue field.

func (*PostgresDatabaseParameter) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*PostgresDatabaseParameter) SetPendingRestart

SetPendingRestart gets a reference to the given bool and assigns it to the PendingRestart field.

func (*PostgresDatabaseParameter) SetResetValue

SetResetValue gets a reference to the given string and assigns it to the ResetValue field.

func (*PostgresDatabaseParameter) SetUnit

SetUnit gets a reference to the given string and assigns it to the Unit field.

func (*PostgresDatabaseParameter) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (PostgresDatabaseParameter) ToMap

func (o PostgresDatabaseParameter) ToMap() (map[string]interface{}, error)

type PostgresDatabaseParameterGetContextArgType

type PostgresDatabaseParameterGetContextArgType = string

type PostgresDatabaseParameterGetContextAttributeType

type PostgresDatabaseParameterGetContextAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetContextRetType

type PostgresDatabaseParameterGetContextRetType = string

type PostgresDatabaseParameterGetDataTypeArgType

type PostgresDatabaseParameterGetDataTypeArgType = string

type PostgresDatabaseParameterGetDataTypeAttributeType

type PostgresDatabaseParameterGetDataTypeAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetDataTypeRetType

type PostgresDatabaseParameterGetDataTypeRetType = string

type PostgresDatabaseParameterGetDefaultValueArgType

type PostgresDatabaseParameterGetDefaultValueArgType = string

type PostgresDatabaseParameterGetDefaultValueAttributeType

type PostgresDatabaseParameterGetDefaultValueAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetDefaultValueRetType

type PostgresDatabaseParameterGetDefaultValueRetType = string

type PostgresDatabaseParameterGetDescriptionArgType

type PostgresDatabaseParameterGetDescriptionArgType = string

type PostgresDatabaseParameterGetDescriptionAttributeType

type PostgresDatabaseParameterGetDescriptionAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetDescriptionRetType

type PostgresDatabaseParameterGetDescriptionRetType = string

type PostgresDatabaseParameterGetMaxValueArgType

type PostgresDatabaseParameterGetMaxValueArgType = string

type PostgresDatabaseParameterGetMaxValueAttributeType

type PostgresDatabaseParameterGetMaxValueAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetMaxValueRetType

type PostgresDatabaseParameterGetMaxValueRetType = string

type PostgresDatabaseParameterGetMinValueArgType

type PostgresDatabaseParameterGetMinValueArgType = string

type PostgresDatabaseParameterGetMinValueAttributeType

type PostgresDatabaseParameterGetMinValueAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetMinValueRetType

type PostgresDatabaseParameterGetMinValueRetType = string

type PostgresDatabaseParameterGetNameArgType

type PostgresDatabaseParameterGetNameArgType = string

type PostgresDatabaseParameterGetNameAttributeType

type PostgresDatabaseParameterGetNameAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetNameRetType

type PostgresDatabaseParameterGetNameRetType = string

type PostgresDatabaseParameterGetResetValueArgType

type PostgresDatabaseParameterGetResetValueArgType = string

type PostgresDatabaseParameterGetResetValueAttributeType

type PostgresDatabaseParameterGetResetValueAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetResetValueRetType

type PostgresDatabaseParameterGetResetValueRetType = string

type PostgresDatabaseParameterGetUnitArgType

type PostgresDatabaseParameterGetUnitArgType = string

type PostgresDatabaseParameterGetUnitAttributeType

type PostgresDatabaseParameterGetUnitAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetUnitRetType

type PostgresDatabaseParameterGetUnitRetType = string

type PostgresDatabaseParameterGetValueArgType

type PostgresDatabaseParameterGetValueArgType = string

type PostgresDatabaseParameterGetValueAttributeType

type PostgresDatabaseParameterGetValueAttributeType = *string

isNotNullableString

type PostgresDatabaseParameterGetValueRetType

type PostgresDatabaseParameterGetValueRetType = string

type PostgresDatabaseParameterResponse

type PostgresDatabaseParameterResponse struct {
	// List of the parameter
	Parameter PostgresDatabaseParameterResponseGetParameterAttributeType `json:"parameter,omitempty"`
}

PostgresDatabaseParameterResponse struct for PostgresDatabaseParameterResponse

func NewPostgresDatabaseParameterResponse

func NewPostgresDatabaseParameterResponse() *PostgresDatabaseParameterResponse

NewPostgresDatabaseParameterResponse instantiates a new PostgresDatabaseParameterResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresDatabaseParameterResponseWithDefaults

func NewPostgresDatabaseParameterResponseWithDefaults() *PostgresDatabaseParameterResponse

NewPostgresDatabaseParameterResponseWithDefaults instantiates a new PostgresDatabaseParameterResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresDatabaseParameterResponse) GetParameter

GetParameter returns the Parameter field value if set, zero value otherwise.

func (*PostgresDatabaseParameterResponse) GetParameterOk

GetParameterOk returns a tuple with the Parameter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabaseParameterResponse) HasParameter

func (o *PostgresDatabaseParameterResponse) HasParameter() bool

HasParameter returns a boolean if a field has been set.

func (*PostgresDatabaseParameterResponse) SetParameter

SetParameter gets a reference to the given []PostgresDatabaseParameter and assigns it to the Parameter field.

func (PostgresDatabaseParameterResponse) ToMap

func (o PostgresDatabaseParameterResponse) ToMap() (map[string]interface{}, error)

type PostgresDatabaseParameterResponseGetParameterArgType

type PostgresDatabaseParameterResponseGetParameterArgType = []PostgresDatabaseParameter

type PostgresDatabaseParameterResponseGetParameterAttributeType

type PostgresDatabaseParameterResponseGetParameterAttributeType = *[]PostgresDatabaseParameter

isArray

type PostgresDatabaseParameterResponseGetParameterRetType

type PostgresDatabaseParameterResponseGetParameterRetType = []PostgresDatabaseParameter

type PostgresDatabaseParametergetEditArgType

type PostgresDatabaseParametergetEditArgType = bool

type PostgresDatabaseParametergetEditAttributeType

type PostgresDatabaseParametergetEditAttributeType = *bool

isBoolean

type PostgresDatabaseParametergetEditRetType

type PostgresDatabaseParametergetEditRetType = bool

type PostgresDatabaseParametergetPendingRestartArgType

type PostgresDatabaseParametergetPendingRestartArgType = bool

type PostgresDatabaseParametergetPendingRestartAttributeType

type PostgresDatabaseParametergetPendingRestartAttributeType = *bool

isBoolean

type PostgresDatabaseParametergetPendingRestartRetType

type PostgresDatabaseParametergetPendingRestartRetType = bool

type ResetUserRequest

type ResetUserRequest struct {
	// contains filtered or unexported fields
}

func (ResetUserRequest) Execute

func (r ResetUserRequest) Execute() (*ResetUserResponse, error)

type ResetUserResponse

type ResetUserResponse struct {
	Item ResetUserResponseGetItemAttributeType `json:"item,omitempty"`
}

ResetUserResponse struct for ResetUserResponse

func NewResetUserResponse

func NewResetUserResponse() *ResetUserResponse

NewResetUserResponse instantiates a new ResetUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResetUserResponseWithDefaults

func NewResetUserResponseWithDefaults() *ResetUserResponse

NewResetUserResponseWithDefaults instantiates a new ResetUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResetUserResponse) GetItem

GetItem returns the Item field value if set, zero value otherwise.

func (*ResetUserResponse) GetItemOk

func (o *ResetUserResponse) GetItemOk() (ret ResetUserResponseGetItemRetType, ok bool)

GetItemOk returns a tuple with the Item field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResetUserResponse) HasItem

func (o *ResetUserResponse) HasItem() bool

HasItem returns a boolean if a field has been set.

func (*ResetUserResponse) SetItem

SetItem gets a reference to the given User and assigns it to the Item field.

func (ResetUserResponse) ToMap

func (o ResetUserResponse) ToMap() (map[string]interface{}, error)

type ResetUserResponseGetItemArgType

type ResetUserResponseGetItemArgType = User

type ResetUserResponseGetItemAttributeType

type ResetUserResponseGetItemAttributeType = *User

isModel

type ResetUserResponseGetItemRetType

type ResetUserResponseGetItemRetType = User

type Storage

type Storage struct {
	Class StorageGetClassAttributeType `json:"class,omitempty"`
	Size  StorageGetSizeAttributeType  `json:"size,omitempty"`
}

Storage struct for Storage

func NewStorage

func NewStorage() *Storage

NewStorage instantiates a new Storage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStorageWithDefaults

func NewStorageWithDefaults() *Storage

NewStorageWithDefaults instantiates a new Storage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Storage) GetClass

func (o *Storage) GetClass() (res StorageGetClassRetType)

GetClass returns the Class field value if set, zero value otherwise.

func (*Storage) GetClassOk

func (o *Storage) GetClassOk() (ret StorageGetClassRetType, ok bool)

GetClassOk returns a tuple with the Class field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Storage) GetSize

func (o *Storage) GetSize() (res StorageGetSizeRetType)

GetSize returns the Size field value if set, zero value otherwise.

func (*Storage) GetSizeOk

func (o *Storage) GetSizeOk() (ret StorageGetSizeRetType, ok bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Storage) HasClass

func (o *Storage) HasClass() bool

HasClass returns a boolean if a field has been set.

func (*Storage) HasSize

func (o *Storage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*Storage) SetClass

func (o *Storage) SetClass(v StorageGetClassRetType)

SetClass gets a reference to the given string and assigns it to the Class field.

func (*Storage) SetSize

func (o *Storage) SetSize(v StorageGetSizeRetType)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (Storage) ToMap

func (o Storage) ToMap() (map[string]interface{}, error)

type StorageGetClassArgType

type StorageGetClassArgType = string

type StorageGetClassAttributeType

type StorageGetClassAttributeType = *string

isNotNullableString

type StorageGetClassRetType

type StorageGetClassRetType = string

type StorageGetSizeArgType

type StorageGetSizeArgType = int64

type StorageGetSizeAttributeType

type StorageGetSizeAttributeType = *int64

isLong

type StorageGetSizeRetType

type StorageGetSizeRetType = int64

type StorageRange

type StorageRange struct {
	Max StorageRangeGetMaxAttributeType `json:"max,omitempty"`
	Min StorageRangeGetMinAttributeType `json:"min,omitempty"`
}

StorageRange struct for StorageRange

func NewStorageRange

func NewStorageRange() *StorageRange

NewStorageRange instantiates a new StorageRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStorageRangeWithDefaults

func NewStorageRangeWithDefaults() *StorageRange

NewStorageRangeWithDefaults instantiates a new StorageRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StorageRange) GetMax

func (o *StorageRange) GetMax() (res StorageRangeGetMaxRetType)

GetMax returns the Max field value if set, zero value otherwise.

func (*StorageRange) GetMaxOk

func (o *StorageRange) GetMaxOk() (ret StorageRangeGetMaxRetType, ok bool)

GetMaxOk returns a tuple with the Max field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StorageRange) GetMin

func (o *StorageRange) GetMin() (res StorageRangeGetMinRetType)

GetMin returns the Min field value if set, zero value otherwise.

func (*StorageRange) GetMinOk

func (o *StorageRange) GetMinOk() (ret StorageRangeGetMinRetType, ok bool)

GetMinOk returns a tuple with the Min field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StorageRange) HasMax

func (o *StorageRange) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*StorageRange) HasMin

func (o *StorageRange) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*StorageRange) SetMax

SetMax gets a reference to the given int64 and assigns it to the Max field.

func (*StorageRange) SetMin

SetMin gets a reference to the given int64 and assigns it to the Min field.

func (StorageRange) ToMap

func (o StorageRange) ToMap() (map[string]interface{}, error)

type StorageRangeGetMaxArgType

type StorageRangeGetMaxArgType = int64

type StorageRangeGetMaxAttributeType

type StorageRangeGetMaxAttributeType = *int64

isLong

type StorageRangeGetMaxRetType

type StorageRangeGetMaxRetType = int64

type StorageRangeGetMinArgType

type StorageRangeGetMinArgType = int64

type StorageRangeGetMinAttributeType

type StorageRangeGetMinAttributeType = *int64

isLong

type StorageRangeGetMinRetType

type StorageRangeGetMinRetType = int64

type UpdateBackupSchedulePayload

type UpdateBackupSchedulePayload struct {
	// REQUIRED
	BackupSchedule UpdateBackupSchedulePayloadGetBackupScheduleAttributeType `json:"backupSchedule" required:"true"`
}

UpdateBackupSchedulePayload struct for UpdateBackupSchedulePayload

func NewUpdateBackupSchedulePayload

func NewUpdateBackupSchedulePayload(backupSchedule UpdateBackupSchedulePayloadGetBackupScheduleArgType) *UpdateBackupSchedulePayload

NewUpdateBackupSchedulePayload instantiates a new UpdateBackupSchedulePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateBackupSchedulePayloadWithDefaults

func NewUpdateBackupSchedulePayloadWithDefaults() *UpdateBackupSchedulePayload

NewUpdateBackupSchedulePayloadWithDefaults instantiates a new UpdateBackupSchedulePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateBackupSchedulePayload) GetBackupSchedule

GetBackupSchedule returns the BackupSchedule field value

func (*UpdateBackupSchedulePayload) GetBackupScheduleOk

GetBackupScheduleOk returns a tuple with the BackupSchedule field value and a boolean to check if the value has been set.

func (*UpdateBackupSchedulePayload) SetBackupSchedule

SetBackupSchedule sets field value

func (UpdateBackupSchedulePayload) ToMap

func (o UpdateBackupSchedulePayload) ToMap() (map[string]interface{}, error)

type UpdateBackupSchedulePayloadGetBackupScheduleArgType

type UpdateBackupSchedulePayloadGetBackupScheduleArgType = string

type UpdateBackupSchedulePayloadGetBackupScheduleAttributeType

type UpdateBackupSchedulePayloadGetBackupScheduleAttributeType = *string

isNotNullableString

type UpdateBackupSchedulePayloadGetBackupScheduleRetType

type UpdateBackupSchedulePayloadGetBackupScheduleRetType = string

type UpdateBackupScheduleRequest

type UpdateBackupScheduleRequest struct {
	// contains filtered or unexported fields
}

func (UpdateBackupScheduleRequest) Execute

func (r UpdateBackupScheduleRequest) Execute() error

func (UpdateBackupScheduleRequest) UpdateBackupSchedulePayload

func (r UpdateBackupScheduleRequest) UpdateBackupSchedulePayload(updateBackupSchedulePayload UpdateBackupSchedulePayload) ApiUpdateBackupScheduleRequest

type UpdateInstancePayload

type UpdateInstancePayload struct {
	Acl            UpdateInstancePayloadGetAclAttributeType            `json:"acl,omitempty"`
	BackupSchedule UpdateInstancePayloadGetBackupScheduleAttributeType `json:"backupSchedule,omitempty"`
	FlavorId       UpdateInstancePayloadGetFlavorIdAttributeType       `json:"flavorId,omitempty"`
	// Labels field is not certain/clear
	Labels  UpdateInstancePayloadGetLabelsAttributeType  `json:"labels,omitempty"`
	Name    UpdateInstancePayloadGetNameAttributeType    `json:"name,omitempty"`
	Options UpdateInstancePayloadGetOptionsAttributeType `json:"options,omitempty"`
	// Can be cast to int32 without loss of precision.
	Replicas UpdateInstancePayloadGetReplicasAttributeType `json:"replicas,omitempty"`
	Storage  UpdateInstancePayloadGetStorageAttributeType  `json:"storage,omitempty"`
	Version  UpdateInstancePayloadGetVersionAttributeType  `json:"version,omitempty"`
}

UpdateInstancePayload struct for UpdateInstancePayload

func NewUpdateInstancePayload

func NewUpdateInstancePayload() *UpdateInstancePayload

NewUpdateInstancePayload instantiates a new UpdateInstancePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateInstancePayloadWithDefaults

func NewUpdateInstancePayloadWithDefaults() *UpdateInstancePayload

NewUpdateInstancePayloadWithDefaults instantiates a new UpdateInstancePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateInstancePayload) GetAcl

GetAcl returns the Acl field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetAclOk

GetAclOk returns a tuple with the Acl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetBackupSchedule

GetBackupSchedule returns the BackupSchedule field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetBackupScheduleOk

GetBackupScheduleOk returns a tuple with the BackupSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetFlavorId

GetFlavorId returns the FlavorId field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetFlavorIdOk

GetFlavorIdOk returns a tuple with the FlavorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetLabels

GetLabels returns the Labels field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetOptionsOk

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetReplicas

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetReplicasOk

GetReplicasOk returns a tuple with the Replicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetStorage

GetStorage returns the Storage field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetStorageOk

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*UpdateInstancePayload) GetVersionOk

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateInstancePayload) HasAcl

func (o *UpdateInstancePayload) HasAcl() bool

HasAcl returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasBackupSchedule

func (o *UpdateInstancePayload) HasBackupSchedule() bool

HasBackupSchedule returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasFlavorId

func (o *UpdateInstancePayload) HasFlavorId() bool

HasFlavorId returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasLabels

func (o *UpdateInstancePayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasName

func (o *UpdateInstancePayload) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasOptions

func (o *UpdateInstancePayload) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasReplicas

func (o *UpdateInstancePayload) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasStorage

func (o *UpdateInstancePayload) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*UpdateInstancePayload) HasVersion

func (o *UpdateInstancePayload) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*UpdateInstancePayload) SetAcl

SetAcl gets a reference to the given ACL and assigns it to the Acl field.

func (*UpdateInstancePayload) SetBackupSchedule

SetBackupSchedule gets a reference to the given string and assigns it to the BackupSchedule field.

func (*UpdateInstancePayload) SetFlavorId

SetFlavorId gets a reference to the given string and assigns it to the FlavorId field.

func (*UpdateInstancePayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*UpdateInstancePayload) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateInstancePayload) SetOptions

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (*UpdateInstancePayload) SetReplicas

SetReplicas gets a reference to the given int64 and assigns it to the Replicas field.

func (*UpdateInstancePayload) SetStorage

SetStorage gets a reference to the given Storage and assigns it to the Storage field.

func (*UpdateInstancePayload) SetVersion

SetVersion gets a reference to the given string and assigns it to the Version field.

func (UpdateInstancePayload) ToMap

func (o UpdateInstancePayload) ToMap() (map[string]interface{}, error)

type UpdateInstancePayloadGetAclArgType

type UpdateInstancePayloadGetAclArgType = ACL

type UpdateInstancePayloadGetAclAttributeType

type UpdateInstancePayloadGetAclAttributeType = *ACL

isModel

type UpdateInstancePayloadGetAclRetType

type UpdateInstancePayloadGetAclRetType = ACL

type UpdateInstancePayloadGetBackupScheduleArgType

type UpdateInstancePayloadGetBackupScheduleArgType = string

type UpdateInstancePayloadGetBackupScheduleAttributeType

type UpdateInstancePayloadGetBackupScheduleAttributeType = *string

isNotNullableString

type UpdateInstancePayloadGetBackupScheduleRetType

type UpdateInstancePayloadGetBackupScheduleRetType = string

type UpdateInstancePayloadGetFlavorIdArgType

type UpdateInstancePayloadGetFlavorIdArgType = string

type UpdateInstancePayloadGetFlavorIdAttributeType

type UpdateInstancePayloadGetFlavorIdAttributeType = *string

isNotNullableString

type UpdateInstancePayloadGetFlavorIdRetType

type UpdateInstancePayloadGetFlavorIdRetType = string

type UpdateInstancePayloadGetLabelsArgType

type UpdateInstancePayloadGetLabelsArgType = map[string]string

type UpdateInstancePayloadGetLabelsAttributeType

type UpdateInstancePayloadGetLabelsAttributeType = *map[string]string

isContainer

type UpdateInstancePayloadGetLabelsRetType

type UpdateInstancePayloadGetLabelsRetType = map[string]string

type UpdateInstancePayloadGetNameArgType

type UpdateInstancePayloadGetNameArgType = string

type UpdateInstancePayloadGetNameAttributeType

type UpdateInstancePayloadGetNameAttributeType = *string

isNotNullableString

type UpdateInstancePayloadGetNameRetType

type UpdateInstancePayloadGetNameRetType = string

type UpdateInstancePayloadGetOptionsArgType

type UpdateInstancePayloadGetOptionsArgType = map[string]string

type UpdateInstancePayloadGetOptionsAttributeType

type UpdateInstancePayloadGetOptionsAttributeType = *map[string]string

isContainer

type UpdateInstancePayloadGetOptionsRetType

type UpdateInstancePayloadGetOptionsRetType = map[string]string

type UpdateInstancePayloadGetReplicasArgType

type UpdateInstancePayloadGetReplicasArgType = int64

type UpdateInstancePayloadGetReplicasAttributeType

type UpdateInstancePayloadGetReplicasAttributeType = *int64

isInteger

type UpdateInstancePayloadGetReplicasRetType

type UpdateInstancePayloadGetReplicasRetType = int64

type UpdateInstancePayloadGetStorageArgType

type UpdateInstancePayloadGetStorageArgType = Storage

type UpdateInstancePayloadGetStorageAttributeType

type UpdateInstancePayloadGetStorageAttributeType = *Storage

isModel

type UpdateInstancePayloadGetStorageRetType

type UpdateInstancePayloadGetStorageRetType = Storage

type UpdateInstancePayloadGetVersionArgType

type UpdateInstancePayloadGetVersionArgType = string

type UpdateInstancePayloadGetVersionAttributeType

type UpdateInstancePayloadGetVersionAttributeType = *string

isNotNullableString

type UpdateInstancePayloadGetVersionRetType

type UpdateInstancePayloadGetVersionRetType = string

type UpdateInstanceRequest

type UpdateInstanceRequest struct {
	// contains filtered or unexported fields
}

func (UpdateInstanceRequest) Execute

func (UpdateInstanceRequest) UpdateInstancePayload

func (r UpdateInstanceRequest) UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest

type UpdateUserPayload

type UpdateUserPayload struct {
	Database UpdateUserPayloadGetDatabaseAttributeType `json:"database,omitempty"`
	Roles    UpdateUserPayloadGetRolesAttributeType    `json:"roles,omitempty"`
}

UpdateUserPayload struct for UpdateUserPayload

func NewUpdateUserPayload

func NewUpdateUserPayload() *UpdateUserPayload

NewUpdateUserPayload instantiates a new UpdateUserPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateUserPayloadWithDefaults

func NewUpdateUserPayloadWithDefaults() *UpdateUserPayload

NewUpdateUserPayloadWithDefaults instantiates a new UpdateUserPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateUserPayload) GetDatabase

GetDatabase returns the Database field value if set, zero value otherwise.

func (*UpdateUserPayload) GetDatabaseOk

func (o *UpdateUserPayload) GetDatabaseOk() (ret UpdateUserPayloadGetDatabaseRetType, ok bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserPayload) GetRoles

GetRoles returns the Roles field value if set, zero value otherwise.

func (*UpdateUserPayload) GetRolesOk

func (o *UpdateUserPayload) GetRolesOk() (ret UpdateUserPayloadGetRolesRetType, ok bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserPayload) HasDatabase

func (o *UpdateUserPayload) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*UpdateUserPayload) HasRoles

func (o *UpdateUserPayload) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*UpdateUserPayload) SetDatabase

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*UpdateUserPayload) SetRoles

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (UpdateUserPayload) ToMap

func (o UpdateUserPayload) ToMap() (map[string]interface{}, error)

type UpdateUserPayloadGetDatabaseArgType

type UpdateUserPayloadGetDatabaseArgType = string

type UpdateUserPayloadGetDatabaseAttributeType

type UpdateUserPayloadGetDatabaseAttributeType = *string

isNotNullableString

type UpdateUserPayloadGetDatabaseRetType

type UpdateUserPayloadGetDatabaseRetType = string

type UpdateUserPayloadGetRolesArgType

type UpdateUserPayloadGetRolesArgType = []string

type UpdateUserPayloadGetRolesAttributeType

type UpdateUserPayloadGetRolesAttributeType = *[]string

isArray

type UpdateUserPayloadGetRolesRetType

type UpdateUserPayloadGetRolesRetType = []string

type UpdateUserRequest

type UpdateUserRequest struct {
	// contains filtered or unexported fields
}

func (UpdateUserRequest) Execute

func (r UpdateUserRequest) Execute() error

func (UpdateUserRequest) UpdateUserPayload

func (r UpdateUserRequest) UpdateUserPayload(updateUserPayload UpdateUserPayload) ApiUpdateUserRequest

type User

type User struct {
	Database UserGetDatabaseAttributeType `json:"database,omitempty"`
	Host     UserGetHostAttributeType     `json:"host,omitempty"`
	Id       UserGetIdAttributeType       `json:"id,omitempty"`
	Password UserGetPasswordAttributeType `json:"password,omitempty"`
	Port     UserGetPortAttributeType     `json:"port,omitempty"`
	Roles    UserGetRolesAttributeType    `json:"roles,omitempty"`
	Uri      UserGetUriAttributeType      `json:"uri,omitempty"`
	Username UserGetUsernameAttributeType `json:"username,omitempty"`
}

User struct for User

func NewUser

func NewUser() *User

NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserWithDefaults

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*User) GetDatabase

func (o *User) GetDatabase() (res UserGetDatabaseRetType)

GetDatabase returns the Database field value if set, zero value otherwise.

func (*User) GetDatabaseOk

func (o *User) GetDatabaseOk() (ret UserGetDatabaseRetType, ok bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetHost

func (o *User) GetHost() (res UserGetHostRetType)

GetHost returns the Host field value if set, zero value otherwise.

func (*User) GetHostOk

func (o *User) GetHostOk() (ret UserGetHostRetType, ok bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetId

func (o *User) GetId() (res UserGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*User) GetIdOk

func (o *User) GetIdOk() (ret UserGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetPassword

func (o *User) GetPassword() (res UserGetPasswordRetType)

GetPassword returns the Password field value if set, zero value otherwise.

func (*User) GetPasswordOk

func (o *User) GetPasswordOk() (ret UserGetPasswordRetType, ok bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetPort

func (o *User) GetPort() (res UserGetPortRetType)

GetPort returns the Port field value if set, zero value otherwise.

func (*User) GetPortOk

func (o *User) GetPortOk() (ret UserGetPortRetType, ok bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetRoles

func (o *User) GetRoles() (res UserGetRolesRetType)

GetRoles returns the Roles field value if set, zero value otherwise.

func (*User) GetRolesOk

func (o *User) GetRolesOk() (ret UserGetRolesRetType, ok bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUri

func (o *User) GetUri() (res UserGetUriRetType)

GetUri returns the Uri field value if set, zero value otherwise.

func (*User) GetUriOk

func (o *User) GetUriOk() (ret UserGetUriRetType, ok bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUsername

func (o *User) GetUsername() (res UserGetUsernameRetType)

GetUsername returns the Username field value if set, zero value otherwise.

func (*User) GetUsernameOk

func (o *User) GetUsernameOk() (ret UserGetUsernameRetType, ok bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasDatabase

func (o *User) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*User) HasHost

func (o *User) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*User) HasId

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

func (*User) HasPassword

func (o *User) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*User) HasPort

func (o *User) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*User) HasRoles

func (o *User) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*User) HasUri

func (o *User) HasUri() bool

HasUri returns a boolean if a field has been set.

func (*User) HasUsername

func (o *User) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*User) SetDatabase

func (o *User) SetDatabase(v UserGetDatabaseRetType)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*User) SetHost

func (o *User) SetHost(v UserGetHostRetType)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*User) SetId

func (o *User) SetId(v UserGetIdRetType)

SetId gets a reference to the given string and assigns it to the Id field.

func (*User) SetPassword

func (o *User) SetPassword(v UserGetPasswordRetType)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*User) SetPort

func (o *User) SetPort(v UserGetPortRetType)

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*User) SetRoles

func (o *User) SetRoles(v UserGetRolesRetType)

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (*User) SetUri

func (o *User) SetUri(v UserGetUriRetType)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (*User) SetUsername

func (o *User) SetUsername(v UserGetUsernameRetType)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (User) ToMap

func (o User) ToMap() (map[string]interface{}, error)

type UserGetDatabaseArgType

type UserGetDatabaseArgType = string

type UserGetDatabaseAttributeType

type UserGetDatabaseAttributeType = *string

isNotNullableString

type UserGetDatabaseRetType

type UserGetDatabaseRetType = string

type UserGetHostArgType

type UserGetHostArgType = string

type UserGetHostAttributeType

type UserGetHostAttributeType = *string

isNotNullableString

type UserGetHostRetType

type UserGetHostRetType = string

type UserGetIdArgType

type UserGetIdArgType = string

type UserGetIdAttributeType

type UserGetIdAttributeType = *string

isNotNullableString

type UserGetIdRetType

type UserGetIdRetType = string

type UserGetPasswordArgType

type UserGetPasswordArgType = string

type UserGetPasswordAttributeType

type UserGetPasswordAttributeType = *string

isNotNullableString

type UserGetPasswordRetType

type UserGetPasswordRetType = string

type UserGetPortArgType

type UserGetPortArgType = int64

type UserGetPortAttributeType

type UserGetPortAttributeType = *int64

isLong

type UserGetPortRetType

type UserGetPortRetType = int64

type UserGetRolesArgType

type UserGetRolesArgType = []string

type UserGetRolesAttributeType

type UserGetRolesAttributeType = *[]string

isArray

type UserGetRolesRetType

type UserGetRolesRetType = []string

type UserGetUriArgType

type UserGetUriArgType = string

type UserGetUriAttributeType

type UserGetUriAttributeType = *string

isNotNullableString

type UserGetUriRetType

type UserGetUriRetType = string

type UserGetUsernameArgType

type UserGetUsernameArgType = string

type UserGetUsernameAttributeType

type UserGetUsernameAttributeType = *string

isNotNullableString

type UserGetUsernameRetType

type UserGetUsernameRetType = string

type UserResponse

type UserResponse struct {
	ConnectionString UserResponseGetConnectionStringAttributeType `json:"connectionString,omitempty"`
	Host             UserResponseGetHostAttributeType             `json:"host,omitempty"`
	Id               UserResponseGetIdAttributeType               `json:"id,omitempty"`
	Port             UserResponseGetPortAttributeType             `json:"port,omitempty"`
	Roles            UserResponseGetRolesAttributeType            `json:"roles,omitempty"`
	Status           UserResponseGetStatusAttributeType           `json:"status,omitempty"`
	Username         UserResponseGetUsernameAttributeType         `json:"name,omitempty"`
}

UserResponse struct for UserResponse

func NewUserResponse

func NewUserResponse() *UserResponse

NewUserResponse instantiates a new UserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResponseWithDefaults

func NewUserResponseWithDefaults() *UserResponse

NewUserResponseWithDefaults instantiates a new UserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResponse) GetConnectionString

func (o *UserResponse) GetConnectionString() (res UserResponseGetConnectionStringRetType)

GetConnectionString returns the ConnectionString field value if set, zero value otherwise.

func (*UserResponse) GetConnectionStringOk

func (o *UserResponse) GetConnectionStringOk() (ret UserResponseGetConnectionStringRetType, ok bool)

GetConnectionStringOk returns a tuple with the ConnectionString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) GetHost

func (o *UserResponse) GetHost() (res UserResponseGetHostRetType)

GetHost returns the Host field value if set, zero value otherwise.

func (*UserResponse) GetHostOk

func (o *UserResponse) GetHostOk() (ret UserResponseGetHostRetType, ok bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) GetId

func (o *UserResponse) GetId() (res UserResponseGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*UserResponse) GetIdOk

func (o *UserResponse) GetIdOk() (ret UserResponseGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) GetPort

func (o *UserResponse) GetPort() (res UserResponseGetPortRetType)

GetPort returns the Port field value if set, zero value otherwise.

func (*UserResponse) GetPortOk

func (o *UserResponse) GetPortOk() (ret UserResponseGetPortRetType, ok bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) GetRoles

func (o *UserResponse) GetRoles() (res UserResponseGetRolesRetType)

GetRoles returns the Roles field value if set, zero value otherwise.

func (*UserResponse) GetRolesOk

func (o *UserResponse) GetRolesOk() (ret UserResponseGetRolesRetType, ok bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) GetStatus

func (o *UserResponse) GetStatus() (res UserResponseGetStatusRetType)

GetStatus returns the Status field value if set, zero value otherwise.

func (*UserResponse) GetStatusOk

func (o *UserResponse) GetStatusOk() (ret UserResponseGetStatusRetType, ok bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) GetUsername

func (o *UserResponse) GetUsername() (res UserResponseGetUsernameRetType)

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserResponse) GetUsernameOk

func (o *UserResponse) GetUsernameOk() (ret UserResponseGetUsernameRetType, ok bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponse) HasConnectionString

func (o *UserResponse) HasConnectionString() bool

HasConnectionString returns a boolean if a field has been set.

func (*UserResponse) HasHost

func (o *UserResponse) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*UserResponse) HasId

func (o *UserResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserResponse) HasPort

func (o *UserResponse) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*UserResponse) HasRoles

func (o *UserResponse) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*UserResponse) HasStatus

func (o *UserResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*UserResponse) HasUsername

func (o *UserResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*UserResponse) SetConnectionString

func (o *UserResponse) SetConnectionString(v UserResponseGetConnectionStringRetType)

SetConnectionString gets a reference to the given string and assigns it to the ConnectionString field.

func (*UserResponse) SetHost

SetHost gets a reference to the given string and assigns it to the Host field.

func (*UserResponse) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserResponse) SetPort

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*UserResponse) SetRoles

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (*UserResponse) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*UserResponse) SetUsername

func (o *UserResponse) SetUsername(v UserResponseGetUsernameRetType)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (UserResponse) ToMap

func (o UserResponse) ToMap() (map[string]interface{}, error)

type UserResponseGetConnectionStringArgType

type UserResponseGetConnectionStringArgType = string

type UserResponseGetConnectionStringAttributeType

type UserResponseGetConnectionStringAttributeType = *string

isNotNullableString

type UserResponseGetConnectionStringRetType

type UserResponseGetConnectionStringRetType = string

type UserResponseGetHostArgType

type UserResponseGetHostArgType = string

type UserResponseGetHostAttributeType

type UserResponseGetHostAttributeType = *string

isNotNullableString

type UserResponseGetHostRetType

type UserResponseGetHostRetType = string

type UserResponseGetIdArgType

type UserResponseGetIdArgType = string

type UserResponseGetIdAttributeType

type UserResponseGetIdAttributeType = *string

isNotNullableString

type UserResponseGetIdRetType

type UserResponseGetIdRetType = string

type UserResponseGetPortArgType

type UserResponseGetPortArgType = int64

type UserResponseGetPortAttributeType

type UserResponseGetPortAttributeType = *int64

isLong

type UserResponseGetPortRetType

type UserResponseGetPortRetType = int64

type UserResponseGetRolesArgType

type UserResponseGetRolesArgType = []string

type UserResponseGetRolesAttributeType

type UserResponseGetRolesAttributeType = *[]string

isArray

type UserResponseGetRolesRetType

type UserResponseGetRolesRetType = []string

type UserResponseGetStatusArgType

type UserResponseGetStatusArgType = string

type UserResponseGetStatusAttributeType

type UserResponseGetStatusAttributeType = *string

isNotNullableString

type UserResponseGetStatusRetType

type UserResponseGetStatusRetType = string

type UserResponseGetUsernameArgType

type UserResponseGetUsernameArgType = string

type UserResponseGetUsernameAttributeType

type UserResponseGetUsernameAttributeType = *string

isNotNullableString

type UserResponseGetUsernameRetType

type UserResponseGetUsernameRetType = string

Source Files

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL