Versions in this module Expand all Collapse all v0 v0.26.0 Mar 6, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiCreateBackupRequest struct + ApiService DefaultAPI + func (r ApiCreateBackupRequest) Execute() ([]CreateBackupResponseItem, error) + type ApiCreateCredentialsRequest struct + ApiService DefaultAPI + func (r ApiCreateCredentialsRequest) Execute() (*CredentialsResponse, error) + type ApiCreateInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest + func (r ApiCreateInstanceRequest) Execute() (*CreateInstanceResponse, error) + type ApiDeleteCredentialsRequest struct + ApiService DefaultAPI + func (r ApiDeleteCredentialsRequest) Execute() error + type ApiDeleteInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceRequest) Execute() error + type ApiDownloadBackupRequest struct + ApiService DefaultAPI + func (r ApiDownloadBackupRequest) Execute() (*os.File, error) + type ApiGetCredentialsRequest struct + ApiService DefaultAPI + func (r ApiGetCredentialsRequest) Execute() (*CredentialsResponse, error) + type ApiGetInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceRequest) Execute() (*Instance, error) + type ApiGetMetricsRequest struct + ApiService DefaultAPI + func (r ApiGetMetricsRequest) Execute() (*GetMetricsResponse, error) + type ApiListBackupsRequest struct + ApiService DefaultAPI + func (r ApiListBackupsRequest) Execute() (*ListBackupsResponse, error) + type ApiListCredentialsRequest struct + ApiService DefaultAPI + func (r ApiListCredentialsRequest) Execute() (*ListCredentialsResponse, error) + type ApiListInstancesRequest struct + ApiService DefaultAPI + func (r ApiListInstancesRequest) Execute() (*ListInstancesResponse, error) + type ApiListOfferingsRequest struct + ApiService DefaultAPI + func (r ApiListOfferingsRequest) Execute() (*ListOfferingsResponse, error) + type ApiListRestoresRequest struct + ApiService DefaultAPI + func (r ApiListRestoresRequest) Execute() (*ListRestoresResponse, error) + type ApiPartialUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateInstanceRequest) Execute() error + func (r ApiPartialUpdateInstanceRequest) PartialUpdateInstancePayload(partialUpdateInstancePayload PartialUpdateInstancePayload) ApiPartialUpdateInstanceRequest + type ApiTriggerRecreateRequest struct + ApiService DefaultAPI + func (r ApiTriggerRecreateRequest) Execute() (*CreateInstanceResponse, error) + type ApiTriggerRestartRequest struct + ApiService DefaultAPI + func (r ApiTriggerRestartRequest) Execute() (*CreateInstanceResponse, error) + type ApiTriggerRestoreRequest struct + ApiService DefaultAPI + func (r ApiTriggerRestoreRequest) Execute() (*TriggerRestoreResponse, error) + type ApiUpdateBackupsConfigRequest struct + ApiService DefaultAPI + func (r ApiUpdateBackupsConfigRequest) Execute() (*UpdateBackupsConfigResponse, error) + func (r ApiUpdateBackupsConfigRequest) UpdateBackupsConfigPayload(updateBackupsConfigPayload UpdateBackupsConfigPayload) ApiUpdateBackupsConfigRequest + type Backup struct + Downloadable *bool + FinishedAt string + Id int32 + Size *int32 + Status string + TriggeredAt *string + func NewBackup(finishedAt string, id int32, status string) *Backup + func NewBackupWithDefaults() *Backup + func (o *Backup) GetDownloadable() bool + func (o *Backup) GetDownloadableOk() (*bool, bool) + func (o *Backup) GetFinishedAt() string + func (o *Backup) GetFinishedAtOk() (*string, bool) + func (o *Backup) GetId() int32 + func (o *Backup) GetIdOk() (*int32, bool) + func (o *Backup) GetSize() int32 + func (o *Backup) GetSizeOk() (*int32, bool) + func (o *Backup) GetStatus() string + func (o *Backup) GetStatusOk() (*string, bool) + func (o *Backup) GetTriggeredAt() string + func (o *Backup) GetTriggeredAtOk() (*string, bool) + func (o *Backup) HasDownloadable() bool + func (o *Backup) HasSize() bool + func (o *Backup) HasTriggeredAt() bool + func (o *Backup) SetDownloadable(v bool) + func (o *Backup) SetFinishedAt(v string) + func (o *Backup) SetId(v int32) + func (o *Backup) SetSize(v int32) + func (o *Backup) SetStatus(v string) + func (o *Backup) SetTriggeredAt(v string) + func (o *Backup) UnmarshalJSON(data []byte) (err error) + func (o Backup) MarshalJSON() ([]byte, error) + func (o Backup) ToMap() (map[string]interface{}, error) + type CreateBackupResponseItem struct + Id int32 + Message string + func NewCreateBackupResponseItem(id int32, message string) *CreateBackupResponseItem + func NewCreateBackupResponseItemWithDefaults() *CreateBackupResponseItem + func (o *CreateBackupResponseItem) GetId() int32 + func (o *CreateBackupResponseItem) GetIdOk() (*int32, bool) + func (o *CreateBackupResponseItem) GetMessage() string + func (o *CreateBackupResponseItem) GetMessageOk() (*string, bool) + func (o *CreateBackupResponseItem) SetId(v int32) + func (o *CreateBackupResponseItem) SetMessage(v string) + func (o *CreateBackupResponseItem) UnmarshalJSON(data []byte) (err error) + func (o CreateBackupResponseItem) MarshalJSON() ([]byte, error) + func (o CreateBackupResponseItem) ToMap() (map[string]interface{}, error) + type CreateInstancePayload struct + InstanceName string + Parameters *InstanceParameters + PlanId string + func NewCreateInstancePayload(instanceName string, planId string) *CreateInstancePayload + func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload + func (o *CreateInstancePayload) GetInstanceName() string + func (o *CreateInstancePayload) GetInstanceNameOk() (*string, bool) + func (o *CreateInstancePayload) GetParameters() InstanceParameters + func (o *CreateInstancePayload) GetParametersOk() (*InstanceParameters, bool) + func (o *CreateInstancePayload) GetPlanId() string + func (o *CreateInstancePayload) GetPlanIdOk() (*string, bool) + func (o *CreateInstancePayload) HasParameters() bool + func (o *CreateInstancePayload) SetInstanceName(v string) + func (o *CreateInstancePayload) SetParameters(v InstanceParameters) + func (o *CreateInstancePayload) SetPlanId(v string) + func (o *CreateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateInstancePayload) MarshalJSON() ([]byte, error) + func (o CreateInstancePayload) ToMap() (map[string]interface{}, error) + type CreateInstanceResponse struct + InstanceId string + func NewCreateInstanceResponse(instanceId string) *CreateInstanceResponse + func NewCreateInstanceResponseWithDefaults() *CreateInstanceResponse + func (o *CreateInstanceResponse) GetInstanceId() string + func (o *CreateInstanceResponse) GetInstanceIdOk() (*string, bool) + func (o *CreateInstanceResponse) SetInstanceId(v string) + func (o *CreateInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateInstanceResponse) MarshalJSON() ([]byte, error) + func (o CreateInstanceResponse) ToMap() (map[string]interface{}, error) + type Credentials struct + Host string + Password string + Port *int32 + SyslogDrainUrl *string + Uri *string + Username string + func NewCredentials(host string, password string, username string) *Credentials + func NewCredentialsWithDefaults() *Credentials + func (o *Credentials) GetHost() string + func (o *Credentials) GetHostOk() (*string, bool) + func (o *Credentials) GetPassword() string + func (o *Credentials) GetPasswordOk() (*string, bool) + func (o *Credentials) GetPort() int32 + func (o *Credentials) GetPortOk() (*int32, bool) + func (o *Credentials) GetSyslogDrainUrl() string + func (o *Credentials) GetSyslogDrainUrlOk() (*string, bool) + func (o *Credentials) GetUri() string + func (o *Credentials) GetUriOk() (*string, bool) + func (o *Credentials) GetUsername() string + func (o *Credentials) GetUsernameOk() (*string, bool) + func (o *Credentials) HasPort() bool + func (o *Credentials) HasSyslogDrainUrl() bool + func (o *Credentials) HasUri() bool + func (o *Credentials) SetHost(v string) + func (o *Credentials) SetPassword(v string) + func (o *Credentials) SetPort(v int32) + func (o *Credentials) SetSyslogDrainUrl(v string) + func (o *Credentials) SetUri(v string) + func (o *Credentials) SetUsername(v string) + func (o *Credentials) UnmarshalJSON(data []byte) (err error) + func (o Credentials) MarshalJSON() ([]byte, error) + func (o Credentials) ToMap() (map[string]interface{}, error) + type CredentialsListItem struct + Id string + func NewCredentialsListItem(id string) *CredentialsListItem + func NewCredentialsListItemWithDefaults() *CredentialsListItem + func (o *CredentialsListItem) GetId() string + func (o *CredentialsListItem) GetIdOk() (*string, bool) + func (o *CredentialsListItem) SetId(v string) + func (o *CredentialsListItem) UnmarshalJSON(data []byte) (err error) + func (o CredentialsListItem) MarshalJSON() ([]byte, error) + func (o CredentialsListItem) ToMap() (map[string]interface{}, error) + type CredentialsResponse struct + Id string + Raw *RawCredentials + Uri string + func NewCredentialsResponse(id string, uri string) *CredentialsResponse + func NewCredentialsResponseWithDefaults() *CredentialsResponse + func (o *CredentialsResponse) GetId() string + func (o *CredentialsResponse) GetIdOk() (*string, bool) + func (o *CredentialsResponse) GetRaw() RawCredentials + func (o *CredentialsResponse) GetRawOk() (*RawCredentials, bool) + func (o *CredentialsResponse) GetUri() string + func (o *CredentialsResponse) GetUriOk() (*string, bool) + func (o *CredentialsResponse) HasRaw() bool + func (o *CredentialsResponse) SetId(v string) + func (o *CredentialsResponse) SetRaw(v RawCredentials) + func (o *CredentialsResponse) SetUri(v string) + func (o *CredentialsResponse) UnmarshalJSON(data []byte) (err error) + func (o CredentialsResponse) MarshalJSON() ([]byte, error) + func (o CredentialsResponse) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateBackup func(ctx context.Context, instanceId string, projectId string) ApiCreateBackupRequest + CreateBackupExecute func(r ApiCreateBackupRequest) ([]CreateBackupResponseItem, error) + CreateCredentials func(ctx context.Context, projectId string, instanceId string) ApiCreateCredentialsRequest + CreateCredentialsExecute func(r ApiCreateCredentialsRequest) (*CredentialsResponse, error) + CreateInstance func(ctx context.Context, projectId string) ApiCreateInstanceRequest + CreateInstanceExecute func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + DeleteCredentials func(ctx context.Context, projectId string, instanceId string, credentialsId string) ApiDeleteCredentialsRequest + DeleteCredentialsExecute func(r ApiDeleteCredentialsRequest) error + DeleteInstance func(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + DeleteInstanceExecute func(r ApiDeleteInstanceRequest) error + DownloadBackup func(ctx context.Context, backupId int32, instanceId string, projectId string) ApiDownloadBackupRequest + DownloadBackupExecute func(r ApiDownloadBackupRequest) (*os.File, error) + GetCredentials func(ctx context.Context, projectId string, instanceId string, credentialsId string) ApiGetCredentialsRequest + GetCredentialsExecute func(r ApiGetCredentialsRequest) (*CredentialsResponse, error) + GetInstance func(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + GetInstanceExecute func(r ApiGetInstanceRequest) (*Instance, error) + GetMetrics func(ctx context.Context, instanceId string, projectId string) ApiGetMetricsRequest + GetMetricsExecute func(r ApiGetMetricsRequest) (*GetMetricsResponse, error) + ListBackups func(ctx context.Context, instanceId string, projectId string) ApiListBackupsRequest + ListBackupsExecute func(r ApiListBackupsRequest) (*ListBackupsResponse, error) + ListCredentials func(ctx context.Context, projectId string, instanceId string) ApiListCredentialsRequest + ListCredentialsExecute func(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + ListInstances func(ctx context.Context, projectId string) ApiListInstancesRequest + ListInstancesExecute func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListOfferings func(ctx context.Context, projectId string) ApiListOfferingsRequest + ListOfferingsExecute func(r ApiListOfferingsRequest) (*ListOfferingsResponse, error) + ListRestores func(ctx context.Context, instanceId string, projectId string) ApiListRestoresRequest + ListRestoresExecute func(r ApiListRestoresRequest) (*ListRestoresResponse, error) + PartialUpdateInstance func(ctx context.Context, projectId string, instanceId string) ApiPartialUpdateInstanceRequest + PartialUpdateInstanceExecute func(r ApiPartialUpdateInstanceRequest) error + TriggerRecreate func(ctx context.Context, instanceId string, projectId string) ApiTriggerRecreateRequest + TriggerRecreateExecute func(r ApiTriggerRecreateRequest) (*CreateInstanceResponse, error) + TriggerRestart func(ctx context.Context, instanceId string, projectId string) ApiTriggerRestartRequest + TriggerRestartExecute func(r ApiTriggerRestartRequest) (*CreateInstanceResponse, error) + TriggerRestore func(ctx context.Context, instanceId string, projectId string, backupId int32) ApiTriggerRestoreRequest + TriggerRestoreExecute func(r ApiTriggerRestoreRequest) (*TriggerRestoreResponse, error) + UpdateBackupsConfig func(ctx context.Context, instanceId string, projectId string) ApiUpdateBackupsConfigRequest + UpdateBackupsConfigExecute func(r ApiUpdateBackupsConfigRequest) (*UpdateBackupsConfigResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateBackup(ctx context.Context, instanceId string, projectId string) ApiCreateBackupRequest + func (a *DefaultAPIService) CreateBackupExecute(r ApiCreateBackupRequest) ([]CreateBackupResponseItem, error) + func (a *DefaultAPIService) CreateCredentials(ctx context.Context, projectId string, instanceId string) ApiCreateCredentialsRequest + func (a *DefaultAPIService) CreateCredentialsExecute(r ApiCreateCredentialsRequest) (*CredentialsResponse, error) + func (a *DefaultAPIService) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a *DefaultAPIService) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a *DefaultAPIService) DeleteCredentials(ctx context.Context, projectId string, instanceId string, credentialsId string) ApiDeleteCredentialsRequest + func (a *DefaultAPIService) DeleteCredentialsExecute(r ApiDeleteCredentialsRequest) error + func (a *DefaultAPIService) DeleteInstance(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + func (a *DefaultAPIService) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a *DefaultAPIService) DownloadBackup(ctx context.Context, backupId int32, instanceId string, projectId string) ApiDownloadBackupRequest + func (a *DefaultAPIService) DownloadBackupExecute(r ApiDownloadBackupRequest) (*os.File, error) + func (a *DefaultAPIService) GetCredentials(ctx context.Context, projectId string, instanceId string, credentialsId string) ApiGetCredentialsRequest + func (a *DefaultAPIService) GetCredentialsExecute(r ApiGetCredentialsRequest) (*CredentialsResponse, error) + func (a *DefaultAPIService) GetInstance(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + func (a *DefaultAPIService) GetInstanceExecute(r ApiGetInstanceRequest) (*Instance, error) + func (a *DefaultAPIService) GetMetrics(ctx context.Context, instanceId string, projectId string) ApiGetMetricsRequest + func (a *DefaultAPIService) GetMetricsExecute(r ApiGetMetricsRequest) (*GetMetricsResponse, error) + func (a *DefaultAPIService) ListBackups(ctx context.Context, instanceId string, projectId string) ApiListBackupsRequest + func (a *DefaultAPIService) ListBackupsExecute(r ApiListBackupsRequest) (*ListBackupsResponse, error) + func (a *DefaultAPIService) ListCredentials(ctx context.Context, projectId string, instanceId string) ApiListCredentialsRequest + func (a *DefaultAPIService) ListCredentialsExecute(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + func (a *DefaultAPIService) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a *DefaultAPIService) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a *DefaultAPIService) ListOfferings(ctx context.Context, projectId string) ApiListOfferingsRequest + func (a *DefaultAPIService) ListOfferingsExecute(r ApiListOfferingsRequest) (*ListOfferingsResponse, error) + func (a *DefaultAPIService) ListRestores(ctx context.Context, instanceId string, projectId string) ApiListRestoresRequest + func (a *DefaultAPIService) ListRestoresExecute(r ApiListRestoresRequest) (*ListRestoresResponse, error) + func (a *DefaultAPIService) PartialUpdateInstance(ctx context.Context, projectId string, instanceId string) ApiPartialUpdateInstanceRequest + func (a *DefaultAPIService) PartialUpdateInstanceExecute(r ApiPartialUpdateInstanceRequest) error + func (a *DefaultAPIService) TriggerRecreate(ctx context.Context, instanceId string, projectId string) ApiTriggerRecreateRequest + func (a *DefaultAPIService) TriggerRecreateExecute(r ApiTriggerRecreateRequest) (*CreateInstanceResponse, error) + func (a *DefaultAPIService) TriggerRestart(ctx context.Context, instanceId string, projectId string) ApiTriggerRestartRequest + func (a *DefaultAPIService) TriggerRestartExecute(r ApiTriggerRestartRequest) (*CreateInstanceResponse, error) + func (a *DefaultAPIService) TriggerRestore(ctx context.Context, instanceId string, projectId string, backupId int32) ApiTriggerRestoreRequest + func (a *DefaultAPIService) TriggerRestoreExecute(r ApiTriggerRestoreRequest) (*TriggerRestoreResponse, error) + func (a *DefaultAPIService) UpdateBackupsConfig(ctx context.Context, instanceId string, projectId string) ApiUpdateBackupsConfigRequest + func (a *DefaultAPIService) UpdateBackupsConfigExecute(r ApiUpdateBackupsConfigRequest) (*UpdateBackupsConfigResponse, error) + type DefaultAPIServiceMock struct + CreateBackupExecuteMock *func(r ApiCreateBackupRequest) ([]CreateBackupResponseItem, error) + CreateCredentialsExecuteMock *func(r ApiCreateCredentialsRequest) (*CredentialsResponse, error) + CreateInstanceExecuteMock *func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + DeleteCredentialsExecuteMock *func(r ApiDeleteCredentialsRequest) error + DeleteInstanceExecuteMock *func(r ApiDeleteInstanceRequest) error + DownloadBackupExecuteMock *func(r ApiDownloadBackupRequest) (*os.File, error) + GetCredentialsExecuteMock *func(r ApiGetCredentialsRequest) (*CredentialsResponse, error) + GetInstanceExecuteMock *func(r ApiGetInstanceRequest) (*Instance, error) + GetMetricsExecuteMock *func(r ApiGetMetricsRequest) (*GetMetricsResponse, error) + ListBackupsExecuteMock *func(r ApiListBackupsRequest) (*ListBackupsResponse, error) + ListCredentialsExecuteMock *func(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + ListInstancesExecuteMock *func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListOfferingsExecuteMock *func(r ApiListOfferingsRequest) (*ListOfferingsResponse, error) + ListRestoresExecuteMock *func(r ApiListRestoresRequest) (*ListRestoresResponse, error) + PartialUpdateInstanceExecuteMock *func(r ApiPartialUpdateInstanceRequest) error + TriggerRecreateExecuteMock *func(r ApiTriggerRecreateRequest) (*CreateInstanceResponse, error) + TriggerRestartExecuteMock *func(r ApiTriggerRestartRequest) (*CreateInstanceResponse, error) + TriggerRestoreExecuteMock *func(r ApiTriggerRestoreRequest) (*TriggerRestoreResponse, error) + UpdateBackupsConfigExecuteMock *func(r ApiUpdateBackupsConfigRequest) (*UpdateBackupsConfigResponse, error) + func (a DefaultAPIServiceMock) CreateBackup(ctx context.Context, instanceId string, projectId string) ApiCreateBackupRequest + func (a DefaultAPIServiceMock) CreateBackupExecute(r ApiCreateBackupRequest) ([]CreateBackupResponseItem, error) + func (a DefaultAPIServiceMock) CreateCredentials(ctx context.Context, projectId string, instanceId string) ApiCreateCredentialsRequest + func (a DefaultAPIServiceMock) CreateCredentialsExecute(r ApiCreateCredentialsRequest) (*CredentialsResponse, error) + func (a DefaultAPIServiceMock) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a DefaultAPIServiceMock) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a DefaultAPIServiceMock) DeleteCredentials(ctx context.Context, projectId string, instanceId string, credentialsId string) ApiDeleteCredentialsRequest + func (a DefaultAPIServiceMock) DeleteCredentialsExecute(r ApiDeleteCredentialsRequest) error + func (a DefaultAPIServiceMock) DeleteInstance(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + func (a DefaultAPIServiceMock) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a DefaultAPIServiceMock) DownloadBackup(ctx context.Context, backupId int32, instanceId string, projectId string) ApiDownloadBackupRequest + func (a DefaultAPIServiceMock) DownloadBackupExecute(r ApiDownloadBackupRequest) (*os.File, error) + func (a DefaultAPIServiceMock) GetCredentials(ctx context.Context, projectId string, instanceId string, credentialsId string) ApiGetCredentialsRequest + func (a DefaultAPIServiceMock) GetCredentialsExecute(r ApiGetCredentialsRequest) (*CredentialsResponse, error) + func (a DefaultAPIServiceMock) GetInstance(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + func (a DefaultAPIServiceMock) GetInstanceExecute(r ApiGetInstanceRequest) (*Instance, error) + func (a DefaultAPIServiceMock) GetMetrics(ctx context.Context, instanceId string, projectId string) ApiGetMetricsRequest + func (a DefaultAPIServiceMock) GetMetricsExecute(r ApiGetMetricsRequest) (*GetMetricsResponse, error) + func (a DefaultAPIServiceMock) ListBackups(ctx context.Context, instanceId string, projectId string) ApiListBackupsRequest + func (a DefaultAPIServiceMock) ListBackupsExecute(r ApiListBackupsRequest) (*ListBackupsResponse, error) + func (a DefaultAPIServiceMock) ListCredentials(ctx context.Context, projectId string, instanceId string) ApiListCredentialsRequest + func (a DefaultAPIServiceMock) ListCredentialsExecute(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + func (a DefaultAPIServiceMock) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a DefaultAPIServiceMock) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a DefaultAPIServiceMock) ListOfferings(ctx context.Context, projectId string) ApiListOfferingsRequest + func (a DefaultAPIServiceMock) ListOfferingsExecute(r ApiListOfferingsRequest) (*ListOfferingsResponse, error) + func (a DefaultAPIServiceMock) ListRestores(ctx context.Context, instanceId string, projectId string) ApiListRestoresRequest + func (a DefaultAPIServiceMock) ListRestoresExecute(r ApiListRestoresRequest) (*ListRestoresResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateInstance(ctx context.Context, projectId string, instanceId string) ApiPartialUpdateInstanceRequest + func (a DefaultAPIServiceMock) PartialUpdateInstanceExecute(r ApiPartialUpdateInstanceRequest) error + func (a DefaultAPIServiceMock) TriggerRecreate(ctx context.Context, instanceId string, projectId string) ApiTriggerRecreateRequest + func (a DefaultAPIServiceMock) TriggerRecreateExecute(r ApiTriggerRecreateRequest) (*CreateInstanceResponse, error) + func (a DefaultAPIServiceMock) TriggerRestart(ctx context.Context, instanceId string, projectId string) ApiTriggerRestartRequest + func (a DefaultAPIServiceMock) TriggerRestartExecute(r ApiTriggerRestartRequest) (*CreateInstanceResponse, error) + func (a DefaultAPIServiceMock) TriggerRestore(ctx context.Context, instanceId string, projectId string, backupId int32) ApiTriggerRestoreRequest + func (a DefaultAPIServiceMock) TriggerRestoreExecute(r ApiTriggerRestoreRequest) (*TriggerRestoreResponse, error) + func (a DefaultAPIServiceMock) UpdateBackupsConfig(ctx context.Context, instanceId string, projectId string) ApiUpdateBackupsConfigRequest + func (a DefaultAPIServiceMock) UpdateBackupsConfigExecute(r ApiUpdateBackupsConfigRequest) (*UpdateBackupsConfigResponse, error) + type Error struct + Description string + Error string + func NewError(description string, error_ string) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetDescription() string + func (o *Error) GetDescriptionOk() (*string, bool) + func (o *Error) GetError() string + func (o *Error) GetErrorOk() (*string, bool) + func (o *Error) SetDescription(v string) + func (o *Error) SetError(v string) + func (o *Error) UnmarshalJSON(data []byte) (err error) + func (o Error) MarshalJSON() ([]byte, error) + func (o Error) ToMap() (map[string]interface{}, error) + type GetMetricsResponse struct + CpuIdleTime *int64 + CpuLoadPercent float32 + CpuSystemTime *int64 + CpuUserTime *int64 + DiskEphemeralTotal int64 + DiskEphemeralUsed int64 + DiskPersistentTotal int64 + DiskPersistentUsed int64 + Load1 float32 + Load15 float32 + Load5 float32 + MemoryTotal int64 + MemoryUsed int64 + OpensearchDashboardURL string + ParachuteDiskEphemeralActivated bool + ParachuteDiskEphemeralTotal int64 + ParachuteDiskEphemeralUsed int64 + ParachuteDiskEphemeralUsedPercent int64 + ParachuteDiskEphemeralUsedThreshold int64 + ParachuteDiskPersistentActivated bool + ParachuteDiskPersistentTotal int64 + ParachuteDiskPersistentUsed int64 + ParachuteDiskPersistentUsedPercent int64 + ParachuteDiskPersistentUsedThreshold int64 + func NewGetMetricsResponse(cpuLoadPercent float32, diskEphemeralTotal int64, diskEphemeralUsed int64, ...) *GetMetricsResponse + func NewGetMetricsResponseWithDefaults() *GetMetricsResponse + func (o *GetMetricsResponse) GetCpuIdleTime() int64 + func (o *GetMetricsResponse) GetCpuIdleTimeOk() (*int64, bool) + func (o *GetMetricsResponse) GetCpuLoadPercent() float32 + func (o *GetMetricsResponse) GetCpuLoadPercentOk() (*float32, bool) + func (o *GetMetricsResponse) GetCpuSystemTime() int64 + func (o *GetMetricsResponse) GetCpuSystemTimeOk() (*int64, bool) + func (o *GetMetricsResponse) GetCpuUserTime() int64 + func (o *GetMetricsResponse) GetCpuUserTimeOk() (*int64, bool) + func (o *GetMetricsResponse) GetDiskEphemeralTotal() int64 + func (o *GetMetricsResponse) GetDiskEphemeralTotalOk() (*int64, bool) + func (o *GetMetricsResponse) GetDiskEphemeralUsed() int64 + func (o *GetMetricsResponse) GetDiskEphemeralUsedOk() (*int64, bool) + func (o *GetMetricsResponse) GetDiskPersistentTotal() int64 + func (o *GetMetricsResponse) GetDiskPersistentTotalOk() (*int64, bool) + func (o *GetMetricsResponse) GetDiskPersistentUsed() int64 + func (o *GetMetricsResponse) GetDiskPersistentUsedOk() (*int64, bool) + func (o *GetMetricsResponse) GetLoad1() float32 + func (o *GetMetricsResponse) GetLoad15() float32 + func (o *GetMetricsResponse) GetLoad15Ok() (*float32, bool) + func (o *GetMetricsResponse) GetLoad1Ok() (*float32, bool) + func (o *GetMetricsResponse) GetLoad5() float32 + func (o *GetMetricsResponse) GetLoad5Ok() (*float32, bool) + func (o *GetMetricsResponse) GetMemoryTotal() int64 + func (o *GetMetricsResponse) GetMemoryTotalOk() (*int64, bool) + func (o *GetMetricsResponse) GetMemoryUsed() int64 + func (o *GetMetricsResponse) GetMemoryUsedOk() (*int64, bool) + func (o *GetMetricsResponse) GetOpensearchDashboardURL() string + func (o *GetMetricsResponse) GetOpensearchDashboardURLOk() (*string, bool) + func (o *GetMetricsResponse) GetParachuteDiskEphemeralActivated() bool + func (o *GetMetricsResponse) GetParachuteDiskEphemeralActivatedOk() (*bool, bool) + func (o *GetMetricsResponse) GetParachuteDiskEphemeralTotal() int64 + func (o *GetMetricsResponse) GetParachuteDiskEphemeralTotalOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskEphemeralUsed() int64 + func (o *GetMetricsResponse) GetParachuteDiskEphemeralUsedOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskEphemeralUsedPercent() int64 + func (o *GetMetricsResponse) GetParachuteDiskEphemeralUsedPercentOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskEphemeralUsedThreshold() int64 + func (o *GetMetricsResponse) GetParachuteDiskEphemeralUsedThresholdOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskPersistentActivated() bool + func (o *GetMetricsResponse) GetParachuteDiskPersistentActivatedOk() (*bool, bool) + func (o *GetMetricsResponse) GetParachuteDiskPersistentTotal() int64 + func (o *GetMetricsResponse) GetParachuteDiskPersistentTotalOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskPersistentUsed() int64 + func (o *GetMetricsResponse) GetParachuteDiskPersistentUsedOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskPersistentUsedPercent() int64 + func (o *GetMetricsResponse) GetParachuteDiskPersistentUsedPercentOk() (*int64, bool) + func (o *GetMetricsResponse) GetParachuteDiskPersistentUsedThreshold() int64 + func (o *GetMetricsResponse) GetParachuteDiskPersistentUsedThresholdOk() (*int64, bool) + func (o *GetMetricsResponse) HasCpuIdleTime() bool + func (o *GetMetricsResponse) HasCpuSystemTime() bool + func (o *GetMetricsResponse) HasCpuUserTime() bool + func (o *GetMetricsResponse) SetCpuIdleTime(v int64) + func (o *GetMetricsResponse) SetCpuLoadPercent(v float32) + func (o *GetMetricsResponse) SetCpuSystemTime(v int64) + func (o *GetMetricsResponse) SetCpuUserTime(v int64) + func (o *GetMetricsResponse) SetDiskEphemeralTotal(v int64) + func (o *GetMetricsResponse) SetDiskEphemeralUsed(v int64) + func (o *GetMetricsResponse) SetDiskPersistentTotal(v int64) + func (o *GetMetricsResponse) SetDiskPersistentUsed(v int64) + func (o *GetMetricsResponse) SetLoad1(v float32) + func (o *GetMetricsResponse) SetLoad15(v float32) + func (o *GetMetricsResponse) SetLoad5(v float32) + func (o *GetMetricsResponse) SetMemoryTotal(v int64) + func (o *GetMetricsResponse) SetMemoryUsed(v int64) + func (o *GetMetricsResponse) SetOpensearchDashboardURL(v string) + func (o *GetMetricsResponse) SetParachuteDiskEphemeralActivated(v bool) + func (o *GetMetricsResponse) SetParachuteDiskEphemeralTotal(v int64) + func (o *GetMetricsResponse) SetParachuteDiskEphemeralUsed(v int64) + func (o *GetMetricsResponse) SetParachuteDiskEphemeralUsedPercent(v int64) + func (o *GetMetricsResponse) SetParachuteDiskEphemeralUsedThreshold(v int64) + func (o *GetMetricsResponse) SetParachuteDiskPersistentActivated(v bool) + func (o *GetMetricsResponse) SetParachuteDiskPersistentTotal(v int64) + func (o *GetMetricsResponse) SetParachuteDiskPersistentUsed(v int64) + func (o *GetMetricsResponse) SetParachuteDiskPersistentUsedPercent(v int64) + func (o *GetMetricsResponse) SetParachuteDiskPersistentUsedThreshold(v int64) + func (o *GetMetricsResponse) UnmarshalJSON(data []byte) (err error) + func (o GetMetricsResponse) MarshalJSON() ([]byte, error) + func (o GetMetricsResponse) ToMap() (map[string]interface{}, error) + type Instance struct + CfGuid string + CfOrganizationGuid string + CfSpaceGuid string + DashboardUrl string + ImageUrl string + InstanceId *string + LastOperation InstanceLastOperation + Name string + OfferingName string + OfferingVersion string + Parameters map[string]interface{} + PlanId string + PlanName string + Status *string + func NewInstance(cfGuid string, cfOrganizationGuid string, cfSpaceGuid string, ...) *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetCfGuid() string + func (o *Instance) GetCfGuidOk() (*string, bool) + func (o *Instance) GetCfOrganizationGuid() string + func (o *Instance) GetCfOrganizationGuidOk() (*string, bool) + func (o *Instance) GetCfSpaceGuid() string + func (o *Instance) GetCfSpaceGuidOk() (*string, bool) + func (o *Instance) GetDashboardUrl() string + func (o *Instance) GetDashboardUrlOk() (*string, bool) + func (o *Instance) GetImageUrl() string + func (o *Instance) GetImageUrlOk() (*string, bool) + func (o *Instance) GetInstanceId() string + func (o *Instance) GetInstanceIdOk() (*string, bool) + func (o *Instance) GetLastOperation() InstanceLastOperation + func (o *Instance) GetLastOperationOk() (*InstanceLastOperation, bool) + func (o *Instance) GetName() string + func (o *Instance) GetNameOk() (*string, bool) + func (o *Instance) GetOfferingName() string + func (o *Instance) GetOfferingNameOk() (*string, bool) + func (o *Instance) GetOfferingVersion() string + func (o *Instance) GetOfferingVersionOk() (*string, bool) + func (o *Instance) GetParameters() map[string]interface{} + func (o *Instance) GetParametersOk() (map[string]interface{}, bool) + func (o *Instance) GetPlanId() string + func (o *Instance) GetPlanIdOk() (*string, bool) + func (o *Instance) GetPlanName() string + func (o *Instance) GetPlanNameOk() (*string, bool) + func (o *Instance) GetStatus() string + func (o *Instance) GetStatusOk() (*string, bool) + func (o *Instance) HasInstanceId() bool + func (o *Instance) HasStatus() bool + func (o *Instance) SetCfGuid(v string) + func (o *Instance) SetCfOrganizationGuid(v string) + func (o *Instance) SetCfSpaceGuid(v string) + func (o *Instance) SetDashboardUrl(v string) + func (o *Instance) SetImageUrl(v string) + func (o *Instance) SetInstanceId(v string) + func (o *Instance) SetLastOperation(v InstanceLastOperation) + func (o *Instance) SetName(v string) + func (o *Instance) SetOfferingName(v string) + func (o *Instance) SetOfferingVersion(v string) + func (o *Instance) SetParameters(v map[string]interface{}) + func (o *Instance) SetPlanId(v string) + func (o *Instance) SetPlanName(v string) + func (o *Instance) SetStatus(v string) + func (o *Instance) UnmarshalJSON(data []byte) (err error) + func (o Instance) MarshalJSON() ([]byte, error) + func (o Instance) ToMap() (map[string]interface{}, error) + type InstanceLastOperation struct + Description string + State string + Type string + func NewInstanceLastOperation(description string, state string, types string) *InstanceLastOperation + func NewInstanceLastOperationWithDefaults() *InstanceLastOperation + func (o *InstanceLastOperation) GetDescription() string + func (o *InstanceLastOperation) GetDescriptionOk() (*string, bool) + func (o *InstanceLastOperation) GetState() string + func (o *InstanceLastOperation) GetStateOk() (*string, bool) + func (o *InstanceLastOperation) GetType() string + func (o *InstanceLastOperation) GetTypeOk() (*string, bool) + func (o *InstanceLastOperation) SetDescription(v string) + func (o *InstanceLastOperation) SetState(v string) + func (o *InstanceLastOperation) SetType(v string) + func (o *InstanceLastOperation) UnmarshalJSON(data []byte) (err error) + func (o InstanceLastOperation) MarshalJSON() ([]byte, error) + func (o InstanceLastOperation) ToMap() (map[string]interface{}, error) + type InstanceParameters struct + EnableMonitoring *bool + FluentdTcp *int32 + FluentdTls *int32 + FluentdTlsCiphers *string + FluentdTlsMaxVersion *string + FluentdTlsMinVersion *string + FluentdTlsVersion *string + FluentdUdp *int32 + Graphite *string + Groks []InstanceParametersGroksInner + IsmDeletionAfter *string + IsmJitter *float32 + IsmJobInterval *int32 + JavaHeapspace *int32 + JavaMaxmetaspace *int32 + MaxDiskThreshold *int32 + MetricsFrequency *int32 + MetricsPrefix *string + MonitoringInstanceId *string + OpensearchTlsCiphers []string + OpensearchTlsProtocols []string + SgwAcl *string + Syslog []string + func NewInstanceParameters() *InstanceParameters + func NewInstanceParametersWithDefaults() *InstanceParameters + func (o *InstanceParameters) GetEnableMonitoring() bool + func (o *InstanceParameters) GetEnableMonitoringOk() (*bool, bool) + func (o *InstanceParameters) GetFluentdTcp() int32 + func (o *InstanceParameters) GetFluentdTcpOk() (*int32, bool) + func (o *InstanceParameters) GetFluentdTls() int32 + func (o *InstanceParameters) GetFluentdTlsCiphers() string + func (o *InstanceParameters) GetFluentdTlsCiphersOk() (*string, bool) + func (o *InstanceParameters) GetFluentdTlsMaxVersion() string + func (o *InstanceParameters) GetFluentdTlsMaxVersionOk() (*string, bool) + func (o *InstanceParameters) GetFluentdTlsMinVersion() string + func (o *InstanceParameters) GetFluentdTlsMinVersionOk() (*string, bool) + func (o *InstanceParameters) GetFluentdTlsOk() (*int32, bool) + func (o *InstanceParameters) GetFluentdTlsVersion() string + func (o *InstanceParameters) GetFluentdTlsVersionOk() (*string, bool) + func (o *InstanceParameters) GetFluentdUdp() int32 + func (o *InstanceParameters) GetFluentdUdpOk() (*int32, bool) + func (o *InstanceParameters) GetGraphite() string + func (o *InstanceParameters) GetGraphiteOk() (*string, bool) + func (o *InstanceParameters) GetGroks() []InstanceParametersGroksInner + func (o *InstanceParameters) GetGroksOk() ([]InstanceParametersGroksInner, bool) + func (o *InstanceParameters) GetIsmDeletionAfter() string + func (o *InstanceParameters) GetIsmDeletionAfterOk() (*string, bool) + func (o *InstanceParameters) GetIsmJitter() float32 + func (o *InstanceParameters) GetIsmJitterOk() (*float32, bool) + func (o *InstanceParameters) GetIsmJobInterval() int32 + func (o *InstanceParameters) GetIsmJobIntervalOk() (*int32, bool) + func (o *InstanceParameters) GetJavaHeapspace() int32 + func (o *InstanceParameters) GetJavaHeapspaceOk() (*int32, bool) + func (o *InstanceParameters) GetJavaMaxmetaspace() int32 + func (o *InstanceParameters) GetJavaMaxmetaspaceOk() (*int32, bool) + func (o *InstanceParameters) GetMaxDiskThreshold() int32 + func (o *InstanceParameters) GetMaxDiskThresholdOk() (*int32, bool) + func (o *InstanceParameters) GetMetricsFrequency() int32 + func (o *InstanceParameters) GetMetricsFrequencyOk() (*int32, bool) + func (o *InstanceParameters) GetMetricsPrefix() string + func (o *InstanceParameters) GetMetricsPrefixOk() (*string, bool) + func (o *InstanceParameters) GetMonitoringInstanceId() string + func (o *InstanceParameters) GetMonitoringInstanceIdOk() (*string, bool) + func (o *InstanceParameters) GetOpensearchTlsCiphers() []string + func (o *InstanceParameters) GetOpensearchTlsCiphersOk() ([]string, bool) + func (o *InstanceParameters) GetOpensearchTlsProtocols() []string + func (o *InstanceParameters) GetOpensearchTlsProtocolsOk() ([]string, bool) + func (o *InstanceParameters) GetSgwAcl() string + func (o *InstanceParameters) GetSgwAclOk() (*string, bool) + func (o *InstanceParameters) GetSyslog() []string + func (o *InstanceParameters) GetSyslogOk() ([]string, bool) + func (o *InstanceParameters) HasEnableMonitoring() bool + func (o *InstanceParameters) HasFluentdTcp() bool + func (o *InstanceParameters) HasFluentdTls() bool + func (o *InstanceParameters) HasFluentdTlsCiphers() bool + func (o *InstanceParameters) HasFluentdTlsMaxVersion() bool + func (o *InstanceParameters) HasFluentdTlsMinVersion() bool + func (o *InstanceParameters) HasFluentdTlsVersion() bool + func (o *InstanceParameters) HasFluentdUdp() bool + func (o *InstanceParameters) HasGraphite() bool + func (o *InstanceParameters) HasGroks() bool + func (o *InstanceParameters) HasIsmDeletionAfter() bool + func (o *InstanceParameters) HasIsmJitter() bool + func (o *InstanceParameters) HasIsmJobInterval() bool + func (o *InstanceParameters) HasJavaHeapspace() bool + func (o *InstanceParameters) HasJavaMaxmetaspace() bool + func (o *InstanceParameters) HasMaxDiskThreshold() bool + func (o *InstanceParameters) HasMetricsFrequency() bool + func (o *InstanceParameters) HasMetricsPrefix() bool + func (o *InstanceParameters) HasMonitoringInstanceId() bool + func (o *InstanceParameters) HasOpensearchTlsCiphers() bool + func (o *InstanceParameters) HasOpensearchTlsProtocols() bool + func (o *InstanceParameters) HasSgwAcl() bool + func (o *InstanceParameters) HasSyslog() bool + func (o *InstanceParameters) SetEnableMonitoring(v bool) + func (o *InstanceParameters) SetFluentdTcp(v int32) + func (o *InstanceParameters) SetFluentdTls(v int32) + func (o *InstanceParameters) SetFluentdTlsCiphers(v string) + func (o *InstanceParameters) SetFluentdTlsMaxVersion(v string) + func (o *InstanceParameters) SetFluentdTlsMinVersion(v string) + func (o *InstanceParameters) SetFluentdTlsVersion(v string) + func (o *InstanceParameters) SetFluentdUdp(v int32) + func (o *InstanceParameters) SetGraphite(v string) + func (o *InstanceParameters) SetGroks(v []InstanceParametersGroksInner) + func (o *InstanceParameters) SetIsmDeletionAfter(v string) + func (o *InstanceParameters) SetIsmJitter(v float32) + func (o *InstanceParameters) SetIsmJobInterval(v int32) + func (o *InstanceParameters) SetJavaHeapspace(v int32) + func (o *InstanceParameters) SetJavaMaxmetaspace(v int32) + func (o *InstanceParameters) SetMaxDiskThreshold(v int32) + func (o *InstanceParameters) SetMetricsFrequency(v int32) + func (o *InstanceParameters) SetMetricsPrefix(v string) + func (o *InstanceParameters) SetMonitoringInstanceId(v string) + func (o *InstanceParameters) SetOpensearchTlsCiphers(v []string) + func (o *InstanceParameters) SetOpensearchTlsProtocols(v []string) + func (o *InstanceParameters) SetSgwAcl(v string) + func (o *InstanceParameters) SetSyslog(v []string) + func (o InstanceParameters) MarshalJSON() ([]byte, error) + func (o InstanceParameters) ToMap() (map[string]interface{}, error) + type InstanceParametersGroksInner struct + Pattern *string + func NewInstanceParametersGroksInner() *InstanceParametersGroksInner + func NewInstanceParametersGroksInnerWithDefaults() *InstanceParametersGroksInner + func (o *InstanceParametersGroksInner) GetPattern() string + func (o *InstanceParametersGroksInner) GetPatternOk() (*string, bool) + func (o *InstanceParametersGroksInner) HasPattern() bool + func (o *InstanceParametersGroksInner) SetPattern(v string) + func (o InstanceParametersGroksInner) MarshalJSON() ([]byte, error) + func (o InstanceParametersGroksInner) ToMap() (map[string]interface{}, error) + type InstanceSchema struct + Create Schema + Update Schema + func NewInstanceSchema(create Schema, update Schema) *InstanceSchema + func NewInstanceSchemaWithDefaults() *InstanceSchema + func (o *InstanceSchema) GetCreate() Schema + func (o *InstanceSchema) GetCreateOk() (*Schema, bool) + func (o *InstanceSchema) GetUpdate() Schema + func (o *InstanceSchema) GetUpdateOk() (*Schema, bool) + func (o *InstanceSchema) SetCreate(v Schema) + func (o *InstanceSchema) SetUpdate(v Schema) + func (o *InstanceSchema) UnmarshalJSON(data []byte) (err error) + func (o InstanceSchema) MarshalJSON() ([]byte, error) + func (o InstanceSchema) ToMap() (map[string]interface{}, error) + type ListBackupsResponse struct + InstanceBackups []Backup + func NewListBackupsResponse(instanceBackups []Backup) *ListBackupsResponse + func NewListBackupsResponseWithDefaults() *ListBackupsResponse + func (o *ListBackupsResponse) GetInstanceBackups() []Backup + func (o *ListBackupsResponse) GetInstanceBackupsOk() ([]Backup, bool) + func (o *ListBackupsResponse) SetInstanceBackups(v []Backup) + func (o *ListBackupsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListBackupsResponse) MarshalJSON() ([]byte, error) + func (o ListBackupsResponse) ToMap() (map[string]interface{}, error) + type ListCredentialsResponse struct + CredentialsList []CredentialsListItem + func NewListCredentialsResponse(credentialsList []CredentialsListItem) *ListCredentialsResponse + func NewListCredentialsResponseWithDefaults() *ListCredentialsResponse + func (o *ListCredentialsResponse) GetCredentialsList() []CredentialsListItem + func (o *ListCredentialsResponse) GetCredentialsListOk() ([]CredentialsListItem, bool) + func (o *ListCredentialsResponse) SetCredentialsList(v []CredentialsListItem) + func (o *ListCredentialsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListCredentialsResponse) MarshalJSON() ([]byte, error) + func (o ListCredentialsResponse) ToMap() (map[string]interface{}, error) + type ListInstancesResponse struct + Instances []Instance + func NewListInstancesResponse(instances []Instance) *ListInstancesResponse + func NewListInstancesResponseWithDefaults() *ListInstancesResponse + func (o *ListInstancesResponse) GetInstances() []Instance + func (o *ListInstancesResponse) GetInstancesOk() ([]Instance, bool) + func (o *ListInstancesResponse) SetInstances(v []Instance) + func (o *ListInstancesResponse) UnmarshalJSON(data []byte) (err error) + func (o ListInstancesResponse) MarshalJSON() ([]byte, error) + func (o ListInstancesResponse) ToMap() (map[string]interface{}, error) + type ListOfferingsResponse struct + Offerings []Offering + func NewListOfferingsResponse(offerings []Offering) *ListOfferingsResponse + func NewListOfferingsResponseWithDefaults() *ListOfferingsResponse + func (o *ListOfferingsResponse) GetOfferings() []Offering + func (o *ListOfferingsResponse) GetOfferingsOk() ([]Offering, bool) + func (o *ListOfferingsResponse) SetOfferings(v []Offering) + func (o *ListOfferingsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListOfferingsResponse) MarshalJSON() ([]byte, error) + func (o ListOfferingsResponse) ToMap() (map[string]interface{}, error) + type ListRestoresResponse struct + InstanceRestores []Restore + func NewListRestoresResponse(instanceRestores []Restore) *ListRestoresResponse + func NewListRestoresResponseWithDefaults() *ListRestoresResponse + func (o *ListRestoresResponse) GetInstanceRestores() []Restore + func (o *ListRestoresResponse) GetInstanceRestoresOk() ([]Restore, bool) + func (o *ListRestoresResponse) SetInstanceRestores(v []Restore) + func (o *ListRestoresResponse) UnmarshalJSON(data []byte) (err error) + func (o ListRestoresResponse) MarshalJSON() ([]byte, error) + func (o ListRestoresResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableBackup struct + func NewNullableBackup(val *Backup) *NullableBackup + func (v *NullableBackup) Set(val *Backup) + func (v *NullableBackup) UnmarshalJSON(src []byte) error + func (v *NullableBackup) Unset() + func (v NullableBackup) Get() *Backup + func (v NullableBackup) IsSet() bool + func (v NullableBackup) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCreateBackupResponseItem struct + func NewNullableCreateBackupResponseItem(val *CreateBackupResponseItem) *NullableCreateBackupResponseItem + func (v *NullableCreateBackupResponseItem) Set(val *CreateBackupResponseItem) + func (v *NullableCreateBackupResponseItem) UnmarshalJSON(src []byte) error + func (v *NullableCreateBackupResponseItem) Unset() + func (v NullableCreateBackupResponseItem) Get() *CreateBackupResponseItem + func (v NullableCreateBackupResponseItem) IsSet() bool + func (v NullableCreateBackupResponseItem) MarshalJSON() ([]byte, error) + type NullableCreateInstancePayload struct + func NewNullableCreateInstancePayload(val *CreateInstancePayload) *NullableCreateInstancePayload + func (v *NullableCreateInstancePayload) Set(val *CreateInstancePayload) + func (v *NullableCreateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstancePayload) Unset() + func (v NullableCreateInstancePayload) Get() *CreateInstancePayload + func (v NullableCreateInstancePayload) IsSet() bool + func (v NullableCreateInstancePayload) MarshalJSON() ([]byte, error) + type NullableCreateInstanceResponse struct + func NewNullableCreateInstanceResponse(val *CreateInstanceResponse) *NullableCreateInstanceResponse + func (v *NullableCreateInstanceResponse) Set(val *CreateInstanceResponse) + func (v *NullableCreateInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstanceResponse) Unset() + func (v NullableCreateInstanceResponse) Get() *CreateInstanceResponse + func (v NullableCreateInstanceResponse) IsSet() bool + func (v NullableCreateInstanceResponse) MarshalJSON() ([]byte, error) + type NullableCredentials struct + func NewNullableCredentials(val *Credentials) *NullableCredentials + func (v *NullableCredentials) Set(val *Credentials) + func (v *NullableCredentials) UnmarshalJSON(src []byte) error + func (v *NullableCredentials) Unset() + func (v NullableCredentials) Get() *Credentials + func (v NullableCredentials) IsSet() bool + func (v NullableCredentials) MarshalJSON() ([]byte, error) + type NullableCredentialsListItem struct + func NewNullableCredentialsListItem(val *CredentialsListItem) *NullableCredentialsListItem + func (v *NullableCredentialsListItem) Set(val *CredentialsListItem) + func (v *NullableCredentialsListItem) UnmarshalJSON(src []byte) error + func (v *NullableCredentialsListItem) Unset() + func (v NullableCredentialsListItem) Get() *CredentialsListItem + func (v NullableCredentialsListItem) IsSet() bool + func (v NullableCredentialsListItem) MarshalJSON() ([]byte, error) + type NullableCredentialsResponse struct + func NewNullableCredentialsResponse(val *CredentialsResponse) *NullableCredentialsResponse + func (v *NullableCredentialsResponse) Set(val *CredentialsResponse) + func (v *NullableCredentialsResponse) UnmarshalJSON(src []byte) error + func (v *NullableCredentialsResponse) Unset() + func (v NullableCredentialsResponse) Get() *CredentialsResponse + func (v NullableCredentialsResponse) IsSet() bool + func (v NullableCredentialsResponse) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableGetMetricsResponse struct + func NewNullableGetMetricsResponse(val *GetMetricsResponse) *NullableGetMetricsResponse + func (v *NullableGetMetricsResponse) Set(val *GetMetricsResponse) + func (v *NullableGetMetricsResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetMetricsResponse) Unset() + func (v NullableGetMetricsResponse) Get() *GetMetricsResponse + func (v NullableGetMetricsResponse) IsSet() bool + func (v NullableGetMetricsResponse) MarshalJSON() ([]byte, error) + type NullableInstance struct + func NewNullableInstance(val *Instance) *NullableInstance + func (v *NullableInstance) Set(val *Instance) + func (v *NullableInstance) UnmarshalJSON(src []byte) error + func (v *NullableInstance) Unset() + func (v NullableInstance) Get() *Instance + func (v NullableInstance) IsSet() bool + func (v NullableInstance) MarshalJSON() ([]byte, error) + type NullableInstanceLastOperation struct + func NewNullableInstanceLastOperation(val *InstanceLastOperation) *NullableInstanceLastOperation + func (v *NullableInstanceLastOperation) Set(val *InstanceLastOperation) + func (v *NullableInstanceLastOperation) UnmarshalJSON(src []byte) error + func (v *NullableInstanceLastOperation) Unset() + func (v NullableInstanceLastOperation) Get() *InstanceLastOperation + func (v NullableInstanceLastOperation) IsSet() bool + func (v NullableInstanceLastOperation) MarshalJSON() ([]byte, error) + type NullableInstanceParameters struct + func NewNullableInstanceParameters(val *InstanceParameters) *NullableInstanceParameters + func (v *NullableInstanceParameters) Set(val *InstanceParameters) + func (v *NullableInstanceParameters) UnmarshalJSON(src []byte) error + func (v *NullableInstanceParameters) Unset() + func (v NullableInstanceParameters) Get() *InstanceParameters + func (v NullableInstanceParameters) IsSet() bool + func (v NullableInstanceParameters) MarshalJSON() ([]byte, error) + type NullableInstanceParametersGroksInner struct + func NewNullableInstanceParametersGroksInner(val *InstanceParametersGroksInner) *NullableInstanceParametersGroksInner + func (v *NullableInstanceParametersGroksInner) Set(val *InstanceParametersGroksInner) + func (v *NullableInstanceParametersGroksInner) UnmarshalJSON(src []byte) error + func (v *NullableInstanceParametersGroksInner) Unset() + func (v NullableInstanceParametersGroksInner) Get() *InstanceParametersGroksInner + func (v NullableInstanceParametersGroksInner) IsSet() bool + func (v NullableInstanceParametersGroksInner) MarshalJSON() ([]byte, error) + type NullableInstanceSchema struct + func NewNullableInstanceSchema(val *InstanceSchema) *NullableInstanceSchema + func (v *NullableInstanceSchema) Set(val *InstanceSchema) + func (v *NullableInstanceSchema) UnmarshalJSON(src []byte) error + func (v *NullableInstanceSchema) Unset() + func (v NullableInstanceSchema) Get() *InstanceSchema + func (v NullableInstanceSchema) IsSet() bool + func (v NullableInstanceSchema) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableListBackupsResponse struct + func NewNullableListBackupsResponse(val *ListBackupsResponse) *NullableListBackupsResponse + func (v *NullableListBackupsResponse) Set(val *ListBackupsResponse) + func (v *NullableListBackupsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListBackupsResponse) Unset() + func (v NullableListBackupsResponse) Get() *ListBackupsResponse + func (v NullableListBackupsResponse) IsSet() bool + func (v NullableListBackupsResponse) MarshalJSON() ([]byte, error) + type NullableListCredentialsResponse struct + func NewNullableListCredentialsResponse(val *ListCredentialsResponse) *NullableListCredentialsResponse + func (v *NullableListCredentialsResponse) Set(val *ListCredentialsResponse) + func (v *NullableListCredentialsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListCredentialsResponse) Unset() + func (v NullableListCredentialsResponse) Get() *ListCredentialsResponse + func (v NullableListCredentialsResponse) IsSet() bool + func (v NullableListCredentialsResponse) MarshalJSON() ([]byte, error) + type NullableListInstancesResponse struct + func NewNullableListInstancesResponse(val *ListInstancesResponse) *NullableListInstancesResponse + func (v *NullableListInstancesResponse) Set(val *ListInstancesResponse) + func (v *NullableListInstancesResponse) UnmarshalJSON(src []byte) error + func (v *NullableListInstancesResponse) Unset() + func (v NullableListInstancesResponse) Get() *ListInstancesResponse + func (v NullableListInstancesResponse) IsSet() bool + func (v NullableListInstancesResponse) MarshalJSON() ([]byte, error) + type NullableListOfferingsResponse struct + func NewNullableListOfferingsResponse(val *ListOfferingsResponse) *NullableListOfferingsResponse + func (v *NullableListOfferingsResponse) Set(val *ListOfferingsResponse) + func (v *NullableListOfferingsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListOfferingsResponse) Unset() + func (v NullableListOfferingsResponse) Get() *ListOfferingsResponse + func (v NullableListOfferingsResponse) IsSet() bool + func (v NullableListOfferingsResponse) MarshalJSON() ([]byte, error) + type NullableListRestoresResponse struct + func NewNullableListRestoresResponse(val *ListRestoresResponse) *NullableListRestoresResponse + func (v *NullableListRestoresResponse) Set(val *ListRestoresResponse) + func (v *NullableListRestoresResponse) UnmarshalJSON(src []byte) error + func (v *NullableListRestoresResponse) Unset() + func (v NullableListRestoresResponse) Get() *ListRestoresResponse + func (v NullableListRestoresResponse) IsSet() bool + func (v NullableListRestoresResponse) MarshalJSON() ([]byte, error) + type NullableOffering struct + func NewNullableOffering(val *Offering) *NullableOffering + func (v *NullableOffering) Set(val *Offering) + func (v *NullableOffering) UnmarshalJSON(src []byte) error + func (v *NullableOffering) Unset() + func (v NullableOffering) Get() *Offering + func (v NullableOffering) IsSet() bool + func (v NullableOffering) MarshalJSON() ([]byte, error) + type NullablePartialUpdateInstancePayload struct + func NewNullablePartialUpdateInstancePayload(val *PartialUpdateInstancePayload) *NullablePartialUpdateInstancePayload + func (v *NullablePartialUpdateInstancePayload) Set(val *PartialUpdateInstancePayload) + func (v *NullablePartialUpdateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateInstancePayload) Unset() + func (v NullablePartialUpdateInstancePayload) Get() *PartialUpdateInstancePayload + func (v NullablePartialUpdateInstancePayload) IsSet() bool + func (v NullablePartialUpdateInstancePayload) MarshalJSON() ([]byte, error) + type NullablePlan struct + func NewNullablePlan(val *Plan) *NullablePlan + func (v *NullablePlan) Set(val *Plan) + func (v *NullablePlan) UnmarshalJSON(src []byte) error + func (v *NullablePlan) Unset() + func (v NullablePlan) Get() *Plan + func (v NullablePlan) IsSet() bool + func (v NullablePlan) MarshalJSON() ([]byte, error) + type NullableRawCredentials struct + func NewNullableRawCredentials(val *RawCredentials) *NullableRawCredentials + func (v *NullableRawCredentials) Set(val *RawCredentials) + func (v *NullableRawCredentials) UnmarshalJSON(src []byte) error + func (v *NullableRawCredentials) Unset() + func (v NullableRawCredentials) Get() *RawCredentials + func (v NullableRawCredentials) IsSet() bool + func (v NullableRawCredentials) MarshalJSON() ([]byte, error) + type NullableRestore struct + func NewNullableRestore(val *Restore) *NullableRestore + func (v *NullableRestore) Set(val *Restore) + func (v *NullableRestore) UnmarshalJSON(src []byte) error + func (v *NullableRestore) Unset() + func (v NullableRestore) Get() *Restore + func (v NullableRestore) IsSet() bool + func (v NullableRestore) MarshalJSON() ([]byte, error) + type NullableSchema struct + func NewNullableSchema(val *Schema) *NullableSchema + func (v *NullableSchema) Set(val *Schema) + func (v *NullableSchema) UnmarshalJSON(src []byte) error + func (v *NullableSchema) Unset() + func (v NullableSchema) Get() *Schema + func (v NullableSchema) IsSet() bool + func (v NullableSchema) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableTriggerRestoreResponse struct + func NewNullableTriggerRestoreResponse(val *TriggerRestoreResponse) *NullableTriggerRestoreResponse + func (v *NullableTriggerRestoreResponse) Set(val *TriggerRestoreResponse) + func (v *NullableTriggerRestoreResponse) UnmarshalJSON(src []byte) error + func (v *NullableTriggerRestoreResponse) Unset() + func (v NullableTriggerRestoreResponse) Get() *TriggerRestoreResponse + func (v NullableTriggerRestoreResponse) IsSet() bool + func (v NullableTriggerRestoreResponse) MarshalJSON() ([]byte, error) + type NullableUpdateBackupsConfigPayload struct + func NewNullableUpdateBackupsConfigPayload(val *UpdateBackupsConfigPayload) *NullableUpdateBackupsConfigPayload + func (v *NullableUpdateBackupsConfigPayload) Set(val *UpdateBackupsConfigPayload) + func (v *NullableUpdateBackupsConfigPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateBackupsConfigPayload) Unset() + func (v NullableUpdateBackupsConfigPayload) Get() *UpdateBackupsConfigPayload + func (v NullableUpdateBackupsConfigPayload) IsSet() bool + func (v NullableUpdateBackupsConfigPayload) MarshalJSON() ([]byte, error) + type NullableUpdateBackupsConfigResponse struct + func NewNullableUpdateBackupsConfigResponse(val *UpdateBackupsConfigResponse) *NullableUpdateBackupsConfigResponse + func (v *NullableUpdateBackupsConfigResponse) Set(val *UpdateBackupsConfigResponse) + func (v *NullableUpdateBackupsConfigResponse) UnmarshalJSON(src []byte) error + func (v *NullableUpdateBackupsConfigResponse) Unset() + func (v NullableUpdateBackupsConfigResponse) Get() *UpdateBackupsConfigResponse + func (v NullableUpdateBackupsConfigResponse) IsSet() bool + func (v NullableUpdateBackupsConfigResponse) MarshalJSON() ([]byte, error) + type Offering struct + Description string + DocumentationUrl string + ImageUrl string + Latest bool + Lifecycle *string + Name string + Plans []Plan + QuotaCount int32 + Schema *InstanceSchema + Version string + func NewOffering(description string, documentationUrl string, imageUrl string, latest bool, ...) *Offering + func NewOfferingWithDefaults() *Offering + func (o *Offering) GetDescription() string + func (o *Offering) GetDescriptionOk() (*string, bool) + func (o *Offering) GetDocumentationUrl() string + func (o *Offering) GetDocumentationUrlOk() (*string, bool) + func (o *Offering) GetImageUrl() string + func (o *Offering) GetImageUrlOk() (*string, bool) + func (o *Offering) GetLatest() bool + func (o *Offering) GetLatestOk() (*bool, bool) + func (o *Offering) GetLifecycle() string + func (o *Offering) GetLifecycleOk() (*string, bool) + func (o *Offering) GetName() string + func (o *Offering) GetNameOk() (*string, bool) + func (o *Offering) GetPlans() []Plan + func (o *Offering) GetPlansOk() ([]Plan, bool) + func (o *Offering) GetQuotaCount() int32 + func (o *Offering) GetQuotaCountOk() (*int32, bool) + func (o *Offering) GetSchema() InstanceSchema + func (o *Offering) GetSchemaOk() (*InstanceSchema, bool) + func (o *Offering) GetVersion() string + func (o *Offering) GetVersionOk() (*string, bool) + func (o *Offering) HasLifecycle() bool + func (o *Offering) HasSchema() bool + func (o *Offering) SetDescription(v string) + func (o *Offering) SetDocumentationUrl(v string) + func (o *Offering) SetImageUrl(v string) + func (o *Offering) SetLatest(v bool) + func (o *Offering) SetLifecycle(v string) + func (o *Offering) SetName(v string) + func (o *Offering) SetPlans(v []Plan) + func (o *Offering) SetQuotaCount(v int32) + func (o *Offering) SetSchema(v InstanceSchema) + func (o *Offering) SetVersion(v string) + func (o *Offering) UnmarshalJSON(data []byte) (err error) + func (o Offering) MarshalJSON() ([]byte, error) + func (o Offering) ToMap() (map[string]interface{}, error) + type PartialUpdateInstancePayload struct + InstanceName *string + Parameters *InstanceParameters + PlanId *string + func NewPartialUpdateInstancePayload() *PartialUpdateInstancePayload + func NewPartialUpdateInstancePayloadWithDefaults() *PartialUpdateInstancePayload + func (o *PartialUpdateInstancePayload) GetInstanceName() string + func (o *PartialUpdateInstancePayload) GetInstanceNameOk() (*string, bool) + func (o *PartialUpdateInstancePayload) GetParameters() InstanceParameters + func (o *PartialUpdateInstancePayload) GetParametersOk() (*InstanceParameters, bool) + func (o *PartialUpdateInstancePayload) GetPlanId() string + func (o *PartialUpdateInstancePayload) GetPlanIdOk() (*string, bool) + func (o *PartialUpdateInstancePayload) HasInstanceName() bool + func (o *PartialUpdateInstancePayload) HasParameters() bool + func (o *PartialUpdateInstancePayload) HasPlanId() bool + func (o *PartialUpdateInstancePayload) SetInstanceName(v string) + func (o *PartialUpdateInstancePayload) SetParameters(v InstanceParameters) + func (o *PartialUpdateInstancePayload) SetPlanId(v string) + func (o PartialUpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateInstancePayload) ToMap() (map[string]interface{}, error) + type Plan struct + Description string + Free bool + Id string + Name string + SkuName string + func NewPlan(description string, free bool, id string, name string, skuName string) *Plan + func NewPlanWithDefaults() *Plan + func (o *Plan) GetDescription() string + func (o *Plan) GetDescriptionOk() (*string, bool) + func (o *Plan) GetFree() bool + func (o *Plan) GetFreeOk() (*bool, bool) + func (o *Plan) GetId() string + func (o *Plan) GetIdOk() (*string, bool) + func (o *Plan) GetName() string + func (o *Plan) GetNameOk() (*string, bool) + func (o *Plan) GetSkuName() string + func (o *Plan) GetSkuNameOk() (*string, bool) + func (o *Plan) SetDescription(v string) + func (o *Plan) SetFree(v bool) + func (o *Plan) SetId(v string) + func (o *Plan) SetName(v string) + func (o *Plan) SetSkuName(v string) + func (o *Plan) UnmarshalJSON(data []byte) (err error) + func (o Plan) MarshalJSON() ([]byte, error) + func (o Plan) ToMap() (map[string]interface{}, error) + type RawCredentials struct + Credentials Credentials + func NewRawCredentials(credentials Credentials) *RawCredentials + func NewRawCredentialsWithDefaults() *RawCredentials + func (o *RawCredentials) GetCredentials() Credentials + func (o *RawCredentials) GetCredentialsOk() (*Credentials, bool) + func (o *RawCredentials) SetCredentials(v Credentials) + func (o *RawCredentials) UnmarshalJSON(data []byte) (err error) + func (o RawCredentials) MarshalJSON() ([]byte, error) + func (o RawCredentials) ToMap() (map[string]interface{}, error) + type Restore struct + BackupId int32 + FinishedAt string + Id int32 + Status string + TriggeredAt *string + func NewRestore(backupId int32, finishedAt string, id int32, status string) *Restore + func NewRestoreWithDefaults() *Restore + func (o *Restore) GetBackupId() int32 + func (o *Restore) GetBackupIdOk() (*int32, bool) + func (o *Restore) GetFinishedAt() string + func (o *Restore) GetFinishedAtOk() (*string, bool) + func (o *Restore) GetId() int32 + func (o *Restore) GetIdOk() (*int32, bool) + func (o *Restore) GetStatus() string + func (o *Restore) GetStatusOk() (*string, bool) + func (o *Restore) GetTriggeredAt() string + func (o *Restore) GetTriggeredAtOk() (*string, bool) + func (o *Restore) HasTriggeredAt() bool + func (o *Restore) SetBackupId(v int32) + func (o *Restore) SetFinishedAt(v string) + func (o *Restore) SetId(v int32) + func (o *Restore) SetStatus(v string) + func (o *Restore) SetTriggeredAt(v string) + func (o *Restore) UnmarshalJSON(data []byte) (err error) + func (o Restore) MarshalJSON() ([]byte, error) + func (o Restore) ToMap() (map[string]interface{}, error) + type Schema struct + Parameters map[string]interface{} + func NewSchema(parameters map[string]interface{}) *Schema + func NewSchemaWithDefaults() *Schema + func (o *Schema) GetParameters() map[string]interface{} + func (o *Schema) GetParametersOk() (map[string]interface{}, bool) + func (o *Schema) SetParameters(v map[string]interface{}) + func (o *Schema) UnmarshalJSON(data []byte) (err error) + func (o Schema) MarshalJSON() ([]byte, error) + func (o Schema) ToMap() (map[string]interface{}, error) + type TriggerRestoreResponse struct + Id int32 + func NewTriggerRestoreResponse(id int32) *TriggerRestoreResponse + func NewTriggerRestoreResponseWithDefaults() *TriggerRestoreResponse + func (o *TriggerRestoreResponse) GetId() int32 + func (o *TriggerRestoreResponse) GetIdOk() (*int32, bool) + func (o *TriggerRestoreResponse) SetId(v int32) + func (o *TriggerRestoreResponse) UnmarshalJSON(data []byte) (err error) + func (o TriggerRestoreResponse) MarshalJSON() ([]byte, error) + func (o TriggerRestoreResponse) ToMap() (map[string]interface{}, error) + type UpdateBackupsConfigPayload struct + EncryptionKey *string + func NewUpdateBackupsConfigPayload() *UpdateBackupsConfigPayload + func NewUpdateBackupsConfigPayloadWithDefaults() *UpdateBackupsConfigPayload + func (o *UpdateBackupsConfigPayload) GetEncryptionKey() string + func (o *UpdateBackupsConfigPayload) GetEncryptionKeyOk() (*string, bool) + func (o *UpdateBackupsConfigPayload) HasEncryptionKey() bool + func (o *UpdateBackupsConfigPayload) SetEncryptionKey(v string) + func (o UpdateBackupsConfigPayload) MarshalJSON() ([]byte, error) + func (o UpdateBackupsConfigPayload) ToMap() (map[string]interface{}, error) + type UpdateBackupsConfigResponse struct + Message string + func NewUpdateBackupsConfigResponse(message string) *UpdateBackupsConfigResponse + func NewUpdateBackupsConfigResponseWithDefaults() *UpdateBackupsConfigResponse + func (o *UpdateBackupsConfigResponse) GetMessage() string + func (o *UpdateBackupsConfigResponse) GetMessageOk() (*string, bool) + func (o *UpdateBackupsConfigResponse) SetMessage(v string) + func (o *UpdateBackupsConfigResponse) UnmarshalJSON(data []byte) (err error) + func (o UpdateBackupsConfigResponse) MarshalJSON() ([]byte, error) + func (o UpdateBackupsConfigResponse) ToMap() (map[string]interface{}, error)