Versions in this module Expand all Collapse all v0 v0.5.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 ApiCreateInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest + func (r ApiCreateInstanceRequest) Execute() (*Instance, error) + type ApiDeleteInstanceByNameRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceByNameRequest) Execute() error + type ApiDeleteInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceRequest) Execute() error + type ApiGetInstanceByNameRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceByNameRequest) Execute() (*Instance, error) + type ApiGetInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceRequest) Execute() (*Instance, error) + type ApiGetKubeconfigByInstanceIdRequest struct + ApiService DefaultAPI + func (r ApiGetKubeconfigByInstanceIdRequest) Execute() (*Kubeconfig, error) + func (r ApiGetKubeconfigByInstanceIdRequest) ExpirationSeconds(expirationSeconds int64) ApiGetKubeconfigByInstanceIdRequest + type ApiGetKubeconfigByInstanceNameRequest struct + ApiService DefaultAPI + func (r ApiGetKubeconfigByInstanceNameRequest) Execute() (*Kubeconfig, error) + func (r ApiGetKubeconfigByInstanceNameRequest) ExpirationSeconds(expirationSeconds int64) ApiGetKubeconfigByInstanceNameRequest + type ApiGetTokenByInstanceIdRequest struct + ApiService DefaultAPI + func (r ApiGetTokenByInstanceIdRequest) Execute() (*Token, error) + func (r ApiGetTokenByInstanceIdRequest) ExpirationSeconds(expirationSeconds int64) ApiGetTokenByInstanceIdRequest + type ApiGetTokenByInstanceNameRequest struct + ApiService DefaultAPI + func (r ApiGetTokenByInstanceNameRequest) Execute() (*Token, error) + func (r ApiGetTokenByInstanceNameRequest) ExpirationSeconds(expirationSeconds int64) ApiGetTokenByInstanceNameRequest + type ApiListInstancesRequest struct + ApiService DefaultAPI + func (r ApiListInstancesRequest) Execute() (*InstanceList, error) + type ApiListPlansGlobalRequest struct + ApiService DefaultAPI + func (r ApiListPlansGlobalRequest) Execute() (*PlanList, error) + type ApiListPlansProjectRequest struct + ApiService DefaultAPI + func (r ApiListPlansProjectRequest) Execute() (*PlanList, error) + type ApiUpdateInstanceByNameRequest struct + ApiService DefaultAPI + func (r ApiUpdateInstanceByNameRequest) Execute() error + func (r ApiUpdateInstanceByNameRequest) UpdateInstanceByNamePayload(updateInstanceByNamePayload UpdateInstanceByNamePayload) ApiUpdateInstanceByNameRequest + type ApiUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiUpdateInstanceRequest) Execute() error + func (r ApiUpdateInstanceRequest) UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest + type BadRequest struct + Code *string + Message *string + func NewBadRequest() *BadRequest + func NewBadRequestWithDefaults() *BadRequest + func (o *BadRequest) GetCode() string + func (o *BadRequest) GetCodeOk() (*string, bool) + func (o *BadRequest) GetMessage() string + func (o *BadRequest) GetMessageOk() (*string, bool) + func (o *BadRequest) HasCode() bool + func (o *BadRequest) HasMessage() bool + func (o *BadRequest) SetCode(v string) + func (o *BadRequest) SetMessage(v string) + func (o BadRequest) MarshalJSON() ([]byte, error) + func (o BadRequest) ToMap() (map[string]interface{}, error) + type CreateInstancePayload struct + Description *string + DisplayName string + PlanId string + func NewCreateInstancePayload(displayName string, planId string) *CreateInstancePayload + func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload + func (o *CreateInstancePayload) GetDescription() string + func (o *CreateInstancePayload) GetDescriptionOk() (*string, bool) + func (o *CreateInstancePayload) GetDisplayName() string + func (o *CreateInstancePayload) GetDisplayNameOk() (*string, bool) + func (o *CreateInstancePayload) GetPlanId() string + func (o *CreateInstancePayload) GetPlanIdOk() (*string, bool) + func (o *CreateInstancePayload) HasDescription() bool + func (o *CreateInstancePayload) SetDescription(v string) + func (o *CreateInstancePayload) SetDisplayName(v string) + 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 DefaultAPI interface + CreateInstance func(ctx context.Context, projectId string, regionId string) ApiCreateInstanceRequest + CreateInstanceExecute func(r ApiCreateInstanceRequest) (*Instance, error) + 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(r ApiDeleteInstanceByNameRequest) error + DeleteInstanceExecute func(r ApiDeleteInstanceRequest) 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(r ApiGetInstanceByNameRequest) (*Instance, error) + GetInstanceExecute func(r ApiGetInstanceRequest) (*Instance, error) + GetKubeconfigByInstanceId func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetKubeconfigByInstanceIdRequest + GetKubeconfigByInstanceIdExecute func(r ApiGetKubeconfigByInstanceIdRequest) (*Kubeconfig, error) + GetKubeconfigByInstanceName func(ctx context.Context, projectId string, regionId string, displayName string) ApiGetKubeconfigByInstanceNameRequest + GetKubeconfigByInstanceNameExecute func(r ApiGetKubeconfigByInstanceNameRequest) (*Kubeconfig, error) + GetTokenByInstanceId func(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetTokenByInstanceIdRequest + GetTokenByInstanceIdExecute func(r ApiGetTokenByInstanceIdRequest) (*Token, error) + GetTokenByInstanceName func(ctx context.Context, projectId string, regionId string, displayName string) ApiGetTokenByInstanceNameRequest + GetTokenByInstanceNameExecute func(r ApiGetTokenByInstanceNameRequest) (*Token, error) + ListInstances func(ctx context.Context, projectId string, regionId string) ApiListInstancesRequest + ListInstancesExecute func(r ApiListInstancesRequest) (*InstanceList, error) + ListPlansGlobal func(ctx context.Context) ApiListPlansGlobalRequest + ListPlansGlobalExecute func(r ApiListPlansGlobalRequest) (*PlanList, error) + ListPlansProject func(ctx context.Context, projectId string) ApiListPlansProjectRequest + ListPlansProjectExecute func(r ApiListPlansProjectRequest) (*PlanList, 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(r ApiUpdateInstanceByNameRequest) error + UpdateInstanceExecute func(r ApiUpdateInstanceRequest) error + type DefaultAPIService service + func (a *DefaultAPIService) CreateInstance(ctx context.Context, projectId string, regionId string) ApiCreateInstanceRequest + func (a *DefaultAPIService) CreateInstanceExecute(r ApiCreateInstanceRequest) (*Instance, error) + func (a *DefaultAPIService) DeleteInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + func (a *DefaultAPIService) DeleteInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiDeleteInstanceByNameRequest + func (a *DefaultAPIService) DeleteInstanceByNameExecute(r ApiDeleteInstanceByNameRequest) error + func (a *DefaultAPIService) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a *DefaultAPIService) GetInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + func (a *DefaultAPIService) GetInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetInstanceByNameRequest + func (a *DefaultAPIService) GetInstanceByNameExecute(r ApiGetInstanceByNameRequest) (*Instance, error) + func (a *DefaultAPIService) GetInstanceExecute(r ApiGetInstanceRequest) (*Instance, error) + func (a *DefaultAPIService) GetKubeconfigByInstanceId(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetKubeconfigByInstanceIdRequest + func (a *DefaultAPIService) GetKubeconfigByInstanceIdExecute(r ApiGetKubeconfigByInstanceIdRequest) (*Kubeconfig, error) + func (a *DefaultAPIService) GetKubeconfigByInstanceName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetKubeconfigByInstanceNameRequest + func (a *DefaultAPIService) GetKubeconfigByInstanceNameExecute(r ApiGetKubeconfigByInstanceNameRequest) (*Kubeconfig, error) + func (a *DefaultAPIService) GetTokenByInstanceId(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetTokenByInstanceIdRequest + func (a *DefaultAPIService) GetTokenByInstanceIdExecute(r ApiGetTokenByInstanceIdRequest) (*Token, error) + func (a *DefaultAPIService) GetTokenByInstanceName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetTokenByInstanceNameRequest + func (a *DefaultAPIService) GetTokenByInstanceNameExecute(r ApiGetTokenByInstanceNameRequest) (*Token, error) + func (a *DefaultAPIService) ListInstances(ctx context.Context, projectId string, regionId string) ApiListInstancesRequest + func (a *DefaultAPIService) ListInstancesExecute(r ApiListInstancesRequest) (*InstanceList, error) + func (a *DefaultAPIService) ListPlansGlobal(ctx context.Context) ApiListPlansGlobalRequest + func (a *DefaultAPIService) ListPlansGlobalExecute(r ApiListPlansGlobalRequest) (*PlanList, error) + func (a *DefaultAPIService) ListPlansProject(ctx context.Context, projectId string) ApiListPlansProjectRequest + func (a *DefaultAPIService) ListPlansProjectExecute(r ApiListPlansProjectRequest) (*PlanList, error) + func (a *DefaultAPIService) UpdateInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateInstanceRequest + func (a *DefaultAPIService) UpdateInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiUpdateInstanceByNameRequest + func (a *DefaultAPIService) UpdateInstanceByNameExecute(r ApiUpdateInstanceByNameRequest) error + func (a *DefaultAPIService) UpdateInstanceExecute(r ApiUpdateInstanceRequest) error + type DefaultAPIServiceMock struct + CreateInstanceExecuteMock *func(r ApiCreateInstanceRequest) (*Instance, error) + DeleteInstanceByNameExecuteMock *func(r ApiDeleteInstanceByNameRequest) error + DeleteInstanceExecuteMock *func(r ApiDeleteInstanceRequest) error + GetInstanceByNameExecuteMock *func(r ApiGetInstanceByNameRequest) (*Instance, error) + GetInstanceExecuteMock *func(r ApiGetInstanceRequest) (*Instance, error) + GetKubeconfigByInstanceIdExecuteMock *func(r ApiGetKubeconfigByInstanceIdRequest) (*Kubeconfig, error) + GetKubeconfigByInstanceNameExecuteMock *func(r ApiGetKubeconfigByInstanceNameRequest) (*Kubeconfig, error) + GetTokenByInstanceIdExecuteMock *func(r ApiGetTokenByInstanceIdRequest) (*Token, error) + GetTokenByInstanceNameExecuteMock *func(r ApiGetTokenByInstanceNameRequest) (*Token, error) + ListInstancesExecuteMock *func(r ApiListInstancesRequest) (*InstanceList, error) + ListPlansGlobalExecuteMock *func(r ApiListPlansGlobalRequest) (*PlanList, error) + ListPlansProjectExecuteMock *func(r ApiListPlansProjectRequest) (*PlanList, error) + UpdateInstanceByNameExecuteMock *func(r ApiUpdateInstanceByNameRequest) error + UpdateInstanceExecuteMock *func(r ApiUpdateInstanceRequest) error + func (a DefaultAPIServiceMock) CreateInstance(ctx context.Context, projectId string, regionId string) ApiCreateInstanceRequest + func (a DefaultAPIServiceMock) CreateInstanceExecute(r ApiCreateInstanceRequest) (*Instance, error) + func (a DefaultAPIServiceMock) DeleteInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiDeleteInstanceRequest + func (a DefaultAPIServiceMock) DeleteInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiDeleteInstanceByNameRequest + func (a DefaultAPIServiceMock) DeleteInstanceByNameExecute(r ApiDeleteInstanceByNameRequest) error + func (a DefaultAPIServiceMock) DeleteInstanceExecute(r ApiDeleteInstanceRequest) error + func (a DefaultAPIServiceMock) GetInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetInstanceRequest + func (a DefaultAPIServiceMock) GetInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetInstanceByNameRequest + func (a DefaultAPIServiceMock) GetInstanceByNameExecute(r ApiGetInstanceByNameRequest) (*Instance, error) + func (a DefaultAPIServiceMock) GetInstanceExecute(r ApiGetInstanceRequest) (*Instance, error) + func (a DefaultAPIServiceMock) GetKubeconfigByInstanceId(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetKubeconfigByInstanceIdRequest + func (a DefaultAPIServiceMock) GetKubeconfigByInstanceIdExecute(r ApiGetKubeconfigByInstanceIdRequest) (*Kubeconfig, error) + func (a DefaultAPIServiceMock) GetKubeconfigByInstanceName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetKubeconfigByInstanceNameRequest + func (a DefaultAPIServiceMock) GetKubeconfigByInstanceNameExecute(r ApiGetKubeconfigByInstanceNameRequest) (*Kubeconfig, error) + func (a DefaultAPIServiceMock) GetTokenByInstanceId(ctx context.Context, projectId string, regionId string, instanceId string) ApiGetTokenByInstanceIdRequest + func (a DefaultAPIServiceMock) GetTokenByInstanceIdExecute(r ApiGetTokenByInstanceIdRequest) (*Token, error) + func (a DefaultAPIServiceMock) GetTokenByInstanceName(ctx context.Context, projectId string, regionId string, displayName string) ApiGetTokenByInstanceNameRequest + func (a DefaultAPIServiceMock) GetTokenByInstanceNameExecute(r ApiGetTokenByInstanceNameRequest) (*Token, error) + func (a DefaultAPIServiceMock) ListInstances(ctx context.Context, projectId string, regionId string) ApiListInstancesRequest + func (a DefaultAPIServiceMock) ListInstancesExecute(r ApiListInstancesRequest) (*InstanceList, error) + func (a DefaultAPIServiceMock) ListPlansGlobal(ctx context.Context) ApiListPlansGlobalRequest + func (a DefaultAPIServiceMock) ListPlansGlobalExecute(r ApiListPlansGlobalRequest) (*PlanList, error) + func (a DefaultAPIServiceMock) ListPlansProject(ctx context.Context, projectId string) ApiListPlansProjectRequest + func (a DefaultAPIServiceMock) ListPlansProjectExecute(r ApiListPlansProjectRequest) (*PlanList, error) + func (a DefaultAPIServiceMock) UpdateInstance(ctx context.Context, projectId string, regionId string, instanceId string) ApiUpdateInstanceRequest + func (a DefaultAPIServiceMock) UpdateInstanceByName(ctx context.Context, projectId string, regionId string, displayName string) ApiUpdateInstanceByNameRequest + func (a DefaultAPIServiceMock) UpdateInstanceByNameExecute(r ApiUpdateInstanceByNameRequest) error + func (a DefaultAPIServiceMock) UpdateInstanceExecute(r ApiUpdateInstanceRequest) error + type Instance struct + Created time.Time + Description *string + DisplayName string + FrontendUrl string + Id string + PlanId string + Status string + func NewInstance(created time.Time, displayName string, frontendUrl string, id string, ...) *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetCreated() time.Time + func (o *Instance) GetCreatedOk() (*time.Time, bool) + func (o *Instance) GetDescription() string + func (o *Instance) GetDescriptionOk() (*string, bool) + func (o *Instance) GetDisplayName() string + func (o *Instance) GetDisplayNameOk() (*string, bool) + func (o *Instance) GetFrontendUrl() string + func (o *Instance) GetFrontendUrlOk() (*string, bool) + func (o *Instance) GetId() string + func (o *Instance) GetIdOk() (*string, bool) + func (o *Instance) GetPlanId() string + func (o *Instance) GetPlanIdOk() (*string, bool) + func (o *Instance) GetStatus() string + func (o *Instance) GetStatusOk() (*string, bool) + func (o *Instance) HasDescription() bool + func (o *Instance) SetCreated(v time.Time) + func (o *Instance) SetDescription(v string) + func (o *Instance) SetDisplayName(v string) + func (o *Instance) SetFrontendUrl(v string) + func (o *Instance) SetId(v string) + func (o *Instance) SetPlanId(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 InstanceList struct + Instances []Instance + func NewInstanceList(instances []Instance) *InstanceList + func NewInstanceListWithDefaults() *InstanceList + func (o *InstanceList) GetInstances() []Instance + func (o *InstanceList) GetInstancesOk() ([]Instance, bool) + func (o *InstanceList) SetInstances(v []Instance) + func (o *InstanceList) UnmarshalJSON(data []byte) (err error) + func (o InstanceList) MarshalJSON() ([]byte, error) + func (o InstanceList) ToMap() (map[string]interface{}, error) + type Kubeconfig struct + Kubeconfig map[string]interface{} + func NewKubeconfig(kubeconfig map[string]interface{}) *Kubeconfig + func NewKubeconfigWithDefaults() *Kubeconfig + func (o *Kubeconfig) GetKubeconfig() map[string]interface{} + func (o *Kubeconfig) GetKubeconfigOk() (map[string]interface{}, bool) + func (o *Kubeconfig) SetKubeconfig(v map[string]interface{}) + func (o *Kubeconfig) UnmarshalJSON(data []byte) (err error) + func (o Kubeconfig) MarshalJSON() ([]byte, error) + func (o Kubeconfig) ToMap() (map[string]interface{}, 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 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 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 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 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 Plan struct + Description *string + Id *string + MaxEdgeHosts *int32 + Name *string + func NewPlan() *Plan + func NewPlanWithDefaults() *Plan + func (o *Plan) GetDescription() string + func (o *Plan) GetDescriptionOk() (*string, bool) + func (o *Plan) GetId() string + func (o *Plan) GetIdOk() (*string, bool) + func (o *Plan) GetMaxEdgeHosts() int32 + func (o *Plan) GetMaxEdgeHostsOk() (*int32, bool) + func (o *Plan) GetName() string + func (o *Plan) GetNameOk() (*string, 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 string) + func (o *Plan) SetId(v string) + func (o *Plan) SetMaxEdgeHosts(v int32) + func (o *Plan) SetName(v string) + func (o Plan) MarshalJSON() ([]byte, error) + func (o Plan) ToMap() (map[string]interface{}, error) + type PlanList struct + ValidPlans []Plan + func NewPlanList() *PlanList + func NewPlanListWithDefaults() *PlanList + func (o *PlanList) GetValidPlans() []Plan + func (o *PlanList) GetValidPlansOk() ([]Plan, bool) + func (o *PlanList) HasValidPlans() bool + func (o *PlanList) SetValidPlans(v []Plan) + func (o PlanList) MarshalJSON() ([]byte, error) + func (o PlanList) ToMap() (map[string]interface{}, error) + type Token struct + Token string + func NewToken(token string) *Token + func NewTokenWithDefaults() *Token + func (o *Token) GetToken() string + func (o *Token) GetTokenOk() (*string, bool) + func (o *Token) SetToken(v string) + func (o *Token) UnmarshalJSON(data []byte) (err error) + func (o Token) MarshalJSON() ([]byte, error) + func (o Token) ToMap() (map[string]interface{}, error) + type UnauthorizedRequest struct + Code *string + Message *string + func NewUnauthorizedRequest() *UnauthorizedRequest + func NewUnauthorizedRequestWithDefaults() *UnauthorizedRequest + func (o *UnauthorizedRequest) GetCode() string + func (o *UnauthorizedRequest) GetCodeOk() (*string, bool) + func (o *UnauthorizedRequest) GetMessage() string + func (o *UnauthorizedRequest) GetMessageOk() (*string, bool) + func (o *UnauthorizedRequest) HasCode() bool + func (o *UnauthorizedRequest) HasMessage() bool + func (o *UnauthorizedRequest) SetCode(v string) + func (o *UnauthorizedRequest) SetMessage(v string) + func (o UnauthorizedRequest) MarshalJSON() ([]byte, error) + func (o UnauthorizedRequest) ToMap() (map[string]interface{}, error) + type UpdateInstanceByNamePayload struct + Description *string + PlanId *string + func NewUpdateInstanceByNamePayload() *UpdateInstanceByNamePayload + func NewUpdateInstanceByNamePayloadWithDefaults() *UpdateInstanceByNamePayload + func (o *UpdateInstanceByNamePayload) GetDescription() string + func (o *UpdateInstanceByNamePayload) GetDescriptionOk() (*string, bool) + func (o *UpdateInstanceByNamePayload) GetPlanId() string + func (o *UpdateInstanceByNamePayload) GetPlanIdOk() (*string, bool) + func (o *UpdateInstanceByNamePayload) HasDescription() bool + func (o *UpdateInstanceByNamePayload) HasPlanId() bool + func (o *UpdateInstanceByNamePayload) SetDescription(v string) + func (o *UpdateInstanceByNamePayload) SetPlanId(v string) + func (o UpdateInstanceByNamePayload) MarshalJSON() ([]byte, error) + func (o UpdateInstanceByNamePayload) ToMap() (map[string]interface{}, error) + type UpdateInstancePayload struct + Description *string + PlanId *string + func NewUpdateInstancePayload() *UpdateInstancePayload + func NewUpdateInstancePayloadWithDefaults() *UpdateInstancePayload + func (o *UpdateInstancePayload) GetDescription() string + func (o *UpdateInstancePayload) GetDescriptionOk() (*string, bool) + func (o *UpdateInstancePayload) GetPlanId() string + func (o *UpdateInstancePayload) GetPlanIdOk() (*string, bool) + func (o *UpdateInstancePayload) HasDescription() bool + func (o *UpdateInstancePayload) HasPlanId() bool + func (o *UpdateInstancePayload) SetDescription(v string) + func (o *UpdateInstancePayload) SetPlanId(v string) + func (o UpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o UpdateInstancePayload) ToMap() (map[string]interface{}, error) + type User struct + Email string + InternalId string + func NewUser(email string, internalId string) *User + func NewUserWithDefaults() *User + func (o *User) GetEmail() string + func (o *User) GetEmailOk() (*string, bool) + func (o *User) GetInternalId() string + func (o *User) GetInternalIdOk() (*string, bool) + func (o *User) SetEmail(v string) + func (o *User) SetInternalId(v string) + func (o *User) UnmarshalJSON(data []byte) (err error) + func (o User) MarshalJSON() ([]byte, error) + func (o User) ToMap() (map[string]interface{}, error)