Versions in this module Expand all Collapse all v0 v0.2.0 Jan 12, 2026 v0.1.0 Jan 12, 2026 Changes in this version + var AllowedInstanceStatusEnumValues = []InstanceStatus + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func ParameterValueToString(obj interface{}, key string) string + 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 + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (a *APIClient) DeleteInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + func (a *APIClient) DeleteInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiDeleteInstanceByNameRequest + func (a *APIClient) DeleteInstanceByNameExecute(ctx context.Context, projectId string, regionId string, displayName string) error + func (a *APIClient) DeleteInstanceExecute(ctx context.Context, projectId string, regionId string, instanceId string) error + func (a *APIClient) GetInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + func (a *APIClient) GetInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetInstanceByNameRequest + func (a *APIClient) GetInstanceByNameExecute(ctx context.Context, projectId string, regionId string, displayName string) (*Instance, error) + func (a *APIClient) GetInstanceExecute(ctx context.Context, projectId string, regionId string, instanceId string) (*Instance, error) + func (a *APIClient) GetInstances(ctx context.Context, projectId string, regionId string) ApiGetInstancesRequest + func (a *APIClient) GetInstancesExecute(ctx context.Context, projectId string, regionId string) (*InstanceList, error) + func (a *APIClient) GetKubeconfigByInstanceId(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetKubeconfigByInstanceIdRequest + func (a *APIClient) GetKubeconfigByInstanceIdExecute(ctx context.Context, projectId string, regionId string, instanceId string) (*Kubeconfig, error) + func (a *APIClient) GetKubeconfigByInstanceName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetKubeconfigByInstanceNameRequest + func (a *APIClient) GetKubeconfigByInstanceNameExecute(ctx context.Context, projectId string, regionId string, displayName string) (*Kubeconfig, error) + func (a *APIClient) GetTokenByInstanceId(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetTokenByInstanceIdRequest + func (a *APIClient) GetTokenByInstanceIdExecute(ctx context.Context, projectId string, regionId string, instanceId string) (*Token, error) + func (a *APIClient) GetTokenByInstanceName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetTokenByInstanceNameRequest + func (a *APIClient) GetTokenByInstanceNameExecute(ctx context.Context, projectId string, regionId string, displayName string) (*Token, error) + func (a *APIClient) ListPlansGlobal(ctx context.Context) ApiListPlansGlobalRequest + func (a *APIClient) ListPlansGlobalExecute(ctx context.Context) (*PlanList, error) + func (a *APIClient) ListPlansProject(ctx context.Context, projectId string) ApiListPlansProjectRequest + func (a *APIClient) ListPlansProjectExecute(ctx context.Context, projectId string) (*PlanList, error) + func (a *APIClient) PostInstances(ctx context.Context, projectId string, regionId string) ApiPostInstancesRequest + func (a *APIClient) PostInstancesExecute(ctx context.Context, projectId string, regionId string) (*Instance, error) + func (a *APIClient) UpdateInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateInstanceRequest + func (a *APIClient) UpdateInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiUpdateInstanceByNameRequest + func (a *APIClient) UpdateInstanceByNameExecute(ctx context.Context, projectId string, regionId string, displayName string) error + func (a *APIClient) UpdateInstanceExecute(ctx context.Context, projectId string, regionId string, instanceId string) error + func (c *APIClient) GetConfig() *config.Configuration + type ApiDeleteInstanceByNameRequest interface + Execute func() error + type ApiDeleteInstanceRequest interface + Execute func() error + type ApiGetInstanceByNameRequest interface + Execute func() (*Instance, error) + type ApiGetInstanceRequest interface + Execute func() (*Instance, error) + type ApiGetInstancesRequest interface + Execute func() (*InstanceList, error) + type ApiGetKubeconfigByInstanceIdRequest interface + Execute func() (*Kubeconfig, error) + ExpirationSeconds func(expirationSeconds int64) ApiGetKubeconfigByInstanceIdRequest + type ApiGetKubeconfigByInstanceNameRequest interface + Execute func() (*Kubeconfig, error) + ExpirationSeconds func(expirationSeconds int64) ApiGetKubeconfigByInstanceNameRequest + type ApiGetTokenByInstanceIdRequest interface + Execute func() (*Token, error) + ExpirationSeconds func(expirationSeconds int64) ApiGetTokenByInstanceIdRequest + type ApiGetTokenByInstanceNameRequest interface + Execute func() (*Token, error) + ExpirationSeconds func(expirationSeconds int64) ApiGetTokenByInstanceNameRequest + type ApiListPlansGlobalRequest interface + Execute func() (*PlanList, error) + type ApiListPlansProjectRequest interface + Execute func() (*PlanList, error) + type ApiPostInstancesRequest interface + Execute func() (*Instance, error) + PostInstancesPayload func(postInstancesPayload PostInstancesPayload) ApiPostInstancesRequest + type ApiUpdateInstanceByNameRequest interface + Execute func() error + UpdateInstanceByNamePayload func(updateInstanceByNamePayload UpdateInstanceByNamePayload) ApiUpdateInstanceByNameRequest + type ApiUpdateInstanceRequest interface + Execute func() error + UpdateInstancePayload func(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest + type BadRequest struct + Code BadRequestGetCodeAttributeType + Message BadRequestGetMessageAttributeType + func NewBadRequest() *BadRequest + func NewBadRequestWithDefaults() *BadRequest + func (o *BadRequest) GetCode() (res BadRequestGetCodeRetType) + func (o *BadRequest) GetCodeOk() (ret BadRequestGetCodeRetType, ok bool) + func (o *BadRequest) GetMessage() (res BadRequestGetMessageRetType) + func (o *BadRequest) GetMessageOk() (ret BadRequestGetMessageRetType, ok bool) + func (o *BadRequest) HasCode() bool + func (o *BadRequest) HasMessage() bool + func (o *BadRequest) SetCode(v BadRequestGetCodeRetType) + func (o *BadRequest) SetMessage(v BadRequestGetMessageRetType) + func (o BadRequest) ToMap() (map[string]interface{}, error) + type BadRequestGetCodeArgType = string + type BadRequestGetCodeAttributeType = *string + type BadRequestGetCodeRetType = string + type BadRequestGetMessageArgType = string + type BadRequestGetMessageAttributeType = *string + type BadRequestGetMessageRetType = string + type DefaultApi interface + DeleteInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + DeleteInstanceByName func(ctx context.Context, projectId string, regionId string, displayName string) ApiDeleteInstanceByNameRequest + DeleteInstanceByNameExecute func(ctx context.Context, projectId string, regionId string, displayName string) error + DeleteInstanceExecute func(ctx context.Context, projectId string, regionId string, instanceId string) error + GetInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + GetInstanceByName func(ctx context.Context, projectId string, regionId string, displayName string) ApiGetInstanceByNameRequest + GetInstanceByNameExecute func(ctx context.Context, projectId string, regionId string, displayName string) (*Instance, error) + GetInstanceExecute func(ctx context.Context, projectId string, regionId string, instanceId string) (*Instance, error) + GetInstances func(ctx context.Context, projectId string, regionId string) ApiGetInstancesRequest + GetInstancesExecute func(ctx context.Context, projectId string, regionId string) (*InstanceList, error) + GetKubeconfigByInstanceId func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetKubeconfigByInstanceIdRequest + GetKubeconfigByInstanceIdExecute func(ctx context.Context, projectId string, regionId string, instanceId string) (*Kubeconfig, error) + GetKubeconfigByInstanceName func(ctx context.Context, projectId string, regionId string, displayName string) ApiGetKubeconfigByInstanceNameRequest + GetKubeconfigByInstanceNameExecute func(ctx context.Context, projectId string, regionId string, displayName string) (*Kubeconfig, error) + GetTokenByInstanceId func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetTokenByInstanceIdRequest + GetTokenByInstanceIdExecute func(ctx context.Context, projectId string, regionId string, instanceId string) (*Token, error) + GetTokenByInstanceName func(ctx context.Context, projectId string, regionId string, displayName string) ApiGetTokenByInstanceNameRequest + GetTokenByInstanceNameExecute func(ctx context.Context, projectId string, regionId string, displayName string) (*Token, error) + ListPlansGlobal func(ctx context.Context) ApiListPlansGlobalRequest + ListPlansGlobalExecute func(ctx context.Context) (*PlanList, error) + ListPlansProject func(ctx context.Context, projectId string) ApiListPlansProjectRequest + ListPlansProjectExecute func(ctx context.Context, projectId string) (*PlanList, error) + PostInstances func(ctx context.Context, projectId string, regionId string) ApiPostInstancesRequest + PostInstancesExecute func(ctx context.Context, projectId string, regionId string) (*Instance, error) + UpdateInstance func(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateInstanceRequest + UpdateInstanceByName func(ctx context.Context, projectId string, regionId string, displayName string) ApiUpdateInstanceByNameRequest + UpdateInstanceByNameExecute func(ctx context.Context, projectId string, regionId string, displayName string) error + UpdateInstanceExecute func(ctx context.Context, projectId string, regionId string, instanceId string) error + type DefaultApiService service + type DeleteInstanceByNameRequest struct + func (r DeleteInstanceByNameRequest) Execute() error + type DeleteInstanceRequest struct + func (r DeleteInstanceRequest) Execute() error + type GetInstanceByNameRequest struct + func (r GetInstanceByNameRequest) Execute() (*Instance, error) + type GetInstanceRequest struct + func (r GetInstanceRequest) Execute() (*Instance, error) + type GetInstancesRequest struct + func (r GetInstancesRequest) Execute() (*InstanceList, error) + type GetKubeconfigByInstanceIdRequest struct + func (r GetKubeconfigByInstanceIdRequest) Execute() (*Kubeconfig, error) + func (r GetKubeconfigByInstanceIdRequest) ExpirationSeconds(expirationSeconds int64) ApiGetKubeconfigByInstanceIdRequest + type GetKubeconfigByInstanceNameRequest struct + func (r GetKubeconfigByInstanceNameRequest) Execute() (*Kubeconfig, error) + func (r GetKubeconfigByInstanceNameRequest) ExpirationSeconds(expirationSeconds int64) ApiGetKubeconfigByInstanceNameRequest + type GetTokenByInstanceIdRequest struct + func (r GetTokenByInstanceIdRequest) Execute() (*Token, error) + func (r GetTokenByInstanceIdRequest) ExpirationSeconds(expirationSeconds int64) ApiGetTokenByInstanceIdRequest + type GetTokenByInstanceNameRequest struct + func (r GetTokenByInstanceNameRequest) Execute() (*Token, error) + func (r GetTokenByInstanceNameRequest) ExpirationSeconds(expirationSeconds int64) ApiGetTokenByInstanceNameRequest + type Instance struct + Created InstanceGetCreatedAttributeType + Description InstanceGetDescriptionAttributeType + DisplayName InstanceGetDisplayNameAttributeType + FrontendUrl InstanceGetFrontendUrlAttributeType + Id InstanceGetIdAttributeType + PlanId InstanceGetPlanIdAttributeType + Status InstanceGetStatusAttributeType + func NewInstance(created InstanceGetCreatedArgType, displayName InstanceGetDisplayNameArgType, ...) *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetCreated() (ret InstanceGetCreatedRetType) + func (o *Instance) GetCreatedOk() (ret InstanceGetCreatedRetType, ok bool) + func (o *Instance) GetDescription() (res InstanceGetDescriptionRetType) + func (o *Instance) GetDescriptionOk() (ret InstanceGetDescriptionRetType, ok bool) + func (o *Instance) GetDisplayName() (ret InstanceGetDisplayNameRetType) + func (o *Instance) GetDisplayNameOk() (ret InstanceGetDisplayNameRetType, ok bool) + func (o *Instance) GetFrontendUrl() (ret InstanceGetFrontendUrlRetType) + func (o *Instance) GetFrontendUrlOk() (ret InstanceGetFrontendUrlRetType, ok bool) + func (o *Instance) GetId() (ret InstanceGetIdRetType) + func (o *Instance) GetIdOk() (ret InstanceGetIdRetType, ok bool) + func (o *Instance) GetPlanId() (ret InstanceGetPlanIdRetType) + func (o *Instance) GetPlanIdOk() (ret InstanceGetPlanIdRetType, ok bool) + func (o *Instance) GetStatus() (ret InstanceGetStatusRetType) + func (o *Instance) GetStatusOk() (ret InstanceGetStatusRetType, ok bool) + func (o *Instance) HasDescription() bool + func (o *Instance) SetCreated(v InstanceGetCreatedRetType) + func (o *Instance) SetDescription(v InstanceGetDescriptionRetType) + func (o *Instance) SetDisplayName(v InstanceGetDisplayNameRetType) + func (o *Instance) SetFrontendUrl(v InstanceGetFrontendUrlRetType) + func (o *Instance) SetId(v InstanceGetIdRetType) + func (o *Instance) SetPlanId(v InstanceGetPlanIdRetType) + func (o *Instance) SetStatus(v InstanceGetStatusRetType) + func (o Instance) ToMap() (map[string]interface{}, error) + type InstanceGetCreatedArgType = time.Time + type InstanceGetCreatedAttributeType = *time.Time + type InstanceGetCreatedRetType = time.Time + type InstanceGetDescriptionArgType = string + type InstanceGetDescriptionAttributeType = *string + type InstanceGetDescriptionRetType = string + type InstanceGetDisplayNameArgType = string + type InstanceGetDisplayNameAttributeType = *string + type InstanceGetDisplayNameRetType = string + type InstanceGetFrontendUrlArgType = string + type InstanceGetFrontendUrlAttributeType = *string + type InstanceGetFrontendUrlRetType = string + type InstanceGetIdArgType = string + type InstanceGetIdAttributeType = *string + type InstanceGetIdRetType = string + type InstanceGetPlanIdArgType = string + type InstanceGetPlanIdAttributeType = *string + type InstanceGetPlanIdRetType = string + type InstanceGetStatusArgType = InstanceStatus + type InstanceGetStatusAttributeType = *InstanceStatus + type InstanceGetStatusRetType = InstanceStatus + type InstanceList struct + Instances InstanceListGetInstancesAttributeType + func NewInstanceList(instances InstanceListGetInstancesArgType) *InstanceList + func NewInstanceListWithDefaults() *InstanceList + func (o *InstanceList) GetInstances() (ret InstanceListGetInstancesRetType) + func (o *InstanceList) GetInstancesOk() (ret InstanceListGetInstancesRetType, ok bool) + func (o *InstanceList) SetInstances(v InstanceListGetInstancesRetType) + func (o InstanceList) ToMap() (map[string]interface{}, error) + type InstanceListGetInstancesArgType = []Instance + type InstanceListGetInstancesAttributeType = *[]Instance + type InstanceListGetInstancesRetType = []Instance + type InstanceStatus string + const INSTANCESTATUS_ACTIVE + const INSTANCESTATUS_DELETING + const INSTANCESTATUS_ERROR + const INSTANCESTATUS_RECONCILING + func NewInstanceStatusFromValue(v InstanceStatus) (*InstanceStatus, error) + func (v *InstanceStatus) UnmarshalJSON(src []byte) error + func (v InstanceStatus) IsValid() bool + func (v InstanceStatus) Ptr() *InstanceStatus + type Kubeconfig struct + Kubeconfig KubeconfigGetKubeconfigAttributeType + func NewKubeconfig(kubeconfig KubeconfigGetKubeconfigArgType) *Kubeconfig + func NewKubeconfigWithDefaults() *Kubeconfig + func (o *Kubeconfig) GetKubeconfig() (ret KubeconfigGetKubeconfigRetType) + func (o *Kubeconfig) GetKubeconfigOk() (ret KubeconfigGetKubeconfigRetType, ok bool) + func (o *Kubeconfig) SetKubeconfig(v KubeconfigGetKubeconfigRetType) + func (o Kubeconfig) ToMap() (map[string]interface{}, error) + type KubeconfigGetKubeconfigArgType = map[string]interface + type KubeconfigGetKubeconfigAttributeType = *map[string]interface + type KubeconfigGetKubeconfigRetType = map[string]interface + type ListPlansGlobalRequest struct + func (r ListPlansGlobalRequest) Execute() (*PlanList, error) + type ListPlansProjectRequest struct + func (r ListPlansProjectRequest) Execute() (*PlanList, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, 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 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 NullableInstanceList struct + func NewNullableInstanceList(val *InstanceList) *NullableInstanceList + func (v *NullableInstanceList) Set(val *InstanceList) + func (v *NullableInstanceList) UnmarshalJSON(src []byte) error + func (v *NullableInstanceList) Unset() + func (v NullableInstanceList) Get() *InstanceList + func (v NullableInstanceList) IsSet() bool + func (v NullableInstanceList) MarshalJSON() ([]byte, error) + type NullableInstanceStatus struct + func NewNullableInstanceStatus(val *InstanceStatus) *NullableInstanceStatus + func (v *NullableInstanceStatus) Set(val *InstanceStatus) + func (v *NullableInstanceStatus) UnmarshalJSON(src []byte) error + func (v *NullableInstanceStatus) Unset() + func (v NullableInstanceStatus) Get() *InstanceStatus + func (v NullableInstanceStatus) IsSet() bool + func (v NullableInstanceStatus) 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 NullableKubeconfig struct + func NewNullableKubeconfig(val *Kubeconfig) *NullableKubeconfig + func (v *NullableKubeconfig) Set(val *Kubeconfig) + func (v *NullableKubeconfig) UnmarshalJSON(src []byte) error + func (v *NullableKubeconfig) Unset() + func (v NullableKubeconfig) Get() *Kubeconfig + func (v NullableKubeconfig) IsSet() bool + func (v NullableKubeconfig) 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 NullablePlanList struct + func NewNullablePlanList(val *PlanList) *NullablePlanList + func (v *NullablePlanList) Set(val *PlanList) + func (v *NullablePlanList) UnmarshalJSON(src []byte) error + func (v *NullablePlanList) Unset() + func (v NullablePlanList) Get() *PlanList + func (v NullablePlanList) IsSet() bool + func (v NullablePlanList) MarshalJSON() ([]byte, error) + type NullablePostInstancesPayload struct + func NewNullablePostInstancesPayload(val *PostInstancesPayload) *NullablePostInstancesPayload + func (v *NullablePostInstancesPayload) Set(val *PostInstancesPayload) + func (v *NullablePostInstancesPayload) UnmarshalJSON(src []byte) error + func (v *NullablePostInstancesPayload) Unset() + func (v NullablePostInstancesPayload) Get() *PostInstancesPayload + func (v NullablePostInstancesPayload) IsSet() bool + func (v NullablePostInstancesPayload) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableToken struct + func NewNullableToken(val *Token) *NullableToken + func (v *NullableToken) Set(val *Token) + func (v *NullableToken) UnmarshalJSON(src []byte) error + func (v *NullableToken) Unset() + func (v NullableToken) Get() *Token + func (v NullableToken) IsSet() bool + func (v NullableToken) MarshalJSON() ([]byte, error) + type NullableUnauthorizedRequest struct + func NewNullableUnauthorizedRequest(val *UnauthorizedRequest) *NullableUnauthorizedRequest + func (v *NullableUnauthorizedRequest) Set(val *UnauthorizedRequest) + func (v *NullableUnauthorizedRequest) UnmarshalJSON(src []byte) error + func (v *NullableUnauthorizedRequest) Unset() + func (v NullableUnauthorizedRequest) Get() *UnauthorizedRequest + func (v NullableUnauthorizedRequest) IsSet() bool + func (v NullableUnauthorizedRequest) MarshalJSON() ([]byte, error) + type NullableUpdateInstanceByNamePayload struct + func NewNullableUpdateInstanceByNamePayload(val *UpdateInstanceByNamePayload) *NullableUpdateInstanceByNamePayload + func (v *NullableUpdateInstanceByNamePayload) Set(val *UpdateInstanceByNamePayload) + func (v *NullableUpdateInstanceByNamePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateInstanceByNamePayload) Unset() + func (v NullableUpdateInstanceByNamePayload) Get() *UpdateInstanceByNamePayload + func (v NullableUpdateInstanceByNamePayload) IsSet() bool + func (v NullableUpdateInstanceByNamePayload) 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 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 NullableValue struct + func (v *NullableValue[T]) Set(val *T) + func (v *NullableValue[T]) Unset() + func (v NullableValue[T]) Get() *T + func (v NullableValue[T]) IsSet() bool + type Plan struct + Description PlanGetDescriptionAttributeType + Id PlanGetIdAttributeType + MaxEdgeHosts PlanGetMaxEdgeHostsAttributeType + Name PlanGetNameAttributeType + func NewPlan() *Plan + func NewPlanWithDefaults() *Plan + func (o *Plan) GetDescription() (res PlanGetDescriptionRetType) + func (o *Plan) GetDescriptionOk() (ret PlanGetDescriptionRetType, ok bool) + func (o *Plan) GetId() (res PlanGetIdRetType) + func (o *Plan) GetIdOk() (ret PlanGetIdRetType, ok bool) + func (o *Plan) GetMaxEdgeHosts() (res PlanGetMaxEdgeHostsRetType) + func (o *Plan) GetMaxEdgeHostsOk() (ret PlanGetMaxEdgeHostsRetType, ok bool) + func (o *Plan) GetName() (res PlanGetNameRetType) + func (o *Plan) GetNameOk() (ret PlanGetNameRetType, ok bool) + func (o *Plan) HasDescription() bool + func (o *Plan) HasId() bool + func (o *Plan) HasMaxEdgeHosts() bool + func (o *Plan) HasName() bool + func (o *Plan) SetDescription(v PlanGetDescriptionRetType) + func (o *Plan) SetId(v PlanGetIdRetType) + func (o *Plan) SetMaxEdgeHosts(v PlanGetMaxEdgeHostsRetType) + func (o *Plan) SetName(v PlanGetNameRetType) + func (o Plan) ToMap() (map[string]interface{}, error) + type PlanGetDescriptionArgType = string + type PlanGetDescriptionAttributeType = *string + type PlanGetDescriptionRetType = string + type PlanGetIdArgType = string + type PlanGetIdAttributeType = *string + type PlanGetIdRetType = string + type PlanGetMaxEdgeHostsArgType = int64 + type PlanGetMaxEdgeHostsAttributeType = *int64 + type PlanGetMaxEdgeHostsRetType = int64 + type PlanGetNameArgType = string + type PlanGetNameAttributeType = *string + type PlanGetNameRetType = string + type PlanList struct + ValidPlans PlanListGetValidPlansAttributeType + func NewPlanList() *PlanList + func NewPlanListWithDefaults() *PlanList + func (o *PlanList) GetValidPlans() (res PlanListGetValidPlansRetType) + func (o *PlanList) GetValidPlansOk() (ret PlanListGetValidPlansRetType, ok bool) + func (o *PlanList) HasValidPlans() bool + func (o *PlanList) SetValidPlans(v PlanListGetValidPlansRetType) + func (o PlanList) ToMap() (map[string]interface{}, error) + type PlanListGetValidPlansArgType = []Plan + type PlanListGetValidPlansAttributeType = *[]Plan + type PlanListGetValidPlansRetType = []Plan + type PostInstancesPayload struct + Description PostInstancesPayloadGetDescriptionAttributeType + DisplayName PostInstancesPayloadGetDisplayNameAttributeType + PlanId PostInstancesPayloadGetPlanIdAttributeType + func NewPostInstancesPayload(displayName PostInstancesPayloadGetDisplayNameArgType, ...) *PostInstancesPayload + func NewPostInstancesPayloadWithDefaults() *PostInstancesPayload + func (o *PostInstancesPayload) GetDescription() (res PostInstancesPayloadGetDescriptionRetType) + func (o *PostInstancesPayload) GetDescriptionOk() (ret PostInstancesPayloadGetDescriptionRetType, ok bool) + func (o *PostInstancesPayload) GetDisplayName() (ret PostInstancesPayloadGetDisplayNameRetType) + func (o *PostInstancesPayload) GetDisplayNameOk() (ret PostInstancesPayloadGetDisplayNameRetType, ok bool) + func (o *PostInstancesPayload) GetPlanId() (ret PostInstancesPayloadGetPlanIdRetType) + func (o *PostInstancesPayload) GetPlanIdOk() (ret PostInstancesPayloadGetPlanIdRetType, ok bool) + func (o *PostInstancesPayload) HasDescription() bool + func (o *PostInstancesPayload) SetDescription(v PostInstancesPayloadGetDescriptionRetType) + func (o *PostInstancesPayload) SetDisplayName(v PostInstancesPayloadGetDisplayNameRetType) + func (o *PostInstancesPayload) SetPlanId(v PostInstancesPayloadGetPlanIdRetType) + func (o PostInstancesPayload) ToMap() (map[string]interface{}, error) + type PostInstancesPayloadGetDescriptionArgType = string + type PostInstancesPayloadGetDescriptionAttributeType = *string + type PostInstancesPayloadGetDescriptionRetType = string + type PostInstancesPayloadGetDisplayNameArgType = string + type PostInstancesPayloadGetDisplayNameAttributeType = *string + type PostInstancesPayloadGetDisplayNameRetType = string + type PostInstancesPayloadGetPlanIdArgType = string + type PostInstancesPayloadGetPlanIdAttributeType = *string + type PostInstancesPayloadGetPlanIdRetType = string + type PostInstancesRequest struct + func (r PostInstancesRequest) Execute() (*Instance, error) + func (r PostInstancesRequest) PostInstancesPayload(postInstancesPayload PostInstancesPayload) ApiPostInstancesRequest + type Token struct + Token TokenGetTokenAttributeType + func NewToken(token TokenGetTokenArgType) *Token + func NewTokenWithDefaults() *Token + func (o *Token) GetToken() (ret TokenGetTokenRetType) + func (o *Token) GetTokenOk() (ret TokenGetTokenRetType, ok bool) + func (o *Token) SetToken(v TokenGetTokenRetType) + func (o Token) ToMap() (map[string]interface{}, error) + type TokenGetTokenArgType = string + type TokenGetTokenAttributeType = *string + type TokenGetTokenRetType = string + type UnauthorizedRequest struct + Code UnauthorizedRequestGetCodeAttributeType + Message UnauthorizedRequestGetMessageAttributeType + func NewUnauthorizedRequest() *UnauthorizedRequest + func NewUnauthorizedRequestWithDefaults() *UnauthorizedRequest + func (o *UnauthorizedRequest) GetCode() (res UnauthorizedRequestGetCodeRetType) + func (o *UnauthorizedRequest) GetCodeOk() (ret UnauthorizedRequestGetCodeRetType, ok bool) + func (o *UnauthorizedRequest) GetMessage() (res UnauthorizedRequestGetMessageRetType) + func (o *UnauthorizedRequest) GetMessageOk() (ret UnauthorizedRequestGetMessageRetType, ok bool) + func (o *UnauthorizedRequest) HasCode() bool + func (o *UnauthorizedRequest) HasMessage() bool + func (o *UnauthorizedRequest) SetCode(v UnauthorizedRequestGetCodeRetType) + func (o *UnauthorizedRequest) SetMessage(v UnauthorizedRequestGetMessageRetType) + func (o UnauthorizedRequest) ToMap() (map[string]interface{}, error) + type UnauthorizedRequestGetCodeArgType = string + type UnauthorizedRequestGetCodeAttributeType = *string + type UnauthorizedRequestGetCodeRetType = string + type UnauthorizedRequestGetMessageArgType = string + type UnauthorizedRequestGetMessageAttributeType = *string + type UnauthorizedRequestGetMessageRetType = string + type UpdateInstanceByNamePayload struct + Description UpdateInstanceByNamePayloadGetDescriptionAttributeType + PlanId UpdateInstanceByNamePayloadGetPlanIdAttributeType + func NewUpdateInstanceByNamePayload() *UpdateInstanceByNamePayload + func NewUpdateInstanceByNamePayloadWithDefaults() *UpdateInstanceByNamePayload + func (o *UpdateInstanceByNamePayload) GetDescription() (res UpdateInstanceByNamePayloadGetDescriptionRetType) + func (o *UpdateInstanceByNamePayload) GetDescriptionOk() (ret UpdateInstanceByNamePayloadGetDescriptionRetType, ok bool) + func (o *UpdateInstanceByNamePayload) GetPlanId() (res UpdateInstanceByNamePayloadGetPlanIdRetType) + func (o *UpdateInstanceByNamePayload) GetPlanIdOk() (ret UpdateInstanceByNamePayloadGetPlanIdRetType, ok bool) + func (o *UpdateInstanceByNamePayload) HasDescription() bool + func (o *UpdateInstanceByNamePayload) HasPlanId() bool + func (o *UpdateInstanceByNamePayload) SetDescription(v UpdateInstanceByNamePayloadGetDescriptionRetType) + func (o *UpdateInstanceByNamePayload) SetPlanId(v UpdateInstanceByNamePayloadGetPlanIdRetType) + func (o UpdateInstanceByNamePayload) ToMap() (map[string]interface{}, error) + type UpdateInstanceByNamePayloadGetDescriptionArgType = string + type UpdateInstanceByNamePayloadGetDescriptionAttributeType = *string + type UpdateInstanceByNamePayloadGetDescriptionRetType = string + type UpdateInstanceByNamePayloadGetPlanIdArgType = string + type UpdateInstanceByNamePayloadGetPlanIdAttributeType = *string + type UpdateInstanceByNamePayloadGetPlanIdRetType = string + type UpdateInstanceByNameRequest struct + func (r UpdateInstanceByNameRequest) Execute() error + func (r UpdateInstanceByNameRequest) UpdateInstanceByNamePayload(updateInstanceByNamePayload UpdateInstanceByNamePayload) ApiUpdateInstanceByNameRequest + type UpdateInstancePayload struct + Description UpdateInstancePayloadGetDescriptionAttributeType + PlanId UpdateInstancePayloadGetPlanIdAttributeType + func NewUpdateInstancePayload() *UpdateInstancePayload + func NewUpdateInstancePayloadWithDefaults() *UpdateInstancePayload + func (o *UpdateInstancePayload) GetDescription() (res UpdateInstancePayloadGetDescriptionRetType) + func (o *UpdateInstancePayload) GetDescriptionOk() (ret UpdateInstancePayloadGetDescriptionRetType, ok bool) + func (o *UpdateInstancePayload) GetPlanId() (res UpdateInstancePayloadGetPlanIdRetType) + func (o *UpdateInstancePayload) GetPlanIdOk() (ret UpdateInstancePayloadGetPlanIdRetType, ok bool) + func (o *UpdateInstancePayload) HasDescription() bool + func (o *UpdateInstancePayload) HasPlanId() bool + func (o *UpdateInstancePayload) SetDescription(v UpdateInstancePayloadGetDescriptionRetType) + func (o *UpdateInstancePayload) SetPlanId(v UpdateInstancePayloadGetPlanIdRetType) + func (o UpdateInstancePayload) ToMap() (map[string]interface{}, error) + type UpdateInstancePayloadGetDescriptionArgType = string + type UpdateInstancePayloadGetDescriptionAttributeType = *string + type UpdateInstancePayloadGetDescriptionRetType = string + type UpdateInstancePayloadGetPlanIdArgType = string + type UpdateInstancePayloadGetPlanIdAttributeType = *string + type UpdateInstancePayloadGetPlanIdRetType = string + type UpdateInstanceRequest struct + func (r UpdateInstanceRequest) Execute() error + func (r UpdateInstanceRequest) UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest + type User struct + Email UserGetEmailAttributeType + InternalId UserGetInternalIdAttributeType + func NewUser(email UserGetEmailArgType, internalId UserGetInternalIdArgType) *User + func NewUserWithDefaults() *User + func (o *User) GetEmail() (ret UserGetEmailRetType) + func (o *User) GetEmailOk() (ret UserGetEmailRetType, ok bool) + func (o *User) GetInternalId() (ret UserGetInternalIdRetType) + func (o *User) GetInternalIdOk() (ret UserGetInternalIdRetType, ok bool) + func (o *User) SetEmail(v UserGetEmailRetType) + func (o *User) SetInternalId(v UserGetInternalIdRetType) + func (o User) ToMap() (map[string]interface{}, error) + type UserGetEmailArgType = string + type UserGetEmailAttributeType = *string + type UserGetEmailRetType = string + type UserGetInternalIdArgType = string + type UserGetInternalIdAttributeType = *string + type UserGetInternalIdRetType = string