openapi

package module
v0.2.2 Latest Latest
Warning

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

Go to latest
Published: Nov 25, 2021 License: Apache-2.0 Imports: 22 Imported by: 4

README

Go API client for openapi

Statehub API description

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: v0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./openapi"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sw.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identifield by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
ClusterApi ClusterCheckToken Get /v0/clusters/{name}/token Check if there is a token generated for the Cluster
ClusterApi ClusterDelete Delete /v0/clusters/{name} Delete a Cluster
ClusterApi ClusterDeleteToken Delete /v0/clusters/{name}/token Revoke a Cluster's Token
ClusterApi ClusterFindOne Get /v0/clusters/{name} Get a Cluster
ClusterApi ClusterGenerateToken Post /v0/clusters/{name}/token Generate a Token
ClusterApi ClusterGetAllLocationsAws Get /v0/clusters/{name}/locations/aws Get all Aws Location
ClusterApi ClusterGetAllLocationsAzure Get /v0/clusters/{name}/locations/azure Get all cluster azure locations
ClusterApi ClusterGetLocations Get /v0/clusters/{name}/locations Get all cluster locations
ClusterApi ClusterUpdateLocations Put /v0/clusters/{name}/locations Update Cluster locations
ClustersApi ClustersCreate Post /v0/clusters Register a Cluster
ClustersApi ClustersFindMany Get /v0/clusters Get all Clusters
EventsApi EventsCreate Post /v0/events Event reporting
StateApi StateDelete Delete /v0/states/{state} Delete a State
StateApi StateFindOne Get /v0/states/{state} Get a State
StateAWSLocationApi StateAwsLocationAddWhitelistedPrincipal Post /v0/states/{state}/locations/aws/{region}/whitelist Add current cluster account principal to whitelist
StateAWSLocationApi StateAwsLocationApprovePle Put /v0/states/{state}/locations/aws/{region}/approvedEndpoints/{endpoint} Approve an AWS private link endpoint
StateAWSLocationApi StateAwsLocationDelete Delete /v0/states/{state}/locations/aws/{region} Remove an AWS Location
StateAWSLocationApi StateAwsLocationGet Get /v0/states/{state}/locations/aws/{region} Get an AWS Location
StateAWSLocationApi StateAwsLocationGetWhitelistedPrincipal Get /v0/states/{state}/locations/aws/{region}/whitelist Get AWS whitelisted account principals
StateAzureLocationApi StateAzureLocationApprovePle Put /v0/states/{state}/locations/azure/{region}/approvedEndpoints/{endpoint} Approve an Azure private link endpoint
StateAzureLocationApi StateAzureLocationDelete Delete /v0/states/{state}/locations/azure/{region} Remove an Azure Location
StateAzureLocationApi StateAzureLocationGet Get /v0/states/{state}/locations/azure/{region} Get an Azure Location
StateLocationsApi StateLocationsAddAws Post /v0/states/{state}/locations/aws Add an AWS Location
StateLocationsApi StateLocationsAddAzure Post /v0/states/{state}/locations/azure Add an Azure Location
StateLocationsApi StateLocationsList Get /v0/states/{state}/locations Get all Location
StateLocationsApi StateLocationsListAws Get /v0/states/{state}/locations/aws Get all Aws Location
StateLocationsApi StateLocationsListAzure Get /v0/states/{state}/locations/azure Get all Azure Locations
StateOwnerApi StateOwnerSet Put /v0/states/{state}/owner/{cluster} Set an owner Cluster for the State
StateOwnerApi StateOwnerUnset Delete /v0/states/{state}/owner Unset the owner Cluster form the State
StatesApi StatesCreate Post /v0/states Create a State
StatesApi StatesFindMany Get /v0/states Get all States
VolumeApi VolumeDelete Delete /v0/states/{state}/volumes/{volume} Delete a Volume
VolumeApi VolumeFindOne Get /v0/states/{state}/volumes/{volume} Return specific Volume
VolumeApi VolumeSetActiveLocation Put /v0/states/{state}/volumes/{volume}/activeLocation/{cloud}/{region} Set the active location for the Volume
VolumeApi VolumeUnsetActiveLocation Delete /v0/states/{state}/volumes/{volume}/activeLocation Unset the owner node from the Volume
VolumeApi VolumeUpdateFormatted Put /v0/states/{state}/volumes/{volume}/formattedDate Update format date of a Volume
VolumesApi VolumesCreate Post /v0/states/{state}/volumes Create a new Volume
VolumesApi VolumesFindMany Get /v0/states/{state}/volumes Get all Volumes

Documentation For Models

Documentation For Authorization

bearer
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARERTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ClusterApi *ClusterApiService

	ClustersApi *ClustersApiService

	EventsApi *EventsApiService

	StateApi *StateApiService

	StateAWSLocationApi *StateAWSLocationApiService

	StateAzureLocationApi *StateAzureLocationApiService

	StateLocationsApi *StateLocationsApiService

	StateOwnerApi *StateOwnerApiService

	StatesApi *StatesApiService

	VolumeApi *VolumeApiService

	VolumesApi *VolumesApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Statehub API API vv0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResonse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AllowedClustersListAlreadyExists

type AllowedClustersListAlreadyExists struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
}

AllowedClustersListAlreadyExists struct for AllowedClustersListAlreadyExists

func NewAllowedClustersListAlreadyExists

func NewAllowedClustersListAlreadyExists(errorCode string, state string) *AllowedClustersListAlreadyExists

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

func NewAllowedClustersListAlreadyExistsWithDefaults

func NewAllowedClustersListAlreadyExistsWithDefaults() *AllowedClustersListAlreadyExists

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

func (*AllowedClustersListAlreadyExists) GetErrorCode

func (o *AllowedClustersListAlreadyExists) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AllowedClustersListAlreadyExists) GetErrorCodeOk

func (o *AllowedClustersListAlreadyExists) GetErrorCodeOk() (*string, bool)

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

func (*AllowedClustersListAlreadyExists) GetState

func (o *AllowedClustersListAlreadyExists) GetState() string

GetState returns the State field value

func (*AllowedClustersListAlreadyExists) GetStateOk

func (o *AllowedClustersListAlreadyExists) GetStateOk() (*string, bool)

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

func (AllowedClustersListAlreadyExists) MarshalJSON

func (o AllowedClustersListAlreadyExists) MarshalJSON() ([]byte, error)

func (*AllowedClustersListAlreadyExists) SetErrorCode

func (o *AllowedClustersListAlreadyExists) SetErrorCode(v string)

SetErrorCode sets field value

func (*AllowedClustersListAlreadyExists) SetState

func (o *AllowedClustersListAlreadyExists) SetState(v string)

SetState sets field value

type AllowedClustersListNotFound

type AllowedClustersListNotFound struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
}

AllowedClustersListNotFound struct for AllowedClustersListNotFound

func NewAllowedClustersListNotFound

func NewAllowedClustersListNotFound(errorCode string, state string) *AllowedClustersListNotFound

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

func NewAllowedClustersListNotFoundWithDefaults

func NewAllowedClustersListNotFoundWithDefaults() *AllowedClustersListNotFound

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

func (*AllowedClustersListNotFound) GetErrorCode

func (o *AllowedClustersListNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AllowedClustersListNotFound) GetErrorCodeOk

func (o *AllowedClustersListNotFound) GetErrorCodeOk() (*string, bool)

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

func (*AllowedClustersListNotFound) GetState

func (o *AllowedClustersListNotFound) GetState() string

GetState returns the State field value

func (*AllowedClustersListNotFound) GetStateOk

func (o *AllowedClustersListNotFound) GetStateOk() (*string, bool)

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

func (AllowedClustersListNotFound) MarshalJSON

func (o AllowedClustersListNotFound) MarshalJSON() ([]byte, error)

func (*AllowedClustersListNotFound) SetErrorCode

func (o *AllowedClustersListNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*AllowedClustersListNotFound) SetState

func (o *AllowedClustersListNotFound) SetState(v string)

SetState sets field value

type ApiClusterCheckTokenRequest added in v0.2.1

type ApiClusterCheckTokenRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterCheckTokenRequest) Execute added in v0.2.1

func (r ApiClusterCheckTokenRequest) Execute() (ClusterTokenPlaceholder, *_nethttp.Response, error)

type ApiClusterDeleteRequest added in v0.2.1

type ApiClusterDeleteRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterDeleteRequest) Execute added in v0.2.1

func (r ApiClusterDeleteRequest) Execute() (*_nethttp.Response, error)

type ApiClusterDeleteTokenRequest added in v0.2.1

type ApiClusterDeleteTokenRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterDeleteTokenRequest) Execute added in v0.2.1

func (r ApiClusterDeleteTokenRequest) Execute() (*_nethttp.Response, error)

type ApiClusterFindOneRequest added in v0.2.1

type ApiClusterFindOneRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterFindOneRequest) Execute added in v0.2.1

func (r ApiClusterFindOneRequest) Execute() (Cluster, *_nethttp.Response, error)

type ApiClusterGenerateTokenRequest added in v0.2.1

type ApiClusterGenerateTokenRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterGenerateTokenRequest) Execute added in v0.2.1

func (r ApiClusterGenerateTokenRequest) Execute() (ClusterToken, *_nethttp.Response, error)

type ApiClusterGetAllLocationsAwsRequest added in v0.2.1

type ApiClusterGetAllLocationsAwsRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterGetAllLocationsAwsRequest) Execute added in v0.2.1

func (r ApiClusterGetAllLocationsAwsRequest) Execute() ([]ClusterLocationAws, *_nethttp.Response, error)

type ApiClusterGetAllLocationsAzureRequest added in v0.2.1

type ApiClusterGetAllLocationsAzureRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterGetAllLocationsAzureRequest) Execute added in v0.2.1

func (r ApiClusterGetAllLocationsAzureRequest) Execute() ([]ClusterLocationAzure, *_nethttp.Response, error)

type ApiClusterGetLocationsRequest added in v0.2.1

type ApiClusterGetLocationsRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterGetLocationsRequest) Execute added in v0.2.1

func (r ApiClusterGetLocationsRequest) Execute() (ClusterLocations, *_nethttp.Response, error)

type ApiClusterLocationsControllerGetAllLocationsAwsRequest

type ApiClusterLocationsControllerGetAllLocationsAwsRequest struct {
	ApiService *ClusterLocationsApiService
	// contains filtered or unexported fields
}

func (ApiClusterLocationsControllerGetAllLocationsAwsRequest) Execute

func (r ApiClusterLocationsControllerGetAllLocationsAwsRequest) Execute() ([]ClusterLocationAws, *_nethttp.Response, error)

type ApiClusterLocationsControllerGetAllLocationsAzureRequest

type ApiClusterLocationsControllerGetAllLocationsAzureRequest struct {
	ApiService *ClusterLocationsApiService
	// contains filtered or unexported fields
}

func (ApiClusterLocationsControllerGetAllLocationsAzureRequest) Execute

func (r ApiClusterLocationsControllerGetAllLocationsAzureRequest) Execute() ([]ClusterLocationAzure, *_nethttp.Response, error)

type ApiClusterLocationsControllerGetAllLocationsRequest

type ApiClusterLocationsControllerGetAllLocationsRequest struct {
	ApiService *ClusterLocationsApiService
	// contains filtered or unexported fields
}

func (ApiClusterLocationsControllerGetAllLocationsRequest) Execute

func (r ApiClusterLocationsControllerGetAllLocationsRequest) Execute() (ClusterLocations, *_nethttp.Response, error)

type ApiClusterLocationsControllerUpdateLocationsRequest

type ApiClusterLocationsControllerUpdateLocationsRequest struct {
	ApiService *ClusterLocationsApiService
	// contains filtered or unexported fields
}

func (ApiClusterLocationsControllerUpdateLocationsRequest) ClusterLocationsDto

func (r ApiClusterLocationsControllerUpdateLocationsRequest) ClusterLocationsDto(clusterLocationsDto ClusterLocationsDto) ApiClusterLocationsControllerUpdateLocationsRequest

func (ApiClusterLocationsControllerUpdateLocationsRequest) Execute

func (r ApiClusterLocationsControllerUpdateLocationsRequest) Execute() (ClusterLocationsDto, *_nethttp.Response, error)

type ApiClusterTokenControllerCheckRequest

type ApiClusterTokenControllerCheckRequest struct {
	ApiService *ClusterTokenApiService
	// contains filtered or unexported fields
}

func (ApiClusterTokenControllerCheckRequest) Execute

func (r ApiClusterTokenControllerCheckRequest) Execute() (ClusterTokenPlaceholder, *_nethttp.Response, error)

type ApiClusterTokenControllerDeleteRequest

type ApiClusterTokenControllerDeleteRequest struct {
	ApiService *ClusterTokenApiService
	// contains filtered or unexported fields
}

func (ApiClusterTokenControllerDeleteRequest) Execute

func (r ApiClusterTokenControllerDeleteRequest) Execute() (*_nethttp.Response, error)

type ApiClusterTokenControllerGenerateRequest

type ApiClusterTokenControllerGenerateRequest struct {
	ApiService *ClusterTokenApiService
	// contains filtered or unexported fields
}

func (ApiClusterTokenControllerGenerateRequest) Execute

func (r ApiClusterTokenControllerGenerateRequest) Execute() (ClusterToken, *_nethttp.Response, error)

type ApiClusterUpdateLocationsRequest added in v0.2.1

type ApiClusterUpdateLocationsRequest struct {
	ApiService *ClusterApiService
	// contains filtered or unexported fields
}

func (ApiClusterUpdateLocationsRequest) ClusterLocationsDto added in v0.2.1

func (r ApiClusterUpdateLocationsRequest) ClusterLocationsDto(clusterLocationsDto ClusterLocationsDto) ApiClusterUpdateLocationsRequest

func (ApiClusterUpdateLocationsRequest) Execute added in v0.2.1

func (r ApiClusterUpdateLocationsRequest) Execute() (ClusterLocationsDto, *_nethttp.Response, error)

type ApiClustersCreateRequest added in v0.2.1

type ApiClustersCreateRequest struct {
	ApiService *ClustersApiService
	// contains filtered or unexported fields
}

func (ApiClustersCreateRequest) CreateClusterDto added in v0.2.1

func (r ApiClustersCreateRequest) CreateClusterDto(createClusterDto CreateClusterDto) ApiClustersCreateRequest

func (ApiClustersCreateRequest) Execute added in v0.2.1

func (r ApiClustersCreateRequest) Execute() (Cluster, *_nethttp.Response, error)

type ApiClustersFindManyRequest added in v0.2.1

type ApiClustersFindManyRequest struct {
	ApiService *ClustersApiService
	// contains filtered or unexported fields
}

func (ApiClustersFindManyRequest) Execute added in v0.2.1

func (r ApiClustersFindManyRequest) Execute() ([]Cluster, *_nethttp.Response, error)

type ApiEventsCreateRequest added in v0.2.1

type ApiEventsCreateRequest struct {
	ApiService *EventsApiService
	// contains filtered or unexported fields
}

func (ApiEventsCreateRequest) CreateEventDto added in v0.2.1

func (r ApiEventsCreateRequest) CreateEventDto(createEventDto CreateEventDto) ApiEventsCreateRequest

func (ApiEventsCreateRequest) Execute added in v0.2.1

func (r ApiEventsCreateRequest) Execute() (*_nethttp.Response, error)

type ApiStateAwsLocationAddWhitelistedPrincipalRequest added in v0.2.1

type ApiStateAwsLocationAddWhitelistedPrincipalRequest struct {
	ApiService *StateAWSLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAwsLocationAddWhitelistedPrincipalRequest) Execute added in v0.2.1

func (r ApiStateAwsLocationAddWhitelistedPrincipalRequest) Execute() ([]string, *_nethttp.Response, error)

type ApiStateAwsLocationApprovePleRequest added in v0.2.1

type ApiStateAwsLocationApprovePleRequest struct {
	ApiService *StateAWSLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAwsLocationApprovePleRequest) ApprovePleDto added in v0.2.2

func (r ApiStateAwsLocationApprovePleRequest) ApprovePleDto(approvePleDto ApprovePleDto) ApiStateAwsLocationApprovePleRequest

func (ApiStateAwsLocationApprovePleRequest) Execute added in v0.2.1

func (r ApiStateAwsLocationApprovePleRequest) Execute() (*_nethttp.Response, error)

type ApiStateAwsLocationDeleteRequest added in v0.2.1

type ApiStateAwsLocationDeleteRequest struct {
	ApiService *StateAWSLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAwsLocationDeleteRequest) Execute added in v0.2.1

func (r ApiStateAwsLocationDeleteRequest) Execute() (StateLocationAws, *_nethttp.Response, error)

func (ApiStateAwsLocationDeleteRequest) Force added in v0.2.1

func (r ApiStateAwsLocationDeleteRequest) Force(force bool) ApiStateAwsLocationDeleteRequest

type ApiStateAwsLocationGetRequest added in v0.2.1

type ApiStateAwsLocationGetRequest struct {
	ApiService *StateAWSLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAwsLocationGetRequest) Execute added in v0.2.1

func (r ApiStateAwsLocationGetRequest) Execute() ([]StateLocationAws, *_nethttp.Response, error)

type ApiStateAwsLocationGetWhitelistedPrincipalRequest added in v0.2.1

type ApiStateAwsLocationGetWhitelistedPrincipalRequest struct {
	ApiService *StateAWSLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAwsLocationGetWhitelistedPrincipalRequest) Execute added in v0.2.1

func (r ApiStateAwsLocationGetWhitelistedPrincipalRequest) Execute() ([]string, *_nethttp.Response, error)

type ApiStateAzureLocationApprovePleRequest added in v0.2.1

type ApiStateAzureLocationApprovePleRequest struct {
	ApiService *StateAzureLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAzureLocationApprovePleRequest) ApprovePleDto added in v0.2.2

func (r ApiStateAzureLocationApprovePleRequest) ApprovePleDto(approvePleDto ApprovePleDto) ApiStateAzureLocationApprovePleRequest

func (ApiStateAzureLocationApprovePleRequest) Execute added in v0.2.1

func (r ApiStateAzureLocationApprovePleRequest) Execute() (*_nethttp.Response, error)

type ApiStateAzureLocationDeleteRequest added in v0.2.1

type ApiStateAzureLocationDeleteRequest struct {
	ApiService *StateAzureLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAzureLocationDeleteRequest) Execute added in v0.2.1

func (r ApiStateAzureLocationDeleteRequest) Execute() (StateLocationAzure, *_nethttp.Response, error)

func (ApiStateAzureLocationDeleteRequest) Force added in v0.2.1

func (r ApiStateAzureLocationDeleteRequest) Force(force bool) ApiStateAzureLocationDeleteRequest

type ApiStateAzureLocationGetRequest added in v0.2.1

type ApiStateAzureLocationGetRequest struct {
	ApiService *StateAzureLocationApiService
	// contains filtered or unexported fields
}

func (ApiStateAzureLocationGetRequest) Execute added in v0.2.1

func (r ApiStateAzureLocationGetRequest) Execute() ([]StateLocationAzure, *_nethttp.Response, error)

type ApiStateDeleteRequest added in v0.2.1

type ApiStateDeleteRequest struct {
	ApiService *StateApiService
	// contains filtered or unexported fields
}

func (ApiStateDeleteRequest) Execute added in v0.2.1

func (r ApiStateDeleteRequest) Execute() (*_nethttp.Response, error)

func (ApiStateDeleteRequest) Force added in v0.2.1

func (r ApiStateDeleteRequest) Force(force bool) ApiStateDeleteRequest

type ApiStateFindOneRequest added in v0.2.1

type ApiStateFindOneRequest struct {
	ApiService *StateApiService
	// contains filtered or unexported fields
}

func (ApiStateFindOneRequest) Execute added in v0.2.1

func (r ApiStateFindOneRequest) Execute() (State, *_nethttp.Response, error)

type ApiStateLocationsAddAwsRequest added in v0.2.1

type ApiStateLocationsAddAwsRequest struct {
	ApiService *StateLocationsApiService
	// contains filtered or unexported fields
}

func (ApiStateLocationsAddAwsRequest) Execute added in v0.2.1

func (r ApiStateLocationsAddAwsRequest) Execute() (StateLocationAws, *_nethttp.Response, error)

func (ApiStateLocationsAddAwsRequest) StateLocationAwsDto added in v0.2.1

func (r ApiStateLocationsAddAwsRequest) StateLocationAwsDto(stateLocationAwsDto StateLocationAwsDto) ApiStateLocationsAddAwsRequest

type ApiStateLocationsAddAzureRequest added in v0.2.1

type ApiStateLocationsAddAzureRequest struct {
	ApiService *StateLocationsApiService
	// contains filtered or unexported fields
}

func (ApiStateLocationsAddAzureRequest) Execute added in v0.2.1

func (r ApiStateLocationsAddAzureRequest) Execute() (StateLocationAzure, *_nethttp.Response, error)

func (ApiStateLocationsAddAzureRequest) StateLocationAzureDto added in v0.2.1

func (r ApiStateLocationsAddAzureRequest) StateLocationAzureDto(stateLocationAzureDto StateLocationAzureDto) ApiStateLocationsAddAzureRequest

type ApiStateLocationsListAwsRequest added in v0.2.1

type ApiStateLocationsListAwsRequest struct {
	ApiService *StateLocationsApiService
	// contains filtered or unexported fields
}

func (ApiStateLocationsListAwsRequest) Execute added in v0.2.1

func (r ApiStateLocationsListAwsRequest) Execute() ([]StateLocationAws, *_nethttp.Response, error)

type ApiStateLocationsListAzureRequest added in v0.2.1

type ApiStateLocationsListAzureRequest struct {
	ApiService *StateLocationsApiService
	// contains filtered or unexported fields
}

func (ApiStateLocationsListAzureRequest) Execute added in v0.2.1

func (r ApiStateLocationsListAzureRequest) Execute() ([]StateLocationAzure, *_nethttp.Response, error)

type ApiStateLocationsListRequest added in v0.2.1

type ApiStateLocationsListRequest struct {
	ApiService *StateLocationsApiService
	// contains filtered or unexported fields
}

func (ApiStateLocationsListRequest) Execute added in v0.2.1

func (r ApiStateLocationsListRequest) Execute() (StateLocations, *_nethttp.Response, error)

type ApiStateOwnerSetRequest added in v0.2.1

type ApiStateOwnerSetRequest struct {
	ApiService *StateOwnerApiService
	// contains filtered or unexported fields
}

func (ApiStateOwnerSetRequest) Execute added in v0.2.1

func (r ApiStateOwnerSetRequest) Execute() (State, *_nethttp.Response, error)

type ApiStateOwnerUnsetRequest added in v0.2.1

type ApiStateOwnerUnsetRequest struct {
	ApiService *StateOwnerApiService
	// contains filtered or unexported fields
}

func (ApiStateOwnerUnsetRequest) Execute added in v0.2.1

func (r ApiStateOwnerUnsetRequest) Execute() (State, *_nethttp.Response, error)

type ApiStatesCreateRequest added in v0.2.1

type ApiStatesCreateRequest struct {
	ApiService *StatesApiService
	// contains filtered or unexported fields
}

func (ApiStatesCreateRequest) CreateStateDto added in v0.2.1

func (r ApiStatesCreateRequest) CreateStateDto(createStateDto CreateStateDto) ApiStatesCreateRequest

func (ApiStatesCreateRequest) Execute added in v0.2.1

func (r ApiStatesCreateRequest) Execute() (State, *_nethttp.Response, error)

type ApiStatesFindManyRequest added in v0.2.1

type ApiStatesFindManyRequest struct {
	ApiService *StatesApiService
	// contains filtered or unexported fields
}

func (ApiStatesFindManyRequest) Execute added in v0.2.1

func (r ApiStatesFindManyRequest) Execute() ([]State, *_nethttp.Response, error)

type ApiVolumeActiveLocationControllerSetRequest

type ApiVolumeActiveLocationControllerSetRequest struct {
	ApiService *VolumeActiveLocationApiService
	// contains filtered or unexported fields
}

func (ApiVolumeActiveLocationControllerSetRequest) Execute

func (r ApiVolumeActiveLocationControllerSetRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumeActiveLocationControllerUnsetRequest

type ApiVolumeActiveLocationControllerUnsetRequest struct {
	ApiService *VolumeActiveLocationApiService
	// contains filtered or unexported fields
}

func (ApiVolumeActiveLocationControllerUnsetRequest) Execute

func (r ApiVolumeActiveLocationControllerUnsetRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumeDeleteRequest added in v0.2.1

type ApiVolumeDeleteRequest struct {
	ApiService *VolumeApiService
	// contains filtered or unexported fields
}

func (ApiVolumeDeleteRequest) Execute added in v0.2.1

func (r ApiVolumeDeleteRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumeFindOneRequest added in v0.2.1

type ApiVolumeFindOneRequest struct {
	ApiService *VolumeApiService
	// contains filtered or unexported fields
}

func (ApiVolumeFindOneRequest) Execute added in v0.2.1

func (r ApiVolumeFindOneRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumeSetActiveLocationRequest added in v0.2.1

type ApiVolumeSetActiveLocationRequest struct {
	ApiService *VolumeApiService
	// contains filtered or unexported fields
}

func (ApiVolumeSetActiveLocationRequest) Execute added in v0.2.1

func (r ApiVolumeSetActiveLocationRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumeUnsetActiveLocationRequest added in v0.2.1

type ApiVolumeUnsetActiveLocationRequest struct {
	ApiService *VolumeApiService
	// contains filtered or unexported fields
}

func (ApiVolumeUnsetActiveLocationRequest) Execute added in v0.2.1

func (r ApiVolumeUnsetActiveLocationRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumeUpdateFormattedRequest added in v0.2.1

type ApiVolumeUpdateFormattedRequest struct {
	ApiService *VolumeApiService
	// contains filtered or unexported fields
}

func (ApiVolumeUpdateFormattedRequest) Execute added in v0.2.1

func (r ApiVolumeUpdateFormattedRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumesCreateRequest added in v0.2.1

type ApiVolumesCreateRequest struct {
	ApiService *VolumesApiService
	// contains filtered or unexported fields
}

func (ApiVolumesCreateRequest) CreateVolumeDto added in v0.2.1

func (r ApiVolumesCreateRequest) CreateVolumeDto(createVolumeDto CreateVolumeDto) ApiVolumesCreateRequest

func (ApiVolumesCreateRequest) Execute added in v0.2.1

func (r ApiVolumesCreateRequest) Execute() (Volume, *_nethttp.Response, error)

type ApiVolumesFindManyRequest added in v0.2.1

type ApiVolumesFindManyRequest struct {
	ApiService *VolumesApiService
	// contains filtered or unexported fields
}

func (ApiVolumesFindManyRequest) Execute added in v0.2.1

func (r ApiVolumesFindManyRequest) Execute() ([]Volume, *_nethttp.Response, error)

type ApprovePleDto added in v0.2.2

type ApprovePleDto struct {
	// Cluster endpoint trough which it connects to statehub
	Ip *string `json:"ip,omitempty"`
}

ApprovePleDto struct for ApprovePleDto

func NewApprovePleDto added in v0.2.2

func NewApprovePleDto() *ApprovePleDto

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

func NewApprovePleDtoWithDefaults added in v0.2.2

func NewApprovePleDtoWithDefaults() *ApprovePleDto

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

func (*ApprovePleDto) GetIp added in v0.2.2

func (o *ApprovePleDto) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*ApprovePleDto) GetIpOk added in v0.2.2

func (o *ApprovePleDto) GetIpOk() (*string, bool)

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

func (*ApprovePleDto) HasIp added in v0.2.2

func (o *ApprovePleDto) HasIp() bool

HasIp returns a boolean if a field has been set.

func (ApprovePleDto) MarshalJSON added in v0.2.2

func (o ApprovePleDto) MarshalJSON() ([]byte, error)

func (*ApprovePleDto) SetIp added in v0.2.2

func (o *ApprovePleDto) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

type AwsLocationExists

type AwsLocationExists struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Region    string `json:"region"`
}

AwsLocationExists struct for AwsLocationExists

func NewAwsLocationExists

func NewAwsLocationExists(errorCode string, state string, region string) *AwsLocationExists

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

func NewAwsLocationExistsWithDefaults

func NewAwsLocationExistsWithDefaults() *AwsLocationExists

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

func (*AwsLocationExists) GetErrorCode

func (o *AwsLocationExists) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AwsLocationExists) GetErrorCodeOk

func (o *AwsLocationExists) GetErrorCodeOk() (*string, bool)

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

func (*AwsLocationExists) GetRegion

func (o *AwsLocationExists) GetRegion() string

GetRegion returns the Region field value

func (*AwsLocationExists) GetRegionOk

func (o *AwsLocationExists) GetRegionOk() (*string, bool)

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

func (*AwsLocationExists) GetState

func (o *AwsLocationExists) GetState() string

GetState returns the State field value

func (*AwsLocationExists) GetStateOk

func (o *AwsLocationExists) GetStateOk() (*string, bool)

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

func (AwsLocationExists) MarshalJSON

func (o AwsLocationExists) MarshalJSON() ([]byte, error)

func (*AwsLocationExists) SetErrorCode

func (o *AwsLocationExists) SetErrorCode(v string)

SetErrorCode sets field value

func (*AwsLocationExists) SetRegion

func (o *AwsLocationExists) SetRegion(v string)

SetRegion sets field value

func (*AwsLocationExists) SetState

func (o *AwsLocationExists) SetState(v string)

SetState sets field value

type AwsLocationHasVolumes

type AwsLocationHasVolumes struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Region    string `json:"region"`
}

AwsLocationHasVolumes struct for AwsLocationHasVolumes

func NewAwsLocationHasVolumes

func NewAwsLocationHasVolumes(errorCode string, state string, region string) *AwsLocationHasVolumes

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

func NewAwsLocationHasVolumesWithDefaults

func NewAwsLocationHasVolumesWithDefaults() *AwsLocationHasVolumes

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

func (*AwsLocationHasVolumes) GetErrorCode

func (o *AwsLocationHasVolumes) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AwsLocationHasVolumes) GetErrorCodeOk

func (o *AwsLocationHasVolumes) GetErrorCodeOk() (*string, bool)

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

func (*AwsLocationHasVolumes) GetRegion

func (o *AwsLocationHasVolumes) GetRegion() string

GetRegion returns the Region field value

func (*AwsLocationHasVolumes) GetRegionOk

func (o *AwsLocationHasVolumes) GetRegionOk() (*string, bool)

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

func (*AwsLocationHasVolumes) GetState

func (o *AwsLocationHasVolumes) GetState() string

GetState returns the State field value

func (*AwsLocationHasVolumes) GetStateOk

func (o *AwsLocationHasVolumes) GetStateOk() (*string, bool)

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

func (AwsLocationHasVolumes) MarshalJSON

func (o AwsLocationHasVolumes) MarshalJSON() ([]byte, error)

func (*AwsLocationHasVolumes) SetErrorCode

func (o *AwsLocationHasVolumes) SetErrorCode(v string)

SetErrorCode sets field value

func (*AwsLocationHasVolumes) SetRegion

func (o *AwsLocationHasVolumes) SetRegion(v string)

SetRegion sets field value

func (*AwsLocationHasVolumes) SetState

func (o *AwsLocationHasVolumes) SetState(v string)

SetState sets field value

type AwsLocationNotFound

type AwsLocationNotFound struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Region    string `json:"region"`
}

AwsLocationNotFound struct for AwsLocationNotFound

func NewAwsLocationNotFound

func NewAwsLocationNotFound(errorCode string, state string, region string) *AwsLocationNotFound

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

func NewAwsLocationNotFoundWithDefaults

func NewAwsLocationNotFoundWithDefaults() *AwsLocationNotFound

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

func (*AwsLocationNotFound) GetErrorCode

func (o *AwsLocationNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AwsLocationNotFound) GetErrorCodeOk

func (o *AwsLocationNotFound) GetErrorCodeOk() (*string, bool)

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

func (*AwsLocationNotFound) GetRegion

func (o *AwsLocationNotFound) GetRegion() string

GetRegion returns the Region field value

func (*AwsLocationNotFound) GetRegionOk

func (o *AwsLocationNotFound) GetRegionOk() (*string, bool)

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

func (*AwsLocationNotFound) GetState

func (o *AwsLocationNotFound) GetState() string

GetState returns the State field value

func (*AwsLocationNotFound) GetStateOk

func (o *AwsLocationNotFound) GetStateOk() (*string, bool)

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

func (AwsLocationNotFound) MarshalJSON

func (o AwsLocationNotFound) MarshalJSON() ([]byte, error)

func (*AwsLocationNotFound) SetErrorCode

func (o *AwsLocationNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*AwsLocationNotFound) SetRegion

func (o *AwsLocationNotFound) SetRegion(v string)

SetRegion sets field value

func (*AwsLocationNotFound) SetState

func (o *AwsLocationNotFound) SetState(v string)

SetState sets field value

type AwsRegionNotSupported

type AwsRegionNotSupported struct {
	ErrorCode string `json:"errorCode"`
	Region    string `json:"region"`
}

AwsRegionNotSupported struct for AwsRegionNotSupported

func NewAwsRegionNotSupported

func NewAwsRegionNotSupported(errorCode string, region string) *AwsRegionNotSupported

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

func NewAwsRegionNotSupportedWithDefaults

func NewAwsRegionNotSupportedWithDefaults() *AwsRegionNotSupported

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

func (*AwsRegionNotSupported) GetErrorCode

func (o *AwsRegionNotSupported) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AwsRegionNotSupported) GetErrorCodeOk

func (o *AwsRegionNotSupported) GetErrorCodeOk() (*string, bool)

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

func (*AwsRegionNotSupported) GetRegion

func (o *AwsRegionNotSupported) GetRegion() string

GetRegion returns the Region field value

func (*AwsRegionNotSupported) GetRegionOk

func (o *AwsRegionNotSupported) GetRegionOk() (*string, bool)

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

func (AwsRegionNotSupported) MarshalJSON

func (o AwsRegionNotSupported) MarshalJSON() ([]byte, error)

func (*AwsRegionNotSupported) SetErrorCode

func (o *AwsRegionNotSupported) SetErrorCode(v string)

SetErrorCode sets field value

func (*AwsRegionNotSupported) SetRegion

func (o *AwsRegionNotSupported) SetRegion(v string)

SetRegion sets field value

type AzureLocationExists

type AzureLocationExists struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Region    string `json:"region"`
}

AzureLocationExists struct for AzureLocationExists

func NewAzureLocationExists

func NewAzureLocationExists(errorCode string, state string, region string) *AzureLocationExists

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

func NewAzureLocationExistsWithDefaults

func NewAzureLocationExistsWithDefaults() *AzureLocationExists

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

func (*AzureLocationExists) GetErrorCode

func (o *AzureLocationExists) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AzureLocationExists) GetErrorCodeOk

func (o *AzureLocationExists) GetErrorCodeOk() (*string, bool)

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

func (*AzureLocationExists) GetRegion

func (o *AzureLocationExists) GetRegion() string

GetRegion returns the Region field value

func (*AzureLocationExists) GetRegionOk

func (o *AzureLocationExists) GetRegionOk() (*string, bool)

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

func (*AzureLocationExists) GetState

func (o *AzureLocationExists) GetState() string

GetState returns the State field value

func (*AzureLocationExists) GetStateOk

func (o *AzureLocationExists) GetStateOk() (*string, bool)

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

func (AzureLocationExists) MarshalJSON

func (o AzureLocationExists) MarshalJSON() ([]byte, error)

func (*AzureLocationExists) SetErrorCode

func (o *AzureLocationExists) SetErrorCode(v string)

SetErrorCode sets field value

func (*AzureLocationExists) SetRegion

func (o *AzureLocationExists) SetRegion(v string)

SetRegion sets field value

func (*AzureLocationExists) SetState

func (o *AzureLocationExists) SetState(v string)

SetState sets field value

type AzureLocationHasVolumes

type AzureLocationHasVolumes struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Region    string `json:"region"`
}

AzureLocationHasVolumes struct for AzureLocationHasVolumes

func NewAzureLocationHasVolumes

func NewAzureLocationHasVolumes(errorCode string, state string, region string) *AzureLocationHasVolumes

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

func NewAzureLocationHasVolumesWithDefaults

func NewAzureLocationHasVolumesWithDefaults() *AzureLocationHasVolumes

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

func (*AzureLocationHasVolumes) GetErrorCode

func (o *AzureLocationHasVolumes) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AzureLocationHasVolumes) GetErrorCodeOk

func (o *AzureLocationHasVolumes) GetErrorCodeOk() (*string, bool)

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

func (*AzureLocationHasVolumes) GetRegion

func (o *AzureLocationHasVolumes) GetRegion() string

GetRegion returns the Region field value

func (*AzureLocationHasVolumes) GetRegionOk

func (o *AzureLocationHasVolumes) GetRegionOk() (*string, bool)

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

func (*AzureLocationHasVolumes) GetState

func (o *AzureLocationHasVolumes) GetState() string

GetState returns the State field value

func (*AzureLocationHasVolumes) GetStateOk

func (o *AzureLocationHasVolumes) GetStateOk() (*string, bool)

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

func (AzureLocationHasVolumes) MarshalJSON

func (o AzureLocationHasVolumes) MarshalJSON() ([]byte, error)

func (*AzureLocationHasVolumes) SetErrorCode

func (o *AzureLocationHasVolumes) SetErrorCode(v string)

SetErrorCode sets field value

func (*AzureLocationHasVolumes) SetRegion

func (o *AzureLocationHasVolumes) SetRegion(v string)

SetRegion sets field value

func (*AzureLocationHasVolumes) SetState

func (o *AzureLocationHasVolumes) SetState(v string)

SetState sets field value

type AzureLocationNotFound

type AzureLocationNotFound struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Region    string `json:"region"`
}

AzureLocationNotFound struct for AzureLocationNotFound

func NewAzureLocationNotFound

func NewAzureLocationNotFound(errorCode string, state string, region string) *AzureLocationNotFound

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

func NewAzureLocationNotFoundWithDefaults

func NewAzureLocationNotFoundWithDefaults() *AzureLocationNotFound

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

func (*AzureLocationNotFound) GetErrorCode

func (o *AzureLocationNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AzureLocationNotFound) GetErrorCodeOk

func (o *AzureLocationNotFound) GetErrorCodeOk() (*string, bool)

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

func (*AzureLocationNotFound) GetRegion

func (o *AzureLocationNotFound) GetRegion() string

GetRegion returns the Region field value

func (*AzureLocationNotFound) GetRegionOk

func (o *AzureLocationNotFound) GetRegionOk() (*string, bool)

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

func (*AzureLocationNotFound) GetState

func (o *AzureLocationNotFound) GetState() string

GetState returns the State field value

func (*AzureLocationNotFound) GetStateOk

func (o *AzureLocationNotFound) GetStateOk() (*string, bool)

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

func (AzureLocationNotFound) MarshalJSON

func (o AzureLocationNotFound) MarshalJSON() ([]byte, error)

func (*AzureLocationNotFound) SetErrorCode

func (o *AzureLocationNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*AzureLocationNotFound) SetRegion

func (o *AzureLocationNotFound) SetRegion(v string)

SetRegion sets field value

func (*AzureLocationNotFound) SetState

func (o *AzureLocationNotFound) SetState(v string)

SetState sets field value

type AzureRegionNotSupported

type AzureRegionNotSupported struct {
	ErrorCode string `json:"errorCode"`
	Region    string `json:"region"`
}

AzureRegionNotSupported struct for AzureRegionNotSupported

func NewAzureRegionNotSupported

func NewAzureRegionNotSupported(errorCode string, region string) *AzureRegionNotSupported

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

func NewAzureRegionNotSupportedWithDefaults

func NewAzureRegionNotSupportedWithDefaults() *AzureRegionNotSupported

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

func (*AzureRegionNotSupported) GetErrorCode

func (o *AzureRegionNotSupported) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*AzureRegionNotSupported) GetErrorCodeOk

func (o *AzureRegionNotSupported) GetErrorCodeOk() (*string, bool)

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

func (*AzureRegionNotSupported) GetRegion

func (o *AzureRegionNotSupported) GetRegion() string

GetRegion returns the Region field value

func (*AzureRegionNotSupported) GetRegionOk

func (o *AzureRegionNotSupported) GetRegionOk() (*string, bool)

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

func (AzureRegionNotSupported) MarshalJSON

func (o AzureRegionNotSupported) MarshalJSON() ([]byte, error)

func (*AzureRegionNotSupported) SetErrorCode

func (o *AzureRegionNotSupported) SetErrorCode(v string)

SetErrorCode sets field value

func (*AzureRegionNotSupported) SetRegion

func (o *AzureRegionNotSupported) SetRegion(v string)

SetRegion sets field value

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type CloudNotSupported

type CloudNotSupported struct {
	ErrorCode string `json:"errorCode"`
	Cloud     string `json:"cloud"`
}

CloudNotSupported struct for CloudNotSupported

func NewCloudNotSupported

func NewCloudNotSupported(errorCode string, cloud string) *CloudNotSupported

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

func NewCloudNotSupportedWithDefaults

func NewCloudNotSupportedWithDefaults() *CloudNotSupported

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

func (*CloudNotSupported) GetCloud

func (o *CloudNotSupported) GetCloud() string

GetCloud returns the Cloud field value

func (*CloudNotSupported) GetCloudOk

func (o *CloudNotSupported) GetCloudOk() (*string, bool)

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

func (*CloudNotSupported) GetErrorCode

func (o *CloudNotSupported) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*CloudNotSupported) GetErrorCodeOk

func (o *CloudNotSupported) GetErrorCodeOk() (*string, bool)

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

func (CloudNotSupported) MarshalJSON

func (o CloudNotSupported) MarshalJSON() ([]byte, error)

func (*CloudNotSupported) SetCloud

func (o *CloudNotSupported) SetCloud(v string)

SetCloud sets field value

func (*CloudNotSupported) SetErrorCode

func (o *CloudNotSupported) SetErrorCode(v string)

SetErrorCode sets field value

type Cluster

type Cluster struct {
	// The unique ID of object
	Id string `json:"id"`
	// The name of the cluster
	Name string `json:"name"`
	// Cluster namespace
	Namespace *string `json:"namespace,omitempty"`
	// Cluster provider
	Provider string `json:"provider"`
	// Creation date
	Created time.Time `json:"created"`
	// Modification date
	Modified time.Time `json:"modified"`
	// Cluster locations
	Locations *ClusterLocations `json:"locations,omitempty"`
	// Cluster helm charts
	Helm []Helm `json:"helm"`
}

Cluster struct for Cluster

func NewCluster

func NewCluster(id string, name string, provider string, created time.Time, modified time.Time, helm []Helm) *Cluster

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

func NewClusterWithDefaults

func NewClusterWithDefaults() *Cluster

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

func (*Cluster) GetCreated

func (o *Cluster) GetCreated() time.Time

GetCreated returns the Created field value

func (*Cluster) GetCreatedOk

func (o *Cluster) GetCreatedOk() (*time.Time, bool)

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

func (*Cluster) GetHelm

func (o *Cluster) GetHelm() []Helm

GetHelm returns the Helm field value

func (*Cluster) GetHelmOk

func (o *Cluster) GetHelmOk() (*[]Helm, bool)

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

func (*Cluster) GetId

func (o *Cluster) GetId() string

GetId returns the Id field value

func (*Cluster) GetIdOk

func (o *Cluster) GetIdOk() (*string, bool)

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

func (*Cluster) GetLocations

func (o *Cluster) GetLocations() ClusterLocations

GetLocations returns the Locations field value if set, zero value otherwise.

func (*Cluster) GetLocationsOk

func (o *Cluster) GetLocationsOk() (*ClusterLocations, bool)

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

func (*Cluster) GetModified

func (o *Cluster) GetModified() time.Time

GetModified returns the Modified field value

func (*Cluster) GetModifiedOk

func (o *Cluster) GetModifiedOk() (*time.Time, bool)

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

func (*Cluster) GetName

func (o *Cluster) GetName() string

GetName returns the Name field value

func (*Cluster) GetNameOk

func (o *Cluster) GetNameOk() (*string, bool)

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

func (*Cluster) GetNamespace added in v0.1.3

func (o *Cluster) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*Cluster) GetNamespaceOk added in v0.1.3

func (o *Cluster) GetNamespaceOk() (*string, bool)

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

func (*Cluster) GetProvider

func (o *Cluster) GetProvider() string

GetProvider returns the Provider field value

func (*Cluster) GetProviderOk

func (o *Cluster) GetProviderOk() (*string, bool)

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

func (*Cluster) HasLocations

func (o *Cluster) HasLocations() bool

HasLocations returns a boolean if a field has been set.

func (*Cluster) HasNamespace added in v0.1.3

func (o *Cluster) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (Cluster) MarshalJSON

func (o Cluster) MarshalJSON() ([]byte, error)

func (*Cluster) SetCreated

func (o *Cluster) SetCreated(v time.Time)

SetCreated sets field value

func (*Cluster) SetHelm

func (o *Cluster) SetHelm(v []Helm)

SetHelm sets field value

func (*Cluster) SetId

func (o *Cluster) SetId(v string)

SetId sets field value

func (*Cluster) SetLocations

func (o *Cluster) SetLocations(v ClusterLocations)

SetLocations gets a reference to the given ClusterLocations and assigns it to the Locations field.

func (*Cluster) SetModified

func (o *Cluster) SetModified(v time.Time)

SetModified sets field value

func (*Cluster) SetName

func (o *Cluster) SetName(v string)

SetName sets field value

func (*Cluster) SetNamespace added in v0.1.3

func (o *Cluster) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*Cluster) SetProvider

func (o *Cluster) SetProvider(v string)

SetProvider sets field value

type ClusterApiService added in v0.2.1

type ClusterApiService service

ClusterApiService ClusterApi service

func (*ClusterApiService) ClusterCheckToken added in v0.2.1

func (a *ClusterApiService) ClusterCheckToken(ctx _context.Context, name string) ApiClusterCheckTokenRequest

* ClusterCheckToken Check if there is a token generated for the Cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterCheckTokenRequest

func (*ClusterApiService) ClusterCheckTokenExecute added in v0.2.1

func (a *ClusterApiService) ClusterCheckTokenExecute(r ApiClusterCheckTokenRequest) (ClusterTokenPlaceholder, *_nethttp.Response, error)

* Execute executes the request * @return ClusterTokenPlaceholder

func (*ClusterApiService) ClusterDelete added in v0.2.1

func (a *ClusterApiService) ClusterDelete(ctx _context.Context, name string) ApiClusterDeleteRequest

* ClusterDelete Delete a Cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterDeleteRequest

func (*ClusterApiService) ClusterDeleteExecute added in v0.2.1

func (a *ClusterApiService) ClusterDeleteExecute(r ApiClusterDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ClusterApiService) ClusterDeleteToken added in v0.2.1

func (a *ClusterApiService) ClusterDeleteToken(ctx _context.Context, name string) ApiClusterDeleteTokenRequest

* ClusterDeleteToken Revoke a Cluster's Token * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterDeleteTokenRequest

func (*ClusterApiService) ClusterDeleteTokenExecute added in v0.2.1

func (a *ClusterApiService) ClusterDeleteTokenExecute(r ApiClusterDeleteTokenRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ClusterApiService) ClusterFindOne added in v0.2.1

func (a *ClusterApiService) ClusterFindOne(ctx _context.Context, name string) ApiClusterFindOneRequest

* ClusterFindOne Get a Cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterFindOneRequest

func (*ClusterApiService) ClusterFindOneExecute added in v0.2.1

func (a *ClusterApiService) ClusterFindOneExecute(r ApiClusterFindOneRequest) (Cluster, *_nethttp.Response, error)

* Execute executes the request * @return Cluster

func (*ClusterApiService) ClusterGenerateToken added in v0.2.1

func (a *ClusterApiService) ClusterGenerateToken(ctx _context.Context, name string) ApiClusterGenerateTokenRequest

* ClusterGenerateToken Generate a Token * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterGenerateTokenRequest

func (*ClusterApiService) ClusterGenerateTokenExecute added in v0.2.1

func (a *ClusterApiService) ClusterGenerateTokenExecute(r ApiClusterGenerateTokenRequest) (ClusterToken, *_nethttp.Response, error)

* Execute executes the request * @return ClusterToken

func (*ClusterApiService) ClusterGetAllLocationsAws added in v0.2.1

func (a *ClusterApiService) ClusterGetAllLocationsAws(ctx _context.Context, name string) ApiClusterGetAllLocationsAwsRequest

* ClusterGetAllLocationsAws Get all Aws Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterGetAllLocationsAwsRequest

func (*ClusterApiService) ClusterGetAllLocationsAwsExecute added in v0.2.1

func (a *ClusterApiService) ClusterGetAllLocationsAwsExecute(r ApiClusterGetAllLocationsAwsRequest) ([]ClusterLocationAws, *_nethttp.Response, error)

* Execute executes the request * @return []ClusterLocationAws

func (*ClusterApiService) ClusterGetAllLocationsAzure added in v0.2.1

func (a *ClusterApiService) ClusterGetAllLocationsAzure(ctx _context.Context, name string) ApiClusterGetAllLocationsAzureRequest

* ClusterGetAllLocationsAzure Get all cluster azure locations * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterGetAllLocationsAzureRequest

func (*ClusterApiService) ClusterGetAllLocationsAzureExecute added in v0.2.1

func (a *ClusterApiService) ClusterGetAllLocationsAzureExecute(r ApiClusterGetAllLocationsAzureRequest) ([]ClusterLocationAzure, *_nethttp.Response, error)

* Execute executes the request * @return []ClusterLocationAzure

func (*ClusterApiService) ClusterGetLocations added in v0.2.1

func (a *ClusterApiService) ClusterGetLocations(ctx _context.Context, name string) ApiClusterGetLocationsRequest

* ClusterGetLocations Get all cluster locations * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterGetLocationsRequest

func (*ClusterApiService) ClusterGetLocationsExecute added in v0.2.1

func (a *ClusterApiService) ClusterGetLocationsExecute(r ApiClusterGetLocationsRequest) (ClusterLocations, *_nethttp.Response, error)

* Execute executes the request * @return ClusterLocations

func (*ClusterApiService) ClusterUpdateLocations added in v0.2.1

func (a *ClusterApiService) ClusterUpdateLocations(ctx _context.Context, name string) ApiClusterUpdateLocationsRequest

* ClusterUpdateLocations Update Cluster locations * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name Cluster name * @return ApiClusterUpdateLocationsRequest

func (*ClusterApiService) ClusterUpdateLocationsExecute added in v0.2.1

func (a *ClusterApiService) ClusterUpdateLocationsExecute(r ApiClusterUpdateLocationsRequest) (ClusterLocationsDto, *_nethttp.Response, error)

* Execute executes the request * @return ClusterLocationsDto

type ClusterHelm

type ClusterHelm struct {
	// Helm  description
	Repo string `json:"repo"`
	// Helm chart
	Chart string `json:"chart"`
	// Helm version
	Version string `json:"version"`
	// Helm parameters
	Parameters map[string]interface{} `json:"parameters"`
}

ClusterHelm struct for ClusterHelm

func NewClusterHelm

func NewClusterHelm(repo string, chart string, version string, parameters map[string]interface{}) *ClusterHelm

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

func NewClusterHelmWithDefaults

func NewClusterHelmWithDefaults() *ClusterHelm

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

func (*ClusterHelm) GetChart

func (o *ClusterHelm) GetChart() string

GetChart returns the Chart field value

func (*ClusterHelm) GetChartOk

func (o *ClusterHelm) GetChartOk() (*string, bool)

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

func (*ClusterHelm) GetParameters

func (o *ClusterHelm) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value

func (*ClusterHelm) GetParametersOk

func (o *ClusterHelm) GetParametersOk() (*map[string]interface{}, bool)

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

func (*ClusterHelm) GetRepo

func (o *ClusterHelm) GetRepo() string

GetRepo returns the Repo field value

func (*ClusterHelm) GetRepoOk

func (o *ClusterHelm) GetRepoOk() (*string, bool)

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

func (*ClusterHelm) GetVersion

func (o *ClusterHelm) GetVersion() string

GetVersion returns the Version field value

func (*ClusterHelm) GetVersionOk

func (o *ClusterHelm) GetVersionOk() (*string, bool)

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

func (ClusterHelm) MarshalJSON

func (o ClusterHelm) MarshalJSON() ([]byte, error)

func (*ClusterHelm) SetChart

func (o *ClusterHelm) SetChart(v string)

SetChart sets field value

func (*ClusterHelm) SetParameters

func (o *ClusterHelm) SetParameters(v map[string]interface{})

SetParameters sets field value

func (*ClusterHelm) SetRepo

func (o *ClusterHelm) SetRepo(v string)

SetRepo sets field value

func (*ClusterHelm) SetVersion

func (o *ClusterHelm) SetVersion(v string)

SetVersion sets field value

type ClusterIsStateOwner

type ClusterIsStateOwner struct {
	ErrorCode string `json:"errorCode"`
	Cluster   string `json:"cluster"`
	State     string `json:"state"`
}

ClusterIsStateOwner struct for ClusterIsStateOwner

func NewClusterIsStateOwner

func NewClusterIsStateOwner(errorCode string, cluster string, state string) *ClusterIsStateOwner

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

func NewClusterIsStateOwnerWithDefaults

func NewClusterIsStateOwnerWithDefaults() *ClusterIsStateOwner

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

func (*ClusterIsStateOwner) GetCluster

func (o *ClusterIsStateOwner) GetCluster() string

GetCluster returns the Cluster field value

func (*ClusterIsStateOwner) GetClusterOk

func (o *ClusterIsStateOwner) GetClusterOk() (*string, bool)

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

func (*ClusterIsStateOwner) GetErrorCode

func (o *ClusterIsStateOwner) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterIsStateOwner) GetErrorCodeOk

func (o *ClusterIsStateOwner) GetErrorCodeOk() (*string, bool)

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

func (*ClusterIsStateOwner) GetState

func (o *ClusterIsStateOwner) GetState() string

GetState returns the State field value

func (*ClusterIsStateOwner) GetStateOk

func (o *ClusterIsStateOwner) GetStateOk() (*string, bool)

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

func (ClusterIsStateOwner) MarshalJSON

func (o ClusterIsStateOwner) MarshalJSON() ([]byte, error)

func (*ClusterIsStateOwner) SetCluster

func (o *ClusterIsStateOwner) SetCluster(v string)

SetCluster sets field value

func (*ClusterIsStateOwner) SetErrorCode

func (o *ClusterIsStateOwner) SetErrorCode(v string)

SetErrorCode sets field value

func (*ClusterIsStateOwner) SetState

func (o *ClusterIsStateOwner) SetState(v string)

SetState sets field value

type ClusterLocationAws

type ClusterLocationAws struct {
	// An AWS Region
	Region string `json:"region"`
	// AWS Account Principal
	AccountPrincipal *string `json:"accountPrincipal,omitempty"`
}

ClusterLocationAws struct for ClusterLocationAws

func NewClusterLocationAws

func NewClusterLocationAws(region string) *ClusterLocationAws

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

func NewClusterLocationAwsWithDefaults

func NewClusterLocationAwsWithDefaults() *ClusterLocationAws

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

func (*ClusterLocationAws) GetAccountPrincipal

func (o *ClusterLocationAws) GetAccountPrincipal() string

GetAccountPrincipal returns the AccountPrincipal field value if set, zero value otherwise.

func (*ClusterLocationAws) GetAccountPrincipalOk

func (o *ClusterLocationAws) GetAccountPrincipalOk() (*string, bool)

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

func (*ClusterLocationAws) GetRegion

func (o *ClusterLocationAws) GetRegion() string

GetRegion returns the Region field value

func (*ClusterLocationAws) GetRegionOk

func (o *ClusterLocationAws) GetRegionOk() (*string, bool)

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

func (*ClusterLocationAws) HasAccountPrincipal

func (o *ClusterLocationAws) HasAccountPrincipal() bool

HasAccountPrincipal returns a boolean if a field has been set.

func (ClusterLocationAws) MarshalJSON

func (o ClusterLocationAws) MarshalJSON() ([]byte, error)

func (*ClusterLocationAws) SetAccountPrincipal

func (o *ClusterLocationAws) SetAccountPrincipal(v string)

SetAccountPrincipal gets a reference to the given string and assigns it to the AccountPrincipal field.

func (*ClusterLocationAws) SetRegion

func (o *ClusterLocationAws) SetRegion(v string)

SetRegion sets field value

type ClusterLocationAwsDto

type ClusterLocationAwsDto struct {
	// An AWS Region
	Region string `json:"region"`
	// AWS Account Principal
	AccountPrincipal *string `json:"accountPrincipal,omitempty"`
}

ClusterLocationAwsDto struct for ClusterLocationAwsDto

func NewClusterLocationAwsDto

func NewClusterLocationAwsDto(region string) *ClusterLocationAwsDto

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

func NewClusterLocationAwsDtoWithDefaults

func NewClusterLocationAwsDtoWithDefaults() *ClusterLocationAwsDto

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

func (*ClusterLocationAwsDto) GetAccountPrincipal

func (o *ClusterLocationAwsDto) GetAccountPrincipal() string

GetAccountPrincipal returns the AccountPrincipal field value if set, zero value otherwise.

func (*ClusterLocationAwsDto) GetAccountPrincipalOk

func (o *ClusterLocationAwsDto) GetAccountPrincipalOk() (*string, bool)

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

func (*ClusterLocationAwsDto) GetRegion

func (o *ClusterLocationAwsDto) GetRegion() string

GetRegion returns the Region field value

func (*ClusterLocationAwsDto) GetRegionOk

func (o *ClusterLocationAwsDto) GetRegionOk() (*string, bool)

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

func (*ClusterLocationAwsDto) HasAccountPrincipal added in v0.2.1

func (o *ClusterLocationAwsDto) HasAccountPrincipal() bool

HasAccountPrincipal returns a boolean if a field has been set.

func (ClusterLocationAwsDto) MarshalJSON

func (o ClusterLocationAwsDto) MarshalJSON() ([]byte, error)

func (*ClusterLocationAwsDto) SetAccountPrincipal

func (o *ClusterLocationAwsDto) SetAccountPrincipal(v string)

SetAccountPrincipal gets a reference to the given string and assigns it to the AccountPrincipal field.

func (*ClusterLocationAwsDto) SetRegion

func (o *ClusterLocationAwsDto) SetRegion(v string)

SetRegion sets field value

type ClusterLocationAzure

type ClusterLocationAzure struct {
	// An Azure Region
	Region string `json:"region"`
}

ClusterLocationAzure struct for ClusterLocationAzure

func NewClusterLocationAzure

func NewClusterLocationAzure(region string) *ClusterLocationAzure

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

func NewClusterLocationAzureWithDefaults

func NewClusterLocationAzureWithDefaults() *ClusterLocationAzure

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

func (*ClusterLocationAzure) GetRegion

func (o *ClusterLocationAzure) GetRegion() string

GetRegion returns the Region field value

func (*ClusterLocationAzure) GetRegionOk

func (o *ClusterLocationAzure) GetRegionOk() (*string, bool)

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

func (ClusterLocationAzure) MarshalJSON

func (o ClusterLocationAzure) MarshalJSON() ([]byte, error)

func (*ClusterLocationAzure) SetRegion

func (o *ClusterLocationAzure) SetRegion(v string)

SetRegion sets field value

type ClusterLocationAzureDto

type ClusterLocationAzureDto struct {
	// An Azure Region
	Region string `json:"region"`
}

ClusterLocationAzureDto struct for ClusterLocationAzureDto

func NewClusterLocationAzureDto

func NewClusterLocationAzureDto(region string) *ClusterLocationAzureDto

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

func NewClusterLocationAzureDtoWithDefaults

func NewClusterLocationAzureDtoWithDefaults() *ClusterLocationAzureDto

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

func (*ClusterLocationAzureDto) GetRegion

func (o *ClusterLocationAzureDto) GetRegion() string

GetRegion returns the Region field value

func (*ClusterLocationAzureDto) GetRegionOk

func (o *ClusterLocationAzureDto) GetRegionOk() (*string, bool)

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

func (ClusterLocationAzureDto) MarshalJSON

func (o ClusterLocationAzureDto) MarshalJSON() ([]byte, error)

func (*ClusterLocationAzureDto) SetRegion

func (o *ClusterLocationAzureDto) SetRegion(v string)

SetRegion sets field value

type ClusterLocations

type ClusterLocations struct {
	// The AWS locations for the Cluster
	Aws *[]ClusterLocationAws `json:"aws,omitempty"`
	// The Azure locations for the Cluster
	Azure *[]ClusterLocationAzure `json:"azure,omitempty"`
}

ClusterLocations struct for ClusterLocations

func NewClusterLocations

func NewClusterLocations() *ClusterLocations

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

func NewClusterLocationsWithDefaults

func NewClusterLocationsWithDefaults() *ClusterLocations

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

func (*ClusterLocations) GetAws

func (o *ClusterLocations) GetAws() []ClusterLocationAws

GetAws returns the Aws field value if set, zero value otherwise.

func (*ClusterLocations) GetAwsOk

func (o *ClusterLocations) GetAwsOk() (*[]ClusterLocationAws, bool)

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

func (*ClusterLocations) GetAzure

func (o *ClusterLocations) GetAzure() []ClusterLocationAzure

GetAzure returns the Azure field value if set, zero value otherwise.

func (*ClusterLocations) GetAzureOk

func (o *ClusterLocations) GetAzureOk() (*[]ClusterLocationAzure, bool)

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

func (*ClusterLocations) HasAws

func (o *ClusterLocations) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*ClusterLocations) HasAzure

func (o *ClusterLocations) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (ClusterLocations) MarshalJSON

func (o ClusterLocations) MarshalJSON() ([]byte, error)

func (*ClusterLocations) SetAws

func (o *ClusterLocations) SetAws(v []ClusterLocationAws)

SetAws gets a reference to the given []ClusterLocationAws and assigns it to the Aws field.

func (*ClusterLocations) SetAzure

func (o *ClusterLocations) SetAzure(v []ClusterLocationAzure)

SetAzure gets a reference to the given []ClusterLocationAzure and assigns it to the Azure field.

type ClusterLocationsApiService

type ClusterLocationsApiService service

ClusterLocationsApiService ClusterLocationsApi service

func (*ClusterLocationsApiService) ClusterLocationsControllerGetAllLocations

func (a *ClusterLocationsApiService) ClusterLocationsControllerGetAllLocations(ctx _context.Context, cluster string) ApiClusterLocationsControllerGetAllLocationsRequest

* ClusterLocationsControllerGetAllLocations Get all Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterLocationsControllerGetAllLocationsRequest

func (*ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAws

func (a *ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAws(ctx _context.Context, cluster string) ApiClusterLocationsControllerGetAllLocationsAwsRequest

* ClusterLocationsControllerGetAllLocationsAws Get all Aws Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterLocationsControllerGetAllLocationsAwsRequest

func (*ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAwsExecute

func (a *ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAwsExecute(r ApiClusterLocationsControllerGetAllLocationsAwsRequest) ([]ClusterLocationAws, *_nethttp.Response, error)

* Execute executes the request * @return []ClusterLocationAws

func (*ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAzure

func (a *ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAzure(ctx _context.Context, cluster string) ApiClusterLocationsControllerGetAllLocationsAzureRequest

* ClusterLocationsControllerGetAllLocationsAzure Get all Azure Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterLocationsControllerGetAllLocationsAzureRequest

func (*ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAzureExecute

func (a *ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsAzureExecute(r ApiClusterLocationsControllerGetAllLocationsAzureRequest) ([]ClusterLocationAzure, *_nethttp.Response, error)

* Execute executes the request * @return []ClusterLocationAzure

func (*ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsExecute

func (a *ClusterLocationsApiService) ClusterLocationsControllerGetAllLocationsExecute(r ApiClusterLocationsControllerGetAllLocationsRequest) (ClusterLocations, *_nethttp.Response, error)

* Execute executes the request * @return ClusterLocations

func (*ClusterLocationsApiService) ClusterLocationsControllerUpdateLocations

func (a *ClusterLocationsApiService) ClusterLocationsControllerUpdateLocations(ctx _context.Context, cluster string) ApiClusterLocationsControllerUpdateLocationsRequest

* ClusterLocationsControllerUpdateLocations Update Cluster locations * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterLocationsControllerUpdateLocationsRequest

func (*ClusterLocationsApiService) ClusterLocationsControllerUpdateLocationsExecute

func (a *ClusterLocationsApiService) ClusterLocationsControllerUpdateLocationsExecute(r ApiClusterLocationsControllerUpdateLocationsRequest) (ClusterLocationsDto, *_nethttp.Response, error)

* Execute executes the request * @return ClusterLocationsDto

type ClusterLocationsDto

type ClusterLocationsDto struct {
	// The AWS locations for the Cluster
	Aws *[]ClusterLocationAwsDto `json:"aws,omitempty"`
	// The Azure locations for the Cluster
	Azure *[]ClusterLocationAzureDto `json:"azure,omitempty"`
}

ClusterLocationsDto struct for ClusterLocationsDto

func NewClusterLocationsDto

func NewClusterLocationsDto() *ClusterLocationsDto

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

func NewClusterLocationsDtoWithDefaults

func NewClusterLocationsDtoWithDefaults() *ClusterLocationsDto

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

func (*ClusterLocationsDto) GetAws

func (o *ClusterLocationsDto) GetAws() []ClusterLocationAwsDto

GetAws returns the Aws field value if set, zero value otherwise.

func (*ClusterLocationsDto) GetAwsOk

func (o *ClusterLocationsDto) GetAwsOk() (*[]ClusterLocationAwsDto, bool)

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

func (*ClusterLocationsDto) GetAzure

func (o *ClusterLocationsDto) GetAzure() []ClusterLocationAzureDto

GetAzure returns the Azure field value if set, zero value otherwise.

func (*ClusterLocationsDto) GetAzureOk

func (o *ClusterLocationsDto) GetAzureOk() (*[]ClusterLocationAzureDto, bool)

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

func (*ClusterLocationsDto) HasAws added in v0.2.1

func (o *ClusterLocationsDto) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*ClusterLocationsDto) HasAzure added in v0.2.1

func (o *ClusterLocationsDto) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (ClusterLocationsDto) MarshalJSON

func (o ClusterLocationsDto) MarshalJSON() ([]byte, error)

func (*ClusterLocationsDto) SetAws

func (o *ClusterLocationsDto) SetAws(v []ClusterLocationAwsDto)

SetAws gets a reference to the given []ClusterLocationAwsDto and assigns it to the Aws field.

func (*ClusterLocationsDto) SetAzure

func (o *ClusterLocationsDto) SetAzure(v []ClusterLocationAzureDto)

SetAzure gets a reference to the given []ClusterLocationAzureDto and assigns it to the Azure field.

type ClusterNameConflict

type ClusterNameConflict struct {
	ErrorCode string `json:"errorCode"`
	Cluster   string `json:"cluster"`
}

ClusterNameConflict struct for ClusterNameConflict

func NewClusterNameConflict

func NewClusterNameConflict(errorCode string, cluster string) *ClusterNameConflict

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

func NewClusterNameConflictWithDefaults

func NewClusterNameConflictWithDefaults() *ClusterNameConflict

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

func (*ClusterNameConflict) GetCluster

func (o *ClusterNameConflict) GetCluster() string

GetCluster returns the Cluster field value

func (*ClusterNameConflict) GetClusterOk

func (o *ClusterNameConflict) GetClusterOk() (*string, bool)

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

func (*ClusterNameConflict) GetErrorCode

func (o *ClusterNameConflict) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterNameConflict) GetErrorCodeOk

func (o *ClusterNameConflict) GetErrorCodeOk() (*string, bool)

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

func (ClusterNameConflict) MarshalJSON

func (o ClusterNameConflict) MarshalJSON() ([]byte, error)

func (*ClusterNameConflict) SetCluster

func (o *ClusterNameConflict) SetCluster(v string)

SetCluster sets field value

func (*ClusterNameConflict) SetErrorCode

func (o *ClusterNameConflict) SetErrorCode(v string)

SetErrorCode sets field value

type ClusterNameInvalid

type ClusterNameInvalid struct {
	ErrorCode string `json:"errorCode"`
	Name      string `json:"name"`
}

ClusterNameInvalid struct for ClusterNameInvalid

func NewClusterNameInvalid

func NewClusterNameInvalid(errorCode string, name string) *ClusterNameInvalid

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

func NewClusterNameInvalidWithDefaults

func NewClusterNameInvalidWithDefaults() *ClusterNameInvalid

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

func (*ClusterNameInvalid) GetErrorCode

func (o *ClusterNameInvalid) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterNameInvalid) GetErrorCodeOk

func (o *ClusterNameInvalid) GetErrorCodeOk() (*string, bool)

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

func (*ClusterNameInvalid) GetName

func (o *ClusterNameInvalid) GetName() string

GetName returns the Name field value

func (*ClusterNameInvalid) GetNameOk

func (o *ClusterNameInvalid) GetNameOk() (*string, bool)

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

func (ClusterNameInvalid) MarshalJSON

func (o ClusterNameInvalid) MarshalJSON() ([]byte, error)

func (*ClusterNameInvalid) SetErrorCode

func (o *ClusterNameInvalid) SetErrorCode(v string)

SetErrorCode sets field value

func (*ClusterNameInvalid) SetName

func (o *ClusterNameInvalid) SetName(v string)

SetName sets field value

type ClusterNotAuthorized

type ClusterNotAuthorized struct {
	ErrorCode    string `json:"errorCode"`
	Permission   string `json:"permission"`
	ResourceType string `json:"resourceType"`
	ResourceName string `json:"resourceName"`
}

ClusterNotAuthorized struct for ClusterNotAuthorized

func NewClusterNotAuthorized

func NewClusterNotAuthorized(errorCode string, permission string, resourceType string, resourceName string) *ClusterNotAuthorized

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

func NewClusterNotAuthorizedWithDefaults

func NewClusterNotAuthorizedWithDefaults() *ClusterNotAuthorized

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

func (*ClusterNotAuthorized) GetErrorCode

func (o *ClusterNotAuthorized) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterNotAuthorized) GetErrorCodeOk

func (o *ClusterNotAuthorized) GetErrorCodeOk() (*string, bool)

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

func (*ClusterNotAuthorized) GetPermission

func (o *ClusterNotAuthorized) GetPermission() string

GetPermission returns the Permission field value

func (*ClusterNotAuthorized) GetPermissionOk

func (o *ClusterNotAuthorized) GetPermissionOk() (*string, bool)

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

func (*ClusterNotAuthorized) GetResourceName

func (o *ClusterNotAuthorized) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*ClusterNotAuthorized) GetResourceNameOk

func (o *ClusterNotAuthorized) GetResourceNameOk() (*string, bool)

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

func (*ClusterNotAuthorized) GetResourceType

func (o *ClusterNotAuthorized) GetResourceType() string

GetResourceType returns the ResourceType field value

func (*ClusterNotAuthorized) GetResourceTypeOk

func (o *ClusterNotAuthorized) GetResourceTypeOk() (*string, bool)

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

func (ClusterNotAuthorized) MarshalJSON

func (o ClusterNotAuthorized) MarshalJSON() ([]byte, error)

func (*ClusterNotAuthorized) SetErrorCode

func (o *ClusterNotAuthorized) SetErrorCode(v string)

SetErrorCode sets field value

func (*ClusterNotAuthorized) SetPermission

func (o *ClusterNotAuthorized) SetPermission(v string)

SetPermission sets field value

func (*ClusterNotAuthorized) SetResourceName

func (o *ClusterNotAuthorized) SetResourceName(v string)

SetResourceName sets field value

func (*ClusterNotAuthorized) SetResourceType

func (o *ClusterNotAuthorized) SetResourceType(v string)

SetResourceType sets field value

type ClusterNotFound

type ClusterNotFound struct {
	ErrorCode string `json:"errorCode"`
	Cluster   string `json:"cluster"`
}

ClusterNotFound struct for ClusterNotFound

func NewClusterNotFound

func NewClusterNotFound(errorCode string, cluster string) *ClusterNotFound

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

func NewClusterNotFoundWithDefaults

func NewClusterNotFoundWithDefaults() *ClusterNotFound

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

func (*ClusterNotFound) GetCluster

func (o *ClusterNotFound) GetCluster() string

GetCluster returns the Cluster field value

func (*ClusterNotFound) GetClusterOk

func (o *ClusterNotFound) GetClusterOk() (*string, bool)

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

func (*ClusterNotFound) GetErrorCode

func (o *ClusterNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterNotFound) GetErrorCodeOk

func (o *ClusterNotFound) GetErrorCodeOk() (*string, bool)

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

func (ClusterNotFound) MarshalJSON

func (o ClusterNotFound) MarshalJSON() ([]byte, error)

func (*ClusterNotFound) SetCluster

func (o *ClusterNotFound) SetCluster(v string)

SetCluster sets field value

func (*ClusterNotFound) SetErrorCode

func (o *ClusterNotFound) SetErrorCode(v string)

SetErrorCode sets field value

type ClusterNotFoundInList

type ClusterNotFoundInList struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Cluster   string `json:"cluster"`
}

ClusterNotFoundInList struct for ClusterNotFoundInList

func NewClusterNotFoundInList

func NewClusterNotFoundInList(errorCode string, state string, cluster string) *ClusterNotFoundInList

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

func NewClusterNotFoundInListWithDefaults

func NewClusterNotFoundInListWithDefaults() *ClusterNotFoundInList

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

func (*ClusterNotFoundInList) GetCluster

func (o *ClusterNotFoundInList) GetCluster() string

GetCluster returns the Cluster field value

func (*ClusterNotFoundInList) GetClusterOk

func (o *ClusterNotFoundInList) GetClusterOk() (*string, bool)

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

func (*ClusterNotFoundInList) GetErrorCode

func (o *ClusterNotFoundInList) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterNotFoundInList) GetErrorCodeOk

func (o *ClusterNotFoundInList) GetErrorCodeOk() (*string, bool)

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

func (*ClusterNotFoundInList) GetState

func (o *ClusterNotFoundInList) GetState() string

GetState returns the State field value

func (*ClusterNotFoundInList) GetStateOk

func (o *ClusterNotFoundInList) GetStateOk() (*string, bool)

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

func (ClusterNotFoundInList) MarshalJSON

func (o ClusterNotFoundInList) MarshalJSON() ([]byte, error)

func (*ClusterNotFoundInList) SetCluster

func (o *ClusterNotFoundInList) SetCluster(v string)

SetCluster sets field value

func (*ClusterNotFoundInList) SetErrorCode

func (o *ClusterNotFoundInList) SetErrorCode(v string)

SetErrorCode sets field value

func (*ClusterNotFoundInList) SetState

func (o *ClusterNotFoundInList) SetState(v string)

SetState sets field value

type ClusterToken

type ClusterToken struct {
	// The Token for the Cluster
	Token string `json:"token"`
}

ClusterToken struct for ClusterToken

func NewClusterToken

func NewClusterToken(token string) *ClusterToken

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

func NewClusterTokenWithDefaults

func NewClusterTokenWithDefaults() *ClusterToken

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

func (*ClusterToken) GetToken

func (o *ClusterToken) GetToken() string

GetToken returns the Token field value

func (*ClusterToken) GetTokenOk

func (o *ClusterToken) GetTokenOk() (*string, bool)

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

func (ClusterToken) MarshalJSON

func (o ClusterToken) MarshalJSON() ([]byte, error)

func (*ClusterToken) SetToken

func (o *ClusterToken) SetToken(v string)

SetToken sets field value

type ClusterTokenAlreadyExists

type ClusterTokenAlreadyExists struct {
	ErrorCode string `json:"errorCode"`
	Cluster   string `json:"cluster"`
}

ClusterTokenAlreadyExists struct for ClusterTokenAlreadyExists

func NewClusterTokenAlreadyExists

func NewClusterTokenAlreadyExists(errorCode string, cluster string) *ClusterTokenAlreadyExists

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

func NewClusterTokenAlreadyExistsWithDefaults

func NewClusterTokenAlreadyExistsWithDefaults() *ClusterTokenAlreadyExists

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

func (*ClusterTokenAlreadyExists) GetCluster

func (o *ClusterTokenAlreadyExists) GetCluster() string

GetCluster returns the Cluster field value

func (*ClusterTokenAlreadyExists) GetClusterOk

func (o *ClusterTokenAlreadyExists) GetClusterOk() (*string, bool)

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

func (*ClusterTokenAlreadyExists) GetErrorCode

func (o *ClusterTokenAlreadyExists) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterTokenAlreadyExists) GetErrorCodeOk

func (o *ClusterTokenAlreadyExists) GetErrorCodeOk() (*string, bool)

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

func (ClusterTokenAlreadyExists) MarshalJSON

func (o ClusterTokenAlreadyExists) MarshalJSON() ([]byte, error)

func (*ClusterTokenAlreadyExists) SetCluster

func (o *ClusterTokenAlreadyExists) SetCluster(v string)

SetCluster sets field value

func (*ClusterTokenAlreadyExists) SetErrorCode

func (o *ClusterTokenAlreadyExists) SetErrorCode(v string)

SetErrorCode sets field value

type ClusterTokenApiService

type ClusterTokenApiService service

ClusterTokenApiService ClusterTokenApi service

func (*ClusterTokenApiService) ClusterTokenControllerCheck

func (a *ClusterTokenApiService) ClusterTokenControllerCheck(ctx _context.Context, cluster string) ApiClusterTokenControllerCheckRequest

* ClusterTokenControllerCheck Check if there is a Token generated for the Cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterTokenControllerCheckRequest

func (*ClusterTokenApiService) ClusterTokenControllerCheckExecute

func (a *ClusterTokenApiService) ClusterTokenControllerCheckExecute(r ApiClusterTokenControllerCheckRequest) (ClusterTokenPlaceholder, *_nethttp.Response, error)

* Execute executes the request * @return ClusterTokenPlaceholder

func (*ClusterTokenApiService) ClusterTokenControllerDelete

func (a *ClusterTokenApiService) ClusterTokenControllerDelete(ctx _context.Context, cluster string) ApiClusterTokenControllerDeleteRequest

* ClusterTokenControllerDelete Revoke a Cluster's Token * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterTokenControllerDeleteRequest

func (*ClusterTokenApiService) ClusterTokenControllerDeleteExecute

func (a *ClusterTokenApiService) ClusterTokenControllerDeleteExecute(r ApiClusterTokenControllerDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ClusterTokenApiService) ClusterTokenControllerGenerate

func (a *ClusterTokenApiService) ClusterTokenControllerGenerate(ctx _context.Context, cluster string) ApiClusterTokenControllerGenerateRequest

* ClusterTokenControllerGenerate Generate a Token * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param cluster * @return ApiClusterTokenControllerGenerateRequest

func (*ClusterTokenApiService) ClusterTokenControllerGenerateExecute

func (a *ClusterTokenApiService) ClusterTokenControllerGenerateExecute(r ApiClusterTokenControllerGenerateRequest) (ClusterToken, *_nethttp.Response, error)

* Execute executes the request * @return ClusterToken

type ClusterTokenNotFound

type ClusterTokenNotFound struct {
	ErrorCode string `json:"errorCode"`
	Cluster   string `json:"cluster"`
}

ClusterTokenNotFound struct for ClusterTokenNotFound

func NewClusterTokenNotFound

func NewClusterTokenNotFound(errorCode string, cluster string) *ClusterTokenNotFound

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

func NewClusterTokenNotFoundWithDefaults

func NewClusterTokenNotFoundWithDefaults() *ClusterTokenNotFound

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

func (*ClusterTokenNotFound) GetCluster

func (o *ClusterTokenNotFound) GetCluster() string

GetCluster returns the Cluster field value

func (*ClusterTokenNotFound) GetClusterOk

func (o *ClusterTokenNotFound) GetClusterOk() (*string, bool)

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

func (*ClusterTokenNotFound) GetErrorCode

func (o *ClusterTokenNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClusterTokenNotFound) GetErrorCodeOk

func (o *ClusterTokenNotFound) GetErrorCodeOk() (*string, bool)

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

func (ClusterTokenNotFound) MarshalJSON

func (o ClusterTokenNotFound) MarshalJSON() ([]byte, error)

func (*ClusterTokenNotFound) SetCluster

func (o *ClusterTokenNotFound) SetCluster(v string)

SetCluster sets field value

func (*ClusterTokenNotFound) SetErrorCode

func (o *ClusterTokenNotFound) SetErrorCode(v string)

SetErrorCode sets field value

type ClusterTokenPlaceholder

type ClusterTokenPlaceholder struct {
	// A placeholder for the Cluster's Token ('xxx')
	Token *string `json:"token,omitempty"`
}

ClusterTokenPlaceholder struct for ClusterTokenPlaceholder

func NewClusterTokenPlaceholder

func NewClusterTokenPlaceholder() *ClusterTokenPlaceholder

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

func NewClusterTokenPlaceholderWithDefaults

func NewClusterTokenPlaceholderWithDefaults() *ClusterTokenPlaceholder

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

func (*ClusterTokenPlaceholder) GetToken

func (o *ClusterTokenPlaceholder) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*ClusterTokenPlaceholder) GetTokenOk

func (o *ClusterTokenPlaceholder) GetTokenOk() (*string, bool)

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

func (*ClusterTokenPlaceholder) HasToken added in v0.2.1

func (o *ClusterTokenPlaceholder) HasToken() bool

HasToken returns a boolean if a field has been set.

func (ClusterTokenPlaceholder) MarshalJSON

func (o ClusterTokenPlaceholder) MarshalJSON() ([]byte, error)

func (*ClusterTokenPlaceholder) SetToken

func (o *ClusterTokenPlaceholder) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

type ClustersApiService

type ClustersApiService service

ClustersApiService ClustersApi service

func (*ClustersApiService) ClustersCreate added in v0.2.1

func (a *ClustersApiService) ClustersCreate(ctx _context.Context) ApiClustersCreateRequest

* ClustersCreate Register a Cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiClustersCreateRequest

func (*ClustersApiService) ClustersCreateExecute added in v0.2.1

func (a *ClustersApiService) ClustersCreateExecute(r ApiClustersCreateRequest) (Cluster, *_nethttp.Response, error)

* Execute executes the request * @return Cluster

func (*ClustersApiService) ClustersFindMany added in v0.2.1

func (a *ClustersApiService) ClustersFindMany(ctx _context.Context) ApiClustersFindManyRequest

* ClustersFindMany Get all Clusters * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiClustersFindManyRequest

func (*ClustersApiService) ClustersFindManyExecute added in v0.2.1

func (a *ClustersApiService) ClustersFindManyExecute(r ApiClustersFindManyRequest) ([]Cluster, *_nethttp.Response, error)

* Execute executes the request * @return []Cluster

type ClustersNotAllowed

type ClustersNotAllowed struct {
	ErrorCode string `json:"errorCode"`
}

ClustersNotAllowed struct for ClustersNotAllowed

func NewClustersNotAllowed

func NewClustersNotAllowed(errorCode string) *ClustersNotAllowed

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

func NewClustersNotAllowedWithDefaults

func NewClustersNotAllowedWithDefaults() *ClustersNotAllowed

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

func (*ClustersNotAllowed) GetErrorCode

func (o *ClustersNotAllowed) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*ClustersNotAllowed) GetErrorCodeOk

func (o *ClustersNotAllowed) GetErrorCodeOk() (*string, bool)

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

func (ClustersNotAllowed) MarshalJSON

func (o ClustersNotAllowed) MarshalJSON() ([]byte, error)

func (*ClustersNotAllowed) SetErrorCode

func (o *ClustersNotAllowed) SetErrorCode(v string)

SetErrorCode sets field value

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type Conflict

type Conflict struct {
	// The HTTP Code
	HttpCode float32 `json:"httpCode"`
	// The HTTP Status
	HttpStatus string `json:"httpStatus"`
}

Conflict struct for Conflict

func NewConflict

func NewConflict(httpCode float32, httpStatus string) *Conflict

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

func NewConflictWithDefaults

func NewConflictWithDefaults() *Conflict

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

func (*Conflict) GetHttpCode

func (o *Conflict) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*Conflict) GetHttpCodeOk

func (o *Conflict) GetHttpCodeOk() (*float32, bool)

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

func (*Conflict) GetHttpStatus

func (o *Conflict) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*Conflict) GetHttpStatusOk

func (o *Conflict) GetHttpStatusOk() (*string, bool)

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

func (Conflict) MarshalJSON

func (o Conflict) MarshalJSON() ([]byte, error)

func (*Conflict) SetHttpCode

func (o *Conflict) SetHttpCode(v float32)

SetHttpCode sets field value

func (*Conflict) SetHttpStatus

func (o *Conflict) SetHttpStatus(v string)

SetHttpStatus sets field value

type CreateClusterDto

type CreateClusterDto struct {
	// The name of the Cluster
	Name string `json:"name"`
	// Cluster namespace
	Namespace *string `json:"namespace,omitempty"`
	// Cluster provider
	Provider string `json:"provider"`
	// Cluster locations
	Locations *ClusterLocationsDto `json:"locations,omitempty"`
}

CreateClusterDto struct for CreateClusterDto

func NewCreateClusterDto

func NewCreateClusterDto(name string, provider string) *CreateClusterDto

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

func NewCreateClusterDtoWithDefaults

func NewCreateClusterDtoWithDefaults() *CreateClusterDto

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

func (*CreateClusterDto) GetLocations

func (o *CreateClusterDto) GetLocations() ClusterLocationsDto

GetLocations returns the Locations field value if set, zero value otherwise.

func (*CreateClusterDto) GetLocationsOk

func (o *CreateClusterDto) GetLocationsOk() (*ClusterLocationsDto, bool)

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

func (*CreateClusterDto) GetName

func (o *CreateClusterDto) GetName() string

GetName returns the Name field value

func (*CreateClusterDto) GetNameOk

func (o *CreateClusterDto) GetNameOk() (*string, bool)

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

func (*CreateClusterDto) GetNamespace added in v0.1.3

func (o *CreateClusterDto) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*CreateClusterDto) GetNamespaceOk added in v0.1.3

func (o *CreateClusterDto) GetNamespaceOk() (*string, bool)

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

func (*CreateClusterDto) GetProvider

func (o *CreateClusterDto) GetProvider() string

GetProvider returns the Provider field value

func (*CreateClusterDto) GetProviderOk

func (o *CreateClusterDto) GetProviderOk() (*string, bool)

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

func (*CreateClusterDto) HasLocations

func (o *CreateClusterDto) HasLocations() bool

HasLocations returns a boolean if a field has been set.

func (*CreateClusterDto) HasNamespace added in v0.1.3

func (o *CreateClusterDto) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (CreateClusterDto) MarshalJSON

func (o CreateClusterDto) MarshalJSON() ([]byte, error)

func (*CreateClusterDto) SetLocations

func (o *CreateClusterDto) SetLocations(v ClusterLocationsDto)

SetLocations gets a reference to the given ClusterLocationsDto and assigns it to the Locations field.

func (*CreateClusterDto) SetName

func (o *CreateClusterDto) SetName(v string)

SetName sets field value

func (*CreateClusterDto) SetNamespace added in v0.1.3

func (o *CreateClusterDto) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*CreateClusterDto) SetProvider

func (o *CreateClusterDto) SetProvider(v string)

SetProvider sets field value

type CreateClusterLocationAwsDto

type CreateClusterLocationAwsDto struct {
	// An AWS Region
	Region string `json:"region"`
}

CreateClusterLocationAwsDto struct for CreateClusterLocationAwsDto

func NewCreateClusterLocationAwsDto

func NewCreateClusterLocationAwsDto(region string) *CreateClusterLocationAwsDto

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

func NewCreateClusterLocationAwsDtoWithDefaults

func NewCreateClusterLocationAwsDtoWithDefaults() *CreateClusterLocationAwsDto

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

func (*CreateClusterLocationAwsDto) GetRegion

func (o *CreateClusterLocationAwsDto) GetRegion() string

GetRegion returns the Region field value

func (*CreateClusterLocationAwsDto) GetRegionOk

func (o *CreateClusterLocationAwsDto) GetRegionOk() (*string, bool)

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

func (CreateClusterLocationAwsDto) MarshalJSON

func (o CreateClusterLocationAwsDto) MarshalJSON() ([]byte, error)

func (*CreateClusterLocationAwsDto) SetRegion

func (o *CreateClusterLocationAwsDto) SetRegion(v string)

SetRegion sets field value

type CreateClusterLocationAzureDto

type CreateClusterLocationAzureDto struct {
	// An Azure Region
	Region string `json:"region"`
}

CreateClusterLocationAzureDto struct for CreateClusterLocationAzureDto

func NewCreateClusterLocationAzureDto

func NewCreateClusterLocationAzureDto(region string) *CreateClusterLocationAzureDto

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

func NewCreateClusterLocationAzureDtoWithDefaults

func NewCreateClusterLocationAzureDtoWithDefaults() *CreateClusterLocationAzureDto

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

func (*CreateClusterLocationAzureDto) GetRegion

func (o *CreateClusterLocationAzureDto) GetRegion() string

GetRegion returns the Region field value

func (*CreateClusterLocationAzureDto) GetRegionOk

func (o *CreateClusterLocationAzureDto) GetRegionOk() (*string, bool)

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

func (CreateClusterLocationAzureDto) MarshalJSON

func (o CreateClusterLocationAzureDto) MarshalJSON() ([]byte, error)

func (*CreateClusterLocationAzureDto) SetRegion

func (o *CreateClusterLocationAzureDto) SetRegion(v string)

SetRegion sets field value

type CreateClusterLocationsDto

type CreateClusterLocationsDto struct {
	// The AWS locations for the Cluster
	Aws *[]CreateClusterLocationAwsDto `json:"aws,omitempty"`
	// The Azure locations for the Cluster
	Azure *[]CreateClusterLocationAzureDto `json:"azure,omitempty"`
}

CreateClusterLocationsDto struct for CreateClusterLocationsDto

func NewCreateClusterLocationsDto

func NewCreateClusterLocationsDto() *CreateClusterLocationsDto

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

func NewCreateClusterLocationsDtoWithDefaults

func NewCreateClusterLocationsDtoWithDefaults() *CreateClusterLocationsDto

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

func (*CreateClusterLocationsDto) GetAws

func (o *CreateClusterLocationsDto) GetAws() []CreateClusterLocationAwsDto

GetAws returns the Aws field value if set, zero value otherwise.

func (*CreateClusterLocationsDto) GetAwsOk

func (o *CreateClusterLocationsDto) GetAwsOk() (*[]CreateClusterLocationAwsDto, bool)

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

func (*CreateClusterLocationsDto) GetAzure

func (o *CreateClusterLocationsDto) GetAzure() []CreateClusterLocationAzureDto

GetAzure returns the Azure field value if set, zero value otherwise.

func (*CreateClusterLocationsDto) GetAzureOk

func (o *CreateClusterLocationsDto) GetAzureOk() (*[]CreateClusterLocationAzureDto, bool)

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

func (*CreateClusterLocationsDto) HasAws

func (o *CreateClusterLocationsDto) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*CreateClusterLocationsDto) HasAzure

func (o *CreateClusterLocationsDto) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (CreateClusterLocationsDto) MarshalJSON

func (o CreateClusterLocationsDto) MarshalJSON() ([]byte, error)

func (*CreateClusterLocationsDto) SetAws

func (o *CreateClusterLocationsDto) SetAws(v []CreateClusterLocationAwsDto)

SetAws gets a reference to the given []CreateClusterLocationAwsDto and assigns it to the Aws field.

func (*CreateClusterLocationsDto) SetAzure

func (o *CreateClusterLocationsDto) SetAzure(v []CreateClusterLocationAzureDto)

SetAzure gets a reference to the given []CreateClusterLocationAzureDto and assigns it to the Azure field.

type CreateEventDto added in v0.1.3

type CreateEventDto struct {
	// System component that reported an event
	Reporter CreateEventReporterDto `json:"reporter"`
	// Event details
	Event map[string]interface{} `json:"event"`
	// Event timestamp
	Timestamp time.Time `json:"timestamp"`
}

CreateEventDto struct for CreateEventDto

func NewCreateEventDto added in v0.1.3

func NewCreateEventDto(reporter CreateEventReporterDto, event map[string]interface{}, timestamp time.Time) *CreateEventDto

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

func NewCreateEventDtoWithDefaults added in v0.1.3

func NewCreateEventDtoWithDefaults() *CreateEventDto

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

func (*CreateEventDto) GetEvent added in v0.1.3

func (o *CreateEventDto) GetEvent() map[string]interface{}

GetEvent returns the Event field value

func (*CreateEventDto) GetEventOk added in v0.1.3

func (o *CreateEventDto) GetEventOk() (*map[string]interface{}, bool)

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

func (*CreateEventDto) GetReporter added in v0.1.3

func (o *CreateEventDto) GetReporter() CreateEventReporterDto

GetReporter returns the Reporter field value

func (*CreateEventDto) GetReporterOk added in v0.1.3

func (o *CreateEventDto) GetReporterOk() (*CreateEventReporterDto, bool)

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

func (*CreateEventDto) GetTimestamp added in v0.1.3

func (o *CreateEventDto) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*CreateEventDto) GetTimestampOk added in v0.1.3

func (o *CreateEventDto) GetTimestampOk() (*time.Time, bool)

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

func (CreateEventDto) MarshalJSON added in v0.1.3

func (o CreateEventDto) MarshalJSON() ([]byte, error)

func (*CreateEventDto) SetEvent added in v0.1.3

func (o *CreateEventDto) SetEvent(v map[string]interface{})

SetEvent sets field value

func (*CreateEventDto) SetReporter added in v0.1.3

func (o *CreateEventDto) SetReporter(v CreateEventReporterDto)

SetReporter sets field value

func (*CreateEventDto) SetTimestamp added in v0.1.3

func (o *CreateEventDto) SetTimestamp(v time.Time)

SetTimestamp sets field value

type CreateEventReporterDto added in v0.2.1

type CreateEventReporterDto struct {
	// Component name
	Name string `json:"name"`
	// Component version
	Version string `json:"version"`
}

CreateEventReporterDto struct for CreateEventReporterDto

func NewCreateEventReporterDto added in v0.2.1

func NewCreateEventReporterDto(name string, version string) *CreateEventReporterDto

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

func NewCreateEventReporterDtoWithDefaults added in v0.2.1

func NewCreateEventReporterDtoWithDefaults() *CreateEventReporterDto

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

func (*CreateEventReporterDto) GetName added in v0.2.1

func (o *CreateEventReporterDto) GetName() string

GetName returns the Name field value

func (*CreateEventReporterDto) GetNameOk added in v0.2.1

func (o *CreateEventReporterDto) GetNameOk() (*string, bool)

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

func (*CreateEventReporterDto) GetVersion added in v0.2.1

func (o *CreateEventReporterDto) GetVersion() string

GetVersion returns the Version field value

func (*CreateEventReporterDto) GetVersionOk added in v0.2.1

func (o *CreateEventReporterDto) GetVersionOk() (*string, bool)

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

func (CreateEventReporterDto) MarshalJSON added in v0.2.1

func (o CreateEventReporterDto) MarshalJSON() ([]byte, error)

func (*CreateEventReporterDto) SetName added in v0.2.1

func (o *CreateEventReporterDto) SetName(v string)

SetName sets field value

func (*CreateEventReporterDto) SetVersion added in v0.2.1

func (o *CreateEventReporterDto) SetVersion(v string)

SetVersion sets field value

type CreateStateDto

type CreateStateDto struct {
	// The uniq name of the state
	Name string `json:"name"`
	// The values to be passed to the StorageClass
	StorageClass *CreateStorageClassDto `json:"storageClass,omitempty"`
	// The Locations of the State
	Locations *CreateStateLocationsDto `json:"locations,omitempty"`
	// The Cluster that currently owns the State
	Owner *string `json:"owner,omitempty"`
}

CreateStateDto struct for CreateStateDto

func NewCreateStateDto

func NewCreateStateDto(name string) *CreateStateDto

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

func NewCreateStateDtoWithDefaults

func NewCreateStateDtoWithDefaults() *CreateStateDto

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

func (*CreateStateDto) GetLocations

func (o *CreateStateDto) GetLocations() CreateStateLocationsDto

GetLocations returns the Locations field value if set, zero value otherwise.

func (*CreateStateDto) GetLocationsOk

func (o *CreateStateDto) GetLocationsOk() (*CreateStateLocationsDto, bool)

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

func (*CreateStateDto) GetName

func (o *CreateStateDto) GetName() string

GetName returns the Name field value

func (*CreateStateDto) GetNameOk

func (o *CreateStateDto) GetNameOk() (*string, bool)

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

func (*CreateStateDto) GetOwner

func (o *CreateStateDto) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*CreateStateDto) GetOwnerOk

func (o *CreateStateDto) GetOwnerOk() (*string, bool)

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

func (*CreateStateDto) GetStorageClass

func (o *CreateStateDto) GetStorageClass() CreateStorageClassDto

GetStorageClass returns the StorageClass field value if set, zero value otherwise.

func (*CreateStateDto) GetStorageClassOk

func (o *CreateStateDto) GetStorageClassOk() (*CreateStorageClassDto, bool)

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

func (*CreateStateDto) HasLocations

func (o *CreateStateDto) HasLocations() bool

HasLocations returns a boolean if a field has been set.

func (*CreateStateDto) HasOwner

func (o *CreateStateDto) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*CreateStateDto) HasStorageClass

func (o *CreateStateDto) HasStorageClass() bool

HasStorageClass returns a boolean if a field has been set.

func (CreateStateDto) MarshalJSON

func (o CreateStateDto) MarshalJSON() ([]byte, error)

func (*CreateStateDto) SetLocations

func (o *CreateStateDto) SetLocations(v CreateStateLocationsDto)

SetLocations gets a reference to the given CreateStateLocationsDto and assigns it to the Locations field.

func (*CreateStateDto) SetName

func (o *CreateStateDto) SetName(v string)

SetName sets field value

func (*CreateStateDto) SetOwner

func (o *CreateStateDto) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*CreateStateDto) SetStorageClass

func (o *CreateStateDto) SetStorageClass(v CreateStorageClassDto)

SetStorageClass gets a reference to the given CreateStorageClassDto and assigns it to the StorageClass field.

type CreateStateLocationAws

type CreateStateLocationAws struct {
	// An AWS Region
	Region string `json:"region"`
}

CreateStateLocationAws struct for CreateStateLocationAws

func NewCreateStateLocationAws

func NewCreateStateLocationAws(region string) *CreateStateLocationAws

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

func NewCreateStateLocationAwsWithDefaults

func NewCreateStateLocationAwsWithDefaults() *CreateStateLocationAws

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

func (*CreateStateLocationAws) GetRegion

func (o *CreateStateLocationAws) GetRegion() string

GetRegion returns the Region field value

func (*CreateStateLocationAws) GetRegionOk

func (o *CreateStateLocationAws) GetRegionOk() (*string, bool)

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

func (CreateStateLocationAws) MarshalJSON

func (o CreateStateLocationAws) MarshalJSON() ([]byte, error)

func (*CreateStateLocationAws) SetRegion

func (o *CreateStateLocationAws) SetRegion(v string)

SetRegion sets field value

type CreateStateLocationAwsDto

type CreateStateLocationAwsDto struct {
	// An AWS Region
	Region string `json:"region"`
}

CreateStateLocationAwsDto struct for CreateStateLocationAwsDto

func NewCreateStateLocationAwsDto

func NewCreateStateLocationAwsDto(region string) *CreateStateLocationAwsDto

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

func NewCreateStateLocationAwsDtoWithDefaults

func NewCreateStateLocationAwsDtoWithDefaults() *CreateStateLocationAwsDto

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

func (*CreateStateLocationAwsDto) GetRegion

func (o *CreateStateLocationAwsDto) GetRegion() string

GetRegion returns the Region field value

func (*CreateStateLocationAwsDto) GetRegionOk

func (o *CreateStateLocationAwsDto) GetRegionOk() (*string, bool)

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

func (CreateStateLocationAwsDto) MarshalJSON

func (o CreateStateLocationAwsDto) MarshalJSON() ([]byte, error)

func (*CreateStateLocationAwsDto) SetRegion

func (o *CreateStateLocationAwsDto) SetRegion(v string)

SetRegion sets field value

type CreateStateLocationAzure

type CreateStateLocationAzure struct {
	// An Azure Region
	Region string `json:"region"`
}

CreateStateLocationAzure struct for CreateStateLocationAzure

func NewCreateStateLocationAzure

func NewCreateStateLocationAzure(region string) *CreateStateLocationAzure

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

func NewCreateStateLocationAzureWithDefaults

func NewCreateStateLocationAzureWithDefaults() *CreateStateLocationAzure

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

func (*CreateStateLocationAzure) GetRegion

func (o *CreateStateLocationAzure) GetRegion() string

GetRegion returns the Region field value

func (*CreateStateLocationAzure) GetRegionOk

func (o *CreateStateLocationAzure) GetRegionOk() (*string, bool)

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

func (CreateStateLocationAzure) MarshalJSON

func (o CreateStateLocationAzure) MarshalJSON() ([]byte, error)

func (*CreateStateLocationAzure) SetRegion

func (o *CreateStateLocationAzure) SetRegion(v string)

SetRegion sets field value

type CreateStateLocationAzureDto

type CreateStateLocationAzureDto struct {
	// An Azure Region
	Region string `json:"region"`
}

CreateStateLocationAzureDto struct for CreateStateLocationAzureDto

func NewCreateStateLocationAzureDto

func NewCreateStateLocationAzureDto(region string) *CreateStateLocationAzureDto

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

func NewCreateStateLocationAzureDtoWithDefaults

func NewCreateStateLocationAzureDtoWithDefaults() *CreateStateLocationAzureDto

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

func (*CreateStateLocationAzureDto) GetRegion

func (o *CreateStateLocationAzureDto) GetRegion() string

GetRegion returns the Region field value

func (*CreateStateLocationAzureDto) GetRegionOk

func (o *CreateStateLocationAzureDto) GetRegionOk() (*string, bool)

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

func (CreateStateLocationAzureDto) MarshalJSON

func (o CreateStateLocationAzureDto) MarshalJSON() ([]byte, error)

func (*CreateStateLocationAzureDto) SetRegion

func (o *CreateStateLocationAzureDto) SetRegion(v string)

SetRegion sets field value

type CreateStateLocations

type CreateStateLocations struct {
	// The AWS locations for the State
	Aws *[]string `json:"aws,omitempty"`
	// The Azure locations for the State
	Azure *[]string `json:"azure,omitempty"`
}

CreateStateLocations struct for CreateStateLocations

func NewCreateStateLocations

func NewCreateStateLocations() *CreateStateLocations

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

func NewCreateStateLocationsWithDefaults

func NewCreateStateLocationsWithDefaults() *CreateStateLocations

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

func (*CreateStateLocations) GetAws

func (o *CreateStateLocations) GetAws() []string

GetAws returns the Aws field value if set, zero value otherwise.

func (*CreateStateLocations) GetAwsOk

func (o *CreateStateLocations) GetAwsOk() (*[]string, bool)

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

func (*CreateStateLocations) GetAzure

func (o *CreateStateLocations) GetAzure() []string

GetAzure returns the Azure field value if set, zero value otherwise.

func (*CreateStateLocations) GetAzureOk

func (o *CreateStateLocations) GetAzureOk() (*[]string, bool)

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

func (*CreateStateLocations) HasAws

func (o *CreateStateLocations) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*CreateStateLocations) HasAzure

func (o *CreateStateLocations) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (CreateStateLocations) MarshalJSON

func (o CreateStateLocations) MarshalJSON() ([]byte, error)

func (*CreateStateLocations) SetAws

func (o *CreateStateLocations) SetAws(v []string)

SetAws gets a reference to the given []string and assigns it to the Aws field.

func (*CreateStateLocations) SetAzure

func (o *CreateStateLocations) SetAzure(v []string)

SetAzure gets a reference to the given []string and assigns it to the Azure field.

type CreateStateLocationsDto

type CreateStateLocationsDto struct {
	// The AWS locations for the State
	Aws *[]CreateStateLocationAwsDto `json:"aws,omitempty"`
	// The Azure locations for the State
	Azure *[]CreateStateLocationAzureDto `json:"azure,omitempty"`
}

CreateStateLocationsDto struct for CreateStateLocationsDto

func NewCreateStateLocationsDto

func NewCreateStateLocationsDto() *CreateStateLocationsDto

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

func NewCreateStateLocationsDtoWithDefaults

func NewCreateStateLocationsDtoWithDefaults() *CreateStateLocationsDto

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

func (*CreateStateLocationsDto) GetAws

func (o *CreateStateLocationsDto) GetAws() []CreateStateLocationAwsDto

GetAws returns the Aws field value if set, zero value otherwise.

func (*CreateStateLocationsDto) GetAwsOk

func (o *CreateStateLocationsDto) GetAwsOk() (*[]CreateStateLocationAwsDto, bool)

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

func (*CreateStateLocationsDto) GetAzure

func (o *CreateStateLocationsDto) GetAzure() []CreateStateLocationAzureDto

GetAzure returns the Azure field value if set, zero value otherwise.

func (*CreateStateLocationsDto) GetAzureOk

func (o *CreateStateLocationsDto) GetAzureOk() (*[]CreateStateLocationAzureDto, bool)

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

func (*CreateStateLocationsDto) HasAws

func (o *CreateStateLocationsDto) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*CreateStateLocationsDto) HasAzure

func (o *CreateStateLocationsDto) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (CreateStateLocationsDto) MarshalJSON

func (o CreateStateLocationsDto) MarshalJSON() ([]byte, error)

func (*CreateStateLocationsDto) SetAws

func (o *CreateStateLocationsDto) SetAws(v []CreateStateLocationAwsDto)

SetAws gets a reference to the given []CreateStateLocationAwsDto and assigns it to the Aws field.

func (*CreateStateLocationsDto) SetAzure

func (o *CreateStateLocationsDto) SetAzure(v []CreateStateLocationAzureDto)

SetAzure gets a reference to the given []CreateStateLocationAzureDto and assigns it to the Azure field.

type CreateStorageClassDto

type CreateStorageClassDto struct {
	// Storage class name
	Name string `json:"name"`
	// The `volumeBindingMode` field of the StorageClass
	VolumeBindingMode string `json:"volumeBindingMode"`
	// The file system type of the state
	FsType string `json:"fsType"`
	// The `mountOptions` field of the StorageClass
	MountOptions *string `json:"mountOptions,omitempty"`
}

CreateStorageClassDto struct for CreateStorageClassDto

func NewCreateStorageClassDto

func NewCreateStorageClassDto(name string, volumeBindingMode string, fsType string) *CreateStorageClassDto

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

func NewCreateStorageClassDtoWithDefaults

func NewCreateStorageClassDtoWithDefaults() *CreateStorageClassDto

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

func (*CreateStorageClassDto) GetFsType added in v0.1.1

func (o *CreateStorageClassDto) GetFsType() string

GetFsType returns the FsType field value

func (*CreateStorageClassDto) GetFsTypeOk added in v0.1.1

func (o *CreateStorageClassDto) GetFsTypeOk() (*string, bool)

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

func (*CreateStorageClassDto) GetMountOptions

func (o *CreateStorageClassDto) GetMountOptions() string

GetMountOptions returns the MountOptions field value if set, zero value otherwise.

func (*CreateStorageClassDto) GetMountOptionsOk

func (o *CreateStorageClassDto) GetMountOptionsOk() (*string, bool)

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

func (*CreateStorageClassDto) GetName

func (o *CreateStorageClassDto) GetName() string

GetName returns the Name field value

func (*CreateStorageClassDto) GetNameOk

func (o *CreateStorageClassDto) GetNameOk() (*string, bool)

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

func (*CreateStorageClassDto) GetVolumeBindingMode

func (o *CreateStorageClassDto) GetVolumeBindingMode() string

GetVolumeBindingMode returns the VolumeBindingMode field value

func (*CreateStorageClassDto) GetVolumeBindingModeOk

func (o *CreateStorageClassDto) GetVolumeBindingModeOk() (*string, bool)

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

func (*CreateStorageClassDto) HasMountOptions

func (o *CreateStorageClassDto) HasMountOptions() bool

HasMountOptions returns a boolean if a field has been set.

func (CreateStorageClassDto) MarshalJSON

func (o CreateStorageClassDto) MarshalJSON() ([]byte, error)

func (*CreateStorageClassDto) SetFsType added in v0.1.1

func (o *CreateStorageClassDto) SetFsType(v string)

SetFsType sets field value

func (*CreateStorageClassDto) SetMountOptions

func (o *CreateStorageClassDto) SetMountOptions(v string)

SetMountOptions gets a reference to the given string and assigns it to the MountOptions field.

func (*CreateStorageClassDto) SetName

func (o *CreateStorageClassDto) SetName(v string)

SetName sets field value

func (*CreateStorageClassDto) SetVolumeBindingMode

func (o *CreateStorageClassDto) SetVolumeBindingMode(v string)

SetVolumeBindingMode sets field value

type CreateVolumeDto

type CreateVolumeDto struct {
	// The name of the volume.
	Name string `json:"name"`
	// The size of the Volume in GiB
	SizeGi float32 `json:"sizeGi"`
	// The file system type of the Volume
	FsType *string `json:"fsType,omitempty"`
}

CreateVolumeDto struct for CreateVolumeDto

func NewCreateVolumeDto

func NewCreateVolumeDto(name string, sizeGi float32) *CreateVolumeDto

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

func NewCreateVolumeDtoWithDefaults

func NewCreateVolumeDtoWithDefaults() *CreateVolumeDto

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

func (*CreateVolumeDto) GetFsType

func (o *CreateVolumeDto) GetFsType() string

GetFsType returns the FsType field value if set, zero value otherwise.

func (*CreateVolumeDto) GetFsTypeOk

func (o *CreateVolumeDto) GetFsTypeOk() (*string, bool)

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

func (*CreateVolumeDto) GetName

func (o *CreateVolumeDto) GetName() string

GetName returns the Name field value

func (*CreateVolumeDto) GetNameOk

func (o *CreateVolumeDto) GetNameOk() (*string, bool)

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

func (*CreateVolumeDto) GetSizeGi

func (o *CreateVolumeDto) GetSizeGi() float32

GetSizeGi returns the SizeGi field value

func (*CreateVolumeDto) GetSizeGiOk

func (o *CreateVolumeDto) GetSizeGiOk() (*float32, bool)

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

func (*CreateVolumeDto) HasFsType added in v0.2.2

func (o *CreateVolumeDto) HasFsType() bool

HasFsType returns a boolean if a field has been set.

func (CreateVolumeDto) MarshalJSON

func (o CreateVolumeDto) MarshalJSON() ([]byte, error)

func (*CreateVolumeDto) SetFsType

func (o *CreateVolumeDto) SetFsType(v string)

SetFsType gets a reference to the given string and assigns it to the FsType field.

func (*CreateVolumeDto) SetName

func (o *CreateVolumeDto) SetName(v string)

SetName sets field value

func (*CreateVolumeDto) SetSizeGi

func (o *CreateVolumeDto) SetSizeGi(v float32)

SetSizeGi sets field value

type EventActorComponent added in v0.1.3

type EventActorComponent struct {
	// Component name
	Name *string `json:"name,omitempty"`
	// Component version
	Version *string `json:"version,omitempty"`
}

EventActorComponent struct for EventActorComponent

func NewEventActorComponent added in v0.1.3

func NewEventActorComponent() *EventActorComponent

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

func NewEventActorComponentWithDefaults added in v0.1.3

func NewEventActorComponentWithDefaults() *EventActorComponent

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

func (*EventActorComponent) GetName added in v0.1.3

func (o *EventActorComponent) GetName() string

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

func (*EventActorComponent) GetNameOk added in v0.1.3

func (o *EventActorComponent) GetNameOk() (*string, bool)

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

func (*EventActorComponent) GetVersion added in v0.1.3

func (o *EventActorComponent) GetVersion() string

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

func (*EventActorComponent) GetVersionOk added in v0.1.3

func (o *EventActorComponent) GetVersionOk() (*string, bool)

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

func (*EventActorComponent) HasName added in v0.1.3

func (o *EventActorComponent) HasName() bool

HasName returns a boolean if a field has been set.

func (*EventActorComponent) HasVersion added in v0.1.3

func (o *EventActorComponent) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (EventActorComponent) MarshalJSON added in v0.1.3

func (o EventActorComponent) MarshalJSON() ([]byte, error)

func (*EventActorComponent) SetName added in v0.1.3

func (o *EventActorComponent) SetName(v string)

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

func (*EventActorComponent) SetVersion added in v0.1.3

func (o *EventActorComponent) SetVersion(v string)

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

type EventsApiService added in v0.1.3

type EventsApiService service

EventsApiService EventsApi service

func (*EventsApiService) EventsCreate added in v0.2.1

func (a *EventsApiService) EventsCreate(ctx _context.Context) ApiEventsCreateRequest

* EventsCreate Event reporting * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiEventsCreateRequest

func (*EventsApiService) EventsCreateExecute added in v0.2.1

func (a *EventsApiService) EventsCreateExecute(r ApiEventsCreateRequest) (*_nethttp.Response, error)

* Execute executes the request

type Forbidden

type Forbidden struct {
	// The HTTP Code
	HttpCode float32 `json:"httpCode"`
	// The HTTP Status
	HttpStatus string `json:"httpStatus"`
}

Forbidden struct for Forbidden

func NewForbidden

func NewForbidden(httpCode float32, httpStatus string) *Forbidden

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

func NewForbiddenWithDefaults

func NewForbiddenWithDefaults() *Forbidden

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

func (*Forbidden) GetHttpCode

func (o *Forbidden) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*Forbidden) GetHttpCodeOk

func (o *Forbidden) GetHttpCodeOk() (*float32, bool)

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

func (*Forbidden) GetHttpStatus

func (o *Forbidden) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*Forbidden) GetHttpStatusOk

func (o *Forbidden) GetHttpStatusOk() (*string, bool)

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

func (Forbidden) MarshalJSON

func (o Forbidden) MarshalJSON() ([]byte, error)

func (*Forbidden) SetHttpCode

func (o *Forbidden) SetHttpCode(v float32)

SetHttpCode sets field value

func (*Forbidden) SetHttpStatus

func (o *Forbidden) SetHttpStatus(v string)

SetHttpStatus sets field value

type FreeTierLimitExceeded added in v0.1.3

type FreeTierLimitExceeded struct {
	ErrorCode string  `json:"errorCode"`
	Type      string  `json:"type"`
	NLimit    float32 `json:"nLimit"`
	StrLimit  string  `json:"strLimit"`
}

FreeTierLimitExceeded struct for FreeTierLimitExceeded

func NewFreeTierLimitExceeded added in v0.1.3

func NewFreeTierLimitExceeded(errorCode string, type_ string, nLimit float32, strLimit string) *FreeTierLimitExceeded

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

func NewFreeTierLimitExceededWithDefaults added in v0.1.3

func NewFreeTierLimitExceededWithDefaults() *FreeTierLimitExceeded

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

func (*FreeTierLimitExceeded) GetErrorCode added in v0.1.3

func (o *FreeTierLimitExceeded) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*FreeTierLimitExceeded) GetErrorCodeOk added in v0.1.3

func (o *FreeTierLimitExceeded) GetErrorCodeOk() (*string, bool)

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

func (*FreeTierLimitExceeded) GetNLimit added in v0.1.3

func (o *FreeTierLimitExceeded) GetNLimit() float32

GetNLimit returns the NLimit field value

func (*FreeTierLimitExceeded) GetNLimitOk added in v0.1.3

func (o *FreeTierLimitExceeded) GetNLimitOk() (*float32, bool)

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

func (*FreeTierLimitExceeded) GetStrLimit added in v0.1.3

func (o *FreeTierLimitExceeded) GetStrLimit() string

GetStrLimit returns the StrLimit field value

func (*FreeTierLimitExceeded) GetStrLimitOk added in v0.1.3

func (o *FreeTierLimitExceeded) GetStrLimitOk() (*string, bool)

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

func (*FreeTierLimitExceeded) GetType added in v0.1.3

func (o *FreeTierLimitExceeded) GetType() string

GetType returns the Type field value

func (*FreeTierLimitExceeded) GetTypeOk added in v0.1.3

func (o *FreeTierLimitExceeded) GetTypeOk() (*string, bool)

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

func (FreeTierLimitExceeded) MarshalJSON added in v0.1.3

func (o FreeTierLimitExceeded) MarshalJSON() ([]byte, error)

func (*FreeTierLimitExceeded) SetErrorCode added in v0.1.3

func (o *FreeTierLimitExceeded) SetErrorCode(v string)

SetErrorCode sets field value

func (*FreeTierLimitExceeded) SetNLimit added in v0.1.3

func (o *FreeTierLimitExceeded) SetNLimit(v float32)

SetNLimit sets field value

func (*FreeTierLimitExceeded) SetStrLimit added in v0.1.3

func (o *FreeTierLimitExceeded) SetStrLimit(v string)

SetStrLimit sets field value

func (*FreeTierLimitExceeded) SetType added in v0.1.3

func (o *FreeTierLimitExceeded) SetType(v string)

SetType sets field value

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type Helm added in v0.0.12

type Helm struct {
	// Helm  description
	Repo string `json:"repo"`
	// Helm chart
	Chart string `json:"chart"`
	// Helm version
	Version string `json:"version"`
	// Helm parameters
	Parameters map[string]interface{} `json:"parameters"`
	// Modify date
	Modified time.Time `json:"modified"`
}

Helm struct for Helm

func NewHelm added in v0.0.12

func NewHelm(repo string, chart string, version string, parameters map[string]interface{}, modified time.Time) *Helm

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

func NewHelmWithDefaults added in v0.0.12

func NewHelmWithDefaults() *Helm

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

func (*Helm) GetChart added in v0.0.12

func (o *Helm) GetChart() string

GetChart returns the Chart field value

func (*Helm) GetChartOk added in v0.0.12

func (o *Helm) GetChartOk() (*string, bool)

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

func (*Helm) GetModified added in v0.0.12

func (o *Helm) GetModified() time.Time

GetModified returns the Modified field value

func (*Helm) GetModifiedOk added in v0.0.12

func (o *Helm) GetModifiedOk() (*time.Time, bool)

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

func (*Helm) GetParameters added in v0.0.12

func (o *Helm) GetParameters() map[string]interface{}

GetParameters returns the Parameters field value

func (*Helm) GetParametersOk added in v0.0.12

func (o *Helm) GetParametersOk() (*map[string]interface{}, bool)

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

func (*Helm) GetRepo added in v0.0.12

func (o *Helm) GetRepo() string

GetRepo returns the Repo field value

func (*Helm) GetRepoOk added in v0.0.12

func (o *Helm) GetRepoOk() (*string, bool)

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

func (*Helm) GetVersion added in v0.0.12

func (o *Helm) GetVersion() string

GetVersion returns the Version field value

func (*Helm) GetVersionOk added in v0.0.12

func (o *Helm) GetVersionOk() (*string, bool)

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

func (Helm) MarshalJSON added in v0.0.12

func (o Helm) MarshalJSON() ([]byte, error)

func (*Helm) SetChart added in v0.0.12

func (o *Helm) SetChart(v string)

SetChart sets field value

func (*Helm) SetModified added in v0.0.12

func (o *Helm) SetModified(v time.Time)

SetModified sets field value

func (*Helm) SetParameters added in v0.0.12

func (o *Helm) SetParameters(v map[string]interface{})

SetParameters sets field value

func (*Helm) SetRepo added in v0.0.12

func (o *Helm) SetRepo(v string)

SetRepo sets field value

func (*Helm) SetVersion added in v0.0.12

func (o *Helm) SetVersion(v string)

SetVersion sets field value

type InlineResponse400 added in v0.2.1

type InlineResponse400 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse400 struct for InlineResponse400

func NewInlineResponse400 added in v0.2.1

func NewInlineResponse400(httpCode float32, httpStatus string, errorCode string) *InlineResponse400

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

func NewInlineResponse400WithDefaults added in v0.2.1

func NewInlineResponse400WithDefaults() *InlineResponse400

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

func (*InlineResponse400) GetErrorCode added in v0.2.1

func (o *InlineResponse400) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse400) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse400) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse400) GetHttpCode added in v0.2.1

func (o *InlineResponse400) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse400) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse400) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse400) GetHttpStatus added in v0.2.1

func (o *InlineResponse400) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse400) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse400) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse400) GetMsg added in v0.2.1

func (o *InlineResponse400) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse400) GetMsgOk added in v0.2.1

func (o *InlineResponse400) GetMsgOk() (*string, bool)

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

func (*InlineResponse400) HasMsg added in v0.2.1

func (o *InlineResponse400) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse400) MarshalJSON added in v0.2.1

func (o InlineResponse400) MarshalJSON() ([]byte, error)

func (*InlineResponse400) SetErrorCode added in v0.2.1

func (o *InlineResponse400) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse400) SetHttpCode added in v0.2.1

func (o *InlineResponse400) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse400) SetHttpStatus added in v0.2.1

func (o *InlineResponse400) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse400) SetMsg added in v0.2.1

func (o *InlineResponse400) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse401 added in v0.2.1

type InlineResponse401 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse401 struct for InlineResponse401

func NewInlineResponse401 added in v0.2.1

func NewInlineResponse401(httpCode float32, httpStatus string, errorCode string) *InlineResponse401

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

func NewInlineResponse401WithDefaults added in v0.2.1

func NewInlineResponse401WithDefaults() *InlineResponse401

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

func (*InlineResponse401) GetErrorCode added in v0.2.1

func (o *InlineResponse401) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse401) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse401) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse401) GetHttpCode added in v0.2.1

func (o *InlineResponse401) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse401) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse401) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse401) GetHttpStatus added in v0.2.1

func (o *InlineResponse401) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse401) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse401) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse401) GetMsg added in v0.2.1

func (o *InlineResponse401) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse401) GetMsgOk added in v0.2.1

func (o *InlineResponse401) GetMsgOk() (*string, bool)

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

func (*InlineResponse401) HasMsg added in v0.2.1

func (o *InlineResponse401) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse401) MarshalJSON added in v0.2.1

func (o InlineResponse401) MarshalJSON() ([]byte, error)

func (*InlineResponse401) SetErrorCode added in v0.2.1

func (o *InlineResponse401) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse401) SetHttpCode added in v0.2.1

func (o *InlineResponse401) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse401) SetHttpStatus added in v0.2.1

func (o *InlineResponse401) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse401) SetMsg added in v0.2.1

func (o *InlineResponse401) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse402 added in v0.2.1

type InlineResponse402 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse402 struct for InlineResponse402

func NewInlineResponse402 added in v0.2.1

func NewInlineResponse402(httpCode float32, httpStatus string, errorCode string) *InlineResponse402

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

func NewInlineResponse402WithDefaults added in v0.2.1

func NewInlineResponse402WithDefaults() *InlineResponse402

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

func (*InlineResponse402) GetErrorCode added in v0.2.1

func (o *InlineResponse402) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse402) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse402) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse402) GetHttpCode added in v0.2.1

func (o *InlineResponse402) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse402) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse402) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse402) GetHttpStatus added in v0.2.1

func (o *InlineResponse402) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse402) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse402) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse402) GetMsg added in v0.2.1

func (o *InlineResponse402) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse402) GetMsgOk added in v0.2.1

func (o *InlineResponse402) GetMsgOk() (*string, bool)

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

func (*InlineResponse402) HasMsg added in v0.2.1

func (o *InlineResponse402) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse402) MarshalJSON added in v0.2.1

func (o InlineResponse402) MarshalJSON() ([]byte, error)

func (*InlineResponse402) SetErrorCode added in v0.2.1

func (o *InlineResponse402) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse402) SetHttpCode added in v0.2.1

func (o *InlineResponse402) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse402) SetHttpStatus added in v0.2.1

func (o *InlineResponse402) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse402) SetMsg added in v0.2.1

func (o *InlineResponse402) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4021 added in v0.2.1

type InlineResponse4021 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4021 struct for InlineResponse4021

func NewInlineResponse4021 added in v0.2.1

func NewInlineResponse4021(httpCode float32, httpStatus string, errorCode string) *InlineResponse4021

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

func NewInlineResponse4021WithDefaults added in v0.2.1

func NewInlineResponse4021WithDefaults() *InlineResponse4021

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

func (*InlineResponse4021) GetErrorCode added in v0.2.1

func (o *InlineResponse4021) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4021) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4021) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4021) GetHttpCode added in v0.2.1

func (o *InlineResponse4021) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4021) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4021) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4021) GetHttpStatus added in v0.2.1

func (o *InlineResponse4021) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4021) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4021) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4021) GetMsg added in v0.2.1

func (o *InlineResponse4021) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4021) GetMsgOk added in v0.2.1

func (o *InlineResponse4021) GetMsgOk() (*string, bool)

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

func (*InlineResponse4021) HasMsg added in v0.2.1

func (o *InlineResponse4021) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4021) MarshalJSON added in v0.2.1

func (o InlineResponse4021) MarshalJSON() ([]byte, error)

func (*InlineResponse4021) SetErrorCode added in v0.2.1

func (o *InlineResponse4021) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4021) SetHttpCode added in v0.2.1

func (o *InlineResponse4021) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4021) SetHttpStatus added in v0.2.1

func (o *InlineResponse4021) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4021) SetMsg added in v0.2.1

func (o *InlineResponse4021) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse403 added in v0.2.1

type InlineResponse403 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse403 struct for InlineResponse403

func NewInlineResponse403 added in v0.2.1

func NewInlineResponse403(httpCode float32, httpStatus string, errorCode string) *InlineResponse403

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

func NewInlineResponse403WithDefaults added in v0.2.1

func NewInlineResponse403WithDefaults() *InlineResponse403

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

func (*InlineResponse403) GetErrorCode added in v0.2.1

func (o *InlineResponse403) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse403) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse403) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse403) GetHttpCode added in v0.2.1

func (o *InlineResponse403) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse403) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse403) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse403) GetHttpStatus added in v0.2.1

func (o *InlineResponse403) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse403) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse403) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse403) GetMsg added in v0.2.1

func (o *InlineResponse403) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse403) GetMsgOk added in v0.2.1

func (o *InlineResponse403) GetMsgOk() (*string, bool)

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

func (*InlineResponse403) HasMsg added in v0.2.1

func (o *InlineResponse403) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse403) MarshalJSON added in v0.2.1

func (o InlineResponse403) MarshalJSON() ([]byte, error)

func (*InlineResponse403) SetErrorCode added in v0.2.1

func (o *InlineResponse403) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse403) SetHttpCode added in v0.2.1

func (o *InlineResponse403) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse403) SetHttpStatus added in v0.2.1

func (o *InlineResponse403) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse403) SetMsg added in v0.2.1

func (o *InlineResponse403) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse404 added in v0.2.1

type InlineResponse404 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse404 struct for InlineResponse404

func NewInlineResponse404 added in v0.2.1

func NewInlineResponse404(httpCode float32, httpStatus string, errorCode string) *InlineResponse404

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

func NewInlineResponse404WithDefaults added in v0.2.1

func NewInlineResponse404WithDefaults() *InlineResponse404

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

func (*InlineResponse404) GetErrorCode added in v0.2.1

func (o *InlineResponse404) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse404) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse404) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse404) GetHttpCode added in v0.2.1

func (o *InlineResponse404) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse404) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse404) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse404) GetHttpStatus added in v0.2.1

func (o *InlineResponse404) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse404) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse404) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse404) GetMsg added in v0.2.1

func (o *InlineResponse404) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse404) GetMsgOk added in v0.2.1

func (o *InlineResponse404) GetMsgOk() (*string, bool)

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

func (*InlineResponse404) HasMsg added in v0.2.1

func (o *InlineResponse404) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse404) MarshalJSON added in v0.2.1

func (o InlineResponse404) MarshalJSON() ([]byte, error)

func (*InlineResponse404) SetErrorCode added in v0.2.1

func (o *InlineResponse404) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse404) SetHttpCode added in v0.2.1

func (o *InlineResponse404) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse404) SetHttpStatus added in v0.2.1

func (o *InlineResponse404) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse404) SetMsg added in v0.2.1

func (o *InlineResponse404) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4041 added in v0.2.1

type InlineResponse4041 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4041 struct for InlineResponse4041

func NewInlineResponse4041 added in v0.2.1

func NewInlineResponse4041(httpCode float32, httpStatus string, errorCode string) *InlineResponse4041

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

func NewInlineResponse4041WithDefaults added in v0.2.1

func NewInlineResponse4041WithDefaults() *InlineResponse4041

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

func (*InlineResponse4041) GetErrorCode added in v0.2.1

func (o *InlineResponse4041) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4041) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4041) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4041) GetHttpCode added in v0.2.1

func (o *InlineResponse4041) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4041) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4041) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4041) GetHttpStatus added in v0.2.1

func (o *InlineResponse4041) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4041) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4041) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4041) GetMsg added in v0.2.1

func (o *InlineResponse4041) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4041) GetMsgOk added in v0.2.1

func (o *InlineResponse4041) GetMsgOk() (*string, bool)

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

func (*InlineResponse4041) HasMsg added in v0.2.1

func (o *InlineResponse4041) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4041) MarshalJSON added in v0.2.1

func (o InlineResponse4041) MarshalJSON() ([]byte, error)

func (*InlineResponse4041) SetErrorCode added in v0.2.1

func (o *InlineResponse4041) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4041) SetHttpCode added in v0.2.1

func (o *InlineResponse4041) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4041) SetHttpStatus added in v0.2.1

func (o *InlineResponse4041) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4041) SetMsg added in v0.2.1

func (o *InlineResponse4041) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4042 added in v0.2.1

type InlineResponse4042 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4042 struct for InlineResponse4042

func NewInlineResponse4042 added in v0.2.1

func NewInlineResponse4042(httpCode float32, httpStatus string, errorCode string) *InlineResponse4042

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

func NewInlineResponse4042WithDefaults added in v0.2.1

func NewInlineResponse4042WithDefaults() *InlineResponse4042

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

func (*InlineResponse4042) GetErrorCode added in v0.2.1

func (o *InlineResponse4042) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4042) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4042) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4042) GetHttpCode added in v0.2.1

func (o *InlineResponse4042) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4042) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4042) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4042) GetHttpStatus added in v0.2.1

func (o *InlineResponse4042) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4042) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4042) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4042) GetMsg added in v0.2.1

func (o *InlineResponse4042) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4042) GetMsgOk added in v0.2.1

func (o *InlineResponse4042) GetMsgOk() (*string, bool)

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

func (*InlineResponse4042) HasMsg added in v0.2.1

func (o *InlineResponse4042) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4042) MarshalJSON added in v0.2.1

func (o InlineResponse4042) MarshalJSON() ([]byte, error)

func (*InlineResponse4042) SetErrorCode added in v0.2.1

func (o *InlineResponse4042) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4042) SetHttpCode added in v0.2.1

func (o *InlineResponse4042) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4042) SetHttpStatus added in v0.2.1

func (o *InlineResponse4042) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4042) SetMsg added in v0.2.1

func (o *InlineResponse4042) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4043 added in v0.2.1

type InlineResponse4043 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4043 struct for InlineResponse4043

func NewInlineResponse4043 added in v0.2.1

func NewInlineResponse4043(httpCode float32, httpStatus string, errorCode string) *InlineResponse4043

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

func NewInlineResponse4043WithDefaults added in v0.2.1

func NewInlineResponse4043WithDefaults() *InlineResponse4043

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

func (*InlineResponse4043) GetErrorCode added in v0.2.1

func (o *InlineResponse4043) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4043) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4043) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4043) GetHttpCode added in v0.2.1

func (o *InlineResponse4043) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4043) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4043) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4043) GetHttpStatus added in v0.2.1

func (o *InlineResponse4043) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4043) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4043) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4043) GetMsg added in v0.2.1

func (o *InlineResponse4043) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4043) GetMsgOk added in v0.2.1

func (o *InlineResponse4043) GetMsgOk() (*string, bool)

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

func (*InlineResponse4043) HasMsg added in v0.2.1

func (o *InlineResponse4043) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4043) MarshalJSON added in v0.2.1

func (o InlineResponse4043) MarshalJSON() ([]byte, error)

func (*InlineResponse4043) SetErrorCode added in v0.2.1

func (o *InlineResponse4043) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4043) SetHttpCode added in v0.2.1

func (o *InlineResponse4043) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4043) SetHttpStatus added in v0.2.1

func (o *InlineResponse4043) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4043) SetMsg added in v0.2.1

func (o *InlineResponse4043) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4044 added in v0.2.1

type InlineResponse4044 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4044 struct for InlineResponse4044

func NewInlineResponse4044 added in v0.2.1

func NewInlineResponse4044(httpCode float32, httpStatus string, errorCode string) *InlineResponse4044

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

func NewInlineResponse4044WithDefaults added in v0.2.1

func NewInlineResponse4044WithDefaults() *InlineResponse4044

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

func (*InlineResponse4044) GetErrorCode added in v0.2.1

func (o *InlineResponse4044) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4044) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4044) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4044) GetHttpCode added in v0.2.1

func (o *InlineResponse4044) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4044) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4044) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4044) GetHttpStatus added in v0.2.1

func (o *InlineResponse4044) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4044) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4044) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4044) GetMsg added in v0.2.1

func (o *InlineResponse4044) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4044) GetMsgOk added in v0.2.1

func (o *InlineResponse4044) GetMsgOk() (*string, bool)

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

func (*InlineResponse4044) HasMsg added in v0.2.1

func (o *InlineResponse4044) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4044) MarshalJSON added in v0.2.1

func (o InlineResponse4044) MarshalJSON() ([]byte, error)

func (*InlineResponse4044) SetErrorCode added in v0.2.1

func (o *InlineResponse4044) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4044) SetHttpCode added in v0.2.1

func (o *InlineResponse4044) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4044) SetHttpStatus added in v0.2.1

func (o *InlineResponse4044) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4044) SetMsg added in v0.2.1

func (o *InlineResponse4044) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse409 added in v0.2.1

type InlineResponse409 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse409 struct for InlineResponse409

func NewInlineResponse409 added in v0.2.1

func NewInlineResponse409(httpCode float32, httpStatus string, errorCode string) *InlineResponse409

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

func NewInlineResponse409WithDefaults added in v0.2.1

func NewInlineResponse409WithDefaults() *InlineResponse409

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

func (*InlineResponse409) GetErrorCode added in v0.2.1

func (o *InlineResponse409) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse409) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse409) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse409) GetHttpCode added in v0.2.1

func (o *InlineResponse409) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse409) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse409) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse409) GetHttpStatus added in v0.2.1

func (o *InlineResponse409) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse409) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse409) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse409) GetMsg added in v0.2.1

func (o *InlineResponse409) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse409) GetMsgOk added in v0.2.1

func (o *InlineResponse409) GetMsgOk() (*string, bool)

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

func (*InlineResponse409) HasMsg added in v0.2.1

func (o *InlineResponse409) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse409) MarshalJSON added in v0.2.1

func (o InlineResponse409) MarshalJSON() ([]byte, error)

func (*InlineResponse409) SetErrorCode added in v0.2.1

func (o *InlineResponse409) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse409) SetHttpCode added in v0.2.1

func (o *InlineResponse409) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse409) SetHttpStatus added in v0.2.1

func (o *InlineResponse409) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse409) SetMsg added in v0.2.1

func (o *InlineResponse409) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4091 added in v0.2.1

type InlineResponse4091 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4091 struct for InlineResponse4091

func NewInlineResponse4091 added in v0.2.1

func NewInlineResponse4091(httpCode float32, httpStatus string, errorCode string) *InlineResponse4091

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

func NewInlineResponse4091WithDefaults added in v0.2.1

func NewInlineResponse4091WithDefaults() *InlineResponse4091

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

func (*InlineResponse4091) GetErrorCode added in v0.2.1

func (o *InlineResponse4091) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4091) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4091) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4091) GetHttpCode added in v0.2.1

func (o *InlineResponse4091) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4091) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4091) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4091) GetHttpStatus added in v0.2.1

func (o *InlineResponse4091) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4091) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4091) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4091) GetMsg added in v0.2.1

func (o *InlineResponse4091) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4091) GetMsgOk added in v0.2.1

func (o *InlineResponse4091) GetMsgOk() (*string, bool)

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

func (*InlineResponse4091) HasMsg added in v0.2.1

func (o *InlineResponse4091) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4091) MarshalJSON added in v0.2.1

func (o InlineResponse4091) MarshalJSON() ([]byte, error)

func (*InlineResponse4091) SetErrorCode added in v0.2.1

func (o *InlineResponse4091) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4091) SetHttpCode added in v0.2.1

func (o *InlineResponse4091) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4091) SetHttpStatus added in v0.2.1

func (o *InlineResponse4091) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4091) SetMsg added in v0.2.1

func (o *InlineResponse4091) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse40910 added in v0.2.1

type InlineResponse40910 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse40910 struct for InlineResponse40910

func NewInlineResponse40910 added in v0.2.1

func NewInlineResponse40910(httpCode float32, httpStatus string, errorCode string) *InlineResponse40910

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

func NewInlineResponse40910WithDefaults added in v0.2.1

func NewInlineResponse40910WithDefaults() *InlineResponse40910

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

func (*InlineResponse40910) GetErrorCode added in v0.2.1

func (o *InlineResponse40910) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse40910) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse40910) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse40910) GetHttpCode added in v0.2.1

func (o *InlineResponse40910) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse40910) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse40910) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse40910) GetHttpStatus added in v0.2.1

func (o *InlineResponse40910) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse40910) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse40910) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse40910) GetMsg added in v0.2.1

func (o *InlineResponse40910) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse40910) GetMsgOk added in v0.2.1

func (o *InlineResponse40910) GetMsgOk() (*string, bool)

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

func (*InlineResponse40910) HasMsg added in v0.2.1

func (o *InlineResponse40910) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse40910) MarshalJSON added in v0.2.1

func (o InlineResponse40910) MarshalJSON() ([]byte, error)

func (*InlineResponse40910) SetErrorCode added in v0.2.1

func (o *InlineResponse40910) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse40910) SetHttpCode added in v0.2.1

func (o *InlineResponse40910) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse40910) SetHttpStatus added in v0.2.1

func (o *InlineResponse40910) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse40910) SetMsg added in v0.2.1

func (o *InlineResponse40910) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4092 added in v0.2.1

type InlineResponse4092 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4092 struct for InlineResponse4092

func NewInlineResponse4092 added in v0.2.1

func NewInlineResponse4092(httpCode float32, httpStatus string, errorCode string) *InlineResponse4092

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

func NewInlineResponse4092WithDefaults added in v0.2.1

func NewInlineResponse4092WithDefaults() *InlineResponse4092

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

func (*InlineResponse4092) GetErrorCode added in v0.2.1

func (o *InlineResponse4092) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4092) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4092) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4092) GetHttpCode added in v0.2.1

func (o *InlineResponse4092) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4092) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4092) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4092) GetHttpStatus added in v0.2.1

func (o *InlineResponse4092) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4092) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4092) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4092) GetMsg added in v0.2.1

func (o *InlineResponse4092) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4092) GetMsgOk added in v0.2.1

func (o *InlineResponse4092) GetMsgOk() (*string, bool)

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

func (*InlineResponse4092) HasMsg added in v0.2.1

func (o *InlineResponse4092) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4092) MarshalJSON added in v0.2.1

func (o InlineResponse4092) MarshalJSON() ([]byte, error)

func (*InlineResponse4092) SetErrorCode added in v0.2.1

func (o *InlineResponse4092) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4092) SetHttpCode added in v0.2.1

func (o *InlineResponse4092) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4092) SetHttpStatus added in v0.2.1

func (o *InlineResponse4092) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4092) SetMsg added in v0.2.1

func (o *InlineResponse4092) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4093 added in v0.2.1

type InlineResponse4093 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4093 struct for InlineResponse4093

func NewInlineResponse4093 added in v0.2.1

func NewInlineResponse4093(httpCode float32, httpStatus string, errorCode string) *InlineResponse4093

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

func NewInlineResponse4093WithDefaults added in v0.2.1

func NewInlineResponse4093WithDefaults() *InlineResponse4093

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

func (*InlineResponse4093) GetErrorCode added in v0.2.1

func (o *InlineResponse4093) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4093) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4093) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4093) GetHttpCode added in v0.2.1

func (o *InlineResponse4093) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4093) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4093) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4093) GetHttpStatus added in v0.2.1

func (o *InlineResponse4093) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4093) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4093) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4093) GetMsg added in v0.2.1

func (o *InlineResponse4093) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4093) GetMsgOk added in v0.2.1

func (o *InlineResponse4093) GetMsgOk() (*string, bool)

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

func (*InlineResponse4093) HasMsg added in v0.2.1

func (o *InlineResponse4093) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4093) MarshalJSON added in v0.2.1

func (o InlineResponse4093) MarshalJSON() ([]byte, error)

func (*InlineResponse4093) SetErrorCode added in v0.2.1

func (o *InlineResponse4093) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4093) SetHttpCode added in v0.2.1

func (o *InlineResponse4093) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4093) SetHttpStatus added in v0.2.1

func (o *InlineResponse4093) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4093) SetMsg added in v0.2.1

func (o *InlineResponse4093) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4094 added in v0.2.1

type InlineResponse4094 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4094 struct for InlineResponse4094

func NewInlineResponse4094 added in v0.2.1

func NewInlineResponse4094(httpCode float32, httpStatus string, errorCode string) *InlineResponse4094

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

func NewInlineResponse4094WithDefaults added in v0.2.1

func NewInlineResponse4094WithDefaults() *InlineResponse4094

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

func (*InlineResponse4094) GetErrorCode added in v0.2.1

func (o *InlineResponse4094) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4094) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4094) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4094) GetHttpCode added in v0.2.1

func (o *InlineResponse4094) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4094) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4094) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4094) GetHttpStatus added in v0.2.1

func (o *InlineResponse4094) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4094) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4094) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4094) GetMsg added in v0.2.1

func (o *InlineResponse4094) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4094) GetMsgOk added in v0.2.1

func (o *InlineResponse4094) GetMsgOk() (*string, bool)

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

func (*InlineResponse4094) HasMsg added in v0.2.1

func (o *InlineResponse4094) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4094) MarshalJSON added in v0.2.1

func (o InlineResponse4094) MarshalJSON() ([]byte, error)

func (*InlineResponse4094) SetErrorCode added in v0.2.1

func (o *InlineResponse4094) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4094) SetHttpCode added in v0.2.1

func (o *InlineResponse4094) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4094) SetHttpStatus added in v0.2.1

func (o *InlineResponse4094) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4094) SetMsg added in v0.2.1

func (o *InlineResponse4094) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4095 added in v0.2.1

type InlineResponse4095 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4095 struct for InlineResponse4095

func NewInlineResponse4095 added in v0.2.1

func NewInlineResponse4095(httpCode float32, httpStatus string, errorCode string) *InlineResponse4095

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

func NewInlineResponse4095WithDefaults added in v0.2.1

func NewInlineResponse4095WithDefaults() *InlineResponse4095

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

func (*InlineResponse4095) GetErrorCode added in v0.2.1

func (o *InlineResponse4095) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4095) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4095) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4095) GetHttpCode added in v0.2.1

func (o *InlineResponse4095) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4095) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4095) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4095) GetHttpStatus added in v0.2.1

func (o *InlineResponse4095) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4095) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4095) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4095) GetMsg added in v0.2.1

func (o *InlineResponse4095) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4095) GetMsgOk added in v0.2.1

func (o *InlineResponse4095) GetMsgOk() (*string, bool)

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

func (*InlineResponse4095) HasMsg added in v0.2.1

func (o *InlineResponse4095) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4095) MarshalJSON added in v0.2.1

func (o InlineResponse4095) MarshalJSON() ([]byte, error)

func (*InlineResponse4095) SetErrorCode added in v0.2.1

func (o *InlineResponse4095) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4095) SetHttpCode added in v0.2.1

func (o *InlineResponse4095) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4095) SetHttpStatus added in v0.2.1

func (o *InlineResponse4095) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4095) SetMsg added in v0.2.1

func (o *InlineResponse4095) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4096 added in v0.2.1

type InlineResponse4096 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4096 struct for InlineResponse4096

func NewInlineResponse4096 added in v0.2.1

func NewInlineResponse4096(httpCode float32, httpStatus string, errorCode string) *InlineResponse4096

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

func NewInlineResponse4096WithDefaults added in v0.2.1

func NewInlineResponse4096WithDefaults() *InlineResponse4096

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

func (*InlineResponse4096) GetErrorCode added in v0.2.1

func (o *InlineResponse4096) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4096) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4096) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4096) GetHttpCode added in v0.2.1

func (o *InlineResponse4096) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4096) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4096) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4096) GetHttpStatus added in v0.2.1

func (o *InlineResponse4096) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4096) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4096) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4096) GetMsg added in v0.2.1

func (o *InlineResponse4096) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4096) GetMsgOk added in v0.2.1

func (o *InlineResponse4096) GetMsgOk() (*string, bool)

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

func (*InlineResponse4096) HasMsg added in v0.2.1

func (o *InlineResponse4096) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4096) MarshalJSON added in v0.2.1

func (o InlineResponse4096) MarshalJSON() ([]byte, error)

func (*InlineResponse4096) SetErrorCode added in v0.2.1

func (o *InlineResponse4096) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4096) SetHttpCode added in v0.2.1

func (o *InlineResponse4096) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4096) SetHttpStatus added in v0.2.1

func (o *InlineResponse4096) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4096) SetMsg added in v0.2.1

func (o *InlineResponse4096) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4097 added in v0.2.1

type InlineResponse4097 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4097 struct for InlineResponse4097

func NewInlineResponse4097 added in v0.2.1

func NewInlineResponse4097(httpCode float32, httpStatus string, errorCode string) *InlineResponse4097

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

func NewInlineResponse4097WithDefaults added in v0.2.1

func NewInlineResponse4097WithDefaults() *InlineResponse4097

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

func (*InlineResponse4097) GetErrorCode added in v0.2.1

func (o *InlineResponse4097) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4097) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4097) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4097) GetHttpCode added in v0.2.1

func (o *InlineResponse4097) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4097) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4097) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4097) GetHttpStatus added in v0.2.1

func (o *InlineResponse4097) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4097) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4097) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4097) GetMsg added in v0.2.1

func (o *InlineResponse4097) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4097) GetMsgOk added in v0.2.1

func (o *InlineResponse4097) GetMsgOk() (*string, bool)

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

func (*InlineResponse4097) HasMsg added in v0.2.1

func (o *InlineResponse4097) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4097) MarshalJSON added in v0.2.1

func (o InlineResponse4097) MarshalJSON() ([]byte, error)

func (*InlineResponse4097) SetErrorCode added in v0.2.1

func (o *InlineResponse4097) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4097) SetHttpCode added in v0.2.1

func (o *InlineResponse4097) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4097) SetHttpStatus added in v0.2.1

func (o *InlineResponse4097) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4097) SetMsg added in v0.2.1

func (o *InlineResponse4097) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4098 added in v0.2.1

type InlineResponse4098 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4098 struct for InlineResponse4098

func NewInlineResponse4098 added in v0.2.1

func NewInlineResponse4098(httpCode float32, httpStatus string, errorCode string) *InlineResponse4098

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

func NewInlineResponse4098WithDefaults added in v0.2.1

func NewInlineResponse4098WithDefaults() *InlineResponse4098

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

func (*InlineResponse4098) GetErrorCode added in v0.2.1

func (o *InlineResponse4098) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4098) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4098) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4098) GetHttpCode added in v0.2.1

func (o *InlineResponse4098) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4098) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4098) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4098) GetHttpStatus added in v0.2.1

func (o *InlineResponse4098) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4098) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4098) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4098) GetMsg added in v0.2.1

func (o *InlineResponse4098) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4098) GetMsgOk added in v0.2.1

func (o *InlineResponse4098) GetMsgOk() (*string, bool)

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

func (*InlineResponse4098) HasMsg added in v0.2.1

func (o *InlineResponse4098) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4098) MarshalJSON added in v0.2.1

func (o InlineResponse4098) MarshalJSON() ([]byte, error)

func (*InlineResponse4098) SetErrorCode added in v0.2.1

func (o *InlineResponse4098) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4098) SetHttpCode added in v0.2.1

func (o *InlineResponse4098) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4098) SetHttpStatus added in v0.2.1

func (o *InlineResponse4098) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4098) SetMsg added in v0.2.1

func (o *InlineResponse4098) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse4099 added in v0.2.1

type InlineResponse4099 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse4099 struct for InlineResponse4099

func NewInlineResponse4099 added in v0.2.1

func NewInlineResponse4099(httpCode float32, httpStatus string, errorCode string) *InlineResponse4099

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

func NewInlineResponse4099WithDefaults added in v0.2.1

func NewInlineResponse4099WithDefaults() *InlineResponse4099

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

func (*InlineResponse4099) GetErrorCode added in v0.2.1

func (o *InlineResponse4099) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse4099) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse4099) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse4099) GetHttpCode added in v0.2.1

func (o *InlineResponse4099) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse4099) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse4099) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse4099) GetHttpStatus added in v0.2.1

func (o *InlineResponse4099) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse4099) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse4099) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse4099) GetMsg added in v0.2.1

func (o *InlineResponse4099) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse4099) GetMsgOk added in v0.2.1

func (o *InlineResponse4099) GetMsgOk() (*string, bool)

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

func (*InlineResponse4099) HasMsg added in v0.2.1

func (o *InlineResponse4099) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse4099) MarshalJSON added in v0.2.1

func (o InlineResponse4099) MarshalJSON() ([]byte, error)

func (*InlineResponse4099) SetErrorCode added in v0.2.1

func (o *InlineResponse4099) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse4099) SetHttpCode added in v0.2.1

func (o *InlineResponse4099) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse4099) SetHttpStatus added in v0.2.1

func (o *InlineResponse4099) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse4099) SetMsg added in v0.2.1

func (o *InlineResponse4099) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse500 added in v0.2.1

type InlineResponse500 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse500 struct for InlineResponse500

func NewInlineResponse500 added in v0.2.1

func NewInlineResponse500(httpCode float32, httpStatus string, errorCode string) *InlineResponse500

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

func NewInlineResponse500WithDefaults added in v0.2.1

func NewInlineResponse500WithDefaults() *InlineResponse500

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

func (*InlineResponse500) GetErrorCode added in v0.2.1

func (o *InlineResponse500) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse500) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse500) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse500) GetHttpCode added in v0.2.1

func (o *InlineResponse500) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse500) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse500) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse500) GetHttpStatus added in v0.2.1

func (o *InlineResponse500) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse500) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse500) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse500) GetMsg added in v0.2.1

func (o *InlineResponse500) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse500) GetMsgOk added in v0.2.1

func (o *InlineResponse500) GetMsgOk() (*string, bool)

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

func (*InlineResponse500) HasMsg added in v0.2.1

func (o *InlineResponse500) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse500) MarshalJSON added in v0.2.1

func (o InlineResponse500) MarshalJSON() ([]byte, error)

func (*InlineResponse500) SetErrorCode added in v0.2.1

func (o *InlineResponse500) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse500) SetHttpCode added in v0.2.1

func (o *InlineResponse500) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse500) SetHttpStatus added in v0.2.1

func (o *InlineResponse500) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse500) SetMsg added in v0.2.1

func (o *InlineResponse500) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InlineResponse502 added in v0.2.1

type InlineResponse502 struct {
	HttpCode   float32 `json:"httpCode"`
	HttpStatus string  `json:"httpStatus"`
	ErrorCode  string  `json:"errorCode"`
	Msg        *string `json:"msg,omitempty"`
}

InlineResponse502 struct for InlineResponse502

func NewInlineResponse502 added in v0.2.1

func NewInlineResponse502(httpCode float32, httpStatus string, errorCode string) *InlineResponse502

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

func NewInlineResponse502WithDefaults added in v0.2.1

func NewInlineResponse502WithDefaults() *InlineResponse502

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

func (*InlineResponse502) GetErrorCode added in v0.2.1

func (o *InlineResponse502) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InlineResponse502) GetErrorCodeOk added in v0.2.1

func (o *InlineResponse502) GetErrorCodeOk() (*string, bool)

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

func (*InlineResponse502) GetHttpCode added in v0.2.1

func (o *InlineResponse502) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*InlineResponse502) GetHttpCodeOk added in v0.2.1

func (o *InlineResponse502) GetHttpCodeOk() (*float32, bool)

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

func (*InlineResponse502) GetHttpStatus added in v0.2.1

func (o *InlineResponse502) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*InlineResponse502) GetHttpStatusOk added in v0.2.1

func (o *InlineResponse502) GetHttpStatusOk() (*string, bool)

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

func (*InlineResponse502) GetMsg added in v0.2.1

func (o *InlineResponse502) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*InlineResponse502) GetMsgOk added in v0.2.1

func (o *InlineResponse502) GetMsgOk() (*string, bool)

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

func (*InlineResponse502) HasMsg added in v0.2.1

func (o *InlineResponse502) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (InlineResponse502) MarshalJSON added in v0.2.1

func (o InlineResponse502) MarshalJSON() ([]byte, error)

func (*InlineResponse502) SetErrorCode added in v0.2.1

func (o *InlineResponse502) SetErrorCode(v string)

SetErrorCode sets field value

func (*InlineResponse502) SetHttpCode added in v0.2.1

func (o *InlineResponse502) SetHttpCode(v float32)

SetHttpCode sets field value

func (*InlineResponse502) SetHttpStatus added in v0.2.1

func (o *InlineResponse502) SetHttpStatus(v string)

SetHttpStatus sets field value

func (*InlineResponse502) SetMsg added in v0.2.1

func (o *InlineResponse502) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type InvalidToken

type InvalidToken struct {
	ErrorCode string `json:"errorCode"`
}

InvalidToken struct for InvalidToken

func NewInvalidToken

func NewInvalidToken(errorCode string) *InvalidToken

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

func NewInvalidTokenWithDefaults

func NewInvalidTokenWithDefaults() *InvalidToken

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

func (*InvalidToken) GetErrorCode

func (o *InvalidToken) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*InvalidToken) GetErrorCodeOk

func (o *InvalidToken) GetErrorCodeOk() (*string, bool)

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

func (InvalidToken) MarshalJSON

func (o InvalidToken) MarshalJSON() ([]byte, error)

func (*InvalidToken) SetErrorCode

func (o *InvalidToken) SetErrorCode(v string)

SetErrorCode sets field value

type LocationNotFound

type LocationNotFound struct {
	ErrorCode string `json:"errorCode"`
	Volume    string `json:"volume"`
	Location  string `json:"location"`
}

LocationNotFound struct for LocationNotFound

func NewLocationNotFound

func NewLocationNotFound(errorCode string, volume string, location string) *LocationNotFound

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

func NewLocationNotFoundWithDefaults

func NewLocationNotFoundWithDefaults() *LocationNotFound

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

func (*LocationNotFound) GetErrorCode

func (o *LocationNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*LocationNotFound) GetErrorCodeOk

func (o *LocationNotFound) GetErrorCodeOk() (*string, bool)

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

func (*LocationNotFound) GetLocation

func (o *LocationNotFound) GetLocation() string

GetLocation returns the Location field value

func (*LocationNotFound) GetLocationOk

func (o *LocationNotFound) GetLocationOk() (*string, bool)

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

func (*LocationNotFound) GetVolume

func (o *LocationNotFound) GetVolume() string

GetVolume returns the Volume field value

func (*LocationNotFound) GetVolumeOk

func (o *LocationNotFound) GetVolumeOk() (*string, bool)

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

func (LocationNotFound) MarshalJSON

func (o LocationNotFound) MarshalJSON() ([]byte, error)

func (*LocationNotFound) SetErrorCode

func (o *LocationNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*LocationNotFound) SetLocation

func (o *LocationNotFound) SetLocation(v string)

SetLocation sets field value

func (*LocationNotFound) SetVolume

func (o *LocationNotFound) SetVolume(v string)

SetVolume sets field value

type NotAuthorized

type NotAuthorized struct {
	ErrorCode    string `json:"errorCode"`
	Permission   string `json:"permission"`
	ResourceType string `json:"resourceType"`
	ResourceName string `json:"resourceName"`
}

NotAuthorized struct for NotAuthorized

func NewNotAuthorized

func NewNotAuthorized(errorCode string, permission string, resourceType string, resourceName string) *NotAuthorized

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

func NewNotAuthorizedWithDefaults

func NewNotAuthorizedWithDefaults() *NotAuthorized

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

func (*NotAuthorized) GetErrorCode

func (o *NotAuthorized) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*NotAuthorized) GetErrorCodeOk

func (o *NotAuthorized) GetErrorCodeOk() (*string, bool)

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

func (*NotAuthorized) GetPermission

func (o *NotAuthorized) GetPermission() string

GetPermission returns the Permission field value

func (*NotAuthorized) GetPermissionOk

func (o *NotAuthorized) GetPermissionOk() (*string, bool)

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

func (*NotAuthorized) GetResourceName

func (o *NotAuthorized) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*NotAuthorized) GetResourceNameOk

func (o *NotAuthorized) GetResourceNameOk() (*string, bool)

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

func (*NotAuthorized) GetResourceType

func (o *NotAuthorized) GetResourceType() string

GetResourceType returns the ResourceType field value

func (*NotAuthorized) GetResourceTypeOk

func (o *NotAuthorized) GetResourceTypeOk() (*string, bool)

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

func (NotAuthorized) MarshalJSON

func (o NotAuthorized) MarshalJSON() ([]byte, error)

func (*NotAuthorized) SetErrorCode

func (o *NotAuthorized) SetErrorCode(v string)

SetErrorCode sets field value

func (*NotAuthorized) SetPermission

func (o *NotAuthorized) SetPermission(v string)

SetPermission sets field value

func (*NotAuthorized) SetResourceName

func (o *NotAuthorized) SetResourceName(v string)

SetResourceName sets field value

func (*NotAuthorized) SetResourceType

func (o *NotAuthorized) SetResourceType(v string)

SetResourceType sets field value

type NotFound

type NotFound struct {
	// The HTTP Code
	HttpCode float32 `json:"httpCode"`
	// The HTTP Status
	HttpStatus string `json:"httpStatus"`
}

NotFound struct for NotFound

func NewNotFound

func NewNotFound(httpCode float32, httpStatus string) *NotFound

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

func NewNotFoundWithDefaults

func NewNotFoundWithDefaults() *NotFound

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

func (*NotFound) GetHttpCode

func (o *NotFound) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*NotFound) GetHttpCodeOk

func (o *NotFound) GetHttpCodeOk() (*float32, bool)

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

func (*NotFound) GetHttpStatus

func (o *NotFound) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*NotFound) GetHttpStatusOk

func (o *NotFound) GetHttpStatusOk() (*string, bool)

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

func (NotFound) MarshalJSON

func (o NotFound) MarshalJSON() ([]byte, error)

func (*NotFound) SetHttpCode

func (o *NotFound) SetHttpCode(v float32)

SetHttpCode sets field value

func (*NotFound) SetHttpStatus

func (o *NotFound) SetHttpStatus(v string)

SetHttpStatus sets field value

type NullableAllowedClustersListAlreadyExists

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

func NewNullableAllowedClustersListAlreadyExists

func NewNullableAllowedClustersListAlreadyExists(val *AllowedClustersListAlreadyExists) *NullableAllowedClustersListAlreadyExists

func (NullableAllowedClustersListAlreadyExists) Get

func (v NullableAllowedClustersListAlreadyExists) Get() *AllowedClustersListAlreadyExists

func (NullableAllowedClustersListAlreadyExists) IsSet

func (v NullableAllowedClustersListAlreadyExists) IsSet() bool

func (NullableAllowedClustersListAlreadyExists) MarshalJSON

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

func (*NullableAllowedClustersListAlreadyExists) Set

func (v *NullableAllowedClustersListAlreadyExists) Set(val *AllowedClustersListAlreadyExists)

func (*NullableAllowedClustersListAlreadyExists) UnmarshalJSON

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

func (*NullableAllowedClustersListAlreadyExists) Unset

func (v *NullableAllowedClustersListAlreadyExists) Unset()

type NullableAllowedClustersListNotFound

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

func NewNullableAllowedClustersListNotFound

func NewNullableAllowedClustersListNotFound(val *AllowedClustersListNotFound) *NullableAllowedClustersListNotFound

func (NullableAllowedClustersListNotFound) Get

func (v NullableAllowedClustersListNotFound) Get() *AllowedClustersListNotFound

func (NullableAllowedClustersListNotFound) IsSet

func (v NullableAllowedClustersListNotFound) IsSet() bool

func (NullableAllowedClustersListNotFound) MarshalJSON

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

func (*NullableAllowedClustersListNotFound) Set

func (v *NullableAllowedClustersListNotFound) Set(val *AllowedClustersListNotFound)

func (*NullableAllowedClustersListNotFound) UnmarshalJSON

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

func (*NullableAllowedClustersListNotFound) Unset

func (v *NullableAllowedClustersListNotFound) Unset()

type NullableApprovePleDto added in v0.2.2

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

func NewNullableApprovePleDto added in v0.2.2

func NewNullableApprovePleDto(val *ApprovePleDto) *NullableApprovePleDto

func (NullableApprovePleDto) Get added in v0.2.2

func (v NullableApprovePleDto) Get() *ApprovePleDto

func (NullableApprovePleDto) IsSet added in v0.2.2

func (v NullableApprovePleDto) IsSet() bool

func (NullableApprovePleDto) MarshalJSON added in v0.2.2

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

func (*NullableApprovePleDto) Set added in v0.2.2

func (v *NullableApprovePleDto) Set(val *ApprovePleDto)

func (*NullableApprovePleDto) UnmarshalJSON added in v0.2.2

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

func (*NullableApprovePleDto) Unset added in v0.2.2

func (v *NullableApprovePleDto) Unset()

type NullableAwsLocationExists

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

func NewNullableAwsLocationExists

func NewNullableAwsLocationExists(val *AwsLocationExists) *NullableAwsLocationExists

func (NullableAwsLocationExists) Get

func (v NullableAwsLocationExists) Get() *AwsLocationExists

func (NullableAwsLocationExists) IsSet

func (v NullableAwsLocationExists) IsSet() bool

func (NullableAwsLocationExists) MarshalJSON

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

func (*NullableAwsLocationExists) Set

func (v *NullableAwsLocationExists) Set(val *AwsLocationExists)

func (*NullableAwsLocationExists) UnmarshalJSON

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

func (*NullableAwsLocationExists) Unset

func (v *NullableAwsLocationExists) Unset()

type NullableAwsLocationHasVolumes

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

func NewNullableAwsLocationHasVolumes

func NewNullableAwsLocationHasVolumes(val *AwsLocationHasVolumes) *NullableAwsLocationHasVolumes

func (NullableAwsLocationHasVolumes) Get

func (v NullableAwsLocationHasVolumes) Get() *AwsLocationHasVolumes

func (NullableAwsLocationHasVolumes) IsSet

func (v NullableAwsLocationHasVolumes) IsSet() bool

func (NullableAwsLocationHasVolumes) MarshalJSON

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

func (*NullableAwsLocationHasVolumes) Set

func (v *NullableAwsLocationHasVolumes) Set(val *AwsLocationHasVolumes)

func (*NullableAwsLocationHasVolumes) UnmarshalJSON

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

func (*NullableAwsLocationHasVolumes) Unset

func (v *NullableAwsLocationHasVolumes) Unset()

type NullableAwsLocationNotFound

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

func NewNullableAwsLocationNotFound

func NewNullableAwsLocationNotFound(val *AwsLocationNotFound) *NullableAwsLocationNotFound

func (NullableAwsLocationNotFound) Get

func (v NullableAwsLocationNotFound) Get() *AwsLocationNotFound

func (NullableAwsLocationNotFound) IsSet

func (v NullableAwsLocationNotFound) IsSet() bool

func (NullableAwsLocationNotFound) MarshalJSON

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

func (*NullableAwsLocationNotFound) Set

func (v *NullableAwsLocationNotFound) Set(val *AwsLocationNotFound)

func (*NullableAwsLocationNotFound) UnmarshalJSON

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

func (*NullableAwsLocationNotFound) Unset

func (v *NullableAwsLocationNotFound) Unset()

type NullableAwsRegionNotSupported

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

func NewNullableAwsRegionNotSupported

func NewNullableAwsRegionNotSupported(val *AwsRegionNotSupported) *NullableAwsRegionNotSupported

func (NullableAwsRegionNotSupported) Get

func (v NullableAwsRegionNotSupported) Get() *AwsRegionNotSupported

func (NullableAwsRegionNotSupported) IsSet

func (v NullableAwsRegionNotSupported) IsSet() bool

func (NullableAwsRegionNotSupported) MarshalJSON

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

func (*NullableAwsRegionNotSupported) Set

func (v *NullableAwsRegionNotSupported) Set(val *AwsRegionNotSupported)

func (*NullableAwsRegionNotSupported) UnmarshalJSON

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

func (*NullableAwsRegionNotSupported) Unset

func (v *NullableAwsRegionNotSupported) Unset()

type NullableAzureLocationExists

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

func NewNullableAzureLocationExists

func NewNullableAzureLocationExists(val *AzureLocationExists) *NullableAzureLocationExists

func (NullableAzureLocationExists) Get

func (v NullableAzureLocationExists) Get() *AzureLocationExists

func (NullableAzureLocationExists) IsSet

func (v NullableAzureLocationExists) IsSet() bool

func (NullableAzureLocationExists) MarshalJSON

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

func (*NullableAzureLocationExists) Set

func (v *NullableAzureLocationExists) Set(val *AzureLocationExists)

func (*NullableAzureLocationExists) UnmarshalJSON

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

func (*NullableAzureLocationExists) Unset

func (v *NullableAzureLocationExists) Unset()

type NullableAzureLocationHasVolumes

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

func NewNullableAzureLocationHasVolumes

func NewNullableAzureLocationHasVolumes(val *AzureLocationHasVolumes) *NullableAzureLocationHasVolumes

func (NullableAzureLocationHasVolumes) Get

func (v NullableAzureLocationHasVolumes) Get() *AzureLocationHasVolumes

func (NullableAzureLocationHasVolumes) IsSet

func (v NullableAzureLocationHasVolumes) IsSet() bool

func (NullableAzureLocationHasVolumes) MarshalJSON

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

func (*NullableAzureLocationHasVolumes) Set

func (v *NullableAzureLocationHasVolumes) Set(val *AzureLocationHasVolumes)

func (*NullableAzureLocationHasVolumes) UnmarshalJSON

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

func (*NullableAzureLocationHasVolumes) Unset

func (v *NullableAzureLocationHasVolumes) Unset()

type NullableAzureLocationNotFound

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

func NewNullableAzureLocationNotFound

func NewNullableAzureLocationNotFound(val *AzureLocationNotFound) *NullableAzureLocationNotFound

func (NullableAzureLocationNotFound) Get

func (v NullableAzureLocationNotFound) Get() *AzureLocationNotFound

func (NullableAzureLocationNotFound) IsSet

func (v NullableAzureLocationNotFound) IsSet() bool

func (NullableAzureLocationNotFound) MarshalJSON

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

func (*NullableAzureLocationNotFound) Set

func (v *NullableAzureLocationNotFound) Set(val *AzureLocationNotFound)

func (*NullableAzureLocationNotFound) UnmarshalJSON

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

func (*NullableAzureLocationNotFound) Unset

func (v *NullableAzureLocationNotFound) Unset()

type NullableAzureRegionNotSupported

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

func NewNullableAzureRegionNotSupported

func NewNullableAzureRegionNotSupported(val *AzureRegionNotSupported) *NullableAzureRegionNotSupported

func (NullableAzureRegionNotSupported) Get

func (v NullableAzureRegionNotSupported) Get() *AzureRegionNotSupported

func (NullableAzureRegionNotSupported) IsSet

func (v NullableAzureRegionNotSupported) IsSet() bool

func (NullableAzureRegionNotSupported) MarshalJSON

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

func (*NullableAzureRegionNotSupported) Set

func (v *NullableAzureRegionNotSupported) Set(val *AzureRegionNotSupported)

func (*NullableAzureRegionNotSupported) UnmarshalJSON

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

func (*NullableAzureRegionNotSupported) Unset

func (v *NullableAzureRegionNotSupported) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCloudNotSupported

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

func NewNullableCloudNotSupported

func NewNullableCloudNotSupported(val *CloudNotSupported) *NullableCloudNotSupported

func (NullableCloudNotSupported) Get

func (v NullableCloudNotSupported) Get() *CloudNotSupported

func (NullableCloudNotSupported) IsSet

func (v NullableCloudNotSupported) IsSet() bool

func (NullableCloudNotSupported) MarshalJSON

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

func (*NullableCloudNotSupported) Set

func (v *NullableCloudNotSupported) Set(val *CloudNotSupported)

func (*NullableCloudNotSupported) UnmarshalJSON

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

func (*NullableCloudNotSupported) Unset

func (v *NullableCloudNotSupported) Unset()

type NullableCluster

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

func NewNullableCluster

func NewNullableCluster(val *Cluster) *NullableCluster

func (NullableCluster) Get

func (v NullableCluster) Get() *Cluster

func (NullableCluster) IsSet

func (v NullableCluster) IsSet() bool

func (NullableCluster) MarshalJSON

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

func (*NullableCluster) Set

func (v *NullableCluster) Set(val *Cluster)

func (*NullableCluster) UnmarshalJSON

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

func (*NullableCluster) Unset

func (v *NullableCluster) Unset()

type NullableClusterHelm

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

func NewNullableClusterHelm

func NewNullableClusterHelm(val *ClusterHelm) *NullableClusterHelm

func (NullableClusterHelm) Get

func (v NullableClusterHelm) Get() *ClusterHelm

func (NullableClusterHelm) IsSet

func (v NullableClusterHelm) IsSet() bool

func (NullableClusterHelm) MarshalJSON

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

func (*NullableClusterHelm) Set

func (v *NullableClusterHelm) Set(val *ClusterHelm)

func (*NullableClusterHelm) UnmarshalJSON

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

func (*NullableClusterHelm) Unset

func (v *NullableClusterHelm) Unset()

type NullableClusterIsStateOwner

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

func NewNullableClusterIsStateOwner

func NewNullableClusterIsStateOwner(val *ClusterIsStateOwner) *NullableClusterIsStateOwner

func (NullableClusterIsStateOwner) Get

func (v NullableClusterIsStateOwner) Get() *ClusterIsStateOwner

func (NullableClusterIsStateOwner) IsSet

func (v NullableClusterIsStateOwner) IsSet() bool

func (NullableClusterIsStateOwner) MarshalJSON

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

func (*NullableClusterIsStateOwner) Set

func (v *NullableClusterIsStateOwner) Set(val *ClusterIsStateOwner)

func (*NullableClusterIsStateOwner) UnmarshalJSON

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

func (*NullableClusterIsStateOwner) Unset

func (v *NullableClusterIsStateOwner) Unset()

type NullableClusterLocationAws

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

func NewNullableClusterLocationAws

func NewNullableClusterLocationAws(val *ClusterLocationAws) *NullableClusterLocationAws

func (NullableClusterLocationAws) Get

func (v NullableClusterLocationAws) Get() *ClusterLocationAws

func (NullableClusterLocationAws) IsSet

func (v NullableClusterLocationAws) IsSet() bool

func (NullableClusterLocationAws) MarshalJSON

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

func (*NullableClusterLocationAws) Set

func (v *NullableClusterLocationAws) Set(val *ClusterLocationAws)

func (*NullableClusterLocationAws) UnmarshalJSON

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

func (*NullableClusterLocationAws) Unset

func (v *NullableClusterLocationAws) Unset()

type NullableClusterLocationAwsDto

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

func NewNullableClusterLocationAwsDto

func NewNullableClusterLocationAwsDto(val *ClusterLocationAwsDto) *NullableClusterLocationAwsDto

func (NullableClusterLocationAwsDto) Get

func (v NullableClusterLocationAwsDto) Get() *ClusterLocationAwsDto

func (NullableClusterLocationAwsDto) IsSet

func (v NullableClusterLocationAwsDto) IsSet() bool

func (NullableClusterLocationAwsDto) MarshalJSON

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

func (*NullableClusterLocationAwsDto) Set

func (v *NullableClusterLocationAwsDto) Set(val *ClusterLocationAwsDto)

func (*NullableClusterLocationAwsDto) UnmarshalJSON

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

func (*NullableClusterLocationAwsDto) Unset

func (v *NullableClusterLocationAwsDto) Unset()

type NullableClusterLocationAzure

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

func NewNullableClusterLocationAzure

func NewNullableClusterLocationAzure(val *ClusterLocationAzure) *NullableClusterLocationAzure

func (NullableClusterLocationAzure) Get

func (v NullableClusterLocationAzure) Get() *ClusterLocationAzure

func (NullableClusterLocationAzure) IsSet

func (v NullableClusterLocationAzure) IsSet() bool

func (NullableClusterLocationAzure) MarshalJSON

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

func (*NullableClusterLocationAzure) Set

func (v *NullableClusterLocationAzure) Set(val *ClusterLocationAzure)

func (*NullableClusterLocationAzure) UnmarshalJSON

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

func (*NullableClusterLocationAzure) Unset

func (v *NullableClusterLocationAzure) Unset()

type NullableClusterLocationAzureDto

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

func NewNullableClusterLocationAzureDto

func NewNullableClusterLocationAzureDto(val *ClusterLocationAzureDto) *NullableClusterLocationAzureDto

func (NullableClusterLocationAzureDto) Get

func (v NullableClusterLocationAzureDto) Get() *ClusterLocationAzureDto

func (NullableClusterLocationAzureDto) IsSet

func (v NullableClusterLocationAzureDto) IsSet() bool

func (NullableClusterLocationAzureDto) MarshalJSON

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

func (*NullableClusterLocationAzureDto) Set

func (v *NullableClusterLocationAzureDto) Set(val *ClusterLocationAzureDto)

func (*NullableClusterLocationAzureDto) UnmarshalJSON

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

func (*NullableClusterLocationAzureDto) Unset

func (v *NullableClusterLocationAzureDto) Unset()

type NullableClusterLocations

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

func NewNullableClusterLocations

func NewNullableClusterLocations(val *ClusterLocations) *NullableClusterLocations

func (NullableClusterLocations) Get

func (v NullableClusterLocations) Get() *ClusterLocations

func (NullableClusterLocations) IsSet

func (v NullableClusterLocations) IsSet() bool

func (NullableClusterLocations) MarshalJSON

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

func (*NullableClusterLocations) Set

func (v *NullableClusterLocations) Set(val *ClusterLocations)

func (*NullableClusterLocations) UnmarshalJSON

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

func (*NullableClusterLocations) Unset

func (v *NullableClusterLocations) Unset()

type NullableClusterLocationsDto

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

func NewNullableClusterLocationsDto

func NewNullableClusterLocationsDto(val *ClusterLocationsDto) *NullableClusterLocationsDto

func (NullableClusterLocationsDto) Get

func (v NullableClusterLocationsDto) Get() *ClusterLocationsDto

func (NullableClusterLocationsDto) IsSet

func (v NullableClusterLocationsDto) IsSet() bool

func (NullableClusterLocationsDto) MarshalJSON

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

func (*NullableClusterLocationsDto) Set

func (v *NullableClusterLocationsDto) Set(val *ClusterLocationsDto)

func (*NullableClusterLocationsDto) UnmarshalJSON

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

func (*NullableClusterLocationsDto) Unset

func (v *NullableClusterLocationsDto) Unset()

type NullableClusterNameConflict

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

func NewNullableClusterNameConflict

func NewNullableClusterNameConflict(val *ClusterNameConflict) *NullableClusterNameConflict

func (NullableClusterNameConflict) Get

func (v NullableClusterNameConflict) Get() *ClusterNameConflict

func (NullableClusterNameConflict) IsSet

func (v NullableClusterNameConflict) IsSet() bool

func (NullableClusterNameConflict) MarshalJSON

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

func (*NullableClusterNameConflict) Set

func (v *NullableClusterNameConflict) Set(val *ClusterNameConflict)

func (*NullableClusterNameConflict) UnmarshalJSON

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

func (*NullableClusterNameConflict) Unset

func (v *NullableClusterNameConflict) Unset()

type NullableClusterNameInvalid

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

func NewNullableClusterNameInvalid

func NewNullableClusterNameInvalid(val *ClusterNameInvalid) *NullableClusterNameInvalid

func (NullableClusterNameInvalid) Get

func (v NullableClusterNameInvalid) Get() *ClusterNameInvalid

func (NullableClusterNameInvalid) IsSet

func (v NullableClusterNameInvalid) IsSet() bool

func (NullableClusterNameInvalid) MarshalJSON

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

func (*NullableClusterNameInvalid) Set

func (v *NullableClusterNameInvalid) Set(val *ClusterNameInvalid)

func (*NullableClusterNameInvalid) UnmarshalJSON

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

func (*NullableClusterNameInvalid) Unset

func (v *NullableClusterNameInvalid) Unset()

type NullableClusterNotAuthorized

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

func NewNullableClusterNotAuthorized

func NewNullableClusterNotAuthorized(val *ClusterNotAuthorized) *NullableClusterNotAuthorized

func (NullableClusterNotAuthorized) Get

func (v NullableClusterNotAuthorized) Get() *ClusterNotAuthorized

func (NullableClusterNotAuthorized) IsSet

func (v NullableClusterNotAuthorized) IsSet() bool

func (NullableClusterNotAuthorized) MarshalJSON

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

func (*NullableClusterNotAuthorized) Set

func (v *NullableClusterNotAuthorized) Set(val *ClusterNotAuthorized)

func (*NullableClusterNotAuthorized) UnmarshalJSON

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

func (*NullableClusterNotAuthorized) Unset

func (v *NullableClusterNotAuthorized) Unset()

type NullableClusterNotFound

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

func NewNullableClusterNotFound

func NewNullableClusterNotFound(val *ClusterNotFound) *NullableClusterNotFound

func (NullableClusterNotFound) Get

func (v NullableClusterNotFound) Get() *ClusterNotFound

func (NullableClusterNotFound) IsSet

func (v NullableClusterNotFound) IsSet() bool

func (NullableClusterNotFound) MarshalJSON

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

func (*NullableClusterNotFound) Set

func (v *NullableClusterNotFound) Set(val *ClusterNotFound)

func (*NullableClusterNotFound) UnmarshalJSON

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

func (*NullableClusterNotFound) Unset

func (v *NullableClusterNotFound) Unset()

type NullableClusterNotFoundInList

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

func NewNullableClusterNotFoundInList

func NewNullableClusterNotFoundInList(val *ClusterNotFoundInList) *NullableClusterNotFoundInList

func (NullableClusterNotFoundInList) Get

func (v NullableClusterNotFoundInList) Get() *ClusterNotFoundInList

func (NullableClusterNotFoundInList) IsSet

func (v NullableClusterNotFoundInList) IsSet() bool

func (NullableClusterNotFoundInList) MarshalJSON

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

func (*NullableClusterNotFoundInList) Set

func (v *NullableClusterNotFoundInList) Set(val *ClusterNotFoundInList)

func (*NullableClusterNotFoundInList) UnmarshalJSON

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

func (*NullableClusterNotFoundInList) Unset

func (v *NullableClusterNotFoundInList) Unset()

type NullableClusterToken

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

func NewNullableClusterToken

func NewNullableClusterToken(val *ClusterToken) *NullableClusterToken

func (NullableClusterToken) Get

func (v NullableClusterToken) Get() *ClusterToken

func (NullableClusterToken) IsSet

func (v NullableClusterToken) IsSet() bool

func (NullableClusterToken) MarshalJSON

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

func (*NullableClusterToken) Set

func (v *NullableClusterToken) Set(val *ClusterToken)

func (*NullableClusterToken) UnmarshalJSON

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

func (*NullableClusterToken) Unset

func (v *NullableClusterToken) Unset()

type NullableClusterTokenAlreadyExists

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

func NewNullableClusterTokenAlreadyExists

func NewNullableClusterTokenAlreadyExists(val *ClusterTokenAlreadyExists) *NullableClusterTokenAlreadyExists

func (NullableClusterTokenAlreadyExists) Get

func (v NullableClusterTokenAlreadyExists) Get() *ClusterTokenAlreadyExists

func (NullableClusterTokenAlreadyExists) IsSet

func (v NullableClusterTokenAlreadyExists) IsSet() bool

func (NullableClusterTokenAlreadyExists) MarshalJSON

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

func (*NullableClusterTokenAlreadyExists) Set

func (v *NullableClusterTokenAlreadyExists) Set(val *ClusterTokenAlreadyExists)

func (*NullableClusterTokenAlreadyExists) UnmarshalJSON

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

func (*NullableClusterTokenAlreadyExists) Unset

func (v *NullableClusterTokenAlreadyExists) Unset()

type NullableClusterTokenNotFound

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

func NewNullableClusterTokenNotFound

func NewNullableClusterTokenNotFound(val *ClusterTokenNotFound) *NullableClusterTokenNotFound

func (NullableClusterTokenNotFound) Get

func (v NullableClusterTokenNotFound) Get() *ClusterTokenNotFound

func (NullableClusterTokenNotFound) IsSet

func (v NullableClusterTokenNotFound) IsSet() bool

func (NullableClusterTokenNotFound) MarshalJSON

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

func (*NullableClusterTokenNotFound) Set

func (v *NullableClusterTokenNotFound) Set(val *ClusterTokenNotFound)

func (*NullableClusterTokenNotFound) UnmarshalJSON

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

func (*NullableClusterTokenNotFound) Unset

func (v *NullableClusterTokenNotFound) Unset()

type NullableClusterTokenPlaceholder

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

func NewNullableClusterTokenPlaceholder

func NewNullableClusterTokenPlaceholder(val *ClusterTokenPlaceholder) *NullableClusterTokenPlaceholder

func (NullableClusterTokenPlaceholder) Get

func (v NullableClusterTokenPlaceholder) Get() *ClusterTokenPlaceholder

func (NullableClusterTokenPlaceholder) IsSet

func (v NullableClusterTokenPlaceholder) IsSet() bool

func (NullableClusterTokenPlaceholder) MarshalJSON

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

func (*NullableClusterTokenPlaceholder) Set

func (v *NullableClusterTokenPlaceholder) Set(val *ClusterTokenPlaceholder)

func (*NullableClusterTokenPlaceholder) UnmarshalJSON

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

func (*NullableClusterTokenPlaceholder) Unset

func (v *NullableClusterTokenPlaceholder) Unset()

type NullableClustersNotAllowed

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

func NewNullableClustersNotAllowed

func NewNullableClustersNotAllowed(val *ClustersNotAllowed) *NullableClustersNotAllowed

func (NullableClustersNotAllowed) Get

func (v NullableClustersNotAllowed) Get() *ClustersNotAllowed

func (NullableClustersNotAllowed) IsSet

func (v NullableClustersNotAllowed) IsSet() bool

func (NullableClustersNotAllowed) MarshalJSON

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

func (*NullableClustersNotAllowed) Set

func (v *NullableClustersNotAllowed) Set(val *ClustersNotAllowed)

func (*NullableClustersNotAllowed) UnmarshalJSON

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

func (*NullableClustersNotAllowed) Unset

func (v *NullableClustersNotAllowed) Unset()

type NullableConflict

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

func NewNullableConflict

func NewNullableConflict(val *Conflict) *NullableConflict

func (NullableConflict) Get

func (v NullableConflict) Get() *Conflict

func (NullableConflict) IsSet

func (v NullableConflict) IsSet() bool

func (NullableConflict) MarshalJSON

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

func (*NullableConflict) Set

func (v *NullableConflict) Set(val *Conflict)

func (*NullableConflict) UnmarshalJSON

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

func (*NullableConflict) Unset

func (v *NullableConflict) Unset()

type NullableCreateClusterDto

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

func NewNullableCreateClusterDto

func NewNullableCreateClusterDto(val *CreateClusterDto) *NullableCreateClusterDto

func (NullableCreateClusterDto) Get

func (v NullableCreateClusterDto) Get() *CreateClusterDto

func (NullableCreateClusterDto) IsSet

func (v NullableCreateClusterDto) IsSet() bool

func (NullableCreateClusterDto) MarshalJSON

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

func (*NullableCreateClusterDto) Set

func (v *NullableCreateClusterDto) Set(val *CreateClusterDto)

func (*NullableCreateClusterDto) UnmarshalJSON

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

func (*NullableCreateClusterDto) Unset

func (v *NullableCreateClusterDto) Unset()

type NullableCreateClusterLocationAwsDto

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

func NewNullableCreateClusterLocationAwsDto

func NewNullableCreateClusterLocationAwsDto(val *CreateClusterLocationAwsDto) *NullableCreateClusterLocationAwsDto

func (NullableCreateClusterLocationAwsDto) Get

func (v NullableCreateClusterLocationAwsDto) Get() *CreateClusterLocationAwsDto

func (NullableCreateClusterLocationAwsDto) IsSet

func (v NullableCreateClusterLocationAwsDto) IsSet() bool

func (NullableCreateClusterLocationAwsDto) MarshalJSON

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

func (*NullableCreateClusterLocationAwsDto) Set

func (v *NullableCreateClusterLocationAwsDto) Set(val *CreateClusterLocationAwsDto)

func (*NullableCreateClusterLocationAwsDto) UnmarshalJSON

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

func (*NullableCreateClusterLocationAwsDto) Unset

func (v *NullableCreateClusterLocationAwsDto) Unset()

type NullableCreateClusterLocationAzureDto

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

func NewNullableCreateClusterLocationAzureDto

func NewNullableCreateClusterLocationAzureDto(val *CreateClusterLocationAzureDto) *NullableCreateClusterLocationAzureDto

func (NullableCreateClusterLocationAzureDto) Get

func (v NullableCreateClusterLocationAzureDto) Get() *CreateClusterLocationAzureDto

func (NullableCreateClusterLocationAzureDto) IsSet

func (v NullableCreateClusterLocationAzureDto) IsSet() bool

func (NullableCreateClusterLocationAzureDto) MarshalJSON

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

func (*NullableCreateClusterLocationAzureDto) Set

func (v *NullableCreateClusterLocationAzureDto) Set(val *CreateClusterLocationAzureDto)

func (*NullableCreateClusterLocationAzureDto) UnmarshalJSON

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

func (*NullableCreateClusterLocationAzureDto) Unset

func (v *NullableCreateClusterLocationAzureDto) Unset()

type NullableCreateClusterLocationsDto

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

func NewNullableCreateClusterLocationsDto

func NewNullableCreateClusterLocationsDto(val *CreateClusterLocationsDto) *NullableCreateClusterLocationsDto

func (NullableCreateClusterLocationsDto) Get

func (v NullableCreateClusterLocationsDto) Get() *CreateClusterLocationsDto

func (NullableCreateClusterLocationsDto) IsSet

func (v NullableCreateClusterLocationsDto) IsSet() bool

func (NullableCreateClusterLocationsDto) MarshalJSON

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

func (*NullableCreateClusterLocationsDto) Set

func (v *NullableCreateClusterLocationsDto) Set(val *CreateClusterLocationsDto)

func (*NullableCreateClusterLocationsDto) UnmarshalJSON

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

func (*NullableCreateClusterLocationsDto) Unset

func (v *NullableCreateClusterLocationsDto) Unset()

type NullableCreateEventDto added in v0.1.3

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

func NewNullableCreateEventDto added in v0.1.3

func NewNullableCreateEventDto(val *CreateEventDto) *NullableCreateEventDto

func (NullableCreateEventDto) Get added in v0.1.3

func (v NullableCreateEventDto) Get() *CreateEventDto

func (NullableCreateEventDto) IsSet added in v0.1.3

func (v NullableCreateEventDto) IsSet() bool

func (NullableCreateEventDto) MarshalJSON added in v0.1.3

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

func (*NullableCreateEventDto) Set added in v0.1.3

func (v *NullableCreateEventDto) Set(val *CreateEventDto)

func (*NullableCreateEventDto) UnmarshalJSON added in v0.1.3

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

func (*NullableCreateEventDto) Unset added in v0.1.3

func (v *NullableCreateEventDto) Unset()

type NullableCreateEventReporterDto added in v0.2.1

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

func NewNullableCreateEventReporterDto added in v0.2.1

func NewNullableCreateEventReporterDto(val *CreateEventReporterDto) *NullableCreateEventReporterDto

func (NullableCreateEventReporterDto) Get added in v0.2.1

func (v NullableCreateEventReporterDto) Get() *CreateEventReporterDto

func (NullableCreateEventReporterDto) IsSet added in v0.2.1

func (v NullableCreateEventReporterDto) IsSet() bool

func (NullableCreateEventReporterDto) MarshalJSON added in v0.2.1

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

func (*NullableCreateEventReporterDto) Set added in v0.2.1

func (v *NullableCreateEventReporterDto) Set(val *CreateEventReporterDto)

func (*NullableCreateEventReporterDto) UnmarshalJSON added in v0.2.1

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

func (*NullableCreateEventReporterDto) Unset added in v0.2.1

func (v *NullableCreateEventReporterDto) Unset()

type NullableCreateStateDto

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

func NewNullableCreateStateDto

func NewNullableCreateStateDto(val *CreateStateDto) *NullableCreateStateDto

func (NullableCreateStateDto) Get

func (v NullableCreateStateDto) Get() *CreateStateDto

func (NullableCreateStateDto) IsSet

func (v NullableCreateStateDto) IsSet() bool

func (NullableCreateStateDto) MarshalJSON

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

func (*NullableCreateStateDto) Set

func (v *NullableCreateStateDto) Set(val *CreateStateDto)

func (*NullableCreateStateDto) UnmarshalJSON

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

func (*NullableCreateStateDto) Unset

func (v *NullableCreateStateDto) Unset()

type NullableCreateStateLocationAws

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

func NewNullableCreateStateLocationAws

func NewNullableCreateStateLocationAws(val *CreateStateLocationAws) *NullableCreateStateLocationAws

func (NullableCreateStateLocationAws) Get

func (v NullableCreateStateLocationAws) Get() *CreateStateLocationAws

func (NullableCreateStateLocationAws) IsSet

func (v NullableCreateStateLocationAws) IsSet() bool

func (NullableCreateStateLocationAws) MarshalJSON

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

func (*NullableCreateStateLocationAws) Set

func (v *NullableCreateStateLocationAws) Set(val *CreateStateLocationAws)

func (*NullableCreateStateLocationAws) UnmarshalJSON

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

func (*NullableCreateStateLocationAws) Unset

func (v *NullableCreateStateLocationAws) Unset()

type NullableCreateStateLocationAwsDto

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

func NewNullableCreateStateLocationAwsDto

func NewNullableCreateStateLocationAwsDto(val *CreateStateLocationAwsDto) *NullableCreateStateLocationAwsDto

func (NullableCreateStateLocationAwsDto) Get

func (v NullableCreateStateLocationAwsDto) Get() *CreateStateLocationAwsDto

func (NullableCreateStateLocationAwsDto) IsSet

func (v NullableCreateStateLocationAwsDto) IsSet() bool

func (NullableCreateStateLocationAwsDto) MarshalJSON

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

func (*NullableCreateStateLocationAwsDto) Set

func (v *NullableCreateStateLocationAwsDto) Set(val *CreateStateLocationAwsDto)

func (*NullableCreateStateLocationAwsDto) UnmarshalJSON

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

func (*NullableCreateStateLocationAwsDto) Unset

func (v *NullableCreateStateLocationAwsDto) Unset()

type NullableCreateStateLocationAzure

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

func NewNullableCreateStateLocationAzure

func NewNullableCreateStateLocationAzure(val *CreateStateLocationAzure) *NullableCreateStateLocationAzure

func (NullableCreateStateLocationAzure) Get

func (v NullableCreateStateLocationAzure) Get() *CreateStateLocationAzure

func (NullableCreateStateLocationAzure) IsSet

func (v NullableCreateStateLocationAzure) IsSet() bool

func (NullableCreateStateLocationAzure) MarshalJSON

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

func (*NullableCreateStateLocationAzure) Set

func (v *NullableCreateStateLocationAzure) Set(val *CreateStateLocationAzure)

func (*NullableCreateStateLocationAzure) UnmarshalJSON

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

func (*NullableCreateStateLocationAzure) Unset

func (v *NullableCreateStateLocationAzure) Unset()

type NullableCreateStateLocationAzureDto

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

func NewNullableCreateStateLocationAzureDto

func NewNullableCreateStateLocationAzureDto(val *CreateStateLocationAzureDto) *NullableCreateStateLocationAzureDto

func (NullableCreateStateLocationAzureDto) Get

func (v NullableCreateStateLocationAzureDto) Get() *CreateStateLocationAzureDto

func (NullableCreateStateLocationAzureDto) IsSet

func (v NullableCreateStateLocationAzureDto) IsSet() bool

func (NullableCreateStateLocationAzureDto) MarshalJSON

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

func (*NullableCreateStateLocationAzureDto) Set

func (v *NullableCreateStateLocationAzureDto) Set(val *CreateStateLocationAzureDto)

func (*NullableCreateStateLocationAzureDto) UnmarshalJSON

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

func (*NullableCreateStateLocationAzureDto) Unset

func (v *NullableCreateStateLocationAzureDto) Unset()

type NullableCreateStateLocations

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

func NewNullableCreateStateLocations

func NewNullableCreateStateLocations(val *CreateStateLocations) *NullableCreateStateLocations

func (NullableCreateStateLocations) Get

func (v NullableCreateStateLocations) Get() *CreateStateLocations

func (NullableCreateStateLocations) IsSet

func (v NullableCreateStateLocations) IsSet() bool

func (NullableCreateStateLocations) MarshalJSON

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

func (*NullableCreateStateLocations) Set

func (v *NullableCreateStateLocations) Set(val *CreateStateLocations)

func (*NullableCreateStateLocations) UnmarshalJSON

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

func (*NullableCreateStateLocations) Unset

func (v *NullableCreateStateLocations) Unset()

type NullableCreateStateLocationsDto

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

func NewNullableCreateStateLocationsDto

func NewNullableCreateStateLocationsDto(val *CreateStateLocationsDto) *NullableCreateStateLocationsDto

func (NullableCreateStateLocationsDto) Get

func (v NullableCreateStateLocationsDto) Get() *CreateStateLocationsDto

func (NullableCreateStateLocationsDto) IsSet

func (v NullableCreateStateLocationsDto) IsSet() bool

func (NullableCreateStateLocationsDto) MarshalJSON

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

func (*NullableCreateStateLocationsDto) Set

func (v *NullableCreateStateLocationsDto) Set(val *CreateStateLocationsDto)

func (*NullableCreateStateLocationsDto) UnmarshalJSON

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

func (*NullableCreateStateLocationsDto) Unset

func (v *NullableCreateStateLocationsDto) Unset()

type NullableCreateStorageClassDto

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

func NewNullableCreateStorageClassDto

func NewNullableCreateStorageClassDto(val *CreateStorageClassDto) *NullableCreateStorageClassDto

func (NullableCreateStorageClassDto) Get

func (v NullableCreateStorageClassDto) Get() *CreateStorageClassDto

func (NullableCreateStorageClassDto) IsSet

func (v NullableCreateStorageClassDto) IsSet() bool

func (NullableCreateStorageClassDto) MarshalJSON

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

func (*NullableCreateStorageClassDto) Set

func (v *NullableCreateStorageClassDto) Set(val *CreateStorageClassDto)

func (*NullableCreateStorageClassDto) UnmarshalJSON

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

func (*NullableCreateStorageClassDto) Unset

func (v *NullableCreateStorageClassDto) Unset()

type NullableCreateVolumeDto

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

func NewNullableCreateVolumeDto

func NewNullableCreateVolumeDto(val *CreateVolumeDto) *NullableCreateVolumeDto

func (NullableCreateVolumeDto) Get

func (v NullableCreateVolumeDto) Get() *CreateVolumeDto

func (NullableCreateVolumeDto) IsSet

func (v NullableCreateVolumeDto) IsSet() bool

func (NullableCreateVolumeDto) MarshalJSON

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

func (*NullableCreateVolumeDto) Set

func (v *NullableCreateVolumeDto) Set(val *CreateVolumeDto)

func (*NullableCreateVolumeDto) UnmarshalJSON

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

func (*NullableCreateVolumeDto) Unset

func (v *NullableCreateVolumeDto) Unset()

type NullableEventActorComponent added in v0.1.3

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

func NewNullableEventActorComponent added in v0.1.3

func NewNullableEventActorComponent(val *EventActorComponent) *NullableEventActorComponent

func (NullableEventActorComponent) Get added in v0.1.3

func (v NullableEventActorComponent) Get() *EventActorComponent

func (NullableEventActorComponent) IsSet added in v0.1.3

func (v NullableEventActorComponent) IsSet() bool

func (NullableEventActorComponent) MarshalJSON added in v0.1.3

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

func (*NullableEventActorComponent) Set added in v0.1.3

func (v *NullableEventActorComponent) Set(val *EventActorComponent)

func (*NullableEventActorComponent) UnmarshalJSON added in v0.1.3

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

func (*NullableEventActorComponent) Unset added in v0.1.3

func (v *NullableEventActorComponent) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableForbidden

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

func NewNullableForbidden

func NewNullableForbidden(val *Forbidden) *NullableForbidden

func (NullableForbidden) Get

func (v NullableForbidden) Get() *Forbidden

func (NullableForbidden) IsSet

func (v NullableForbidden) IsSet() bool

func (NullableForbidden) MarshalJSON

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

func (*NullableForbidden) Set

func (v *NullableForbidden) Set(val *Forbidden)

func (*NullableForbidden) UnmarshalJSON

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

func (*NullableForbidden) Unset

func (v *NullableForbidden) Unset()

type NullableFreeTierLimitExceeded added in v0.1.3

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

func NewNullableFreeTierLimitExceeded added in v0.1.3

func NewNullableFreeTierLimitExceeded(val *FreeTierLimitExceeded) *NullableFreeTierLimitExceeded

func (NullableFreeTierLimitExceeded) Get added in v0.1.3

func (v NullableFreeTierLimitExceeded) Get() *FreeTierLimitExceeded

func (NullableFreeTierLimitExceeded) IsSet added in v0.1.3

func (v NullableFreeTierLimitExceeded) IsSet() bool

func (NullableFreeTierLimitExceeded) MarshalJSON added in v0.1.3

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

func (*NullableFreeTierLimitExceeded) Set added in v0.1.3

func (v *NullableFreeTierLimitExceeded) Set(val *FreeTierLimitExceeded)

func (*NullableFreeTierLimitExceeded) UnmarshalJSON added in v0.1.3

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

func (*NullableFreeTierLimitExceeded) Unset added in v0.1.3

func (v *NullableFreeTierLimitExceeded) Unset()

type NullableHelm added in v0.0.12

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

func NewNullableHelm added in v0.0.12

func NewNullableHelm(val *Helm) *NullableHelm

func (NullableHelm) Get added in v0.0.12

func (v NullableHelm) Get() *Helm

func (NullableHelm) IsSet added in v0.0.12

func (v NullableHelm) IsSet() bool

func (NullableHelm) MarshalJSON added in v0.0.12

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

func (*NullableHelm) Set added in v0.0.12

func (v *NullableHelm) Set(val *Helm)

func (*NullableHelm) UnmarshalJSON added in v0.0.12

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

func (*NullableHelm) Unset added in v0.0.12

func (v *NullableHelm) Unset()

type NullableInlineResponse400 added in v0.2.1

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

func NewNullableInlineResponse400 added in v0.2.1

func NewNullableInlineResponse400(val *InlineResponse400) *NullableInlineResponse400

func (NullableInlineResponse400) Get added in v0.2.1

func (v NullableInlineResponse400) Get() *InlineResponse400

func (NullableInlineResponse400) IsSet added in v0.2.1

func (v NullableInlineResponse400) IsSet() bool

func (NullableInlineResponse400) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse400) Set added in v0.2.1

func (v *NullableInlineResponse400) Set(val *InlineResponse400)

func (*NullableInlineResponse400) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse400) Unset added in v0.2.1

func (v *NullableInlineResponse400) Unset()

type NullableInlineResponse401 added in v0.2.1

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

func NewNullableInlineResponse401 added in v0.2.1

func NewNullableInlineResponse401(val *InlineResponse401) *NullableInlineResponse401

func (NullableInlineResponse401) Get added in v0.2.1

func (v NullableInlineResponse401) Get() *InlineResponse401

func (NullableInlineResponse401) IsSet added in v0.2.1

func (v NullableInlineResponse401) IsSet() bool

func (NullableInlineResponse401) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse401) Set added in v0.2.1

func (v *NullableInlineResponse401) Set(val *InlineResponse401)

func (*NullableInlineResponse401) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse401) Unset added in v0.2.1

func (v *NullableInlineResponse401) Unset()

type NullableInlineResponse402 added in v0.2.1

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

func NewNullableInlineResponse402 added in v0.2.1

func NewNullableInlineResponse402(val *InlineResponse402) *NullableInlineResponse402

func (NullableInlineResponse402) Get added in v0.2.1

func (v NullableInlineResponse402) Get() *InlineResponse402

func (NullableInlineResponse402) IsSet added in v0.2.1

func (v NullableInlineResponse402) IsSet() bool

func (NullableInlineResponse402) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse402) Set added in v0.2.1

func (v *NullableInlineResponse402) Set(val *InlineResponse402)

func (*NullableInlineResponse402) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse402) Unset added in v0.2.1

func (v *NullableInlineResponse402) Unset()

type NullableInlineResponse4021 added in v0.2.1

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

func NewNullableInlineResponse4021 added in v0.2.1

func NewNullableInlineResponse4021(val *InlineResponse4021) *NullableInlineResponse4021

func (NullableInlineResponse4021) Get added in v0.2.1

func (v NullableInlineResponse4021) Get() *InlineResponse4021

func (NullableInlineResponse4021) IsSet added in v0.2.1

func (v NullableInlineResponse4021) IsSet() bool

func (NullableInlineResponse4021) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4021) Set added in v0.2.1

func (v *NullableInlineResponse4021) Set(val *InlineResponse4021)

func (*NullableInlineResponse4021) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4021) Unset added in v0.2.1

func (v *NullableInlineResponse4021) Unset()

type NullableInlineResponse403 added in v0.2.1

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

func NewNullableInlineResponse403 added in v0.2.1

func NewNullableInlineResponse403(val *InlineResponse403) *NullableInlineResponse403

func (NullableInlineResponse403) Get added in v0.2.1

func (v NullableInlineResponse403) Get() *InlineResponse403

func (NullableInlineResponse403) IsSet added in v0.2.1

func (v NullableInlineResponse403) IsSet() bool

func (NullableInlineResponse403) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse403) Set added in v0.2.1

func (v *NullableInlineResponse403) Set(val *InlineResponse403)

func (*NullableInlineResponse403) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse403) Unset added in v0.2.1

func (v *NullableInlineResponse403) Unset()

type NullableInlineResponse404 added in v0.2.1

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

func NewNullableInlineResponse404 added in v0.2.1

func NewNullableInlineResponse404(val *InlineResponse404) *NullableInlineResponse404

func (NullableInlineResponse404) Get added in v0.2.1

func (v NullableInlineResponse404) Get() *InlineResponse404

func (NullableInlineResponse404) IsSet added in v0.2.1

func (v NullableInlineResponse404) IsSet() bool

func (NullableInlineResponse404) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse404) Set added in v0.2.1

func (v *NullableInlineResponse404) Set(val *InlineResponse404)

func (*NullableInlineResponse404) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse404) Unset added in v0.2.1

func (v *NullableInlineResponse404) Unset()

type NullableInlineResponse4041 added in v0.2.1

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

func NewNullableInlineResponse4041 added in v0.2.1

func NewNullableInlineResponse4041(val *InlineResponse4041) *NullableInlineResponse4041

func (NullableInlineResponse4041) Get added in v0.2.1

func (v NullableInlineResponse4041) Get() *InlineResponse4041

func (NullableInlineResponse4041) IsSet added in v0.2.1

func (v NullableInlineResponse4041) IsSet() bool

func (NullableInlineResponse4041) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4041) Set added in v0.2.1

func (v *NullableInlineResponse4041) Set(val *InlineResponse4041)

func (*NullableInlineResponse4041) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4041) Unset added in v0.2.1

func (v *NullableInlineResponse4041) Unset()

type NullableInlineResponse4042 added in v0.2.1

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

func NewNullableInlineResponse4042 added in v0.2.1

func NewNullableInlineResponse4042(val *InlineResponse4042) *NullableInlineResponse4042

func (NullableInlineResponse4042) Get added in v0.2.1

func (v NullableInlineResponse4042) Get() *InlineResponse4042

func (NullableInlineResponse4042) IsSet added in v0.2.1

func (v NullableInlineResponse4042) IsSet() bool

func (NullableInlineResponse4042) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4042) Set added in v0.2.1

func (v *NullableInlineResponse4042) Set(val *InlineResponse4042)

func (*NullableInlineResponse4042) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4042) Unset added in v0.2.1

func (v *NullableInlineResponse4042) Unset()

type NullableInlineResponse4043 added in v0.2.1

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

func NewNullableInlineResponse4043 added in v0.2.1

func NewNullableInlineResponse4043(val *InlineResponse4043) *NullableInlineResponse4043

func (NullableInlineResponse4043) Get added in v0.2.1

func (v NullableInlineResponse4043) Get() *InlineResponse4043

func (NullableInlineResponse4043) IsSet added in v0.2.1

func (v NullableInlineResponse4043) IsSet() bool

func (NullableInlineResponse4043) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4043) Set added in v0.2.1

func (v *NullableInlineResponse4043) Set(val *InlineResponse4043)

func (*NullableInlineResponse4043) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4043) Unset added in v0.2.1

func (v *NullableInlineResponse4043) Unset()

type NullableInlineResponse4044 added in v0.2.1

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

func NewNullableInlineResponse4044 added in v0.2.1

func NewNullableInlineResponse4044(val *InlineResponse4044) *NullableInlineResponse4044

func (NullableInlineResponse4044) Get added in v0.2.1

func (v NullableInlineResponse4044) Get() *InlineResponse4044

func (NullableInlineResponse4044) IsSet added in v0.2.1

func (v NullableInlineResponse4044) IsSet() bool

func (NullableInlineResponse4044) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4044) Set added in v0.2.1

func (v *NullableInlineResponse4044) Set(val *InlineResponse4044)

func (*NullableInlineResponse4044) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4044) Unset added in v0.2.1

func (v *NullableInlineResponse4044) Unset()

type NullableInlineResponse409 added in v0.2.1

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

func NewNullableInlineResponse409 added in v0.2.1

func NewNullableInlineResponse409(val *InlineResponse409) *NullableInlineResponse409

func (NullableInlineResponse409) Get added in v0.2.1

func (v NullableInlineResponse409) Get() *InlineResponse409

func (NullableInlineResponse409) IsSet added in v0.2.1

func (v NullableInlineResponse409) IsSet() bool

func (NullableInlineResponse409) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse409) Set added in v0.2.1

func (v *NullableInlineResponse409) Set(val *InlineResponse409)

func (*NullableInlineResponse409) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse409) Unset added in v0.2.1

func (v *NullableInlineResponse409) Unset()

type NullableInlineResponse4091 added in v0.2.1

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

func NewNullableInlineResponse4091 added in v0.2.1

func NewNullableInlineResponse4091(val *InlineResponse4091) *NullableInlineResponse4091

func (NullableInlineResponse4091) Get added in v0.2.1

func (v NullableInlineResponse4091) Get() *InlineResponse4091

func (NullableInlineResponse4091) IsSet added in v0.2.1

func (v NullableInlineResponse4091) IsSet() bool

func (NullableInlineResponse4091) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4091) Set added in v0.2.1

func (v *NullableInlineResponse4091) Set(val *InlineResponse4091)

func (*NullableInlineResponse4091) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4091) Unset added in v0.2.1

func (v *NullableInlineResponse4091) Unset()

type NullableInlineResponse40910 added in v0.2.1

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

func NewNullableInlineResponse40910 added in v0.2.1

func NewNullableInlineResponse40910(val *InlineResponse40910) *NullableInlineResponse40910

func (NullableInlineResponse40910) Get added in v0.2.1

func (v NullableInlineResponse40910) Get() *InlineResponse40910

func (NullableInlineResponse40910) IsSet added in v0.2.1

func (v NullableInlineResponse40910) IsSet() bool

func (NullableInlineResponse40910) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse40910) Set added in v0.2.1

func (v *NullableInlineResponse40910) Set(val *InlineResponse40910)

func (*NullableInlineResponse40910) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse40910) Unset added in v0.2.1

func (v *NullableInlineResponse40910) Unset()

type NullableInlineResponse4092 added in v0.2.1

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

func NewNullableInlineResponse4092 added in v0.2.1

func NewNullableInlineResponse4092(val *InlineResponse4092) *NullableInlineResponse4092

func (NullableInlineResponse4092) Get added in v0.2.1

func (v NullableInlineResponse4092) Get() *InlineResponse4092

func (NullableInlineResponse4092) IsSet added in v0.2.1

func (v NullableInlineResponse4092) IsSet() bool

func (NullableInlineResponse4092) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4092) Set added in v0.2.1

func (v *NullableInlineResponse4092) Set(val *InlineResponse4092)

func (*NullableInlineResponse4092) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4092) Unset added in v0.2.1

func (v *NullableInlineResponse4092) Unset()

type NullableInlineResponse4093 added in v0.2.1

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

func NewNullableInlineResponse4093 added in v0.2.1

func NewNullableInlineResponse4093(val *InlineResponse4093) *NullableInlineResponse4093

func (NullableInlineResponse4093) Get added in v0.2.1

func (v NullableInlineResponse4093) Get() *InlineResponse4093

func (NullableInlineResponse4093) IsSet added in v0.2.1

func (v NullableInlineResponse4093) IsSet() bool

func (NullableInlineResponse4093) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4093) Set added in v0.2.1

func (v *NullableInlineResponse4093) Set(val *InlineResponse4093)

func (*NullableInlineResponse4093) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4093) Unset added in v0.2.1

func (v *NullableInlineResponse4093) Unset()

type NullableInlineResponse4094 added in v0.2.1

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

func NewNullableInlineResponse4094 added in v0.2.1

func NewNullableInlineResponse4094(val *InlineResponse4094) *NullableInlineResponse4094

func (NullableInlineResponse4094) Get added in v0.2.1

func (v NullableInlineResponse4094) Get() *InlineResponse4094

func (NullableInlineResponse4094) IsSet added in v0.2.1

func (v NullableInlineResponse4094) IsSet() bool

func (NullableInlineResponse4094) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4094) Set added in v0.2.1

func (v *NullableInlineResponse4094) Set(val *InlineResponse4094)

func (*NullableInlineResponse4094) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4094) Unset added in v0.2.1

func (v *NullableInlineResponse4094) Unset()

type NullableInlineResponse4095 added in v0.2.1

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

func NewNullableInlineResponse4095 added in v0.2.1

func NewNullableInlineResponse4095(val *InlineResponse4095) *NullableInlineResponse4095

func (NullableInlineResponse4095) Get added in v0.2.1

func (v NullableInlineResponse4095) Get() *InlineResponse4095

func (NullableInlineResponse4095) IsSet added in v0.2.1

func (v NullableInlineResponse4095) IsSet() bool

func (NullableInlineResponse4095) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4095) Set added in v0.2.1

func (v *NullableInlineResponse4095) Set(val *InlineResponse4095)

func (*NullableInlineResponse4095) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4095) Unset added in v0.2.1

func (v *NullableInlineResponse4095) Unset()

type NullableInlineResponse4096 added in v0.2.1

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

func NewNullableInlineResponse4096 added in v0.2.1

func NewNullableInlineResponse4096(val *InlineResponse4096) *NullableInlineResponse4096

func (NullableInlineResponse4096) Get added in v0.2.1

func (v NullableInlineResponse4096) Get() *InlineResponse4096

func (NullableInlineResponse4096) IsSet added in v0.2.1

func (v NullableInlineResponse4096) IsSet() bool

func (NullableInlineResponse4096) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4096) Set added in v0.2.1

func (v *NullableInlineResponse4096) Set(val *InlineResponse4096)

func (*NullableInlineResponse4096) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4096) Unset added in v0.2.1

func (v *NullableInlineResponse4096) Unset()

type NullableInlineResponse4097 added in v0.2.1

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

func NewNullableInlineResponse4097 added in v0.2.1

func NewNullableInlineResponse4097(val *InlineResponse4097) *NullableInlineResponse4097

func (NullableInlineResponse4097) Get added in v0.2.1

func (v NullableInlineResponse4097) Get() *InlineResponse4097

func (NullableInlineResponse4097) IsSet added in v0.2.1

func (v NullableInlineResponse4097) IsSet() bool

func (NullableInlineResponse4097) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4097) Set added in v0.2.1

func (v *NullableInlineResponse4097) Set(val *InlineResponse4097)

func (*NullableInlineResponse4097) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4097) Unset added in v0.2.1

func (v *NullableInlineResponse4097) Unset()

type NullableInlineResponse4098 added in v0.2.1

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

func NewNullableInlineResponse4098 added in v0.2.1

func NewNullableInlineResponse4098(val *InlineResponse4098) *NullableInlineResponse4098

func (NullableInlineResponse4098) Get added in v0.2.1

func (v NullableInlineResponse4098) Get() *InlineResponse4098

func (NullableInlineResponse4098) IsSet added in v0.2.1

func (v NullableInlineResponse4098) IsSet() bool

func (NullableInlineResponse4098) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4098) Set added in v0.2.1

func (v *NullableInlineResponse4098) Set(val *InlineResponse4098)

func (*NullableInlineResponse4098) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4098) Unset added in v0.2.1

func (v *NullableInlineResponse4098) Unset()

type NullableInlineResponse4099 added in v0.2.1

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

func NewNullableInlineResponse4099 added in v0.2.1

func NewNullableInlineResponse4099(val *InlineResponse4099) *NullableInlineResponse4099

func (NullableInlineResponse4099) Get added in v0.2.1

func (v NullableInlineResponse4099) Get() *InlineResponse4099

func (NullableInlineResponse4099) IsSet added in v0.2.1

func (v NullableInlineResponse4099) IsSet() bool

func (NullableInlineResponse4099) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4099) Set added in v0.2.1

func (v *NullableInlineResponse4099) Set(val *InlineResponse4099)

func (*NullableInlineResponse4099) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse4099) Unset added in v0.2.1

func (v *NullableInlineResponse4099) Unset()

type NullableInlineResponse500 added in v0.2.1

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

func NewNullableInlineResponse500 added in v0.2.1

func NewNullableInlineResponse500(val *InlineResponse500) *NullableInlineResponse500

func (NullableInlineResponse500) Get added in v0.2.1

func (v NullableInlineResponse500) Get() *InlineResponse500

func (NullableInlineResponse500) IsSet added in v0.2.1

func (v NullableInlineResponse500) IsSet() bool

func (NullableInlineResponse500) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse500) Set added in v0.2.1

func (v *NullableInlineResponse500) Set(val *InlineResponse500)

func (*NullableInlineResponse500) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse500) Unset added in v0.2.1

func (v *NullableInlineResponse500) Unset()

type NullableInlineResponse502 added in v0.2.1

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

func NewNullableInlineResponse502 added in v0.2.1

func NewNullableInlineResponse502(val *InlineResponse502) *NullableInlineResponse502

func (NullableInlineResponse502) Get added in v0.2.1

func (v NullableInlineResponse502) Get() *InlineResponse502

func (NullableInlineResponse502) IsSet added in v0.2.1

func (v NullableInlineResponse502) IsSet() bool

func (NullableInlineResponse502) MarshalJSON added in v0.2.1

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

func (*NullableInlineResponse502) Set added in v0.2.1

func (v *NullableInlineResponse502) Set(val *InlineResponse502)

func (*NullableInlineResponse502) UnmarshalJSON added in v0.2.1

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

func (*NullableInlineResponse502) Unset added in v0.2.1

func (v *NullableInlineResponse502) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidToken

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

func NewNullableInvalidToken

func NewNullableInvalidToken(val *InvalidToken) *NullableInvalidToken

func (NullableInvalidToken) Get

func (v NullableInvalidToken) Get() *InvalidToken

func (NullableInvalidToken) IsSet

func (v NullableInvalidToken) IsSet() bool

func (NullableInvalidToken) MarshalJSON

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

func (*NullableInvalidToken) Set

func (v *NullableInvalidToken) Set(val *InvalidToken)

func (*NullableInvalidToken) UnmarshalJSON

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

func (*NullableInvalidToken) Unset

func (v *NullableInvalidToken) Unset()

type NullableLocationNotFound

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

func NewNullableLocationNotFound

func NewNullableLocationNotFound(val *LocationNotFound) *NullableLocationNotFound

func (NullableLocationNotFound) Get

func (v NullableLocationNotFound) Get() *LocationNotFound

func (NullableLocationNotFound) IsSet

func (v NullableLocationNotFound) IsSet() bool

func (NullableLocationNotFound) MarshalJSON

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

func (*NullableLocationNotFound) Set

func (v *NullableLocationNotFound) Set(val *LocationNotFound)

func (*NullableLocationNotFound) UnmarshalJSON

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

func (*NullableLocationNotFound) Unset

func (v *NullableLocationNotFound) Unset()

type NullableNotAuthorized

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

func NewNullableNotAuthorized

func NewNullableNotAuthorized(val *NotAuthorized) *NullableNotAuthorized

func (NullableNotAuthorized) Get

func (v NullableNotAuthorized) Get() *NotAuthorized

func (NullableNotAuthorized) IsSet

func (v NullableNotAuthorized) IsSet() bool

func (NullableNotAuthorized) MarshalJSON

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

func (*NullableNotAuthorized) Set

func (v *NullableNotAuthorized) Set(val *NotAuthorized)

func (*NullableNotAuthorized) UnmarshalJSON

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

func (*NullableNotAuthorized) Unset

func (v *NullableNotAuthorized) Unset()

type NullableNotFound

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

func NewNullableNotFound

func NewNullableNotFound(val *NotFound) *NullableNotFound

func (NullableNotFound) Get

func (v NullableNotFound) Get() *NotFound

func (NullableNotFound) IsSet

func (v NullableNotFound) IsSet() bool

func (NullableNotFound) MarshalJSON

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

func (*NullableNotFound) Set

func (v *NullableNotFound) Set(val *NotFound)

func (*NullableNotFound) UnmarshalJSON

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

func (*NullableNotFound) Unset

func (v *NullableNotFound) Unset()

type NullablePaymentRequired added in v0.1.3

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

func NewNullablePaymentRequired added in v0.1.3

func NewNullablePaymentRequired(val *PaymentRequired) *NullablePaymentRequired

func (NullablePaymentRequired) Get added in v0.1.3

func (v NullablePaymentRequired) Get() *PaymentRequired

func (NullablePaymentRequired) IsSet added in v0.1.3

func (v NullablePaymentRequired) IsSet() bool

func (NullablePaymentRequired) MarshalJSON added in v0.1.3

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

func (*NullablePaymentRequired) Set added in v0.1.3

func (v *NullablePaymentRequired) Set(val *PaymentRequired)

func (*NullablePaymentRequired) UnmarshalJSON added in v0.1.3

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

func (*NullablePaymentRequired) Unset added in v0.1.3

func (v *NullablePaymentRequired) Unset()

type NullableQuotaLimitExceeded added in v0.1.3

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

func NewNullableQuotaLimitExceeded added in v0.1.3

func NewNullableQuotaLimitExceeded(val *QuotaLimitExceeded) *NullableQuotaLimitExceeded

func (NullableQuotaLimitExceeded) Get added in v0.1.3

func (v NullableQuotaLimitExceeded) Get() *QuotaLimitExceeded

func (NullableQuotaLimitExceeded) IsSet added in v0.1.3

func (v NullableQuotaLimitExceeded) IsSet() bool

func (NullableQuotaLimitExceeded) MarshalJSON added in v0.1.3

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

func (*NullableQuotaLimitExceeded) Set added in v0.1.3

func (v *NullableQuotaLimitExceeded) Set(val *QuotaLimitExceeded)

func (*NullableQuotaLimitExceeded) UnmarshalJSON added in v0.1.3

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

func (*NullableQuotaLimitExceeded) Unset added in v0.1.3

func (v *NullableQuotaLimitExceeded) Unset()

type NullableState

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

func NewNullableState

func NewNullableState(val *State) *NullableState

func (NullableState) Get

func (v NullableState) Get() *State

func (NullableState) IsSet

func (v NullableState) IsSet() bool

func (NullableState) MarshalJSON

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

func (*NullableState) Set

func (v *NullableState) Set(val *State)

func (*NullableState) UnmarshalJSON

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

func (*NullableState) Unset

func (v *NullableState) Unset()

type NullableStateHasNoOwner

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

func NewNullableStateHasNoOwner

func NewNullableStateHasNoOwner(val *StateHasNoOwner) *NullableStateHasNoOwner

func (NullableStateHasNoOwner) Get

func (v NullableStateHasNoOwner) Get() *StateHasNoOwner

func (NullableStateHasNoOwner) IsSet

func (v NullableStateHasNoOwner) IsSet() bool

func (NullableStateHasNoOwner) MarshalJSON

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

func (*NullableStateHasNoOwner) Set

func (v *NullableStateHasNoOwner) Set(val *StateHasNoOwner)

func (*NullableStateHasNoOwner) UnmarshalJSON

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

func (*NullableStateHasNoOwner) Unset

func (v *NullableStateHasNoOwner) Unset()

type NullableStateHasVolumes

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

func NewNullableStateHasVolumes

func NewNullableStateHasVolumes(val *StateHasVolumes) *NullableStateHasVolumes

func (NullableStateHasVolumes) Get

func (v NullableStateHasVolumes) Get() *StateHasVolumes

func (NullableStateHasVolumes) IsSet

func (v NullableStateHasVolumes) IsSet() bool

func (NullableStateHasVolumes) MarshalJSON

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

func (*NullableStateHasVolumes) Set

func (v *NullableStateHasVolumes) Set(val *StateHasVolumes)

func (*NullableStateHasVolumes) UnmarshalJSON

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

func (*NullableStateHasVolumes) Unset

func (v *NullableStateHasVolumes) Unset()

type NullableStateLocationAws

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

func NewNullableStateLocationAws

func NewNullableStateLocationAws(val *StateLocationAws) *NullableStateLocationAws

func (NullableStateLocationAws) Get

func (v NullableStateLocationAws) Get() *StateLocationAws

func (NullableStateLocationAws) IsSet

func (v NullableStateLocationAws) IsSet() bool

func (NullableStateLocationAws) MarshalJSON

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

func (*NullableStateLocationAws) Set

func (v *NullableStateLocationAws) Set(val *StateLocationAws)

func (*NullableStateLocationAws) UnmarshalJSON

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

func (*NullableStateLocationAws) Unset

func (v *NullableStateLocationAws) Unset()

type NullableStateLocationAwsDto

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

func NewNullableStateLocationAwsDto

func NewNullableStateLocationAwsDto(val *StateLocationAwsDto) *NullableStateLocationAwsDto

func (NullableStateLocationAwsDto) Get

func (v NullableStateLocationAwsDto) Get() *StateLocationAwsDto

func (NullableStateLocationAwsDto) IsSet

func (v NullableStateLocationAwsDto) IsSet() bool

func (NullableStateLocationAwsDto) MarshalJSON

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

func (*NullableStateLocationAwsDto) Set

func (v *NullableStateLocationAwsDto) Set(val *StateLocationAwsDto)

func (*NullableStateLocationAwsDto) UnmarshalJSON

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

func (*NullableStateLocationAwsDto) Unset

func (v *NullableStateLocationAwsDto) Unset()

type NullableStateLocationAwsPls

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

func NewNullableStateLocationAwsPls

func NewNullableStateLocationAwsPls(val *StateLocationAwsPls) *NullableStateLocationAwsPls

func (NullableStateLocationAwsPls) Get

func (v NullableStateLocationAwsPls) Get() *StateLocationAwsPls

func (NullableStateLocationAwsPls) IsSet

func (v NullableStateLocationAwsPls) IsSet() bool

func (NullableStateLocationAwsPls) MarshalJSON

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

func (*NullableStateLocationAwsPls) Set

func (v *NullableStateLocationAwsPls) Set(val *StateLocationAwsPls)

func (*NullableStateLocationAwsPls) UnmarshalJSON

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

func (*NullableStateLocationAwsPls) Unset

func (v *NullableStateLocationAwsPls) Unset()

type NullableStateLocationAzure

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

func NewNullableStateLocationAzure

func NewNullableStateLocationAzure(val *StateLocationAzure) *NullableStateLocationAzure

func (NullableStateLocationAzure) Get

func (v NullableStateLocationAzure) Get() *StateLocationAzure

func (NullableStateLocationAzure) IsSet

func (v NullableStateLocationAzure) IsSet() bool

func (NullableStateLocationAzure) MarshalJSON

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

func (*NullableStateLocationAzure) Set

func (v *NullableStateLocationAzure) Set(val *StateLocationAzure)

func (*NullableStateLocationAzure) UnmarshalJSON

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

func (*NullableStateLocationAzure) Unset

func (v *NullableStateLocationAzure) Unset()

type NullableStateLocationAzureDto

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

func NewNullableStateLocationAzureDto

func NewNullableStateLocationAzureDto(val *StateLocationAzureDto) *NullableStateLocationAzureDto

func (NullableStateLocationAzureDto) Get

func (v NullableStateLocationAzureDto) Get() *StateLocationAzureDto

func (NullableStateLocationAzureDto) IsSet

func (v NullableStateLocationAzureDto) IsSet() bool

func (NullableStateLocationAzureDto) MarshalJSON

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

func (*NullableStateLocationAzureDto) Set

func (v *NullableStateLocationAzureDto) Set(val *StateLocationAzureDto)

func (*NullableStateLocationAzureDto) UnmarshalJSON

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

func (*NullableStateLocationAzureDto) Unset

func (v *NullableStateLocationAzureDto) Unset()

type NullableStateLocationAzurePls

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

func NewNullableStateLocationAzurePls

func NewNullableStateLocationAzurePls(val *StateLocationAzurePls) *NullableStateLocationAzurePls

func (NullableStateLocationAzurePls) Get

func (v NullableStateLocationAzurePls) Get() *StateLocationAzurePls

func (NullableStateLocationAzurePls) IsSet

func (v NullableStateLocationAzurePls) IsSet() bool

func (NullableStateLocationAzurePls) MarshalJSON

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

func (*NullableStateLocationAzurePls) Set

func (v *NullableStateLocationAzurePls) Set(val *StateLocationAzurePls)

func (*NullableStateLocationAzurePls) UnmarshalJSON

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

func (*NullableStateLocationAzurePls) Unset

func (v *NullableStateLocationAzurePls) Unset()

type NullableStateLocationStatus

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

func NewNullableStateLocationStatus

func NewNullableStateLocationStatus(val *StateLocationStatus) *NullableStateLocationStatus

func (NullableStateLocationStatus) Get

func (v NullableStateLocationStatus) Get() *StateLocationStatus

func (NullableStateLocationStatus) IsSet

func (v NullableStateLocationStatus) IsSet() bool

func (NullableStateLocationStatus) MarshalJSON

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

func (*NullableStateLocationStatus) Set

func (v *NullableStateLocationStatus) Set(val *StateLocationStatus)

func (*NullableStateLocationStatus) UnmarshalJSON

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

func (*NullableStateLocationStatus) Unset

func (v *NullableStateLocationStatus) Unset()

type NullableStateLocationStatusError

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

func NewNullableStateLocationStatusError

func NewNullableStateLocationStatusError(val *StateLocationStatusError) *NullableStateLocationStatusError

func (NullableStateLocationStatusError) Get

func (v NullableStateLocationStatusError) Get() *StateLocationStatusError

func (NullableStateLocationStatusError) IsSet

func (v NullableStateLocationStatusError) IsSet() bool

func (NullableStateLocationStatusError) MarshalJSON

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

func (*NullableStateLocationStatusError) Set

func (v *NullableStateLocationStatusError) Set(val *StateLocationStatusError)

func (*NullableStateLocationStatusError) UnmarshalJSON

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

func (*NullableStateLocationStatusError) Unset

func (v *NullableStateLocationStatusError) Unset()

type NullableStateLocationStatusOk

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

func NewNullableStateLocationStatusOk

func NewNullableStateLocationStatusOk(val *StateLocationStatusOk) *NullableStateLocationStatusOk

func (NullableStateLocationStatusOk) Get

func (v NullableStateLocationStatusOk) Get() *StateLocationStatusOk

func (NullableStateLocationStatusOk) IsSet

func (v NullableStateLocationStatusOk) IsSet() bool

func (NullableStateLocationStatusOk) MarshalJSON

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

func (*NullableStateLocationStatusOk) Set

func (v *NullableStateLocationStatusOk) Set(val *StateLocationStatusOk)

func (*NullableStateLocationStatusOk) UnmarshalJSON

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

func (*NullableStateLocationStatusOk) Unset

func (v *NullableStateLocationStatusOk) Unset()

type NullableStateLocationStatusProvisioning

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

func NewNullableStateLocationStatusProvisioning

func NewNullableStateLocationStatusProvisioning(val *StateLocationStatusProvisioning) *NullableStateLocationStatusProvisioning

func (NullableStateLocationStatusProvisioning) Get

func (v NullableStateLocationStatusProvisioning) Get() *StateLocationStatusProvisioning

func (NullableStateLocationStatusProvisioning) IsSet

func (v NullableStateLocationStatusProvisioning) IsSet() bool

func (NullableStateLocationStatusProvisioning) MarshalJSON

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

func (*NullableStateLocationStatusProvisioning) Set

func (v *NullableStateLocationStatusProvisioning) Set(val *StateLocationStatusProvisioning)

func (*NullableStateLocationStatusProvisioning) UnmarshalJSON

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

func (*NullableStateLocationStatusProvisioning) Unset

func (v *NullableStateLocationStatusProvisioning) Unset()

type NullableStateLocationStatusRecovering

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

func NewNullableStateLocationStatusRecovering

func NewNullableStateLocationStatusRecovering(val *StateLocationStatusRecovering) *NullableStateLocationStatusRecovering

func (NullableStateLocationStatusRecovering) Get

func (v NullableStateLocationStatusRecovering) Get() *StateLocationStatusRecovering

func (NullableStateLocationStatusRecovering) IsSet

func (v NullableStateLocationStatusRecovering) IsSet() bool

func (NullableStateLocationStatusRecovering) MarshalJSON

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

func (*NullableStateLocationStatusRecovering) Set

func (v *NullableStateLocationStatusRecovering) Set(val *StateLocationStatusRecovering)

func (*NullableStateLocationStatusRecovering) UnmarshalJSON

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

func (*NullableStateLocationStatusRecovering) Unset

func (v *NullableStateLocationStatusRecovering) Unset()

type NullableStateLocationVolume

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

func NewNullableStateLocationVolume

func NewNullableStateLocationVolume(val *StateLocationVolume) *NullableStateLocationVolume

func (NullableStateLocationVolume) Get

func (v NullableStateLocationVolume) Get() *StateLocationVolume

func (NullableStateLocationVolume) IsSet

func (v NullableStateLocationVolume) IsSet() bool

func (NullableStateLocationVolume) MarshalJSON

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

func (*NullableStateLocationVolume) Set

func (v *NullableStateLocationVolume) Set(val *StateLocationVolume)

func (*NullableStateLocationVolume) UnmarshalJSON

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

func (*NullableStateLocationVolume) Unset

func (v *NullableStateLocationVolume) Unset()

type NullableStateLocationVolumeProgress

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

func NewNullableStateLocationVolumeProgress

func NewNullableStateLocationVolumeProgress(val *StateLocationVolumeProgress) *NullableStateLocationVolumeProgress

func (NullableStateLocationVolumeProgress) Get

func (v NullableStateLocationVolumeProgress) Get() *StateLocationVolumeProgress

func (NullableStateLocationVolumeProgress) IsSet

func (v NullableStateLocationVolumeProgress) IsSet() bool

func (NullableStateLocationVolumeProgress) MarshalJSON

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

func (*NullableStateLocationVolumeProgress) Set

func (v *NullableStateLocationVolumeProgress) Set(val *StateLocationVolumeProgress)

func (*NullableStateLocationVolumeProgress) UnmarshalJSON

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

func (*NullableStateLocationVolumeProgress) Unset

func (v *NullableStateLocationVolumeProgress) Unset()

type NullableStateLocations

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

func NewNullableStateLocations

func NewNullableStateLocations(val *StateLocations) *NullableStateLocations

func (NullableStateLocations) Get

func (v NullableStateLocations) Get() *StateLocations

func (NullableStateLocations) IsSet

func (v NullableStateLocations) IsSet() bool

func (NullableStateLocations) MarshalJSON

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

func (*NullableStateLocations) Set

func (v *NullableStateLocations) Set(val *StateLocations)

func (*NullableStateLocations) UnmarshalJSON

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

func (*NullableStateLocations) Unset

func (v *NullableStateLocations) Unset()

type NullableStateNameConflict

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

func NewNullableStateNameConflict

func NewNullableStateNameConflict(val *StateNameConflict) *NullableStateNameConflict

func (NullableStateNameConflict) Get

func (v NullableStateNameConflict) Get() *StateNameConflict

func (NullableStateNameConflict) IsSet

func (v NullableStateNameConflict) IsSet() bool

func (NullableStateNameConflict) MarshalJSON

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

func (*NullableStateNameConflict) Set

func (v *NullableStateNameConflict) Set(val *StateNameConflict)

func (*NullableStateNameConflict) UnmarshalJSON

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

func (*NullableStateNameConflict) Unset

func (v *NullableStateNameConflict) Unset()

type NullableStateNameInvalid

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

func NewNullableStateNameInvalid

func NewNullableStateNameInvalid(val *StateNameInvalid) *NullableStateNameInvalid

func (NullableStateNameInvalid) Get

func (v NullableStateNameInvalid) Get() *StateNameInvalid

func (NullableStateNameInvalid) IsSet

func (v NullableStateNameInvalid) IsSet() bool

func (NullableStateNameInvalid) MarshalJSON

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

func (*NullableStateNameInvalid) Set

func (v *NullableStateNameInvalid) Set(val *StateNameInvalid)

func (*NullableStateNameInvalid) UnmarshalJSON

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

func (*NullableStateNameInvalid) Unset

func (v *NullableStateNameInvalid) Unset()

type NullableStateNotFound

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

func NewNullableStateNotFound

func NewNullableStateNotFound(val *StateNotFound) *NullableStateNotFound

func (NullableStateNotFound) Get

func (v NullableStateNotFound) Get() *StateNotFound

func (NullableStateNotFound) IsSet

func (v NullableStateNotFound) IsSet() bool

func (NullableStateNotFound) MarshalJSON

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

func (*NullableStateNotFound) Set

func (v *NullableStateNotFound) Set(val *StateNotFound)

func (*NullableStateNotFound) UnmarshalJSON

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

func (*NullableStateNotFound) Unset

func (v *NullableStateNotFound) Unset()

type NullableStorageClass

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

func NewNullableStorageClass

func NewNullableStorageClass(val *StorageClass) *NullableStorageClass

func (NullableStorageClass) Get

func (v NullableStorageClass) Get() *StorageClass

func (NullableStorageClass) IsSet

func (v NullableStorageClass) IsSet() bool

func (NullableStorageClass) MarshalJSON

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

func (*NullableStorageClass) Set

func (v *NullableStorageClass) Set(val *StorageClass)

func (*NullableStorageClass) UnmarshalJSON

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

func (*NullableStorageClass) Unset

func (v *NullableStorageClass) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUnauthorized

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

func NewNullableUnauthorized

func NewNullableUnauthorized(val *Unauthorized) *NullableUnauthorized

func (NullableUnauthorized) Get

func (v NullableUnauthorized) Get() *Unauthorized

func (NullableUnauthorized) IsSet

func (v NullableUnauthorized) IsSet() bool

func (NullableUnauthorized) MarshalJSON

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

func (*NullableUnauthorized) Set

func (v *NullableUnauthorized) Set(val *Unauthorized)

func (*NullableUnauthorized) UnmarshalJSON

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

func (*NullableUnauthorized) Unset

func (v *NullableUnauthorized) Unset()

type NullableUnprocessableEntity

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

func NewNullableUnprocessableEntity

func NewNullableUnprocessableEntity(val *UnprocessableEntity) *NullableUnprocessableEntity

func (NullableUnprocessableEntity) Get

func (v NullableUnprocessableEntity) Get() *UnprocessableEntity

func (NullableUnprocessableEntity) IsSet

func (v NullableUnprocessableEntity) IsSet() bool

func (NullableUnprocessableEntity) MarshalJSON

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

func (*NullableUnprocessableEntity) Set

func (v *NullableUnprocessableEntity) Set(val *UnprocessableEntity)

func (*NullableUnprocessableEntity) UnmarshalJSON

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

func (*NullableUnprocessableEntity) Unset

func (v *NullableUnprocessableEntity) Unset()

type NullableUsersNotAllowed

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

func NewNullableUsersNotAllowed

func NewNullableUsersNotAllowed(val *UsersNotAllowed) *NullableUsersNotAllowed

func (NullableUsersNotAllowed) Get

func (v NullableUsersNotAllowed) Get() *UsersNotAllowed

func (NullableUsersNotAllowed) IsSet

func (v NullableUsersNotAllowed) IsSet() bool

func (NullableUsersNotAllowed) MarshalJSON

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

func (*NullableUsersNotAllowed) Set

func (v *NullableUsersNotAllowed) Set(val *UsersNotAllowed)

func (*NullableUsersNotAllowed) UnmarshalJSON

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

func (*NullableUsersNotAllowed) Unset

func (v *NullableUsersNotAllowed) Unset()

type NullableVolume

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

func NewNullableVolume

func NewNullableVolume(val *Volume) *NullableVolume

func (NullableVolume) Get

func (v NullableVolume) Get() *Volume

func (NullableVolume) IsSet

func (v NullableVolume) IsSet() bool

func (NullableVolume) MarshalJSON

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

func (*NullableVolume) Set

func (v *NullableVolume) Set(val *Volume)

func (*NullableVolume) UnmarshalJSON

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

func (*NullableVolume) Unset

func (v *NullableVolume) Unset()

type NullableVolumeLocation

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

func NewNullableVolumeLocation

func NewNullableVolumeLocation(val *VolumeLocation) *NullableVolumeLocation

func (NullableVolumeLocation) Get

func (v NullableVolumeLocation) Get() *VolumeLocation

func (NullableVolumeLocation) IsSet

func (v NullableVolumeLocation) IsSet() bool

func (NullableVolumeLocation) MarshalJSON

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

func (*NullableVolumeLocation) Set

func (v *NullableVolumeLocation) Set(val *VolumeLocation)

func (*NullableVolumeLocation) UnmarshalJSON

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

func (*NullableVolumeLocation) Unset

func (v *NullableVolumeLocation) Unset()

type NullableVolumeLocationIscsi added in v0.1.4

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

func NewNullableVolumeLocationIscsi added in v0.1.4

func NewNullableVolumeLocationIscsi(val *VolumeLocationIscsi) *NullableVolumeLocationIscsi

func (NullableVolumeLocationIscsi) Get added in v0.1.4

func (v NullableVolumeLocationIscsi) Get() *VolumeLocationIscsi

func (NullableVolumeLocationIscsi) IsSet added in v0.1.4

func (v NullableVolumeLocationIscsi) IsSet() bool

func (NullableVolumeLocationIscsi) MarshalJSON added in v0.1.4

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

func (*NullableVolumeLocationIscsi) Set added in v0.1.4

func (v *NullableVolumeLocationIscsi) Set(val *VolumeLocationIscsi)

func (*NullableVolumeLocationIscsi) UnmarshalJSON added in v0.1.4

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

func (*NullableVolumeLocationIscsi) Unset added in v0.1.4

func (v *NullableVolumeLocationIscsi) Unset()

type NullableVolumeLocationIscsiChap added in v0.1.4

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

func NewNullableVolumeLocationIscsiChap added in v0.1.4

func NewNullableVolumeLocationIscsiChap(val *VolumeLocationIscsiChap) *NullableVolumeLocationIscsiChap

func (NullableVolumeLocationIscsiChap) Get added in v0.1.4

func (v NullableVolumeLocationIscsiChap) Get() *VolumeLocationIscsiChap

func (NullableVolumeLocationIscsiChap) IsSet added in v0.1.4

func (v NullableVolumeLocationIscsiChap) IsSet() bool

func (NullableVolumeLocationIscsiChap) MarshalJSON added in v0.1.4

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

func (*NullableVolumeLocationIscsiChap) Set added in v0.1.4

func (v *NullableVolumeLocationIscsiChap) Set(val *VolumeLocationIscsiChap)

func (*NullableVolumeLocationIscsiChap) UnmarshalJSON added in v0.1.4

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

func (*NullableVolumeLocationIscsiChap) Unset added in v0.1.4

func (v *NullableVolumeLocationIscsiChap) Unset()

type NullableVolumeLocationProgress

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

func NewNullableVolumeLocationProgress

func NewNullableVolumeLocationProgress(val *VolumeLocationProgress) *NullableVolumeLocationProgress

func (NullableVolumeLocationProgress) Get

func (v NullableVolumeLocationProgress) Get() *VolumeLocationProgress

func (NullableVolumeLocationProgress) IsSet

func (v NullableVolumeLocationProgress) IsSet() bool

func (NullableVolumeLocationProgress) MarshalJSON

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

func (*NullableVolumeLocationProgress) Set

func (v *NullableVolumeLocationProgress) Set(val *VolumeLocationProgress)

func (*NullableVolumeLocationProgress) UnmarshalJSON

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

func (*NullableVolumeLocationProgress) Unset

func (v *NullableVolumeLocationProgress) Unset()

type NullableVolumeLocationStatus

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

func NewNullableVolumeLocationStatus

func NewNullableVolumeLocationStatus(val *VolumeLocationStatus) *NullableVolumeLocationStatus

func (NullableVolumeLocationStatus) Get

func (v NullableVolumeLocationStatus) Get() *VolumeLocationStatus

func (NullableVolumeLocationStatus) IsSet

func (v NullableVolumeLocationStatus) IsSet() bool

func (NullableVolumeLocationStatus) MarshalJSON

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

func (*NullableVolumeLocationStatus) Set

func (v *NullableVolumeLocationStatus) Set(val *VolumeLocationStatus)

func (*NullableVolumeLocationStatus) UnmarshalJSON

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

func (*NullableVolumeLocationStatus) Unset

func (v *NullableVolumeLocationStatus) Unset()

type NullableVolumeNameConflict

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

func NewNullableVolumeNameConflict

func NewNullableVolumeNameConflict(val *VolumeNameConflict) *NullableVolumeNameConflict

func (NullableVolumeNameConflict) Get

func (v NullableVolumeNameConflict) Get() *VolumeNameConflict

func (NullableVolumeNameConflict) IsSet

func (v NullableVolumeNameConflict) IsSet() bool

func (NullableVolumeNameConflict) MarshalJSON

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

func (*NullableVolumeNameConflict) Set

func (v *NullableVolumeNameConflict) Set(val *VolumeNameConflict)

func (*NullableVolumeNameConflict) UnmarshalJSON

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

func (*NullableVolumeNameConflict) Unset

func (v *NullableVolumeNameConflict) Unset()

type NullableVolumeNameInvalid

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

func NewNullableVolumeNameInvalid

func NewNullableVolumeNameInvalid(val *VolumeNameInvalid) *NullableVolumeNameInvalid

func (NullableVolumeNameInvalid) Get

func (v NullableVolumeNameInvalid) Get() *VolumeNameInvalid

func (NullableVolumeNameInvalid) IsSet

func (v NullableVolumeNameInvalid) IsSet() bool

func (NullableVolumeNameInvalid) MarshalJSON

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

func (*NullableVolumeNameInvalid) Set

func (v *NullableVolumeNameInvalid) Set(val *VolumeNameInvalid)

func (*NullableVolumeNameInvalid) UnmarshalJSON

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

func (*NullableVolumeNameInvalid) Unset

func (v *NullableVolumeNameInvalid) Unset()

type NullableVolumeNodeNotFound

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

func NewNullableVolumeNodeNotFound

func NewNullableVolumeNodeNotFound(val *VolumeNodeNotFound) *NullableVolumeNodeNotFound

func (NullableVolumeNodeNotFound) Get

func (v NullableVolumeNodeNotFound) Get() *VolumeNodeNotFound

func (NullableVolumeNodeNotFound) IsSet

func (v NullableVolumeNodeNotFound) IsSet() bool

func (NullableVolumeNodeNotFound) MarshalJSON

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

func (*NullableVolumeNodeNotFound) Set

func (v *NullableVolumeNodeNotFound) Set(val *VolumeNodeNotFound)

func (*NullableVolumeNodeNotFound) UnmarshalJSON

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

func (*NullableVolumeNodeNotFound) Unset

func (v *NullableVolumeNodeNotFound) Unset()

type NullableVolumeNotFound

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

func NewNullableVolumeNotFound

func NewNullableVolumeNotFound(val *VolumeNotFound) *NullableVolumeNotFound

func (NullableVolumeNotFound) Get

func (v NullableVolumeNotFound) Get() *VolumeNotFound

func (NullableVolumeNotFound) IsSet

func (v NullableVolumeNotFound) IsSet() bool

func (NullableVolumeNotFound) MarshalJSON

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

func (*NullableVolumeNotFound) Set

func (v *NullableVolumeNotFound) Set(val *VolumeNotFound)

func (*NullableVolumeNotFound) UnmarshalJSON

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

func (*NullableVolumeNotFound) Unset

func (v *NullableVolumeNotFound) Unset()

type NullableVolumeSizeNotSupported

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

func NewNullableVolumeSizeNotSupported

func NewNullableVolumeSizeNotSupported(val *VolumeSizeNotSupported) *NullableVolumeSizeNotSupported

func (NullableVolumeSizeNotSupported) Get

func (v NullableVolumeSizeNotSupported) Get() *VolumeSizeNotSupported

func (NullableVolumeSizeNotSupported) IsSet

func (v NullableVolumeSizeNotSupported) IsSet() bool

func (NullableVolumeSizeNotSupported) MarshalJSON

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

func (*NullableVolumeSizeNotSupported) Set

func (v *NullableVolumeSizeNotSupported) Set(val *VolumeSizeNotSupported)

func (*NullableVolumeSizeNotSupported) UnmarshalJSON

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

func (*NullableVolumeSizeNotSupported) Unset

func (v *NullableVolumeSizeNotSupported) Unset()

type NullableVolumeStatus

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

func NewNullableVolumeStatus

func NewNullableVolumeStatus(val *VolumeStatus) *NullableVolumeStatus

func (NullableVolumeStatus) Get

func (v NullableVolumeStatus) Get() *VolumeStatus

func (NullableVolumeStatus) IsSet

func (v NullableVolumeStatus) IsSet() bool

func (NullableVolumeStatus) MarshalJSON

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

func (*NullableVolumeStatus) Set

func (v *NullableVolumeStatus) Set(val *VolumeStatus)

func (*NullableVolumeStatus) UnmarshalJSON

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

func (*NullableVolumeStatus) Unset

func (v *NullableVolumeStatus) Unset()

type NullableVolumeStatusDegraded

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

func NewNullableVolumeStatusDegraded

func NewNullableVolumeStatusDegraded(val *VolumeStatusDegraded) *NullableVolumeStatusDegraded

func (NullableVolumeStatusDegraded) Get

func (v NullableVolumeStatusDegraded) Get() *VolumeStatusDegraded

func (NullableVolumeStatusDegraded) IsSet

func (v NullableVolumeStatusDegraded) IsSet() bool

func (NullableVolumeStatusDegraded) MarshalJSON

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

func (*NullableVolumeStatusDegraded) Set

func (v *NullableVolumeStatusDegraded) Set(val *VolumeStatusDegraded)

func (*NullableVolumeStatusDegraded) UnmarshalJSON

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

func (*NullableVolumeStatusDegraded) Unset

func (v *NullableVolumeStatusDegraded) Unset()

type NullableVolumeStatusError

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

func NewNullableVolumeStatusError

func NewNullableVolumeStatusError(val *VolumeStatusError) *NullableVolumeStatusError

func (NullableVolumeStatusError) Get

func (v NullableVolumeStatusError) Get() *VolumeStatusError

func (NullableVolumeStatusError) IsSet

func (v NullableVolumeStatusError) IsSet() bool

func (NullableVolumeStatusError) MarshalJSON

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

func (*NullableVolumeStatusError) Set

func (v *NullableVolumeStatusError) Set(val *VolumeStatusError)

func (*NullableVolumeStatusError) UnmarshalJSON

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

func (*NullableVolumeStatusError) Unset

func (v *NullableVolumeStatusError) Unset()

type NullableVolumeStatusLocation

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

func NewNullableVolumeStatusLocation

func NewNullableVolumeStatusLocation(val *VolumeStatusLocation) *NullableVolumeStatusLocation

func (NullableVolumeStatusLocation) Get

func (v NullableVolumeStatusLocation) Get() *VolumeStatusLocation

func (NullableVolumeStatusLocation) IsSet

func (v NullableVolumeStatusLocation) IsSet() bool

func (NullableVolumeStatusLocation) MarshalJSON

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

func (*NullableVolumeStatusLocation) Set

func (v *NullableVolumeStatusLocation) Set(val *VolumeStatusLocation)

func (*NullableVolumeStatusLocation) UnmarshalJSON

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

func (*NullableVolumeStatusLocation) Unset

func (v *NullableVolumeStatusLocation) Unset()

type NullableVolumeStatusLocationProgress

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

func NewNullableVolumeStatusLocationProgress

func NewNullableVolumeStatusLocationProgress(val *VolumeStatusLocationProgress) *NullableVolumeStatusLocationProgress

func (NullableVolumeStatusLocationProgress) Get

func (v NullableVolumeStatusLocationProgress) Get() *VolumeStatusLocationProgress

func (NullableVolumeStatusLocationProgress) IsSet

func (v NullableVolumeStatusLocationProgress) IsSet() bool

func (NullableVolumeStatusLocationProgress) MarshalJSON

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

func (*NullableVolumeStatusLocationProgress) Set

func (v *NullableVolumeStatusLocationProgress) Set(val *VolumeStatusLocationProgress)

func (*NullableVolumeStatusLocationProgress) UnmarshalJSON

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

func (*NullableVolumeStatusLocationProgress) Unset

func (v *NullableVolumeStatusLocationProgress) Unset()

type NullableVolumeStatusOk

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

func NewNullableVolumeStatusOk

func NewNullableVolumeStatusOk(val *VolumeStatusOk) *NullableVolumeStatusOk

func (NullableVolumeStatusOk) Get

func (v NullableVolumeStatusOk) Get() *VolumeStatusOk

func (NullableVolumeStatusOk) IsSet

func (v NullableVolumeStatusOk) IsSet() bool

func (NullableVolumeStatusOk) MarshalJSON

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

func (*NullableVolumeStatusOk) Set

func (v *NullableVolumeStatusOk) Set(val *VolumeStatusOk)

func (*NullableVolumeStatusOk) UnmarshalJSON

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

func (*NullableVolumeStatusOk) Unset

func (v *NullableVolumeStatusOk) Unset()

type NullableVolumeStatusPending

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

func NewNullableVolumeStatusPending

func NewNullableVolumeStatusPending(val *VolumeStatusPending) *NullableVolumeStatusPending

func (NullableVolumeStatusPending) Get

func (v NullableVolumeStatusPending) Get() *VolumeStatusPending

func (NullableVolumeStatusPending) IsSet

func (v NullableVolumeStatusPending) IsSet() bool

func (NullableVolumeStatusPending) MarshalJSON

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

func (*NullableVolumeStatusPending) Set

func (v *NullableVolumeStatusPending) Set(val *VolumeStatusPending)

func (*NullableVolumeStatusPending) UnmarshalJSON

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

func (*NullableVolumeStatusPending) Unset

func (v *NullableVolumeStatusPending) Unset()

type NullableVolumeStatusSyncing

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

func NewNullableVolumeStatusSyncing

func NewNullableVolumeStatusSyncing(val *VolumeStatusSyncing) *NullableVolumeStatusSyncing

func (NullableVolumeStatusSyncing) Get

func (v NullableVolumeStatusSyncing) Get() *VolumeStatusSyncing

func (NullableVolumeStatusSyncing) IsSet

func (v NullableVolumeStatusSyncing) IsSet() bool

func (NullableVolumeStatusSyncing) MarshalJSON

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

func (*NullableVolumeStatusSyncing) Set

func (v *NullableVolumeStatusSyncing) Set(val *VolumeStatusSyncing)

func (*NullableVolumeStatusSyncing) UnmarshalJSON

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

func (*NullableVolumeStatusSyncing) Unset

func (v *NullableVolumeStatusSyncing) Unset()

type NullableVolumeStatusSyncingLocation

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

func NewNullableVolumeStatusSyncingLocation

func NewNullableVolumeStatusSyncingLocation(val *VolumeStatusSyncingLocation) *NullableVolumeStatusSyncingLocation

func (NullableVolumeStatusSyncingLocation) Get

func (v NullableVolumeStatusSyncingLocation) Get() *VolumeStatusSyncingLocation

func (NullableVolumeStatusSyncingLocation) IsSet

func (v NullableVolumeStatusSyncingLocation) IsSet() bool

func (NullableVolumeStatusSyncingLocation) MarshalJSON

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

func (*NullableVolumeStatusSyncingLocation) Set

func (v *NullableVolumeStatusSyncingLocation) Set(val *VolumeStatusSyncingLocation)

func (*NullableVolumeStatusSyncingLocation) UnmarshalJSON

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

func (*NullableVolumeStatusSyncingLocation) Unset

func (v *NullableVolumeStatusSyncingLocation) Unset()

type PaymentRequired added in v0.1.3

type PaymentRequired struct {
	// The HTTP Code
	HttpCode float32 `json:"httpCode"`
	// The HTTP Status
	HttpStatus string `json:"httpStatus"`
}

PaymentRequired struct for PaymentRequired

func NewPaymentRequired added in v0.1.3

func NewPaymentRequired(httpCode float32, httpStatus string) *PaymentRequired

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

func NewPaymentRequiredWithDefaults added in v0.1.3

func NewPaymentRequiredWithDefaults() *PaymentRequired

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

func (*PaymentRequired) GetHttpCode added in v0.1.3

func (o *PaymentRequired) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*PaymentRequired) GetHttpCodeOk added in v0.1.3

func (o *PaymentRequired) GetHttpCodeOk() (*float32, bool)

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

func (*PaymentRequired) GetHttpStatus added in v0.1.3

func (o *PaymentRequired) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*PaymentRequired) GetHttpStatusOk added in v0.1.3

func (o *PaymentRequired) GetHttpStatusOk() (*string, bool)

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

func (PaymentRequired) MarshalJSON added in v0.1.3

func (o PaymentRequired) MarshalJSON() ([]byte, error)

func (*PaymentRequired) SetHttpCode added in v0.1.3

func (o *PaymentRequired) SetHttpCode(v float32)

SetHttpCode sets field value

func (*PaymentRequired) SetHttpStatus added in v0.1.3

func (o *PaymentRequired) SetHttpStatus(v string)

SetHttpStatus sets field value

type QuotaLimitExceeded added in v0.1.3

type QuotaLimitExceeded struct {
	ErrorCode string  `json:"errorCode"`
	Type      string  `json:"type"`
	NLimit    float32 `json:"nLimit"`
	StrLimit  string  `json:"strLimit"`
}

QuotaLimitExceeded struct for QuotaLimitExceeded

func NewQuotaLimitExceeded added in v0.1.3

func NewQuotaLimitExceeded(errorCode string, type_ string, nLimit float32, strLimit string) *QuotaLimitExceeded

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

func NewQuotaLimitExceededWithDefaults added in v0.1.3

func NewQuotaLimitExceededWithDefaults() *QuotaLimitExceeded

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

func (*QuotaLimitExceeded) GetErrorCode added in v0.1.3

func (o *QuotaLimitExceeded) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*QuotaLimitExceeded) GetErrorCodeOk added in v0.1.3

func (o *QuotaLimitExceeded) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*QuotaLimitExceeded) GetNLimit added in v0.1.3

func (o *QuotaLimitExceeded) GetNLimit() float32

GetNLimit returns the NLimit field value

func (*QuotaLimitExceeded) GetNLimitOk added in v0.1.3

func (o *QuotaLimitExceeded) GetNLimitOk() (*float32, bool)

GetNLimitOk returns a tuple with the NLimit field value and a boolean to check if the value has been set.

func (*QuotaLimitExceeded) GetStrLimit added in v0.1.3

func (o *QuotaLimitExceeded) GetStrLimit() string

GetStrLimit returns the StrLimit field value

func (*QuotaLimitExceeded) GetStrLimitOk added in v0.1.3

func (o *QuotaLimitExceeded) GetStrLimitOk() (*string, bool)

GetStrLimitOk returns a tuple with the StrLimit field value and a boolean to check if the value has been set.

func (*QuotaLimitExceeded) GetType added in v0.1.3

func (o *QuotaLimitExceeded) GetType() string

GetType returns the Type field value

func (*QuotaLimitExceeded) GetTypeOk added in v0.1.3

func (o *QuotaLimitExceeded) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (QuotaLimitExceeded) MarshalJSON added in v0.1.3

func (o QuotaLimitExceeded) MarshalJSON() ([]byte, error)

func (*QuotaLimitExceeded) SetErrorCode added in v0.1.3

func (o *QuotaLimitExceeded) SetErrorCode(v string)

SetErrorCode sets field value

func (*QuotaLimitExceeded) SetNLimit added in v0.1.3

func (o *QuotaLimitExceeded) SetNLimit(v float32)

SetNLimit sets field value

func (*QuotaLimitExceeded) SetStrLimit added in v0.1.3

func (o *QuotaLimitExceeded) SetStrLimit(v string)

SetStrLimit sets field value

func (*QuotaLimitExceeded) SetType added in v0.1.3

func (o *QuotaLimitExceeded) SetType(v string)

SetType sets field value

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type State

type State struct {
	// The unique ID of the state
	Id string `json:"id"`
	// The uniq name of the state
	Name string `json:"name"`
	// The values to be passed to the StorageClass
	StorageClass StorageClass `json:"storageClass"`
	// The Cluster that currently owns the State
	Owner *string `json:"owner,omitempty"`
	// State provisioning status
	ProvisioningStatus string `json:"provisioningStatus"`
	// The Locations of the State
	Locations *StateLocations `json:"locations,omitempty"`
	// State condition
	Condition string `json:"condition"`
	// Creation date
	Created time.Time `json:"created"`
	// Modification date
	Modified time.Time `json:"modified"`
}

State struct for State

func NewState

func NewState(id string, name string, storageClass StorageClass, provisioningStatus string, condition string, created time.Time, modified time.Time) *State

NewState instantiates a new State object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateWithDefaults

func NewStateWithDefaults() *State

NewStateWithDefaults instantiates a new State object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*State) GetCondition

func (o *State) GetCondition() string

GetCondition returns the Condition field value

func (*State) GetConditionOk

func (o *State) GetConditionOk() (*string, bool)

GetConditionOk returns a tuple with the Condition field value and a boolean to check if the value has been set.

func (*State) GetCreated

func (o *State) GetCreated() time.Time

GetCreated returns the Created field value

func (*State) GetCreatedOk

func (o *State) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value and a boolean to check if the value has been set.

func (*State) GetId

func (o *State) GetId() string

GetId returns the Id field value

func (*State) GetIdOk

func (o *State) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*State) GetLocations

func (o *State) GetLocations() StateLocations

GetLocations returns the Locations field value if set, zero value otherwise.

func (*State) GetLocationsOk

func (o *State) GetLocationsOk() (*StateLocations, bool)

GetLocationsOk returns a tuple with the Locations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*State) GetModified

func (o *State) GetModified() time.Time

GetModified returns the Modified field value

func (*State) GetModifiedOk

func (o *State) GetModifiedOk() (*time.Time, bool)

GetModifiedOk returns a tuple with the Modified field value and a boolean to check if the value has been set.

func (*State) GetName

func (o *State) GetName() string

GetName returns the Name field value

func (*State) GetNameOk

func (o *State) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*State) GetOwner

func (o *State) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*State) GetOwnerOk

func (o *State) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*State) GetProvisioningStatus

func (o *State) GetProvisioningStatus() string

GetProvisioningStatus returns the ProvisioningStatus field value

func (*State) GetProvisioningStatusOk

func (o *State) GetProvisioningStatusOk() (*string, bool)

GetProvisioningStatusOk returns a tuple with the ProvisioningStatus field value and a boolean to check if the value has been set.

func (*State) GetStorageClass

func (o *State) GetStorageClass() StorageClass

GetStorageClass returns the StorageClass field value

func (*State) GetStorageClassOk

func (o *State) GetStorageClassOk() (*StorageClass, bool)

GetStorageClassOk returns a tuple with the StorageClass field value and a boolean to check if the value has been set.

func (*State) HasLocations

func (o *State) HasLocations() bool

HasLocations returns a boolean if a field has been set.

func (*State) HasOwner

func (o *State) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (State) MarshalJSON

func (o State) MarshalJSON() ([]byte, error)

func (*State) SetCondition

func (o *State) SetCondition(v string)

SetCondition sets field value

func (*State) SetCreated

func (o *State) SetCreated(v time.Time)

SetCreated sets field value

func (*State) SetId

func (o *State) SetId(v string)

SetId sets field value

func (*State) SetLocations

func (o *State) SetLocations(v StateLocations)

SetLocations gets a reference to the given StateLocations and assigns it to the Locations field.

func (*State) SetModified

func (o *State) SetModified(v time.Time)

SetModified sets field value

func (*State) SetName

func (o *State) SetName(v string)

SetName sets field value

func (*State) SetOwner

func (o *State) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*State) SetProvisioningStatus

func (o *State) SetProvisioningStatus(v string)

SetProvisioningStatus sets field value

func (*State) SetStorageClass

func (o *State) SetStorageClass(v StorageClass)

SetStorageClass sets field value

type StateAWSLocationApiService added in v0.2.1

type StateAWSLocationApiService service

StateAWSLocationApiService StateAWSLocationApi service

func (*StateAWSLocationApiService) StateAwsLocationAddWhitelistedPrincipal added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationAddWhitelistedPrincipal(ctx _context.Context, state string, region string) ApiStateAwsLocationAddWhitelistedPrincipalRequest

* StateAwsLocationAddWhitelistedPrincipal Add current cluster account principal to whitelist * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An AWS Region * @return ApiStateAwsLocationAddWhitelistedPrincipalRequest

func (*StateAWSLocationApiService) StateAwsLocationAddWhitelistedPrincipalExecute added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationAddWhitelistedPrincipalExecute(r ApiStateAwsLocationAddWhitelistedPrincipalRequest) ([]string, *_nethttp.Response, error)

* Execute executes the request * @return []string

func (*StateAWSLocationApiService) StateAwsLocationApprovePle added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationApprovePle(ctx _context.Context, state string, region string, endpoint string) ApiStateAwsLocationApprovePleRequest

* StateAwsLocationApprovePle Approve an AWS private link endpoint * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An AWS Region * @param endpoint PLE endpoint * @return ApiStateAwsLocationApprovePleRequest

func (*StateAWSLocationApiService) StateAwsLocationApprovePleExecute added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationApprovePleExecute(r ApiStateAwsLocationApprovePleRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*StateAWSLocationApiService) StateAwsLocationDelete added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationDelete(ctx _context.Context, state string, region string) ApiStateAwsLocationDeleteRequest

* StateAwsLocationDelete Remove an AWS Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An AWS Region * @return ApiStateAwsLocationDeleteRequest

func (*StateAWSLocationApiService) StateAwsLocationDeleteExecute added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationDeleteExecute(r ApiStateAwsLocationDeleteRequest) (StateLocationAws, *_nethttp.Response, error)

* Execute executes the request * @return StateLocationAws

func (*StateAWSLocationApiService) StateAwsLocationGet added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationGet(ctx _context.Context, state string, region string) ApiStateAwsLocationGetRequest

* StateAwsLocationGet Get an AWS Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An AWS Region * @return ApiStateAwsLocationGetRequest

func (*StateAWSLocationApiService) StateAwsLocationGetExecute added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationGetExecute(r ApiStateAwsLocationGetRequest) ([]StateLocationAws, *_nethttp.Response, error)

* Execute executes the request * @return []StateLocationAws

func (*StateAWSLocationApiService) StateAwsLocationGetWhitelistedPrincipal added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationGetWhitelistedPrincipal(ctx _context.Context, state string, region string) ApiStateAwsLocationGetWhitelistedPrincipalRequest

* StateAwsLocationGetWhitelistedPrincipal Get AWS whitelisted account principals * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An AWS Region * @return ApiStateAwsLocationGetWhitelistedPrincipalRequest

func (*StateAWSLocationApiService) StateAwsLocationGetWhitelistedPrincipalExecute added in v0.2.1

func (a *StateAWSLocationApiService) StateAwsLocationGetWhitelistedPrincipalExecute(r ApiStateAwsLocationGetWhitelistedPrincipalRequest) ([]string, *_nethttp.Response, error)

* Execute executes the request * @return []string

type StateApiService added in v0.2.1

type StateApiService service

StateApiService StateApi service

func (*StateApiService) StateDelete added in v0.2.1

func (a *StateApiService) StateDelete(ctx _context.Context, state string) ApiStateDeleteRequest

* StateDelete Delete a State * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateDeleteRequest

func (*StateApiService) StateDeleteExecute added in v0.2.1

func (a *StateApiService) StateDeleteExecute(r ApiStateDeleteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*StateApiService) StateFindOne added in v0.2.1

func (a *StateApiService) StateFindOne(ctx _context.Context, state string) ApiStateFindOneRequest

* StateFindOne Get a State * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateFindOneRequest

func (*StateApiService) StateFindOneExecute added in v0.2.1

func (a *StateApiService) StateFindOneExecute(r ApiStateFindOneRequest) (State, *_nethttp.Response, error)

* Execute executes the request * @return State

type StateAzureLocationApiService added in v0.2.1

type StateAzureLocationApiService service

StateAzureLocationApiService StateAzureLocationApi service

func (*StateAzureLocationApiService) StateAzureLocationApprovePle added in v0.2.1

func (a *StateAzureLocationApiService) StateAzureLocationApprovePle(ctx _context.Context, state string, region string, endpoint string) ApiStateAzureLocationApprovePleRequest

* StateAzureLocationApprovePle Approve an Azure private link endpoint * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An Azure Region * @param endpoint PLE endpoint * @return ApiStateAzureLocationApprovePleRequest

func (*StateAzureLocationApiService) StateAzureLocationApprovePleExecute added in v0.2.1

func (a *StateAzureLocationApiService) StateAzureLocationApprovePleExecute(r ApiStateAzureLocationApprovePleRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*StateAzureLocationApiService) StateAzureLocationDelete added in v0.2.1

func (a *StateAzureLocationApiService) StateAzureLocationDelete(ctx _context.Context, state string, region string) ApiStateAzureLocationDeleteRequest

* StateAzureLocationDelete Remove an Azure Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An Azure Region * @return ApiStateAzureLocationDeleteRequest

func (*StateAzureLocationApiService) StateAzureLocationDeleteExecute added in v0.2.1

func (a *StateAzureLocationApiService) StateAzureLocationDeleteExecute(r ApiStateAzureLocationDeleteRequest) (StateLocationAzure, *_nethttp.Response, error)

* Execute executes the request * @return StateLocationAzure

func (*StateAzureLocationApiService) StateAzureLocationGet added in v0.2.1

func (a *StateAzureLocationApiService) StateAzureLocationGet(ctx _context.Context, state string, region string) ApiStateAzureLocationGetRequest

* StateAzureLocationGet Get an Azure Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param region An Azure Region * @return ApiStateAzureLocationGetRequest

func (*StateAzureLocationApiService) StateAzureLocationGetExecute added in v0.2.1

func (a *StateAzureLocationApiService) StateAzureLocationGetExecute(r ApiStateAzureLocationGetRequest) ([]StateLocationAzure, *_nethttp.Response, error)

* Execute executes the request * @return []StateLocationAzure

type StateHasNoOwner

type StateHasNoOwner struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
}

StateHasNoOwner struct for StateHasNoOwner

func NewStateHasNoOwner

func NewStateHasNoOwner(errorCode string, state string) *StateHasNoOwner

NewStateHasNoOwner instantiates a new StateHasNoOwner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateHasNoOwnerWithDefaults

func NewStateHasNoOwnerWithDefaults() *StateHasNoOwner

NewStateHasNoOwnerWithDefaults instantiates a new StateHasNoOwner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateHasNoOwner) GetErrorCode

func (o *StateHasNoOwner) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*StateHasNoOwner) GetErrorCodeOk

func (o *StateHasNoOwner) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*StateHasNoOwner) GetState

func (o *StateHasNoOwner) GetState() string

GetState returns the State field value

func (*StateHasNoOwner) GetStateOk

func (o *StateHasNoOwner) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (StateHasNoOwner) MarshalJSON

func (o StateHasNoOwner) MarshalJSON() ([]byte, error)

func (*StateHasNoOwner) SetErrorCode

func (o *StateHasNoOwner) SetErrorCode(v string)

SetErrorCode sets field value

func (*StateHasNoOwner) SetState

func (o *StateHasNoOwner) SetState(v string)

SetState sets field value

type StateHasVolumes

type StateHasVolumes struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
}

StateHasVolumes struct for StateHasVolumes

func NewStateHasVolumes

func NewStateHasVolumes(errorCode string, state string) *StateHasVolumes

NewStateHasVolumes instantiates a new StateHasVolumes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateHasVolumesWithDefaults

func NewStateHasVolumesWithDefaults() *StateHasVolumes

NewStateHasVolumesWithDefaults instantiates a new StateHasVolumes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateHasVolumes) GetErrorCode

func (o *StateHasVolumes) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*StateHasVolumes) GetErrorCodeOk

func (o *StateHasVolumes) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*StateHasVolumes) GetState

func (o *StateHasVolumes) GetState() string

GetState returns the State field value

func (*StateHasVolumes) GetStateOk

func (o *StateHasVolumes) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (StateHasVolumes) MarshalJSON

func (o StateHasVolumes) MarshalJSON() ([]byte, error)

func (*StateHasVolumes) SetErrorCode

func (o *StateHasVolumes) SetErrorCode(v string)

SetErrorCode sets field value

func (*StateHasVolumes) SetState

func (o *StateHasVolumes) SetState(v string)

SetState sets field value

type StateLocationAws

type StateLocationAws struct {
	// An AWS Region
	Region string `json:"region"`
	// Location status
	Status string `json:"status"`
	// Volume status in this location
	Volumes []StateLocationVolume `json:"volumes"`
	// PrivateLink Endpoint
	PrivateLinkService *StateLocationAwsPls `json:"privateLinkService,omitempty"`
}

StateLocationAws struct for StateLocationAws

func NewStateLocationAws

func NewStateLocationAws(region string, status string, volumes []StateLocationVolume) *StateLocationAws

NewStateLocationAws instantiates a new StateLocationAws object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationAwsWithDefaults

func NewStateLocationAwsWithDefaults() *StateLocationAws

NewStateLocationAwsWithDefaults instantiates a new StateLocationAws object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationAws) GetPrivateLinkService

func (o *StateLocationAws) GetPrivateLinkService() StateLocationAwsPls

GetPrivateLinkService returns the PrivateLinkService field value if set, zero value otherwise.

func (*StateLocationAws) GetPrivateLinkServiceOk

func (o *StateLocationAws) GetPrivateLinkServiceOk() (*StateLocationAwsPls, bool)

GetPrivateLinkServiceOk returns a tuple with the PrivateLinkService field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StateLocationAws) GetRegion

func (o *StateLocationAws) GetRegion() string

GetRegion returns the Region field value

func (*StateLocationAws) GetRegionOk

func (o *StateLocationAws) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value and a boolean to check if the value has been set.

func (*StateLocationAws) GetStatus

func (o *StateLocationAws) GetStatus() string

GetStatus returns the Status field value

func (*StateLocationAws) GetStatusOk

func (o *StateLocationAws) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*StateLocationAws) GetVolumes

func (o *StateLocationAws) GetVolumes() []StateLocationVolume

GetVolumes returns the Volumes field value

func (*StateLocationAws) GetVolumesOk

func (o *StateLocationAws) GetVolumesOk() (*[]StateLocationVolume, bool)

GetVolumesOk returns a tuple with the Volumes field value and a boolean to check if the value has been set.

func (*StateLocationAws) HasPrivateLinkService

func (o *StateLocationAws) HasPrivateLinkService() bool

HasPrivateLinkService returns a boolean if a field has been set.

func (StateLocationAws) MarshalJSON

func (o StateLocationAws) MarshalJSON() ([]byte, error)

func (*StateLocationAws) SetPrivateLinkService

func (o *StateLocationAws) SetPrivateLinkService(v StateLocationAwsPls)

SetPrivateLinkService gets a reference to the given StateLocationAwsPls and assigns it to the PrivateLinkService field.

func (*StateLocationAws) SetRegion

func (o *StateLocationAws) SetRegion(v string)

SetRegion sets field value

func (*StateLocationAws) SetStatus

func (o *StateLocationAws) SetStatus(v string)

SetStatus sets field value

func (*StateLocationAws) SetVolumes

func (o *StateLocationAws) SetVolumes(v []StateLocationVolume)

SetVolumes sets field value

type StateLocationAwsDto

type StateLocationAwsDto struct {
	// An AWS Region
	Region string `json:"region"`
}

StateLocationAwsDto struct for StateLocationAwsDto

func NewStateLocationAwsDto

func NewStateLocationAwsDto(region string) *StateLocationAwsDto

NewStateLocationAwsDto instantiates a new StateLocationAwsDto object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationAwsDtoWithDefaults

func NewStateLocationAwsDtoWithDefaults() *StateLocationAwsDto

NewStateLocationAwsDtoWithDefaults instantiates a new StateLocationAwsDto object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationAwsDto) GetRegion

func (o *StateLocationAwsDto) GetRegion() string

GetRegion returns the Region field value

func (*StateLocationAwsDto) GetRegionOk

func (o *StateLocationAwsDto) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value and a boolean to check if the value has been set.

func (StateLocationAwsDto) MarshalJSON

func (o StateLocationAwsDto) MarshalJSON() ([]byte, error)

func (*StateLocationAwsDto) SetRegion

func (o *StateLocationAwsDto) SetRegion(v string)

SetRegion sets field value

type StateLocationAwsPls

type StateLocationAwsPls struct {
	// Private link service id
	Id string `json:"id"`
	// Private link service name
	Name string `json:"name"`
}

StateLocationAwsPls struct for StateLocationAwsPls

func NewStateLocationAwsPls

func NewStateLocationAwsPls(id string, name string) *StateLocationAwsPls

NewStateLocationAwsPls instantiates a new StateLocationAwsPls object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationAwsPlsWithDefaults

func NewStateLocationAwsPlsWithDefaults() *StateLocationAwsPls

NewStateLocationAwsPlsWithDefaults instantiates a new StateLocationAwsPls object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationAwsPls) GetId

func (o *StateLocationAwsPls) GetId() string

GetId returns the Id field value

func (*StateLocationAwsPls) GetIdOk

func (o *StateLocationAwsPls) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*StateLocationAwsPls) GetName

func (o *StateLocationAwsPls) GetName() string

GetName returns the Name field value

func (*StateLocationAwsPls) GetNameOk

func (o *StateLocationAwsPls) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (StateLocationAwsPls) MarshalJSON

func (o StateLocationAwsPls) MarshalJSON() ([]byte, error)

func (*StateLocationAwsPls) SetId

func (o *StateLocationAwsPls) SetId(v string)

SetId sets field value

func (*StateLocationAwsPls) SetName

func (o *StateLocationAwsPls) SetName(v string)

SetName sets field value

type StateLocationAzure

type StateLocationAzure struct {
	// An Azure Region
	Region string `json:"region"`
	// Location status
	Status string `json:"status"`
	// Volume status in this location
	Volumes []StateLocationVolume `json:"volumes"`
	// PrivateLink Endpoint
	PrivateLinkService *StateLocationAzurePls `json:"privateLinkService,omitempty"`
}

StateLocationAzure struct for StateLocationAzure

func NewStateLocationAzure

func NewStateLocationAzure(region string, status string, volumes []StateLocationVolume) *StateLocationAzure

NewStateLocationAzure instantiates a new StateLocationAzure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationAzureWithDefaults

func NewStateLocationAzureWithDefaults() *StateLocationAzure

NewStateLocationAzureWithDefaults instantiates a new StateLocationAzure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationAzure) GetPrivateLinkService

func (o *StateLocationAzure) GetPrivateLinkService() StateLocationAzurePls

GetPrivateLinkService returns the PrivateLinkService field value if set, zero value otherwise.

func (*StateLocationAzure) GetPrivateLinkServiceOk

func (o *StateLocationAzure) GetPrivateLinkServiceOk() (*StateLocationAzurePls, bool)

GetPrivateLinkServiceOk returns a tuple with the PrivateLinkService field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StateLocationAzure) GetRegion

func (o *StateLocationAzure) GetRegion() string

GetRegion returns the Region field value

func (*StateLocationAzure) GetRegionOk

func (o *StateLocationAzure) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value and a boolean to check if the value has been set.

func (*StateLocationAzure) GetStatus

func (o *StateLocationAzure) GetStatus() string

GetStatus returns the Status field value

func (*StateLocationAzure) GetStatusOk

func (o *StateLocationAzure) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*StateLocationAzure) GetVolumes

func (o *StateLocationAzure) GetVolumes() []StateLocationVolume

GetVolumes returns the Volumes field value

func (*StateLocationAzure) GetVolumesOk

func (o *StateLocationAzure) GetVolumesOk() (*[]StateLocationVolume, bool)

GetVolumesOk returns a tuple with the Volumes field value and a boolean to check if the value has been set.

func (*StateLocationAzure) HasPrivateLinkService

func (o *StateLocationAzure) HasPrivateLinkService() bool

HasPrivateLinkService returns a boolean if a field has been set.

func (StateLocationAzure) MarshalJSON

func (o StateLocationAzure) MarshalJSON() ([]byte, error)

func (*StateLocationAzure) SetPrivateLinkService

func (o *StateLocationAzure) SetPrivateLinkService(v StateLocationAzurePls)

SetPrivateLinkService gets a reference to the given StateLocationAzurePls and assigns it to the PrivateLinkService field.

func (*StateLocationAzure) SetRegion

func (o *StateLocationAzure) SetRegion(v string)

SetRegion sets field value

func (*StateLocationAzure) SetStatus

func (o *StateLocationAzure) SetStatus(v string)

SetStatus sets field value

func (*StateLocationAzure) SetVolumes

func (o *StateLocationAzure) SetVolumes(v []StateLocationVolume)

SetVolumes sets field value

type StateLocationAzureDto

type StateLocationAzureDto struct {
	// An Azure Region
	Region string `json:"region"`
}

StateLocationAzureDto struct for StateLocationAzureDto

func NewStateLocationAzureDto

func NewStateLocationAzureDto(region string) *StateLocationAzureDto

NewStateLocationAzureDto instantiates a new StateLocationAzureDto object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationAzureDtoWithDefaults

func NewStateLocationAzureDtoWithDefaults() *StateLocationAzureDto

NewStateLocationAzureDtoWithDefaults instantiates a new StateLocationAzureDto object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationAzureDto) GetRegion

func (o *StateLocationAzureDto) GetRegion() string

GetRegion returns the Region field value

func (*StateLocationAzureDto) GetRegionOk

func (o *StateLocationAzureDto) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value and a boolean to check if the value has been set.

func (StateLocationAzureDto) MarshalJSON

func (o StateLocationAzureDto) MarshalJSON() ([]byte, error)

func (*StateLocationAzureDto) SetRegion

func (o *StateLocationAzureDto) SetRegion(v string)

SetRegion sets field value

type StateLocationAzurePls

type StateLocationAzurePls struct {
	// Private link service id
	Id string `json:"id"`
}

StateLocationAzurePls struct for StateLocationAzurePls

func NewStateLocationAzurePls

func NewStateLocationAzurePls(id string) *StateLocationAzurePls

NewStateLocationAzurePls instantiates a new StateLocationAzurePls object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationAzurePlsWithDefaults

func NewStateLocationAzurePlsWithDefaults() *StateLocationAzurePls

NewStateLocationAzurePlsWithDefaults instantiates a new StateLocationAzurePls object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationAzurePls) GetId

func (o *StateLocationAzurePls) GetId() string

GetId returns the Id field value

func (*StateLocationAzurePls) GetIdOk

func (o *StateLocationAzurePls) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (StateLocationAzurePls) MarshalJSON

func (o StateLocationAzurePls) MarshalJSON() ([]byte, error)

func (*StateLocationAzurePls) SetId

func (o *StateLocationAzurePls) SetId(v string)

SetId sets field value

type StateLocationStatus

type StateLocationStatus struct {
	// State status
	Value string `json:"value"`
	// A human readable message explaining the status
	Msg string `json:"msg"`
}

StateLocationStatus struct for StateLocationStatus

func NewStateLocationStatus

func NewStateLocationStatus(value string, msg string) *StateLocationStatus

NewStateLocationStatus instantiates a new StateLocationStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationStatusWithDefaults

func NewStateLocationStatusWithDefaults() *StateLocationStatus

NewStateLocationStatusWithDefaults instantiates a new StateLocationStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationStatus) GetMsg

func (o *StateLocationStatus) GetMsg() string

GetMsg returns the Msg field value

func (*StateLocationStatus) GetMsgOk

func (o *StateLocationStatus) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value and a boolean to check if the value has been set.

func (*StateLocationStatus) GetValue

func (o *StateLocationStatus) GetValue() string

GetValue returns the Value field value

func (*StateLocationStatus) GetValueOk

func (o *StateLocationStatus) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (StateLocationStatus) MarshalJSON

func (o StateLocationStatus) MarshalJSON() ([]byte, error)

func (*StateLocationStatus) SetMsg

func (o *StateLocationStatus) SetMsg(v string)

SetMsg sets field value

func (*StateLocationStatus) SetValue

func (o *StateLocationStatus) SetValue(v string)

SetValue sets field value

type StateLocationStatusError

type StateLocationStatusError struct {
	// Error message
	Error string `json:"error"`
}

StateLocationStatusError struct for StateLocationStatusError

func NewStateLocationStatusError

func NewStateLocationStatusError(error_ string) *StateLocationStatusError

NewStateLocationStatusError instantiates a new StateLocationStatusError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationStatusErrorWithDefaults

func NewStateLocationStatusErrorWithDefaults() *StateLocationStatusError

NewStateLocationStatusErrorWithDefaults instantiates a new StateLocationStatusError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationStatusError) GetError

func (o *StateLocationStatusError) GetError() string

GetError returns the Error field value

func (*StateLocationStatusError) GetErrorOk

func (o *StateLocationStatusError) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (StateLocationStatusError) MarshalJSON

func (o StateLocationStatusError) MarshalJSON() ([]byte, error)

func (*StateLocationStatusError) SetError

func (o *StateLocationStatusError) SetError(v string)

SetError sets field value

type StateLocationStatusOk

type StateLocationStatusOk struct {
	// Location is ok.
	Ok map[string]interface{} `json:"ok"`
}

StateLocationStatusOk struct for StateLocationStatusOk

func NewStateLocationStatusOk

func NewStateLocationStatusOk(ok map[string]interface{}) *StateLocationStatusOk

NewStateLocationStatusOk instantiates a new StateLocationStatusOk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationStatusOkWithDefaults

func NewStateLocationStatusOkWithDefaults() *StateLocationStatusOk

NewStateLocationStatusOkWithDefaults instantiates a new StateLocationStatusOk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationStatusOk) GetOk

func (o *StateLocationStatusOk) GetOk() map[string]interface{}

GetOk returns the Ok field value

func (*StateLocationStatusOk) GetOkOk

func (o *StateLocationStatusOk) GetOkOk() (*map[string]interface{}, bool)

GetOkOk returns a tuple with the Ok field value and a boolean to check if the value has been set.

func (StateLocationStatusOk) MarshalJSON

func (o StateLocationStatusOk) MarshalJSON() ([]byte, error)

func (*StateLocationStatusOk) SetOk

func (o *StateLocationStatusOk) SetOk(v map[string]interface{})

SetOk sets field value

type StateLocationStatusProvisioning

type StateLocationStatusProvisioning struct {
	// Provisioning progress by volume
	Provisioning []string `json:"provisioning"`
}

StateLocationStatusProvisioning struct for StateLocationStatusProvisioning

func NewStateLocationStatusProvisioning

func NewStateLocationStatusProvisioning(provisioning []string) *StateLocationStatusProvisioning

NewStateLocationStatusProvisioning instantiates a new StateLocationStatusProvisioning object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationStatusProvisioningWithDefaults

func NewStateLocationStatusProvisioningWithDefaults() *StateLocationStatusProvisioning

NewStateLocationStatusProvisioningWithDefaults instantiates a new StateLocationStatusProvisioning object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationStatusProvisioning) GetProvisioning

func (o *StateLocationStatusProvisioning) GetProvisioning() []string

GetProvisioning returns the Provisioning field value

func (*StateLocationStatusProvisioning) GetProvisioningOk

func (o *StateLocationStatusProvisioning) GetProvisioningOk() (*[]string, bool)

GetProvisioningOk returns a tuple with the Provisioning field value and a boolean to check if the value has been set.

func (StateLocationStatusProvisioning) MarshalJSON

func (o StateLocationStatusProvisioning) MarshalJSON() ([]byte, error)

func (*StateLocationStatusProvisioning) SetProvisioning

func (o *StateLocationStatusProvisioning) SetProvisioning(v []string)

SetProvisioning sets field value

type StateLocationStatusRecovering

type StateLocationStatusRecovering struct {
	// Recovery progress by volume
	Recovering []string `json:"recovering"`
}

StateLocationStatusRecovering struct for StateLocationStatusRecovering

func NewStateLocationStatusRecovering

func NewStateLocationStatusRecovering(recovering []string) *StateLocationStatusRecovering

NewStateLocationStatusRecovering instantiates a new StateLocationStatusRecovering object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationStatusRecoveringWithDefaults

func NewStateLocationStatusRecoveringWithDefaults() *StateLocationStatusRecovering

NewStateLocationStatusRecoveringWithDefaults instantiates a new StateLocationStatusRecovering object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationStatusRecovering) GetRecovering

func (o *StateLocationStatusRecovering) GetRecovering() []string

GetRecovering returns the Recovering field value

func (*StateLocationStatusRecovering) GetRecoveringOk

func (o *StateLocationStatusRecovering) GetRecoveringOk() (*[]string, bool)

GetRecoveringOk returns a tuple with the Recovering field value and a boolean to check if the value has been set.

func (StateLocationStatusRecovering) MarshalJSON

func (o StateLocationStatusRecovering) MarshalJSON() ([]byte, error)

func (*StateLocationStatusRecovering) SetRecovering

func (o *StateLocationStatusRecovering) SetRecovering(v []string)

SetRecovering sets field value

type StateLocationVolume

type StateLocationVolume struct {
	// Volume name
	Name string `json:"name"`
	// Volume location status
	Status VolumeLocationStatus `json:"status"`
	// Progress (if applicable)
	Progress *VolumeLocationProgress `json:"progress,omitempty"`
}

StateLocationVolume struct for StateLocationVolume

func NewStateLocationVolume

func NewStateLocationVolume(name string, status VolumeLocationStatus) *StateLocationVolume

NewStateLocationVolume instantiates a new StateLocationVolume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationVolumeWithDefaults

func NewStateLocationVolumeWithDefaults() *StateLocationVolume

NewStateLocationVolumeWithDefaults instantiates a new StateLocationVolume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationVolume) GetName

func (o *StateLocationVolume) GetName() string

GetName returns the Name field value

func (*StateLocationVolume) GetNameOk

func (o *StateLocationVolume) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*StateLocationVolume) GetProgress

func (o *StateLocationVolume) GetProgress() VolumeLocationProgress

GetProgress returns the Progress field value if set, zero value otherwise.

func (*StateLocationVolume) GetProgressOk

func (o *StateLocationVolume) GetProgressOk() (*VolumeLocationProgress, bool)

GetProgressOk returns a tuple with the Progress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StateLocationVolume) GetStatus

func (o *StateLocationVolume) GetStatus() VolumeLocationStatus

GetStatus returns the Status field value

func (*StateLocationVolume) GetStatusOk

func (o *StateLocationVolume) GetStatusOk() (*VolumeLocationStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*StateLocationVolume) HasProgress

func (o *StateLocationVolume) HasProgress() bool

HasProgress returns a boolean if a field has been set.

func (StateLocationVolume) MarshalJSON

func (o StateLocationVolume) MarshalJSON() ([]byte, error)

func (*StateLocationVolume) SetName

func (o *StateLocationVolume) SetName(v string)

SetName sets field value

func (*StateLocationVolume) SetProgress

func (o *StateLocationVolume) SetProgress(v VolumeLocationProgress)

SetProgress gets a reference to the given VolumeLocationProgress and assigns it to the Progress field.

func (*StateLocationVolume) SetStatus

func (o *StateLocationVolume) SetStatus(v VolumeLocationStatus)

SetStatus sets field value

type StateLocationVolumeProgress

type StateLocationVolumeProgress struct {
	// Bytes synchronized
	BytesSynchronized float32 `json:"bytesSynchronized"`
	// Bytes total
	BytesTotal float32 `json:"bytesTotal"`
}

StateLocationVolumeProgress struct for StateLocationVolumeProgress

func NewStateLocationVolumeProgress

func NewStateLocationVolumeProgress(bytesSynchronized float32, bytesTotal float32) *StateLocationVolumeProgress

NewStateLocationVolumeProgress instantiates a new StateLocationVolumeProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationVolumeProgressWithDefaults

func NewStateLocationVolumeProgressWithDefaults() *StateLocationVolumeProgress

NewStateLocationVolumeProgressWithDefaults instantiates a new StateLocationVolumeProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocationVolumeProgress) GetBytesSynchronized

func (o *StateLocationVolumeProgress) GetBytesSynchronized() float32

GetBytesSynchronized returns the BytesSynchronized field value

func (*StateLocationVolumeProgress) GetBytesSynchronizedOk

func (o *StateLocationVolumeProgress) GetBytesSynchronizedOk() (*float32, bool)

GetBytesSynchronizedOk returns a tuple with the BytesSynchronized field value and a boolean to check if the value has been set.

func (*StateLocationVolumeProgress) GetBytesTotal

func (o *StateLocationVolumeProgress) GetBytesTotal() float32

GetBytesTotal returns the BytesTotal field value

func (*StateLocationVolumeProgress) GetBytesTotalOk

func (o *StateLocationVolumeProgress) GetBytesTotalOk() (*float32, bool)

GetBytesTotalOk returns a tuple with the BytesTotal field value and a boolean to check if the value has been set.

func (StateLocationVolumeProgress) MarshalJSON

func (o StateLocationVolumeProgress) MarshalJSON() ([]byte, error)

func (*StateLocationVolumeProgress) SetBytesSynchronized

func (o *StateLocationVolumeProgress) SetBytesSynchronized(v float32)

SetBytesSynchronized sets field value

func (*StateLocationVolumeProgress) SetBytesTotal

func (o *StateLocationVolumeProgress) SetBytesTotal(v float32)

SetBytesTotal sets field value

type StateLocations

type StateLocations struct {
	// The AWS locations for the State
	Aws *[]StateLocationAws `json:"aws,omitempty"`
	// The Azure locations for the State
	Azure *[]StateLocationAzure `json:"azure,omitempty"`
}

StateLocations struct for StateLocations

func NewStateLocations

func NewStateLocations() *StateLocations

NewStateLocations instantiates a new StateLocations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateLocationsWithDefaults

func NewStateLocationsWithDefaults() *StateLocations

NewStateLocationsWithDefaults instantiates a new StateLocations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateLocations) GetAws

func (o *StateLocations) GetAws() []StateLocationAws

GetAws returns the Aws field value if set, zero value otherwise.

func (*StateLocations) GetAwsOk

func (o *StateLocations) GetAwsOk() (*[]StateLocationAws, bool)

GetAwsOk returns a tuple with the Aws field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StateLocations) GetAzure

func (o *StateLocations) GetAzure() []StateLocationAzure

GetAzure returns the Azure field value if set, zero value otherwise.

func (*StateLocations) GetAzureOk

func (o *StateLocations) GetAzureOk() (*[]StateLocationAzure, bool)

GetAzureOk returns a tuple with the Azure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StateLocations) HasAws

func (o *StateLocations) HasAws() bool

HasAws returns a boolean if a field has been set.

func (*StateLocations) HasAzure

func (o *StateLocations) HasAzure() bool

HasAzure returns a boolean if a field has been set.

func (StateLocations) MarshalJSON

func (o StateLocations) MarshalJSON() ([]byte, error)

func (*StateLocations) SetAws

func (o *StateLocations) SetAws(v []StateLocationAws)

SetAws gets a reference to the given []StateLocationAws and assigns it to the Aws field.

func (*StateLocations) SetAzure

func (o *StateLocations) SetAzure(v []StateLocationAzure)

SetAzure gets a reference to the given []StateLocationAzure and assigns it to the Azure field.

type StateLocationsApiService

type StateLocationsApiService service

StateLocationsApiService StateLocationsApi service

func (*StateLocationsApiService) StateLocationsAddAws added in v0.2.1

func (a *StateLocationsApiService) StateLocationsAddAws(ctx _context.Context, state string) ApiStateLocationsAddAwsRequest

* StateLocationsAddAws Add an AWS Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateLocationsAddAwsRequest

func (*StateLocationsApiService) StateLocationsAddAwsExecute added in v0.2.1

func (a *StateLocationsApiService) StateLocationsAddAwsExecute(r ApiStateLocationsAddAwsRequest) (StateLocationAws, *_nethttp.Response, error)

* Execute executes the request * @return StateLocationAws

func (*StateLocationsApiService) StateLocationsAddAzure added in v0.2.1

func (a *StateLocationsApiService) StateLocationsAddAzure(ctx _context.Context, state string) ApiStateLocationsAddAzureRequest

* StateLocationsAddAzure Add an Azure Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateLocationsAddAzureRequest

func (*StateLocationsApiService) StateLocationsAddAzureExecute added in v0.2.1

func (a *StateLocationsApiService) StateLocationsAddAzureExecute(r ApiStateLocationsAddAzureRequest) (StateLocationAzure, *_nethttp.Response, error)

* Execute executes the request * @return StateLocationAzure

func (*StateLocationsApiService) StateLocationsList added in v0.2.1

func (a *StateLocationsApiService) StateLocationsList(ctx _context.Context, state string) ApiStateLocationsListRequest

* StateLocationsList Get all Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateLocationsListRequest

func (*StateLocationsApiService) StateLocationsListAws added in v0.2.1

func (a *StateLocationsApiService) StateLocationsListAws(ctx _context.Context, state string) ApiStateLocationsListAwsRequest

* StateLocationsListAws Get all Aws Location * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateLocationsListAwsRequest

func (*StateLocationsApiService) StateLocationsListAwsExecute added in v0.2.1

func (a *StateLocationsApiService) StateLocationsListAwsExecute(r ApiStateLocationsListAwsRequest) ([]StateLocationAws, *_nethttp.Response, error)

* Execute executes the request * @return []StateLocationAws

func (*StateLocationsApiService) StateLocationsListAzure added in v0.2.1

func (a *StateLocationsApiService) StateLocationsListAzure(ctx _context.Context, state string) ApiStateLocationsListAzureRequest

* StateLocationsListAzure Get all Azure Locations * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateLocationsListAzureRequest

func (*StateLocationsApiService) StateLocationsListAzureExecute added in v0.2.1

func (a *StateLocationsApiService) StateLocationsListAzureExecute(r ApiStateLocationsListAzureRequest) ([]StateLocationAzure, *_nethttp.Response, error)

* Execute executes the request * @return []StateLocationAzure

func (*StateLocationsApiService) StateLocationsListExecute added in v0.2.1

func (a *StateLocationsApiService) StateLocationsListExecute(r ApiStateLocationsListRequest) (StateLocations, *_nethttp.Response, error)

* Execute executes the request * @return StateLocations

type StateNameConflict

type StateNameConflict struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
}

StateNameConflict struct for StateNameConflict

func NewStateNameConflict

func NewStateNameConflict(errorCode string, state string) *StateNameConflict

NewStateNameConflict instantiates a new StateNameConflict object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateNameConflictWithDefaults

func NewStateNameConflictWithDefaults() *StateNameConflict

NewStateNameConflictWithDefaults instantiates a new StateNameConflict object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateNameConflict) GetErrorCode

func (o *StateNameConflict) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*StateNameConflict) GetErrorCodeOk

func (o *StateNameConflict) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*StateNameConflict) GetState

func (o *StateNameConflict) GetState() string

GetState returns the State field value

func (*StateNameConflict) GetStateOk

func (o *StateNameConflict) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (StateNameConflict) MarshalJSON

func (o StateNameConflict) MarshalJSON() ([]byte, error)

func (*StateNameConflict) SetErrorCode

func (o *StateNameConflict) SetErrorCode(v string)

SetErrorCode sets field value

func (*StateNameConflict) SetState

func (o *StateNameConflict) SetState(v string)

SetState sets field value

type StateNameInvalid

type StateNameInvalid struct {
	ErrorCode string `json:"errorCode"`
	Name      string `json:"name"`
}

StateNameInvalid struct for StateNameInvalid

func NewStateNameInvalid

func NewStateNameInvalid(errorCode string, name string) *StateNameInvalid

NewStateNameInvalid instantiates a new StateNameInvalid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateNameInvalidWithDefaults

func NewStateNameInvalidWithDefaults() *StateNameInvalid

NewStateNameInvalidWithDefaults instantiates a new StateNameInvalid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateNameInvalid) GetErrorCode

func (o *StateNameInvalid) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*StateNameInvalid) GetErrorCodeOk

func (o *StateNameInvalid) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*StateNameInvalid) GetName

func (o *StateNameInvalid) GetName() string

GetName returns the Name field value

func (*StateNameInvalid) GetNameOk

func (o *StateNameInvalid) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (StateNameInvalid) MarshalJSON

func (o StateNameInvalid) MarshalJSON() ([]byte, error)

func (*StateNameInvalid) SetErrorCode

func (o *StateNameInvalid) SetErrorCode(v string)

SetErrorCode sets field value

func (*StateNameInvalid) SetName

func (o *StateNameInvalid) SetName(v string)

SetName sets field value

type StateNotFound

type StateNotFound struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
}

StateNotFound struct for StateNotFound

func NewStateNotFound

func NewStateNotFound(errorCode string, state string) *StateNotFound

NewStateNotFound instantiates a new StateNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStateNotFoundWithDefaults

func NewStateNotFoundWithDefaults() *StateNotFound

NewStateNotFoundWithDefaults instantiates a new StateNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StateNotFound) GetErrorCode

func (o *StateNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*StateNotFound) GetErrorCodeOk

func (o *StateNotFound) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*StateNotFound) GetState

func (o *StateNotFound) GetState() string

GetState returns the State field value

func (*StateNotFound) GetStateOk

func (o *StateNotFound) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (StateNotFound) MarshalJSON

func (o StateNotFound) MarshalJSON() ([]byte, error)

func (*StateNotFound) SetErrorCode

func (o *StateNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*StateNotFound) SetState

func (o *StateNotFound) SetState(v string)

SetState sets field value

type StateOwnerApiService

type StateOwnerApiService service

StateOwnerApiService StateOwnerApi service

func (*StateOwnerApiService) StateOwnerSet added in v0.2.1

func (a *StateOwnerApiService) StateOwnerSet(ctx _context.Context, state string, cluster string) ApiStateOwnerSetRequest

* StateOwnerSet Set an owner Cluster for the State * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param cluster Cluster name * @return ApiStateOwnerSetRequest

func (*StateOwnerApiService) StateOwnerSetExecute added in v0.2.1

func (a *StateOwnerApiService) StateOwnerSetExecute(r ApiStateOwnerSetRequest) (State, *_nethttp.Response, error)

* Execute executes the request * @return State

func (*StateOwnerApiService) StateOwnerUnset added in v0.2.1

func (a *StateOwnerApiService) StateOwnerUnset(ctx _context.Context, state string) ApiStateOwnerUnsetRequest

* StateOwnerUnset Unset the owner Cluster form the State * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiStateOwnerUnsetRequest

func (*StateOwnerApiService) StateOwnerUnsetExecute added in v0.2.1

func (a *StateOwnerApiService) StateOwnerUnsetExecute(r ApiStateOwnerUnsetRequest) (State, *_nethttp.Response, error)

* Execute executes the request * @return State

type StatesApiService

type StatesApiService service

StatesApiService StatesApi service

func (*StatesApiService) StatesCreate added in v0.2.1

func (a *StatesApiService) StatesCreate(ctx _context.Context) ApiStatesCreateRequest

* StatesCreate Create a State * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiStatesCreateRequest

func (*StatesApiService) StatesCreateExecute added in v0.2.1

func (a *StatesApiService) StatesCreateExecute(r ApiStatesCreateRequest) (State, *_nethttp.Response, error)

* Execute executes the request * @return State

func (*StatesApiService) StatesFindMany added in v0.2.1

func (a *StatesApiService) StatesFindMany(ctx _context.Context) ApiStatesFindManyRequest

* StatesFindMany Get all States * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiStatesFindManyRequest

func (*StatesApiService) StatesFindManyExecute added in v0.2.1

func (a *StatesApiService) StatesFindManyExecute(r ApiStatesFindManyRequest) ([]State, *_nethttp.Response, error)

* Execute executes the request * @return []State

type StorageClass

type StorageClass struct {
	// Storage class name
	Name string `json:"name"`
	// The `volumeBindingMode` field of the StorageClass
	VolumeBindingMode string `json:"volumeBindingMode"`
	// The file system type of the state
	FsType string `json:"fsType"`
	// The `mountOptions` field of the StorageClass
	MountOptions *string `json:"mountOptions,omitempty"`
}

StorageClass struct for StorageClass

func NewStorageClass

func NewStorageClass(name string, volumeBindingMode string, fsType string) *StorageClass

NewStorageClass instantiates a new StorageClass object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStorageClassWithDefaults

func NewStorageClassWithDefaults() *StorageClass

NewStorageClassWithDefaults instantiates a new StorageClass object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StorageClass) GetFsType added in v0.1.1

func (o *StorageClass) GetFsType() string

GetFsType returns the FsType field value

func (*StorageClass) GetFsTypeOk added in v0.1.1

func (o *StorageClass) GetFsTypeOk() (*string, bool)

GetFsTypeOk returns a tuple with the FsType field value and a boolean to check if the value has been set.

func (*StorageClass) GetMountOptions

func (o *StorageClass) GetMountOptions() string

GetMountOptions returns the MountOptions field value if set, zero value otherwise.

func (*StorageClass) GetMountOptionsOk

func (o *StorageClass) GetMountOptionsOk() (*string, bool)

GetMountOptionsOk returns a tuple with the MountOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StorageClass) GetName

func (o *StorageClass) GetName() string

GetName returns the Name field value

func (*StorageClass) GetNameOk

func (o *StorageClass) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*StorageClass) GetVolumeBindingMode

func (o *StorageClass) GetVolumeBindingMode() string

GetVolumeBindingMode returns the VolumeBindingMode field value

func (*StorageClass) GetVolumeBindingModeOk

func (o *StorageClass) GetVolumeBindingModeOk() (*string, bool)

GetVolumeBindingModeOk returns a tuple with the VolumeBindingMode field value and a boolean to check if the value has been set.

func (*StorageClass) HasMountOptions

func (o *StorageClass) HasMountOptions() bool

HasMountOptions returns a boolean if a field has been set.

func (StorageClass) MarshalJSON

func (o StorageClass) MarshalJSON() ([]byte, error)

func (*StorageClass) SetFsType added in v0.1.1

func (o *StorageClass) SetFsType(v string)

SetFsType sets field value

func (*StorageClass) SetMountOptions

func (o *StorageClass) SetMountOptions(v string)

SetMountOptions gets a reference to the given string and assigns it to the MountOptions field.

func (*StorageClass) SetName

func (o *StorageClass) SetName(v string)

SetName sets field value

func (*StorageClass) SetVolumeBindingMode

func (o *StorageClass) SetVolumeBindingMode(v string)

SetVolumeBindingMode sets field value

type Unauthorized

type Unauthorized struct {
	// The HTTP Code
	HttpCode float32 `json:"httpCode"`
	// The HTTP Status
	HttpStatus string `json:"httpStatus"`
}

Unauthorized struct for Unauthorized

func NewUnauthorized

func NewUnauthorized(httpCode float32, httpStatus string) *Unauthorized

NewUnauthorized instantiates a new Unauthorized object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUnauthorizedWithDefaults

func NewUnauthorizedWithDefaults() *Unauthorized

NewUnauthorizedWithDefaults instantiates a new Unauthorized object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Unauthorized) GetHttpCode

func (o *Unauthorized) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*Unauthorized) GetHttpCodeOk

func (o *Unauthorized) GetHttpCodeOk() (*float32, bool)

GetHttpCodeOk returns a tuple with the HttpCode field value and a boolean to check if the value has been set.

func (*Unauthorized) GetHttpStatus

func (o *Unauthorized) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*Unauthorized) GetHttpStatusOk

func (o *Unauthorized) GetHttpStatusOk() (*string, bool)

GetHttpStatusOk returns a tuple with the HttpStatus field value and a boolean to check if the value has been set.

func (Unauthorized) MarshalJSON

func (o Unauthorized) MarshalJSON() ([]byte, error)

func (*Unauthorized) SetHttpCode

func (o *Unauthorized) SetHttpCode(v float32)

SetHttpCode sets field value

func (*Unauthorized) SetHttpStatus

func (o *Unauthorized) SetHttpStatus(v string)

SetHttpStatus sets field value

type UnprocessableEntity

type UnprocessableEntity struct {
	// The HTTP Code
	HttpCode float32 `json:"httpCode"`
	// The HTTP Status
	HttpStatus string `json:"httpStatus"`
}

UnprocessableEntity struct for UnprocessableEntity

func NewUnprocessableEntity

func NewUnprocessableEntity(httpCode float32, httpStatus string) *UnprocessableEntity

NewUnprocessableEntity instantiates a new UnprocessableEntity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUnprocessableEntityWithDefaults

func NewUnprocessableEntityWithDefaults() *UnprocessableEntity

NewUnprocessableEntityWithDefaults instantiates a new UnprocessableEntity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UnprocessableEntity) GetHttpCode

func (o *UnprocessableEntity) GetHttpCode() float32

GetHttpCode returns the HttpCode field value

func (*UnprocessableEntity) GetHttpCodeOk

func (o *UnprocessableEntity) GetHttpCodeOk() (*float32, bool)

GetHttpCodeOk returns a tuple with the HttpCode field value and a boolean to check if the value has been set.

func (*UnprocessableEntity) GetHttpStatus

func (o *UnprocessableEntity) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value

func (*UnprocessableEntity) GetHttpStatusOk

func (o *UnprocessableEntity) GetHttpStatusOk() (*string, bool)

GetHttpStatusOk returns a tuple with the HttpStatus field value and a boolean to check if the value has been set.

func (UnprocessableEntity) MarshalJSON

func (o UnprocessableEntity) MarshalJSON() ([]byte, error)

func (*UnprocessableEntity) SetHttpCode

func (o *UnprocessableEntity) SetHttpCode(v float32)

SetHttpCode sets field value

func (*UnprocessableEntity) SetHttpStatus

func (o *UnprocessableEntity) SetHttpStatus(v string)

SetHttpStatus sets field value

type UsersNotAllowed

type UsersNotAllowed struct {
	ErrorCode string `json:"errorCode"`
}

UsersNotAllowed struct for UsersNotAllowed

func NewUsersNotAllowed

func NewUsersNotAllowed(errorCode string) *UsersNotAllowed

NewUsersNotAllowed instantiates a new UsersNotAllowed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersNotAllowedWithDefaults

func NewUsersNotAllowedWithDefaults() *UsersNotAllowed

NewUsersNotAllowedWithDefaults instantiates a new UsersNotAllowed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersNotAllowed) GetErrorCode

func (o *UsersNotAllowed) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*UsersNotAllowed) GetErrorCodeOk

func (o *UsersNotAllowed) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (UsersNotAllowed) MarshalJSON

func (o UsersNotAllowed) MarshalJSON() ([]byte, error)

func (*UsersNotAllowed) SetErrorCode

func (o *UsersNotAllowed) SetErrorCode(v string)

SetErrorCode sets field value

type Volume

type Volume struct {
	// The unique ID of volume
	Id string `json:"id"`
	// Volume name
	Name string `json:"name"`
	// The size of the Volume in GiB
	SizeGi float32 `json:"sizeGi"`
	// The file system type of the Volume
	FsType string `json:"fsType"`
	// The active location for the Volume. Format is `{cloud}/{region}`. Should match one of the locations of the State
	ActiveLocation *string `json:"activeLocation,omitempty"`
	// Volume status in this location
	Locations []VolumeLocation `json:"locations"`
	// Format date
	Format *time.Time `json:"format,omitempty"`
	// Creation date
	Created time.Time `json:"created"`
	// Modify date
	Modified time.Time `json:"modified"`
}

Volume struct for Volume

func NewVolume

func NewVolume(id string, name string, sizeGi float32, fsType string, locations []VolumeLocation, created time.Time, modified time.Time) *Volume

NewVolume instantiates a new Volume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeWithDefaults

func NewVolumeWithDefaults() *Volume

NewVolumeWithDefaults instantiates a new Volume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Volume) GetActiveLocation

func (o *Volume) GetActiveLocation() string

GetActiveLocation returns the ActiveLocation field value if set, zero value otherwise.

func (*Volume) GetActiveLocationOk

func (o *Volume) GetActiveLocationOk() (*string, bool)

GetActiveLocationOk returns a tuple with the ActiveLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Volume) GetCreated

func (o *Volume) GetCreated() time.Time

GetCreated returns the Created field value

func (*Volume) GetCreatedOk

func (o *Volume) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value and a boolean to check if the value has been set.

func (*Volume) GetFormat added in v0.1.1

func (o *Volume) GetFormat() time.Time

GetFormat returns the Format field value if set, zero value otherwise.

func (*Volume) GetFormatOk added in v0.1.1

func (o *Volume) GetFormatOk() (*time.Time, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Volume) GetFsType

func (o *Volume) GetFsType() string

GetFsType returns the FsType field value

func (*Volume) GetFsTypeOk

func (o *Volume) GetFsTypeOk() (*string, bool)

GetFsTypeOk returns a tuple with the FsType field value and a boolean to check if the value has been set.

func (*Volume) GetId

func (o *Volume) GetId() string

GetId returns the Id field value

func (*Volume) GetIdOk

func (o *Volume) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Volume) GetLocations

func (o *Volume) GetLocations() []VolumeLocation

GetLocations returns the Locations field value

func (*Volume) GetLocationsOk

func (o *Volume) GetLocationsOk() (*[]VolumeLocation, bool)

GetLocationsOk returns a tuple with the Locations field value and a boolean to check if the value has been set.

func (*Volume) GetModified

func (o *Volume) GetModified() time.Time

GetModified returns the Modified field value

func (*Volume) GetModifiedOk

func (o *Volume) GetModifiedOk() (*time.Time, bool)

GetModifiedOk returns a tuple with the Modified field value and a boolean to check if the value has been set.

func (*Volume) GetName

func (o *Volume) GetName() string

GetName returns the Name field value

func (*Volume) GetNameOk

func (o *Volume) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Volume) GetSizeGi

func (o *Volume) GetSizeGi() float32

GetSizeGi returns the SizeGi field value

func (*Volume) GetSizeGiOk

func (o *Volume) GetSizeGiOk() (*float32, bool)

GetSizeGiOk returns a tuple with the SizeGi field value and a boolean to check if the value has been set.

func (*Volume) HasActiveLocation

func (o *Volume) HasActiveLocation() bool

HasActiveLocation returns a boolean if a field has been set.

func (*Volume) HasFormat added in v0.1.2

func (o *Volume) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (Volume) MarshalJSON

func (o Volume) MarshalJSON() ([]byte, error)

func (*Volume) SetActiveLocation

func (o *Volume) SetActiveLocation(v string)

SetActiveLocation gets a reference to the given string and assigns it to the ActiveLocation field.

func (*Volume) SetCreated

func (o *Volume) SetCreated(v time.Time)

SetCreated sets field value

func (*Volume) SetFormat added in v0.1.1

func (o *Volume) SetFormat(v time.Time)

SetFormat gets a reference to the given time.Time and assigns it to the Format field.

func (*Volume) SetFsType

func (o *Volume) SetFsType(v string)

SetFsType sets field value

func (*Volume) SetId

func (o *Volume) SetId(v string)

SetId sets field value

func (*Volume) SetLocations

func (o *Volume) SetLocations(v []VolumeLocation)

SetLocations sets field value

func (*Volume) SetModified

func (o *Volume) SetModified(v time.Time)

SetModified sets field value

func (*Volume) SetName

func (o *Volume) SetName(v string)

SetName sets field value

func (*Volume) SetSizeGi

func (o *Volume) SetSizeGi(v float32)

SetSizeGi sets field value

type VolumeActiveLocationApiService

type VolumeActiveLocationApiService service

VolumeActiveLocationApiService VolumeActiveLocationApi service

func (*VolumeActiveLocationApiService) VolumeActiveLocationControllerSet

func (a *VolumeActiveLocationApiService) VolumeActiveLocationControllerSet(ctx _context.Context, state string, volume string, cloud string, region string) ApiVolumeActiveLocationControllerSetRequest

* VolumeActiveLocationControllerSet Set the active location for the Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state * @param volume * @param cloud * @param region * @return ApiVolumeActiveLocationControllerSetRequest

func (*VolumeActiveLocationApiService) VolumeActiveLocationControllerSetExecute

func (a *VolumeActiveLocationApiService) VolumeActiveLocationControllerSetExecute(r ApiVolumeActiveLocationControllerSetRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

func (*VolumeActiveLocationApiService) VolumeActiveLocationControllerUnset

func (a *VolumeActiveLocationApiService) VolumeActiveLocationControllerUnset(ctx _context.Context, state string, volume string) ApiVolumeActiveLocationControllerUnsetRequest

* VolumeActiveLocationControllerUnset Unset the owner node from the Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state * @param volume * @return ApiVolumeActiveLocationControllerUnsetRequest

func (*VolumeActiveLocationApiService) VolumeActiveLocationControllerUnsetExecute

func (a *VolumeActiveLocationApiService) VolumeActiveLocationControllerUnsetExecute(r ApiVolumeActiveLocationControllerUnsetRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

type VolumeApiService added in v0.2.1

type VolumeApiService service

VolumeApiService VolumeApi service

func (*VolumeApiService) VolumeDelete added in v0.2.1

func (a *VolumeApiService) VolumeDelete(ctx _context.Context, state string, volume string) ApiVolumeDeleteRequest

* VolumeDelete Delete a Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param volume Volume name * @return ApiVolumeDeleteRequest

func (*VolumeApiService) VolumeDeleteExecute added in v0.2.1

func (a *VolumeApiService) VolumeDeleteExecute(r ApiVolumeDeleteRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

func (*VolumeApiService) VolumeFindOne added in v0.2.1

func (a *VolumeApiService) VolumeFindOne(ctx _context.Context, state string, volume string) ApiVolumeFindOneRequest

* VolumeFindOne Return specific Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param volume Volume name * @return ApiVolumeFindOneRequest

func (*VolumeApiService) VolumeFindOneExecute added in v0.2.1

func (a *VolumeApiService) VolumeFindOneExecute(r ApiVolumeFindOneRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

func (*VolumeApiService) VolumeSetActiveLocation added in v0.2.1

func (a *VolumeApiService) VolumeSetActiveLocation(ctx _context.Context, state string, volume string, cloud string, region string) ApiVolumeSetActiveLocationRequest

* VolumeSetActiveLocation Set the active location for the Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param volume Volume name * @param cloud Cloud name * @param region Region * @return ApiVolumeSetActiveLocationRequest

func (*VolumeApiService) VolumeSetActiveLocationExecute added in v0.2.1

func (a *VolumeApiService) VolumeSetActiveLocationExecute(r ApiVolumeSetActiveLocationRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

func (*VolumeApiService) VolumeUnsetActiveLocation added in v0.2.1

func (a *VolumeApiService) VolumeUnsetActiveLocation(ctx _context.Context, state string, volume string) ApiVolumeUnsetActiveLocationRequest

* VolumeUnsetActiveLocation Unset the owner node from the Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param volume Volume name * @return ApiVolumeUnsetActiveLocationRequest

func (*VolumeApiService) VolumeUnsetActiveLocationExecute added in v0.2.1

func (a *VolumeApiService) VolumeUnsetActiveLocationExecute(r ApiVolumeUnsetActiveLocationRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

func (*VolumeApiService) VolumeUpdateFormatted added in v0.2.1

func (a *VolumeApiService) VolumeUpdateFormatted(ctx _context.Context, state string, volume string) ApiVolumeUpdateFormattedRequest

* VolumeUpdateFormatted Update format date of a Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @param volume Volume name * @return ApiVolumeUpdateFormattedRequest

func (*VolumeApiService) VolumeUpdateFormattedExecute added in v0.2.1

func (a *VolumeApiService) VolumeUpdateFormattedExecute(r ApiVolumeUpdateFormattedRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

type VolumeLocation

type VolumeLocation struct {
	// Location name. Format is `{cloud}/{region}`. Should match one of the locations of the State
	Name string `json:"name"`
	// Volume location iSCSI access object
	Iscsi *VolumeLocationIscsi `json:"iscsi,omitempty"`
	// Volume location status
	Status VolumeLocationStatus `json:"status"`
	// Progress (if applicable)
	Progress *VolumeLocationProgress `json:"progress,omitempty"`
}

VolumeLocation struct for VolumeLocation

func NewVolumeLocation

func NewVolumeLocation(name string, status VolumeLocationStatus) *VolumeLocation

NewVolumeLocation instantiates a new VolumeLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeLocationWithDefaults

func NewVolumeLocationWithDefaults() *VolumeLocation

NewVolumeLocationWithDefaults instantiates a new VolumeLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeLocation) GetIscsi added in v0.1.4

func (o *VolumeLocation) GetIscsi() VolumeLocationIscsi

GetIscsi returns the Iscsi field value if set, zero value otherwise.

func (*VolumeLocation) GetIscsiOk added in v0.1.4

func (o *VolumeLocation) GetIscsiOk() (*VolumeLocationIscsi, bool)

GetIscsiOk returns a tuple with the Iscsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeLocation) GetName

func (o *VolumeLocation) GetName() string

GetName returns the Name field value

func (*VolumeLocation) GetNameOk

func (o *VolumeLocation) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*VolumeLocation) GetProgress

func (o *VolumeLocation) GetProgress() VolumeLocationProgress

GetProgress returns the Progress field value if set, zero value otherwise.

func (*VolumeLocation) GetProgressOk

func (o *VolumeLocation) GetProgressOk() (*VolumeLocationProgress, bool)

GetProgressOk returns a tuple with the Progress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeLocation) GetStatus

func (o *VolumeLocation) GetStatus() VolumeLocationStatus

GetStatus returns the Status field value

func (*VolumeLocation) GetStatusOk

func (o *VolumeLocation) GetStatusOk() (*VolumeLocationStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*VolumeLocation) HasIscsi added in v0.1.4

func (o *VolumeLocation) HasIscsi() bool

HasIscsi returns a boolean if a field has been set.

func (*VolumeLocation) HasProgress

func (o *VolumeLocation) HasProgress() bool

HasProgress returns a boolean if a field has been set.

func (VolumeLocation) MarshalJSON

func (o VolumeLocation) MarshalJSON() ([]byte, error)

func (*VolumeLocation) SetIscsi added in v0.1.4

func (o *VolumeLocation) SetIscsi(v VolumeLocationIscsi)

SetIscsi gets a reference to the given VolumeLocationIscsi and assigns it to the Iscsi field.

func (*VolumeLocation) SetName

func (o *VolumeLocation) SetName(v string)

SetName sets field value

func (*VolumeLocation) SetProgress

func (o *VolumeLocation) SetProgress(v VolumeLocationProgress)

SetProgress gets a reference to the given VolumeLocationProgress and assigns it to the Progress field.

func (*VolumeLocation) SetStatus

func (o *VolumeLocation) SetStatus(v VolumeLocationStatus)

SetStatus sets field value

type VolumeLocationIscsi added in v0.1.4

type VolumeLocationIscsi struct {
	// Volume location iSCSI iqn
	Iqn string `json:"iqn"`
	// Volume location iSCSI ipv4
	Ipv4 *string `json:"ipv4,omitempty"`
	// Volume location iSCSI port
	Port *float32 `json:"port,omitempty"`
	// Volume location iSCSI chap
	Chap *VolumeLocationIscsiChap `json:"chap,omitempty"`
}

VolumeLocationIscsi struct for VolumeLocationIscsi

func NewVolumeLocationIscsi added in v0.1.4

func NewVolumeLocationIscsi(iqn string) *VolumeLocationIscsi

NewVolumeLocationIscsi instantiates a new VolumeLocationIscsi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeLocationIscsiWithDefaults added in v0.1.4

func NewVolumeLocationIscsiWithDefaults() *VolumeLocationIscsi

NewVolumeLocationIscsiWithDefaults instantiates a new VolumeLocationIscsi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeLocationIscsi) GetChap added in v0.1.4

func (o *VolumeLocationIscsi) GetChap() VolumeLocationIscsiChap

GetChap returns the Chap field value if set, zero value otherwise.

func (*VolumeLocationIscsi) GetChapOk added in v0.1.4

func (o *VolumeLocationIscsi) GetChapOk() (*VolumeLocationIscsiChap, bool)

GetChapOk returns a tuple with the Chap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeLocationIscsi) GetIpv4 added in v0.1.4

func (o *VolumeLocationIscsi) GetIpv4() string

GetIpv4 returns the Ipv4 field value if set, zero value otherwise.

func (*VolumeLocationIscsi) GetIpv4Ok added in v0.1.4

func (o *VolumeLocationIscsi) GetIpv4Ok() (*string, bool)

GetIpv4Ok returns a tuple with the Ipv4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeLocationIscsi) GetIqn added in v0.1.4

func (o *VolumeLocationIscsi) GetIqn() string

GetIqn returns the Iqn field value

func (*VolumeLocationIscsi) GetIqnOk added in v0.1.4

func (o *VolumeLocationIscsi) GetIqnOk() (*string, bool)

GetIqnOk returns a tuple with the Iqn field value and a boolean to check if the value has been set.

func (*VolumeLocationIscsi) GetPort added in v0.1.4

func (o *VolumeLocationIscsi) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*VolumeLocationIscsi) GetPortOk added in v0.1.4

func (o *VolumeLocationIscsi) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeLocationIscsi) HasChap added in v0.1.4

func (o *VolumeLocationIscsi) HasChap() bool

HasChap returns a boolean if a field has been set.

func (*VolumeLocationIscsi) HasIpv4 added in v0.1.4

func (o *VolumeLocationIscsi) HasIpv4() bool

HasIpv4 returns a boolean if a field has been set.

func (*VolumeLocationIscsi) HasPort added in v0.1.4

func (o *VolumeLocationIscsi) HasPort() bool

HasPort returns a boolean if a field has been set.

func (VolumeLocationIscsi) MarshalJSON added in v0.1.4

func (o VolumeLocationIscsi) MarshalJSON() ([]byte, error)

func (*VolumeLocationIscsi) SetChap added in v0.1.4

func (o *VolumeLocationIscsi) SetChap(v VolumeLocationIscsiChap)

SetChap gets a reference to the given VolumeLocationIscsiChap and assigns it to the Chap field.

func (*VolumeLocationIscsi) SetIpv4 added in v0.1.4

func (o *VolumeLocationIscsi) SetIpv4(v string)

SetIpv4 gets a reference to the given string and assigns it to the Ipv4 field.

func (*VolumeLocationIscsi) SetIqn added in v0.1.4

func (o *VolumeLocationIscsi) SetIqn(v string)

SetIqn sets field value

func (*VolumeLocationIscsi) SetPort added in v0.1.4

func (o *VolumeLocationIscsi) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

type VolumeLocationIscsiChap added in v0.1.4

type VolumeLocationIscsiChap struct {
	// Volume location iSCSI chap user
	User string `json:"user"`
	// Volume location iSCSI chap secret
	Secret string `json:"secret"`
}

VolumeLocationIscsiChap struct for VolumeLocationIscsiChap

func NewVolumeLocationIscsiChap added in v0.1.4

func NewVolumeLocationIscsiChap(user string, secret string) *VolumeLocationIscsiChap

NewVolumeLocationIscsiChap instantiates a new VolumeLocationIscsiChap object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeLocationIscsiChapWithDefaults added in v0.1.4

func NewVolumeLocationIscsiChapWithDefaults() *VolumeLocationIscsiChap

NewVolumeLocationIscsiChapWithDefaults instantiates a new VolumeLocationIscsiChap object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeLocationIscsiChap) GetSecret added in v0.1.4

func (o *VolumeLocationIscsiChap) GetSecret() string

GetSecret returns the Secret field value

func (*VolumeLocationIscsiChap) GetSecretOk added in v0.1.4

func (o *VolumeLocationIscsiChap) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field value and a boolean to check if the value has been set.

func (*VolumeLocationIscsiChap) GetUser added in v0.1.4

func (o *VolumeLocationIscsiChap) GetUser() string

GetUser returns the User field value

func (*VolumeLocationIscsiChap) GetUserOk added in v0.1.4

func (o *VolumeLocationIscsiChap) GetUserOk() (*string, bool)

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (VolumeLocationIscsiChap) MarshalJSON added in v0.1.4

func (o VolumeLocationIscsiChap) MarshalJSON() ([]byte, error)

func (*VolumeLocationIscsiChap) SetSecret added in v0.1.4

func (o *VolumeLocationIscsiChap) SetSecret(v string)

SetSecret sets field value

func (*VolumeLocationIscsiChap) SetUser added in v0.1.4

func (o *VolumeLocationIscsiChap) SetUser(v string)

SetUser sets field value

type VolumeLocationProgress

type VolumeLocationProgress struct {
	// Bytes synchronized
	BytesSynchronized float32 `json:"bytesSynchronized"`
	// Bytes total
	BytesTotal float32 `json:"bytesTotal"`
}

VolumeLocationProgress struct for VolumeLocationProgress

func NewVolumeLocationProgress

func NewVolumeLocationProgress(bytesSynchronized float32, bytesTotal float32) *VolumeLocationProgress

NewVolumeLocationProgress instantiates a new VolumeLocationProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeLocationProgressWithDefaults

func NewVolumeLocationProgressWithDefaults() *VolumeLocationProgress

NewVolumeLocationProgressWithDefaults instantiates a new VolumeLocationProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeLocationProgress) GetBytesSynchronized

func (o *VolumeLocationProgress) GetBytesSynchronized() float32

GetBytesSynchronized returns the BytesSynchronized field value

func (*VolumeLocationProgress) GetBytesSynchronizedOk

func (o *VolumeLocationProgress) GetBytesSynchronizedOk() (*float32, bool)

GetBytesSynchronizedOk returns a tuple with the BytesSynchronized field value and a boolean to check if the value has been set.

func (*VolumeLocationProgress) GetBytesTotal

func (o *VolumeLocationProgress) GetBytesTotal() float32

GetBytesTotal returns the BytesTotal field value

func (*VolumeLocationProgress) GetBytesTotalOk

func (o *VolumeLocationProgress) GetBytesTotalOk() (*float32, bool)

GetBytesTotalOk returns a tuple with the BytesTotal field value and a boolean to check if the value has been set.

func (VolumeLocationProgress) MarshalJSON

func (o VolumeLocationProgress) MarshalJSON() ([]byte, error)

func (*VolumeLocationProgress) SetBytesSynchronized

func (o *VolumeLocationProgress) SetBytesSynchronized(v float32)

SetBytesSynchronized sets field value

func (*VolumeLocationProgress) SetBytesTotal

func (o *VolumeLocationProgress) SetBytesTotal(v float32)

SetBytesTotal sets field value

type VolumeLocationStatus

type VolumeLocationStatus struct {
	// Volume location status value
	Value string `json:"value"`
	// A human readable message explaining the status
	Msg *string `json:"msg,omitempty"`
}

VolumeLocationStatus struct for VolumeLocationStatus

func NewVolumeLocationStatus

func NewVolumeLocationStatus(value string) *VolumeLocationStatus

NewVolumeLocationStatus instantiates a new VolumeLocationStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeLocationStatusWithDefaults

func NewVolumeLocationStatusWithDefaults() *VolumeLocationStatus

NewVolumeLocationStatusWithDefaults instantiates a new VolumeLocationStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeLocationStatus) GetMsg

func (o *VolumeLocationStatus) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*VolumeLocationStatus) GetMsgOk

func (o *VolumeLocationStatus) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeLocationStatus) GetValue

func (o *VolumeLocationStatus) GetValue() string

GetValue returns the Value field value

func (*VolumeLocationStatus) GetValueOk

func (o *VolumeLocationStatus) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*VolumeLocationStatus) HasMsg

func (o *VolumeLocationStatus) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (VolumeLocationStatus) MarshalJSON

func (o VolumeLocationStatus) MarshalJSON() ([]byte, error)

func (*VolumeLocationStatus) SetMsg

func (o *VolumeLocationStatus) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (*VolumeLocationStatus) SetValue

func (o *VolumeLocationStatus) SetValue(v string)

SetValue sets field value

type VolumeNameConflict

type VolumeNameConflict struct {
	ErrorCode string `json:"errorCode"`
	Name      string `json:"name"`
}

VolumeNameConflict struct for VolumeNameConflict

func NewVolumeNameConflict

func NewVolumeNameConflict(errorCode string, name string) *VolumeNameConflict

NewVolumeNameConflict instantiates a new VolumeNameConflict object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeNameConflictWithDefaults

func NewVolumeNameConflictWithDefaults() *VolumeNameConflict

NewVolumeNameConflictWithDefaults instantiates a new VolumeNameConflict object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeNameConflict) GetErrorCode

func (o *VolumeNameConflict) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*VolumeNameConflict) GetErrorCodeOk

func (o *VolumeNameConflict) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*VolumeNameConflict) GetName

func (o *VolumeNameConflict) GetName() string

GetName returns the Name field value

func (*VolumeNameConflict) GetNameOk

func (o *VolumeNameConflict) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (VolumeNameConflict) MarshalJSON

func (o VolumeNameConflict) MarshalJSON() ([]byte, error)

func (*VolumeNameConflict) SetErrorCode

func (o *VolumeNameConflict) SetErrorCode(v string)

SetErrorCode sets field value

func (*VolumeNameConflict) SetName

func (o *VolumeNameConflict) SetName(v string)

SetName sets field value

type VolumeNameInvalid

type VolumeNameInvalid struct {
	ErrorCode string `json:"errorCode"`
	Name      string `json:"name"`
}

VolumeNameInvalid struct for VolumeNameInvalid

func NewVolumeNameInvalid

func NewVolumeNameInvalid(errorCode string, name string) *VolumeNameInvalid

NewVolumeNameInvalid instantiates a new VolumeNameInvalid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeNameInvalidWithDefaults

func NewVolumeNameInvalidWithDefaults() *VolumeNameInvalid

NewVolumeNameInvalidWithDefaults instantiates a new VolumeNameInvalid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeNameInvalid) GetErrorCode

func (o *VolumeNameInvalid) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*VolumeNameInvalid) GetErrorCodeOk

func (o *VolumeNameInvalid) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*VolumeNameInvalid) GetName

func (o *VolumeNameInvalid) GetName() string

GetName returns the Name field value

func (*VolumeNameInvalid) GetNameOk

func (o *VolumeNameInvalid) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (VolumeNameInvalid) MarshalJSON

func (o VolumeNameInvalid) MarshalJSON() ([]byte, error)

func (*VolumeNameInvalid) SetErrorCode

func (o *VolumeNameInvalid) SetErrorCode(v string)

SetErrorCode sets field value

func (*VolumeNameInvalid) SetName

func (o *VolumeNameInvalid) SetName(v string)

SetName sets field value

type VolumeNodeNotFound

type VolumeNodeNotFound struct {
	ErrorCode string `json:"errorCode"`
	Volume    string `json:"volume"`
	Node      string `json:"node"`
	Cluster   string `json:"cluster"`
}

VolumeNodeNotFound struct for VolumeNodeNotFound

func NewVolumeNodeNotFound

func NewVolumeNodeNotFound(errorCode string, volume string, node string, cluster string) *VolumeNodeNotFound

NewVolumeNodeNotFound instantiates a new VolumeNodeNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeNodeNotFoundWithDefaults

func NewVolumeNodeNotFoundWithDefaults() *VolumeNodeNotFound

NewVolumeNodeNotFoundWithDefaults instantiates a new VolumeNodeNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeNodeNotFound) GetCluster

func (o *VolumeNodeNotFound) GetCluster() string

GetCluster returns the Cluster field value

func (*VolumeNodeNotFound) GetClusterOk

func (o *VolumeNodeNotFound) GetClusterOk() (*string, bool)

GetClusterOk returns a tuple with the Cluster field value and a boolean to check if the value has been set.

func (*VolumeNodeNotFound) GetErrorCode

func (o *VolumeNodeNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*VolumeNodeNotFound) GetErrorCodeOk

func (o *VolumeNodeNotFound) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*VolumeNodeNotFound) GetNode

func (o *VolumeNodeNotFound) GetNode() string

GetNode returns the Node field value

func (*VolumeNodeNotFound) GetNodeOk

func (o *VolumeNodeNotFound) GetNodeOk() (*string, bool)

GetNodeOk returns a tuple with the Node field value and a boolean to check if the value has been set.

func (*VolumeNodeNotFound) GetVolume

func (o *VolumeNodeNotFound) GetVolume() string

GetVolume returns the Volume field value

func (*VolumeNodeNotFound) GetVolumeOk

func (o *VolumeNodeNotFound) GetVolumeOk() (*string, bool)

GetVolumeOk returns a tuple with the Volume field value and a boolean to check if the value has been set.

func (VolumeNodeNotFound) MarshalJSON

func (o VolumeNodeNotFound) MarshalJSON() ([]byte, error)

func (*VolumeNodeNotFound) SetCluster

func (o *VolumeNodeNotFound) SetCluster(v string)

SetCluster sets field value

func (*VolumeNodeNotFound) SetErrorCode

func (o *VolumeNodeNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*VolumeNodeNotFound) SetNode

func (o *VolumeNodeNotFound) SetNode(v string)

SetNode sets field value

func (*VolumeNodeNotFound) SetVolume

func (o *VolumeNodeNotFound) SetVolume(v string)

SetVolume sets field value

type VolumeNotFound

type VolumeNotFound struct {
	ErrorCode string `json:"errorCode"`
	State     string `json:"state"`
	Volume    string `json:"volume"`
}

VolumeNotFound struct for VolumeNotFound

func NewVolumeNotFound

func NewVolumeNotFound(errorCode string, state string, volume string) *VolumeNotFound

NewVolumeNotFound instantiates a new VolumeNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeNotFoundWithDefaults

func NewVolumeNotFoundWithDefaults() *VolumeNotFound

NewVolumeNotFoundWithDefaults instantiates a new VolumeNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeNotFound) GetErrorCode

func (o *VolumeNotFound) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*VolumeNotFound) GetErrorCodeOk

func (o *VolumeNotFound) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*VolumeNotFound) GetState

func (o *VolumeNotFound) GetState() string

GetState returns the State field value

func (*VolumeNotFound) GetStateOk

func (o *VolumeNotFound) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*VolumeNotFound) GetVolume

func (o *VolumeNotFound) GetVolume() string

GetVolume returns the Volume field value

func (*VolumeNotFound) GetVolumeOk

func (o *VolumeNotFound) GetVolumeOk() (*string, bool)

GetVolumeOk returns a tuple with the Volume field value and a boolean to check if the value has been set.

func (VolumeNotFound) MarshalJSON

func (o VolumeNotFound) MarshalJSON() ([]byte, error)

func (*VolumeNotFound) SetErrorCode

func (o *VolumeNotFound) SetErrorCode(v string)

SetErrorCode sets field value

func (*VolumeNotFound) SetState

func (o *VolumeNotFound) SetState(v string)

SetState sets field value

func (*VolumeNotFound) SetVolume

func (o *VolumeNotFound) SetVolume(v string)

SetVolume sets field value

type VolumeSizeNotSupported

type VolumeSizeNotSupported struct {
	ErrorCode string  `json:"errorCode"`
	Size      float32 `json:"size"`
}

VolumeSizeNotSupported struct for VolumeSizeNotSupported

func NewVolumeSizeNotSupported

func NewVolumeSizeNotSupported(errorCode string, size float32) *VolumeSizeNotSupported

NewVolumeSizeNotSupported instantiates a new VolumeSizeNotSupported object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeSizeNotSupportedWithDefaults

func NewVolumeSizeNotSupportedWithDefaults() *VolumeSizeNotSupported

NewVolumeSizeNotSupportedWithDefaults instantiates a new VolumeSizeNotSupported object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeSizeNotSupported) GetErrorCode

func (o *VolumeSizeNotSupported) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*VolumeSizeNotSupported) GetErrorCodeOk

func (o *VolumeSizeNotSupported) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*VolumeSizeNotSupported) GetSize

func (o *VolumeSizeNotSupported) GetSize() float32

GetSize returns the Size field value

func (*VolumeSizeNotSupported) GetSizeOk

func (o *VolumeSizeNotSupported) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (VolumeSizeNotSupported) MarshalJSON

func (o VolumeSizeNotSupported) MarshalJSON() ([]byte, error)

func (*VolumeSizeNotSupported) SetErrorCode

func (o *VolumeSizeNotSupported) SetErrorCode(v string)

SetErrorCode sets field value

func (*VolumeSizeNotSupported) SetSize

func (o *VolumeSizeNotSupported) SetSize(v float32)

SetSize sets field value

type VolumeStatus

type VolumeStatus struct {
	// Volume status
	Value string `json:"value"`
	// A human readable message explaining the status
	Msg *string `json:"msg,omitempty"`
}

VolumeStatus struct for VolumeStatus

func NewVolumeStatus

func NewVolumeStatus(value string) *VolumeStatus

NewVolumeStatus instantiates a new VolumeStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusWithDefaults

func NewVolumeStatusWithDefaults() *VolumeStatus

NewVolumeStatusWithDefaults instantiates a new VolumeStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatus) GetMsg

func (o *VolumeStatus) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*VolumeStatus) GetMsgOk

func (o *VolumeStatus) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeStatus) GetValue

func (o *VolumeStatus) GetValue() string

GetValue returns the Value field value

func (*VolumeStatus) GetValueOk

func (o *VolumeStatus) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*VolumeStatus) HasMsg

func (o *VolumeStatus) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (VolumeStatus) MarshalJSON

func (o VolumeStatus) MarshalJSON() ([]byte, error)

func (*VolumeStatus) SetMsg

func (o *VolumeStatus) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (*VolumeStatus) SetValue

func (o *VolumeStatus) SetValue(v string)

SetValue sets field value

type VolumeStatusDegraded

type VolumeStatusDegraded struct {
	// Volume is degraded. One or more locations not available.
	Msg string `json:"msg"`
}

VolumeStatusDegraded struct for VolumeStatusDegraded

func NewVolumeStatusDegraded

func NewVolumeStatusDegraded(msg string) *VolumeStatusDegraded

NewVolumeStatusDegraded instantiates a new VolumeStatusDegraded object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusDegradedWithDefaults

func NewVolumeStatusDegradedWithDefaults() *VolumeStatusDegraded

NewVolumeStatusDegradedWithDefaults instantiates a new VolumeStatusDegraded object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusDegraded) GetMsg

func (o *VolumeStatusDegraded) GetMsg() string

GetMsg returns the Msg field value

func (*VolumeStatusDegraded) GetMsgOk

func (o *VolumeStatusDegraded) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value and a boolean to check if the value has been set.

func (VolumeStatusDegraded) MarshalJSON

func (o VolumeStatusDegraded) MarshalJSON() ([]byte, error)

func (*VolumeStatusDegraded) SetMsg

func (o *VolumeStatusDegraded) SetMsg(v string)

SetMsg sets field value

type VolumeStatusError

type VolumeStatusError struct {
	// Volume is unavailable. All locations are not available.
	Msg string `json:"msg"`
}

VolumeStatusError struct for VolumeStatusError

func NewVolumeStatusError

func NewVolumeStatusError(msg string) *VolumeStatusError

NewVolumeStatusError instantiates a new VolumeStatusError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusErrorWithDefaults

func NewVolumeStatusErrorWithDefaults() *VolumeStatusError

NewVolumeStatusErrorWithDefaults instantiates a new VolumeStatusError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusError) GetMsg

func (o *VolumeStatusError) GetMsg() string

GetMsg returns the Msg field value

func (*VolumeStatusError) GetMsgOk

func (o *VolumeStatusError) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value and a boolean to check if the value has been set.

func (VolumeStatusError) MarshalJSON

func (o VolumeStatusError) MarshalJSON() ([]byte, error)

func (*VolumeStatusError) SetMsg

func (o *VolumeStatusError) SetMsg(v string)

SetMsg sets field value

type VolumeStatusLocation

type VolumeStatusLocation struct {
	// The active location for the Volume. Format is `{cloud}/{region}`. Should match one of the locations of the State
	Location string `json:"location"`
	// Progress (if applicable)
	Progress VolumeStatusLocationProgress `json:"progress"`
	// State status
	Status string `json:"status"`
}

VolumeStatusLocation struct for VolumeStatusLocation

func NewVolumeStatusLocation

func NewVolumeStatusLocation(location string, progress VolumeStatusLocationProgress, status string) *VolumeStatusLocation

NewVolumeStatusLocation instantiates a new VolumeStatusLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusLocationWithDefaults

func NewVolumeStatusLocationWithDefaults() *VolumeStatusLocation

NewVolumeStatusLocationWithDefaults instantiates a new VolumeStatusLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusLocation) GetLocation

func (o *VolumeStatusLocation) GetLocation() string

GetLocation returns the Location field value

func (*VolumeStatusLocation) GetLocationOk

func (o *VolumeStatusLocation) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (*VolumeStatusLocation) GetProgress

func (o *VolumeStatusLocation) GetProgress() VolumeStatusLocationProgress

GetProgress returns the Progress field value

func (*VolumeStatusLocation) GetProgressOk

func (o *VolumeStatusLocation) GetProgressOk() (*VolumeStatusLocationProgress, bool)

GetProgressOk returns a tuple with the Progress field value and a boolean to check if the value has been set.

func (*VolumeStatusLocation) GetStatus

func (o *VolumeStatusLocation) GetStatus() string

GetStatus returns the Status field value

func (*VolumeStatusLocation) GetStatusOk

func (o *VolumeStatusLocation) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (VolumeStatusLocation) MarshalJSON

func (o VolumeStatusLocation) MarshalJSON() ([]byte, error)

func (*VolumeStatusLocation) SetLocation

func (o *VolumeStatusLocation) SetLocation(v string)

SetLocation sets field value

func (*VolumeStatusLocation) SetProgress

func (o *VolumeStatusLocation) SetProgress(v VolumeStatusLocationProgress)

SetProgress sets field value

func (*VolumeStatusLocation) SetStatus

func (o *VolumeStatusLocation) SetStatus(v string)

SetStatus sets field value

type VolumeStatusLocationProgress

type VolumeStatusLocationProgress struct {
	// Bytes synchronized
	BytesSynchronized float32 `json:"bytesSynchronized"`
	// Bytes total
	BytesTotal float32 `json:"bytesTotal"`
}

VolumeStatusLocationProgress struct for VolumeStatusLocationProgress

func NewVolumeStatusLocationProgress

func NewVolumeStatusLocationProgress(bytesSynchronized float32, bytesTotal float32) *VolumeStatusLocationProgress

NewVolumeStatusLocationProgress instantiates a new VolumeStatusLocationProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusLocationProgressWithDefaults

func NewVolumeStatusLocationProgressWithDefaults() *VolumeStatusLocationProgress

NewVolumeStatusLocationProgressWithDefaults instantiates a new VolumeStatusLocationProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusLocationProgress) GetBytesSynchronized

func (o *VolumeStatusLocationProgress) GetBytesSynchronized() float32

GetBytesSynchronized returns the BytesSynchronized field value

func (*VolumeStatusLocationProgress) GetBytesSynchronizedOk

func (o *VolumeStatusLocationProgress) GetBytesSynchronizedOk() (*float32, bool)

GetBytesSynchronizedOk returns a tuple with the BytesSynchronized field value and a boolean to check if the value has been set.

func (*VolumeStatusLocationProgress) GetBytesTotal

func (o *VolumeStatusLocationProgress) GetBytesTotal() float32

GetBytesTotal returns the BytesTotal field value

func (*VolumeStatusLocationProgress) GetBytesTotalOk

func (o *VolumeStatusLocationProgress) GetBytesTotalOk() (*float32, bool)

GetBytesTotalOk returns a tuple with the BytesTotal field value and a boolean to check if the value has been set.

func (VolumeStatusLocationProgress) MarshalJSON

func (o VolumeStatusLocationProgress) MarshalJSON() ([]byte, error)

func (*VolumeStatusLocationProgress) SetBytesSynchronized

func (o *VolumeStatusLocationProgress) SetBytesSynchronized(v float32)

SetBytesSynchronized sets field value

func (*VolumeStatusLocationProgress) SetBytesTotal

func (o *VolumeStatusLocationProgress) SetBytesTotal(v float32)

SetBytesTotal sets field value

type VolumeStatusOk

type VolumeStatusOk struct {
	// Volume is ok.
	Ok map[string]interface{} `json:"ok"`
}

VolumeStatusOk struct for VolumeStatusOk

func NewVolumeStatusOk

func NewVolumeStatusOk(ok map[string]interface{}) *VolumeStatusOk

NewVolumeStatusOk instantiates a new VolumeStatusOk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusOkWithDefaults

func NewVolumeStatusOkWithDefaults() *VolumeStatusOk

NewVolumeStatusOkWithDefaults instantiates a new VolumeStatusOk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusOk) GetOk

func (o *VolumeStatusOk) GetOk() map[string]interface{}

GetOk returns the Ok field value

func (*VolumeStatusOk) GetOkOk

func (o *VolumeStatusOk) GetOkOk() (*map[string]interface{}, bool)

GetOkOk returns a tuple with the Ok field value and a boolean to check if the value has been set.

func (VolumeStatusOk) MarshalJSON

func (o VolumeStatusOk) MarshalJSON() ([]byte, error)

func (*VolumeStatusOk) SetOk

func (o *VolumeStatusOk) SetOk(v map[string]interface{})

SetOk sets field value

type VolumeStatusPending

type VolumeStatusPending struct {
	// Volume is pending. Should be `ok` soon.
	Pending map[string]interface{} `json:"pending"`
}

VolumeStatusPending struct for VolumeStatusPending

func NewVolumeStatusPending

func NewVolumeStatusPending(pending map[string]interface{}) *VolumeStatusPending

NewVolumeStatusPending instantiates a new VolumeStatusPending object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusPendingWithDefaults

func NewVolumeStatusPendingWithDefaults() *VolumeStatusPending

NewVolumeStatusPendingWithDefaults instantiates a new VolumeStatusPending object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusPending) GetPending

func (o *VolumeStatusPending) GetPending() map[string]interface{}

GetPending returns the Pending field value

func (*VolumeStatusPending) GetPendingOk

func (o *VolumeStatusPending) GetPendingOk() (*map[string]interface{}, bool)

GetPendingOk returns a tuple with the Pending field value and a boolean to check if the value has been set.

func (VolumeStatusPending) MarshalJSON

func (o VolumeStatusPending) MarshalJSON() ([]byte, error)

func (*VolumeStatusPending) SetPending

func (o *VolumeStatusPending) SetPending(v map[string]interface{})

SetPending sets field value

type VolumeStatusSyncing

type VolumeStatusSyncing struct {
	// Synchronization progress by location
	Syncing []string `json:"syncing"`
}

VolumeStatusSyncing struct for VolumeStatusSyncing

func NewVolumeStatusSyncing

func NewVolumeStatusSyncing(syncing []string) *VolumeStatusSyncing

NewVolumeStatusSyncing instantiates a new VolumeStatusSyncing object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusSyncingWithDefaults

func NewVolumeStatusSyncingWithDefaults() *VolumeStatusSyncing

NewVolumeStatusSyncingWithDefaults instantiates a new VolumeStatusSyncing object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusSyncing) GetSyncing

func (o *VolumeStatusSyncing) GetSyncing() []string

GetSyncing returns the Syncing field value

func (*VolumeStatusSyncing) GetSyncingOk

func (o *VolumeStatusSyncing) GetSyncingOk() (*[]string, bool)

GetSyncingOk returns a tuple with the Syncing field value and a boolean to check if the value has been set.

func (VolumeStatusSyncing) MarshalJSON

func (o VolumeStatusSyncing) MarshalJSON() ([]byte, error)

func (*VolumeStatusSyncing) SetSyncing

func (o *VolumeStatusSyncing) SetSyncing(v []string)

SetSyncing sets field value

type VolumeStatusSyncingLocation

type VolumeStatusSyncingLocation struct {
	// The location in which the volume is synchronizing. Format: `{vendor}/{region}` (e.g. `aws/us-east-1`)
	Location string `json:"location"`
	// Bytes synchronized
	BytesSynchronized float32 `json:"bytesSynchronized"`
	// Bytes total
	BytesTotal float32 `json:"bytesTotal"`
}

VolumeStatusSyncingLocation struct for VolumeStatusSyncingLocation

func NewVolumeStatusSyncingLocation

func NewVolumeStatusSyncingLocation(location string, bytesSynchronized float32, bytesTotal float32) *VolumeStatusSyncingLocation

NewVolumeStatusSyncingLocation instantiates a new VolumeStatusSyncingLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusSyncingLocationWithDefaults

func NewVolumeStatusSyncingLocationWithDefaults() *VolumeStatusSyncingLocation

NewVolumeStatusSyncingLocationWithDefaults instantiates a new VolumeStatusSyncingLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatusSyncingLocation) GetBytesSynchronized

func (o *VolumeStatusSyncingLocation) GetBytesSynchronized() float32

GetBytesSynchronized returns the BytesSynchronized field value

func (*VolumeStatusSyncingLocation) GetBytesSynchronizedOk

func (o *VolumeStatusSyncingLocation) GetBytesSynchronizedOk() (*float32, bool)

GetBytesSynchronizedOk returns a tuple with the BytesSynchronized field value and a boolean to check if the value has been set.

func (*VolumeStatusSyncingLocation) GetBytesTotal

func (o *VolumeStatusSyncingLocation) GetBytesTotal() float32

GetBytesTotal returns the BytesTotal field value

func (*VolumeStatusSyncingLocation) GetBytesTotalOk

func (o *VolumeStatusSyncingLocation) GetBytesTotalOk() (*float32, bool)

GetBytesTotalOk returns a tuple with the BytesTotal field value and a boolean to check if the value has been set.

func (*VolumeStatusSyncingLocation) GetLocation

func (o *VolumeStatusSyncingLocation) GetLocation() string

GetLocation returns the Location field value

func (*VolumeStatusSyncingLocation) GetLocationOk

func (o *VolumeStatusSyncingLocation) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (VolumeStatusSyncingLocation) MarshalJSON

func (o VolumeStatusSyncingLocation) MarshalJSON() ([]byte, error)

func (*VolumeStatusSyncingLocation) SetBytesSynchronized

func (o *VolumeStatusSyncingLocation) SetBytesSynchronized(v float32)

SetBytesSynchronized sets field value

func (*VolumeStatusSyncingLocation) SetBytesTotal

func (o *VolumeStatusSyncingLocation) SetBytesTotal(v float32)

SetBytesTotal sets field value

func (*VolumeStatusSyncingLocation) SetLocation

func (o *VolumeStatusSyncingLocation) SetLocation(v string)

SetLocation sets field value

type VolumesApiService

type VolumesApiService service

VolumesApiService VolumesApi service

func (*VolumesApiService) VolumesCreate added in v0.2.1

func (a *VolumesApiService) VolumesCreate(ctx _context.Context, state string) ApiVolumesCreateRequest

* VolumesCreate Create a new Volume * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiVolumesCreateRequest

func (*VolumesApiService) VolumesCreateExecute added in v0.2.1

func (a *VolumesApiService) VolumesCreateExecute(r ApiVolumesCreateRequest) (Volume, *_nethttp.Response, error)

* Execute executes the request * @return Volume

func (*VolumesApiService) VolumesFindMany added in v0.2.1

func (a *VolumesApiService) VolumesFindMany(ctx _context.Context, state string) ApiVolumesFindManyRequest

* VolumesFindMany Get all Volumes * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param state State name * @return ApiVolumesFindManyRequest

func (*VolumesApiService) VolumesFindManyExecute added in v0.2.1

func (a *VolumesApiService) VolumesFindManyExecute(r ApiVolumesFindManyRequest) ([]Volume, *_nethttp.Response, error)

* Execute executes the request * @return []Volume

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳