Versions in this module Expand all Collapse all v0 v0.15.0 Mar 10, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type ACL struct + Cidr string + Id string + func NewACL(cidr string, id string) *ACL + func NewACLWithDefaults() *ACL + func (o *ACL) GetCidr() string + func (o *ACL) GetCidrOk() (*string, bool) + func (o *ACL) GetId() string + func (o *ACL) GetIdOk() (*string, bool) + func (o *ACL) SetCidr(v string) + func (o *ACL) SetId(v string) + func (o *ACL) UnmarshalJSON(data []byte) (err error) + func (o ACL) MarshalJSON() ([]byte, error) + func (o ACL) ToMap() (map[string]interface{}, error) + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiCreateACLRequest struct + ApiService DefaultAPI + func (r ApiCreateACLRequest) CreateACLPayload(createACLPayload CreateACLPayload) ApiCreateACLRequest + func (r ApiCreateACLRequest) Execute() (*ACL, error) + type ApiCreateInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest + func (r ApiCreateInstanceRequest) Execute() (*Instance, error) + type ApiCreateUserRequest struct + ApiService DefaultAPI + func (r ApiCreateUserRequest) CreateUserPayload(createUserPayload CreateUserPayload) ApiCreateUserRequest + func (r ApiCreateUserRequest) Execute() (*User, error) + type ApiDeleteACLRequest struct + ApiService DefaultAPI + func (r ApiDeleteACLRequest) Execute() error + type ApiDeleteInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceRequest) Execute() error + type ApiDeleteUserRequest struct + ApiService DefaultAPI + func (r ApiDeleteUserRequest) Execute() error + type ApiGetACLRequest struct + ApiService DefaultAPI + func (r ApiGetACLRequest) Execute() (*ACL, error) + type ApiGetInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceRequest) Execute() (*Instance, error) + type ApiGetUserRequest struct + ApiService DefaultAPI + func (r ApiGetUserRequest) Execute() (*User, error) + type ApiListACLsRequest struct + ApiService DefaultAPI + func (r ApiListACLsRequest) Execute() (*ListACLsResponse, error) + type ApiListInstancesRequest struct + ApiService DefaultAPI + func (r ApiListInstancesRequest) Execute() (*ListInstancesResponse, error) + type ApiListUsersRequest struct + ApiService DefaultAPI + func (r ApiListUsersRequest) Execute() (*ListUsersResponse, error) + type ApiUpdateACLRequest struct + ApiService DefaultAPI + func (r ApiUpdateACLRequest) Execute() error + func (r ApiUpdateACLRequest) UpdateACLPayload(updateACLPayload UpdateACLPayload) ApiUpdateACLRequest + type ApiUpdateACLsRequest struct + ApiService DefaultAPI + func (r ApiUpdateACLsRequest) Execute() error + func (r ApiUpdateACLsRequest) UpdateACLsPayload(updateACLsPayload UpdateACLsPayload) ApiUpdateACLsRequest + type ApiUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiUpdateInstanceRequest) Execute() error + func (r ApiUpdateInstanceRequest) UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest + type ApiUpdateUserRequest struct + ApiService DefaultAPI + func (r ApiUpdateUserRequest) Execute() error + func (r ApiUpdateUserRequest) UpdateUserPayload(updateUserPayload UpdateUserPayload) ApiUpdateUserRequest + type BadRequest struct + Message string + func NewBadRequest(message string) *BadRequest + func NewBadRequestWithDefaults() *BadRequest + func (o *BadRequest) GetMessage() string + func (o *BadRequest) GetMessageOk() (*string, bool) + func (o *BadRequest) SetMessage(v string) + func (o *BadRequest) UnmarshalJSON(data []byte) (err error) + func (o BadRequest) MarshalJSON() ([]byte, error) + func (o BadRequest) ToMap() (map[string]interface{}, error) + type Conflict struct + Message string + func NewConflict(message string) *Conflict + func NewConflictWithDefaults() *Conflict + func (o *Conflict) GetMessage() string + func (o *Conflict) GetMessageOk() (*string, bool) + func (o *Conflict) SetMessage(v string) + func (o *Conflict) UnmarshalJSON(data []byte) (err error) + func (o Conflict) MarshalJSON() ([]byte, error) + func (o Conflict) ToMap() (map[string]interface{}, error) + type CreateACLPayload struct + Cidr string + func NewCreateACLPayload(cidr string) *CreateACLPayload + func NewCreateACLPayloadWithDefaults() *CreateACLPayload + func (o *CreateACLPayload) GetCidr() string + func (o *CreateACLPayload) GetCidrOk() (*string, bool) + func (o *CreateACLPayload) SetCidr(v string) + func (o *CreateACLPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateACLPayload) MarshalJSON() ([]byte, error) + func (o CreateACLPayload) ToMap() (map[string]interface{}, error) + type CreateInstancePayload struct + KmsKey *KmsKeyPayload + Name string + func NewCreateInstancePayload(name string) *CreateInstancePayload + func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload + func (o *CreateInstancePayload) GetKmsKey() KmsKeyPayload + func (o *CreateInstancePayload) GetKmsKeyOk() (*KmsKeyPayload, bool) + func (o *CreateInstancePayload) GetName() string + func (o *CreateInstancePayload) GetNameOk() (*string, bool) + func (o *CreateInstancePayload) HasKmsKey() bool + func (o *CreateInstancePayload) SetKmsKey(v KmsKeyPayload) + func (o *CreateInstancePayload) SetName(v string) + func (o *CreateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateInstancePayload) MarshalJSON() ([]byte, error) + func (o CreateInstancePayload) ToMap() (map[string]interface{}, error) + type CreateUserPayload struct + Description string + Write bool + func NewCreateUserPayload(description string, write bool) *CreateUserPayload + func NewCreateUserPayloadWithDefaults() *CreateUserPayload + func (o *CreateUserPayload) GetDescription() string + func (o *CreateUserPayload) GetDescriptionOk() (*string, bool) + func (o *CreateUserPayload) GetWrite() bool + func (o *CreateUserPayload) GetWriteOk() (*bool, bool) + func (o *CreateUserPayload) SetDescription(v string) + func (o *CreateUserPayload) SetWrite(v bool) + func (o *CreateUserPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateUserPayload) MarshalJSON() ([]byte, error) + func (o CreateUserPayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateACL func(ctx context.Context, projectId string, instanceId string) ApiCreateACLRequest + CreateACLExecute func(r ApiCreateACLRequest) (*ACL, error) + CreateInstance func(ctx context.Context, projectId string) ApiCreateInstanceRequest + CreateInstanceExecute func(r ApiCreateInstanceRequest) (*Instance, error) + CreateUser func(ctx context.Context, projectId string, instanceId string) ApiCreateUserRequest + CreateUserExecute func(r ApiCreateUserRequest) (*User, error) + DeleteACL func(ctx context.Context, projectId string, instanceId string, aclId string) ApiDeleteACLRequest + DeleteACLExecute func(r ApiDeleteACLRequest) error + DeleteInstance func(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + DeleteInstanceExecute func(r ApiDeleteInstanceRequest) error + DeleteUser func(ctx context.Context, projectId string, instanceId string, userId string) ApiDeleteUserRequest + DeleteUserExecute func(r ApiDeleteUserRequest) error + GetACL func(ctx context.Context, projectId string, instanceId string, aclId string) ApiGetACLRequest + GetACLExecute func(r ApiGetACLRequest) (*ACL, error) + GetInstance func(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + GetInstanceExecute func(r ApiGetInstanceRequest) (*Instance, error) + GetUser func(ctx context.Context, projectId string, instanceId string, userId string) ApiGetUserRequest + GetUserExecute func(r ApiGetUserRequest) (*User, error) + ListACLs func(ctx context.Context, projectId string, instanceId string) ApiListACLsRequest + ListACLsExecute func(r ApiListACLsRequest) (*ListACLsResponse, error) + ListInstances func(ctx context.Context, projectId string) ApiListInstancesRequest + ListInstancesExecute func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListUsers func(ctx context.Context, projectId string, instanceId string) ApiListUsersRequest + ListUsersExecute func(r ApiListUsersRequest) (*ListUsersResponse, error) + UpdateACL func(ctx context.Context, projectId string, instanceId string, aclId string) ApiUpdateACLRequest + UpdateACLExecute func(r ApiUpdateACLRequest) error + UpdateACLs func(ctx context.Context, projectId string, instanceId string) ApiUpdateACLsRequest + UpdateACLsExecute func(r ApiUpdateACLsRequest) error + UpdateInstance func(ctx context.Context, projectId string, instanceId string) ApiUpdateInstanceRequest + UpdateInstanceExecute func(r ApiUpdateInstanceRequest) error + UpdateUser func(ctx context.Context, projectId string, instanceId string, userId string) ApiUpdateUserRequest + UpdateUserExecute func(r ApiUpdateUserRequest) error + type DefaultAPIService service + func (a *DefaultAPIService) CreateACL(ctx context.Context, projectId string, instanceId string) ApiCreateACLRequest + func (a *DefaultAPIService) CreateACLExecute(r ApiCreateACLRequest) (*ACL, error) + func (a *DefaultAPIService) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a *DefaultAPIService) CreateInstanceExecute(r ApiCreateInstanceRequest) (*Instance, error) + func (a *DefaultAPIService) CreateUser(ctx context.Context, projectId string, instanceId string) ApiCreateUserRequest + func (a *DefaultAPIService) CreateUserExecute(r ApiCreateUserRequest) (*User, error) + func (a *DefaultAPIService) DeleteACL(ctx context.Context, projectId string, instanceId string, aclId string) ApiDeleteACLRequest + func (a *DefaultAPIService) DeleteACLExecute(r ApiDeleteACLRequest) error + func (a *DefaultAPIService) DeleteInstance(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + func (a *DefaultAPIService) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a *DefaultAPIService) DeleteUser(ctx context.Context, projectId string, instanceId string, userId string) ApiDeleteUserRequest + func (a *DefaultAPIService) DeleteUserExecute(r ApiDeleteUserRequest) error + func (a *DefaultAPIService) GetACL(ctx context.Context, projectId string, instanceId string, aclId string) ApiGetACLRequest + func (a *DefaultAPIService) GetACLExecute(r ApiGetACLRequest) (*ACL, error) + func (a *DefaultAPIService) GetInstance(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + func (a *DefaultAPIService) GetInstanceExecute(r ApiGetInstanceRequest) (*Instance, error) + func (a *DefaultAPIService) GetUser(ctx context.Context, projectId string, instanceId string, userId string) ApiGetUserRequest + func (a *DefaultAPIService) GetUserExecute(r ApiGetUserRequest) (*User, error) + func (a *DefaultAPIService) ListACLs(ctx context.Context, projectId string, instanceId string) ApiListACLsRequest + func (a *DefaultAPIService) ListACLsExecute(r ApiListACLsRequest) (*ListACLsResponse, error) + func (a *DefaultAPIService) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a *DefaultAPIService) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a *DefaultAPIService) ListUsers(ctx context.Context, projectId string, instanceId string) ApiListUsersRequest + func (a *DefaultAPIService) ListUsersExecute(r ApiListUsersRequest) (*ListUsersResponse, error) + func (a *DefaultAPIService) UpdateACL(ctx context.Context, projectId string, instanceId string, aclId string) ApiUpdateACLRequest + func (a *DefaultAPIService) UpdateACLExecute(r ApiUpdateACLRequest) error + func (a *DefaultAPIService) UpdateACLs(ctx context.Context, projectId string, instanceId string) ApiUpdateACLsRequest + func (a *DefaultAPIService) UpdateACLsExecute(r ApiUpdateACLsRequest) error + func (a *DefaultAPIService) UpdateInstance(ctx context.Context, projectId string, instanceId string) ApiUpdateInstanceRequest + func (a *DefaultAPIService) UpdateInstanceExecute(r ApiUpdateInstanceRequest) error + func (a *DefaultAPIService) UpdateUser(ctx context.Context, projectId string, instanceId string, userId string) ApiUpdateUserRequest + func (a *DefaultAPIService) UpdateUserExecute(r ApiUpdateUserRequest) error + type DefaultAPIServiceMock struct + CreateACLExecuteMock *func(r ApiCreateACLRequest) (*ACL, error) + CreateInstanceExecuteMock *func(r ApiCreateInstanceRequest) (*Instance, error) + CreateUserExecuteMock *func(r ApiCreateUserRequest) (*User, error) + DeleteACLExecuteMock *func(r ApiDeleteACLRequest) error + DeleteInstanceExecuteMock *func(r ApiDeleteInstanceRequest) error + DeleteUserExecuteMock *func(r ApiDeleteUserRequest) error + GetACLExecuteMock *func(r ApiGetACLRequest) (*ACL, error) + GetInstanceExecuteMock *func(r ApiGetInstanceRequest) (*Instance, error) + GetUserExecuteMock *func(r ApiGetUserRequest) (*User, error) + ListACLsExecuteMock *func(r ApiListACLsRequest) (*ListACLsResponse, error) + ListInstancesExecuteMock *func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListUsersExecuteMock *func(r ApiListUsersRequest) (*ListUsersResponse, error) + UpdateACLExecuteMock *func(r ApiUpdateACLRequest) error + UpdateACLsExecuteMock *func(r ApiUpdateACLsRequest) error + UpdateInstanceExecuteMock *func(r ApiUpdateInstanceRequest) error + UpdateUserExecuteMock *func(r ApiUpdateUserRequest) error + func (a DefaultAPIServiceMock) CreateACL(ctx context.Context, projectId string, instanceId string) ApiCreateACLRequest + func (a DefaultAPIServiceMock) CreateACLExecute(r ApiCreateACLRequest) (*ACL, error) + func (a DefaultAPIServiceMock) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a DefaultAPIServiceMock) CreateInstanceExecute(r ApiCreateInstanceRequest) (*Instance, error) + func (a DefaultAPIServiceMock) CreateUser(ctx context.Context, projectId string, instanceId string) ApiCreateUserRequest + func (a DefaultAPIServiceMock) CreateUserExecute(r ApiCreateUserRequest) (*User, error) + func (a DefaultAPIServiceMock) DeleteACL(ctx context.Context, projectId string, instanceId string, aclId string) ApiDeleteACLRequest + func (a DefaultAPIServiceMock) DeleteACLExecute(r ApiDeleteACLRequest) error + func (a DefaultAPIServiceMock) DeleteInstance(ctx context.Context, projectId string, instanceId string) ApiDeleteInstanceRequest + func (a DefaultAPIServiceMock) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a DefaultAPIServiceMock) DeleteUser(ctx context.Context, projectId string, instanceId string, userId string) ApiDeleteUserRequest + func (a DefaultAPIServiceMock) DeleteUserExecute(r ApiDeleteUserRequest) error + func (a DefaultAPIServiceMock) GetACL(ctx context.Context, projectId string, instanceId string, aclId string) ApiGetACLRequest + func (a DefaultAPIServiceMock) GetACLExecute(r ApiGetACLRequest) (*ACL, error) + func (a DefaultAPIServiceMock) GetInstance(ctx context.Context, projectId string, instanceId string) ApiGetInstanceRequest + func (a DefaultAPIServiceMock) GetInstanceExecute(r ApiGetInstanceRequest) (*Instance, error) + func (a DefaultAPIServiceMock) GetUser(ctx context.Context, projectId string, instanceId string, userId string) ApiGetUserRequest + func (a DefaultAPIServiceMock) GetUserExecute(r ApiGetUserRequest) (*User, error) + func (a DefaultAPIServiceMock) ListACLs(ctx context.Context, projectId string, instanceId string) ApiListACLsRequest + func (a DefaultAPIServiceMock) ListACLsExecute(r ApiListACLsRequest) (*ListACLsResponse, error) + func (a DefaultAPIServiceMock) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a DefaultAPIServiceMock) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a DefaultAPIServiceMock) ListUsers(ctx context.Context, projectId string, instanceId string) ApiListUsersRequest + func (a DefaultAPIServiceMock) ListUsersExecute(r ApiListUsersRequest) (*ListUsersResponse, error) + func (a DefaultAPIServiceMock) UpdateACL(ctx context.Context, projectId string, instanceId string, aclId string) ApiUpdateACLRequest + func (a DefaultAPIServiceMock) UpdateACLExecute(r ApiUpdateACLRequest) error + func (a DefaultAPIServiceMock) UpdateACLs(ctx context.Context, projectId string, instanceId string) ApiUpdateACLsRequest + func (a DefaultAPIServiceMock) UpdateACLsExecute(r ApiUpdateACLsRequest) error + func (a DefaultAPIServiceMock) UpdateInstance(ctx context.Context, projectId string, instanceId string) ApiUpdateInstanceRequest + func (a DefaultAPIServiceMock) UpdateInstanceExecute(r ApiUpdateInstanceRequest) error + func (a DefaultAPIServiceMock) UpdateUser(ctx context.Context, projectId string, instanceId string, userId string) ApiUpdateUserRequest + func (a DefaultAPIServiceMock) UpdateUserExecute(r ApiUpdateUserRequest) error + type Instance struct + ApiUrl string + CreationFinishedDate *string + CreationStartDate string + Id string + KmsKey *KmsKeyPayload + Name string + SecretCount int32 + SecretsEngine string + State string + UpdateFinishedDate *string + UpdateStartDate *string + func NewInstance(apiUrl string, creationStartDate string, id string, name string, ...) *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetApiUrl() string + func (o *Instance) GetApiUrlOk() (*string, bool) + func (o *Instance) GetCreationFinishedDate() string + func (o *Instance) GetCreationFinishedDateOk() (*string, bool) + func (o *Instance) GetCreationStartDate() string + func (o *Instance) GetCreationStartDateOk() (*string, bool) + func (o *Instance) GetId() string + func (o *Instance) GetIdOk() (*string, bool) + func (o *Instance) GetKmsKey() KmsKeyPayload + func (o *Instance) GetKmsKeyOk() (*KmsKeyPayload, bool) + func (o *Instance) GetName() string + func (o *Instance) GetNameOk() (*string, bool) + func (o *Instance) GetSecretCount() int32 + func (o *Instance) GetSecretCountOk() (*int32, bool) + func (o *Instance) GetSecretsEngine() string + func (o *Instance) GetSecretsEngineOk() (*string, bool) + func (o *Instance) GetState() string + func (o *Instance) GetStateOk() (*string, bool) + func (o *Instance) GetUpdateFinishedDate() string + func (o *Instance) GetUpdateFinishedDateOk() (*string, bool) + func (o *Instance) GetUpdateStartDate() string + func (o *Instance) GetUpdateStartDateOk() (*string, bool) + func (o *Instance) HasCreationFinishedDate() bool + func (o *Instance) HasKmsKey() bool + func (o *Instance) HasUpdateFinishedDate() bool + func (o *Instance) HasUpdateStartDate() bool + func (o *Instance) SetApiUrl(v string) + func (o *Instance) SetCreationFinishedDate(v string) + func (o *Instance) SetCreationStartDate(v string) + func (o *Instance) SetId(v string) + func (o *Instance) SetKmsKey(v KmsKeyPayload) + func (o *Instance) SetName(v string) + func (o *Instance) SetSecretCount(v int32) + func (o *Instance) SetSecretsEngine(v string) + func (o *Instance) SetState(v string) + func (o *Instance) SetUpdateFinishedDate(v string) + func (o *Instance) SetUpdateStartDate(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 KmsKeyPayload struct + KeyId string + KeyRingId string + KeyVersion int64 + ServiceAccountEmail string + func NewKmsKeyPayload(keyId string, keyRingId string, keyVersion int64, serviceAccountEmail string) *KmsKeyPayload + func NewKmsKeyPayloadWithDefaults() *KmsKeyPayload + func (o *KmsKeyPayload) GetKeyId() string + func (o *KmsKeyPayload) GetKeyIdOk() (*string, bool) + func (o *KmsKeyPayload) GetKeyRingId() string + func (o *KmsKeyPayload) GetKeyRingIdOk() (*string, bool) + func (o *KmsKeyPayload) GetKeyVersion() int64 + func (o *KmsKeyPayload) GetKeyVersionOk() (*int64, bool) + func (o *KmsKeyPayload) GetServiceAccountEmail() string + func (o *KmsKeyPayload) GetServiceAccountEmailOk() (*string, bool) + func (o *KmsKeyPayload) SetKeyId(v string) + func (o *KmsKeyPayload) SetKeyRingId(v string) + func (o *KmsKeyPayload) SetKeyVersion(v int64) + func (o *KmsKeyPayload) SetServiceAccountEmail(v string) + func (o *KmsKeyPayload) UnmarshalJSON(data []byte) (err error) + func (o KmsKeyPayload) MarshalJSON() ([]byte, error) + func (o KmsKeyPayload) ToMap() (map[string]interface{}, error) + type ListACLsResponse struct + Acls []ACL + func NewListACLsResponse(acls []ACL) *ListACLsResponse + func NewListACLsResponseWithDefaults() *ListACLsResponse + func (o *ListACLsResponse) GetAcls() []ACL + func (o *ListACLsResponse) GetAclsOk() ([]ACL, bool) + func (o *ListACLsResponse) SetAcls(v []ACL) + func (o *ListACLsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListACLsResponse) MarshalJSON() ([]byte, error) + func (o ListACLsResponse) 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 ListUsersResponse struct + Users []User + func NewListUsersResponse(users []User) *ListUsersResponse + func NewListUsersResponseWithDefaults() *ListUsersResponse + func (o *ListUsersResponse) GetUsers() []User + func (o *ListUsersResponse) GetUsersOk() ([]User, bool) + func (o *ListUsersResponse) SetUsers(v []User) + func (o *ListUsersResponse) UnmarshalJSON(data []byte) (err error) + func (o ListUsersResponse) MarshalJSON() ([]byte, error) + func (o ListUsersResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NotFound struct + Message string + func NewNotFound(message string) *NotFound + func NewNotFoundWithDefaults() *NotFound + func (o *NotFound) GetMessage() string + func (o *NotFound) GetMessageOk() (*string, bool) + func (o *NotFound) SetMessage(v string) + func (o *NotFound) UnmarshalJSON(data []byte) (err error) + func (o NotFound) MarshalJSON() ([]byte, error) + func (o NotFound) ToMap() (map[string]interface{}, error) + type NullableACL struct + func NewNullableACL(val *ACL) *NullableACL + func (v *NullableACL) Set(val *ACL) + func (v *NullableACL) UnmarshalJSON(src []byte) error + func (v *NullableACL) Unset() + func (v NullableACL) Get() *ACL + func (v NullableACL) IsSet() bool + func (v NullableACL) MarshalJSON() ([]byte, error) + type NullableBadRequest struct + func NewNullableBadRequest(val *BadRequest) *NullableBadRequest + func (v *NullableBadRequest) Set(val *BadRequest) + func (v *NullableBadRequest) UnmarshalJSON(src []byte) error + func (v *NullableBadRequest) Unset() + func (v NullableBadRequest) Get() *BadRequest + func (v NullableBadRequest) IsSet() bool + func (v NullableBadRequest) 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 NullableConflict struct + func NewNullableConflict(val *Conflict) *NullableConflict + func (v *NullableConflict) Set(val *Conflict) + func (v *NullableConflict) UnmarshalJSON(src []byte) error + func (v *NullableConflict) Unset() + func (v NullableConflict) Get() *Conflict + func (v NullableConflict) IsSet() bool + func (v NullableConflict) MarshalJSON() ([]byte, error) + type NullableCreateACLPayload struct + func NewNullableCreateACLPayload(val *CreateACLPayload) *NullableCreateACLPayload + func (v *NullableCreateACLPayload) Set(val *CreateACLPayload) + func (v *NullableCreateACLPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateACLPayload) Unset() + func (v NullableCreateACLPayload) Get() *CreateACLPayload + func (v NullableCreateACLPayload) IsSet() bool + func (v NullableCreateACLPayload) 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 NullableCreateUserPayload struct + func NewNullableCreateUserPayload(val *CreateUserPayload) *NullableCreateUserPayload + func (v *NullableCreateUserPayload) Set(val *CreateUserPayload) + func (v *NullableCreateUserPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateUserPayload) Unset() + func (v NullableCreateUserPayload) Get() *CreateUserPayload + func (v NullableCreateUserPayload) IsSet() bool + func (v NullableCreateUserPayload) MarshalJSON() ([]byte, error) + type 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 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 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 NullableKmsKeyPayload struct + func NewNullableKmsKeyPayload(val *KmsKeyPayload) *NullableKmsKeyPayload + func (v *NullableKmsKeyPayload) Set(val *KmsKeyPayload) + func (v *NullableKmsKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullableKmsKeyPayload) Unset() + func (v NullableKmsKeyPayload) Get() *KmsKeyPayload + func (v NullableKmsKeyPayload) IsSet() bool + func (v NullableKmsKeyPayload) MarshalJSON() ([]byte, error) + type NullableListACLsResponse struct + func NewNullableListACLsResponse(val *ListACLsResponse) *NullableListACLsResponse + func (v *NullableListACLsResponse) Set(val *ListACLsResponse) + func (v *NullableListACLsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListACLsResponse) Unset() + func (v NullableListACLsResponse) Get() *ListACLsResponse + func (v NullableListACLsResponse) IsSet() bool + func (v NullableListACLsResponse) 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 NullableListUsersResponse struct + func NewNullableListUsersResponse(val *ListUsersResponse) *NullableListUsersResponse + func (v *NullableListUsersResponse) Set(val *ListUsersResponse) + func (v *NullableListUsersResponse) UnmarshalJSON(src []byte) error + func (v *NullableListUsersResponse) Unset() + func (v NullableListUsersResponse) Get() *ListUsersResponse + func (v NullableListUsersResponse) IsSet() bool + func (v NullableListUsersResponse) MarshalJSON() ([]byte, error) + type NullableNotFound struct + func NewNullableNotFound(val *NotFound) *NullableNotFound + func (v *NullableNotFound) Set(val *NotFound) + func (v *NullableNotFound) UnmarshalJSON(src []byte) error + func (v *NullableNotFound) Unset() + func (v NullableNotFound) Get() *NotFound + func (v NullableNotFound) IsSet() bool + func (v NullableNotFound) 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 NullableUpdateACLPayload struct + func NewNullableUpdateACLPayload(val *UpdateACLPayload) *NullableUpdateACLPayload + func (v *NullableUpdateACLPayload) Set(val *UpdateACLPayload) + func (v *NullableUpdateACLPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateACLPayload) Unset() + func (v NullableUpdateACLPayload) Get() *UpdateACLPayload + func (v NullableUpdateACLPayload) IsSet() bool + func (v NullableUpdateACLPayload) MarshalJSON() ([]byte, error) + type NullableUpdateACLsPayload struct + func NewNullableUpdateACLsPayload(val *UpdateACLsPayload) *NullableUpdateACLsPayload + func (v *NullableUpdateACLsPayload) Set(val *UpdateACLsPayload) + func (v *NullableUpdateACLsPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateACLsPayload) Unset() + func (v NullableUpdateACLsPayload) Get() *UpdateACLsPayload + func (v NullableUpdateACLsPayload) IsSet() bool + func (v NullableUpdateACLsPayload) MarshalJSON() ([]byte, error) + type NullableUpdateInstancePayload struct + func NewNullableUpdateInstancePayload(val *UpdateInstancePayload) *NullableUpdateInstancePayload + func (v *NullableUpdateInstancePayload) Set(val *UpdateInstancePayload) + func (v *NullableUpdateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateInstancePayload) Unset() + func (v NullableUpdateInstancePayload) Get() *UpdateInstancePayload + func (v NullableUpdateInstancePayload) IsSet() bool + func (v NullableUpdateInstancePayload) MarshalJSON() ([]byte, error) + type NullableUpdateUserPayload struct + func NewNullableUpdateUserPayload(val *UpdateUserPayload) *NullableUpdateUserPayload + func (v *NullableUpdateUserPayload) Set(val *UpdateUserPayload) + func (v *NullableUpdateUserPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateUserPayload) Unset() + func (v NullableUpdateUserPayload) Get() *UpdateUserPayload + func (v NullableUpdateUserPayload) IsSet() bool + func (v NullableUpdateUserPayload) MarshalJSON() ([]byte, error) + type NullableUser struct + func NewNullableUser(val *User) *NullableUser + func (v *NullableUser) Set(val *User) + func (v *NullableUser) UnmarshalJSON(src []byte) error + func (v *NullableUser) Unset() + func (v NullableUser) Get() *User + func (v NullableUser) IsSet() bool + func (v NullableUser) MarshalJSON() ([]byte, error) + type UpdateACLPayload struct + Cidr string + func NewUpdateACLPayload(cidr string) *UpdateACLPayload + func NewUpdateACLPayloadWithDefaults() *UpdateACLPayload + func (o *UpdateACLPayload) GetCidr() string + func (o *UpdateACLPayload) GetCidrOk() (*string, bool) + func (o *UpdateACLPayload) SetCidr(v string) + func (o *UpdateACLPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateACLPayload) MarshalJSON() ([]byte, error) + func (o UpdateACLPayload) ToMap() (map[string]interface{}, error) + type UpdateACLsPayload struct + Cidrs []UpdateACLPayload + func NewUpdateACLsPayload() *UpdateACLsPayload + func NewUpdateACLsPayloadWithDefaults() *UpdateACLsPayload + func (o *UpdateACLsPayload) GetCidrs() []UpdateACLPayload + func (o *UpdateACLsPayload) GetCidrsOk() ([]UpdateACLPayload, bool) + func (o *UpdateACLsPayload) HasCidrs() bool + func (o *UpdateACLsPayload) SetCidrs(v []UpdateACLPayload) + func (o UpdateACLsPayload) MarshalJSON() ([]byte, error) + func (o UpdateACLsPayload) ToMap() (map[string]interface{}, error) + type UpdateInstancePayload struct + KmsKey *KmsKeyPayload + Name string + func NewUpdateInstancePayload(name string) *UpdateInstancePayload + func NewUpdateInstancePayloadWithDefaults() *UpdateInstancePayload + func (o *UpdateInstancePayload) GetKmsKey() KmsKeyPayload + func (o *UpdateInstancePayload) GetKmsKeyOk() (*KmsKeyPayload, bool) + func (o *UpdateInstancePayload) GetName() string + func (o *UpdateInstancePayload) GetNameOk() (*string, bool) + func (o *UpdateInstancePayload) HasKmsKey() bool + func (o *UpdateInstancePayload) SetKmsKey(v KmsKeyPayload) + func (o *UpdateInstancePayload) SetName(v string) + func (o *UpdateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o UpdateInstancePayload) ToMap() (map[string]interface{}, error) + type UpdateUserPayload struct + Description *string + Write *bool + func NewUpdateUserPayload() *UpdateUserPayload + func NewUpdateUserPayloadWithDefaults() *UpdateUserPayload + func (o *UpdateUserPayload) GetDescription() string + func (o *UpdateUserPayload) GetDescriptionOk() (*string, bool) + func (o *UpdateUserPayload) GetWrite() bool + func (o *UpdateUserPayload) GetWriteOk() (*bool, bool) + func (o *UpdateUserPayload) HasDescription() bool + func (o *UpdateUserPayload) HasWrite() bool + func (o *UpdateUserPayload) SetDescription(v string) + func (o *UpdateUserPayload) SetWrite(v bool) + func (o UpdateUserPayload) MarshalJSON() ([]byte, error) + func (o UpdateUserPayload) ToMap() (map[string]interface{}, error) + type User struct + Description string + Id string + Password string + Username string + Write bool + func NewUser(description string, id string, password string, username string, write bool) *User + func NewUserWithDefaults() *User + func (o *User) GetDescription() string + func (o *User) GetDescriptionOk() (*string, bool) + func (o *User) GetId() string + func (o *User) GetIdOk() (*string, bool) + func (o *User) GetPassword() string + func (o *User) GetPasswordOk() (*string, bool) + func (o *User) GetUsername() string + func (o *User) GetUsernameOk() (*string, bool) + func (o *User) GetWrite() bool + func (o *User) GetWriteOk() (*bool, bool) + func (o *User) SetDescription(v string) + func (o *User) SetId(v string) + func (o *User) SetPassword(v string) + func (o *User) SetUsername(v string) + func (o *User) SetWrite(v bool) + func (o *User) UnmarshalJSON(data []byte) (err error) + func (o User) MarshalJSON() ([]byte, error) + func (o User) ToMap() (map[string]interface{}, error)