Categorygithub.com/mistio/mist-sdk-go
modulepackage
0.1.0
Repository: https://github.com/mistio/mist-sdk-go.git
Documentation: pkg.go.dev

# README

Go API client for mist_sdk

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

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: 2.0.0
  • Package version: 0.0.1
  • 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 "./mist_sdk"

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 https://mist.io

ClassMethodHTTP requestDescription
CloudsApiAddCloudPost /api/v2/cloudsAdd cloud
CloudsApiGetCloudGet /api/v2/clouds/{cloud}Get cloud
CloudsApiListCloudsGet /api/v2/cloudsList clouds
CloudsApiRemoveCloudDelete /api/v2/clouds/{cloud}Remove cloud
ClustersApiCreateClusterPost /api/v2/clustersCreate cluster
ClustersApiDestroyClusterDelete /api/v2/clusters/{cluster}Destroy cluster
ClustersApiGetClusterGet /api/v2/clusters/{cluster}Get cluster
ClustersApiListClustersGet /api/v2/clustersList clusters
DatapointsApiGetDatapointsGet /api/v2/datapointsGet datapoints
ImagesApiGetImageGet /api/v2/images/{image}Get image
ImagesApiListImagesGet /api/v2/imagesList images
JobsApiGetJobGet /api/v2/jobs/{job_id}Get job
KeysApiAddKeyPost /api/v2/keysAdd key
KeysApiDeleteKeyDelete /api/v2/keys/{key}Delete key
KeysApiEditKeyPut /api/v2/keys/{key}Edit key
KeysApiGetKeyGet /api/v2/keys/{key}Get key
KeysApiListKeysGet /api/v2/keysList keys
LocationsApiGetLocationGet /api/v2/locations/{location}Get location
LocationsApiListLocationsGet /api/v2/locationsList locations
MachinesApiAssociateKeyPut /api/v2/machines/{machine}/actions/associate-keyAssociate a key with a machine
MachinesApiCloneMachinePost /api/v2/machines/{machine}/actions/cloneClone machine
MachinesApiConsolePost /api/v2/machines/{machine}/actions/consoleOpen console
MachinesApiDestroyMachinePost /api/v2/machines/{machine}/actions/destroyDestroy machine
MachinesApiDisassociateKeyDelete /api/v2/machines/{machine}/actions/disassociate-keyDisassociate a key from a machine
MachinesApiEditMachinePut /api/v2/machines/{machine}Edit machine
MachinesApiGetMachineGet /api/v2/machines/{machine}Get machine
MachinesApiListMachinesGet /api/v2/machinesList machines
MachinesApiRebootMachinePost /api/v2/machines/{machine}/actions/rebootReboot machine
MachinesApiRenameMachinePost /api/v2/machines/{machine}/actions/renameRename machine
MachinesApiResizeMachinePost /api/v2/machines/{machine}/actions/resizeResize machine
MachinesApiResumeMachinePost /api/v2/machines/{machine}/actions/resumeResume machine
MachinesApiSshPost /api/v2/machines/{machine}/actions/sshOpen secure shell
MachinesApiStartMachinePost /api/v2/machines/{machine}/actions/startStart machine
MachinesApiStopMachinePost /api/v2/machines/{machine}/actions/stopStop machine
MachinesApiSuspendMachinePost /api/v2/machines/{machine}/actions/suspendSuspend machine
MachinesApiUndefineMachinePost /api/v2/machines/{machine}/actions/undefineUndefine machine
NetworksApiCreateNetworkPost /api/v2/networksCreate network
NetworksApiDeleteNetworkDelete /api/v2/networks/{network}Delete network
NetworksApiEditNetworkPut /api/v2/networks/{network}Edit network
NetworksApiGetNetworkGet /api/v2/networks/{network}Get network
NetworksApiListNetworksGet /api/v2/networksList networks
OrgsApiGetMemberGet /api/v2/orgs/{org}/members/{member}Get Org
OrgsApiGetOrgGet /api/v2/orgs/{org}Get Org
OrgsApiListOrgMembersGet /api/v2/orgs/{org}/membersList org members
OrgsApiListOrgTeamsGet /api/v2/orgs/{org}/teamsList org teams
OrgsApiListOrgsGet /api/v2/orgsList orgs
RulesApiAddRulePost /api/v2/rulesAdd rule
RulesApiDeleteRuleDelete /api/v2/rules/{rule}Delete rule
RulesApiEditRulePost /api/v2/rules/{rule}Update rule
RulesApiGetRuleGet /api/v2/rules/{rule}Get rule
RulesApiListRulesGet /api/v2/rulesList rules
RulesApiRenameRulePatch /api/v2/rules/{rule}Rename rule
RulesApiToggleRulePut /api/v2/rules/{rule}Toggle rule
ScriptsApiAddScriptPost /api/v2/scriptsAdd script
ScriptsApiDeleteScriptDelete /api/v2/scripts/{script}Delete script
ScriptsApiDownloadScriptGet /api/v2/scripts/{script}/fileDownload script
ScriptsApiEditScriptPut /api/v2/scripts/{script}Edit script
ScriptsApiGenerateScriptUrlGet /api/v2/scripts/{script}/urlGenerate script url
ScriptsApiGetScriptGet /api/v2/scripts/{script}Get script
ScriptsApiListScriptsGet /api/v2/scriptsList scripts
ScriptsApiRunScriptPost /api/v2/scripts/{script}Run script
SizesApiGetSizeGet /api/v2/sizes/{size}Get size
SizesApiListSizesGet /api/v2/sizesList sizes
SnapshotsApiCreateSnapshotPost /api/v2/machines/{machine}/snapshotsCreate snapshot
SnapshotsApiListSnapshotsGet /api/v2/machines/{machine}/snapshotsList machine snapshots
SnapshotsApiRemoveSnapshotDelete /api/v2/machines/{machine}/snapshots/{snapshot}Remove snapshot
SnapshotsApiRevertToSnapshotPost /api/v2/machines/{machine}/snapshots/{snapshot}Revert to snapshot
UsersApiListUsersGet /api/v2/usersList users
VolumesApiCreateVolumePost /api/v2/volumesCreate volume
VolumesApiDeleteVolumeDelete /api/v2/volumes/{volume}Delete volume
VolumesApiEditVolumePut /api/v2/volumes/{volume}Edit volume
VolumesApiGetVolumeGet /api/v2/volumes/{volume}Get volume
VolumesApiListVolumesGet /api/v2/volumesList volumes
ZonesApiCreateZonePost /api/v2/zonesCreate zone
ZonesApiDeleteZoneDelete /api/v2/zones/{zone}Delete zone
ZonesApiEditZonePut /api/v2/zones/{zone}Edit zone
ZonesApiGetZoneGet /api/v2/zones/{zone}Get zone
ZonesApiListZonesGet /api/v2/zonesList zones

Documentation For Models

Documentation For Authorization

ApiKeyAuth

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

CookieAuth

  • Type: API key
  • API key parameter name: session.id
  • Location:

Note, each API key must be added to a map of map[string]APIKey where the key is: session.id and passed in as the auth context for each request.

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

[email protected]

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
CreateMachineResponseOneOf1AsCreateMachineResponse is a convenience function that returns CreateMachineResponseOneOf1 wrapped in CreateMachineResponse.
CreateMachineResponseOneOf1AsCreateNetworkResponse is a convenience function that returns CreateMachineResponseOneOf1 wrapped in CreateNetworkResponse.
CreateMachineResponseOneOf1AsCreateVolumeResponse is a convenience function that returns CreateMachineResponseOneOf1 wrapped in CreateVolumeResponse.
CreateMachineResponseOneOf1AsCreateZoneResponse is a convenience function that returns CreateMachineResponseOneOf1 wrapped in CreateZoneResponse.
CreateMachineResponseOneOfAsCreateMachineResponse is a convenience function that returns CreateMachineResponseOneOf wrapped in CreateMachineResponse.
CreateMachineResponseOneOfAsCreateNetworkResponse is a convenience function that returns CreateMachineResponseOneOf wrapped in CreateNetworkResponse.
CreateMachineResponseOneOfAsCreateVolumeResponse is a convenience function that returns CreateMachineResponseOneOf wrapped in CreateVolumeResponse.
CreateMachineResponseOneOfAsCreateZoneResponse is a convenience function that returns CreateMachineResponseOneOf wrapped in CreateZoneResponse.
InstantVectorAsVector is a convenience function that returns InstantVector wrapped in Vector.
NewAddCloudRequest instantiates a new AddCloudRequest 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.
NewAddCloudRequestAllOf instantiates a new AddCloudRequestAllOf 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.
NewAddCloudRequestAllOfWithDefaults instantiates a new AddCloudRequestAllOf 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.
NewAddCloudRequestWithDefaults instantiates a new AddCloudRequest 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.
NewAddKeyRequestAnyOf instantiates a new AddKeyRequestAnyOf 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.
NewAddKeyRequestAnyOf1 instantiates a new AddKeyRequestAnyOf1 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.
NewAddKeyRequestAnyOf1WithDefaults instantiates a new AddKeyRequestAnyOf1 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.
NewAddKeyRequestAnyOf2 instantiates a new AddKeyRequestAnyOf2 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.
NewAddKeyRequestAnyOf2WithDefaults instantiates a new AddKeyRequestAnyOf2 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.
NewAddKeyRequestAnyOfWithDefaults instantiates a new AddKeyRequestAnyOf 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.
NewAddKeyResponse instantiates a new AddKeyResponse 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.
NewAddKeyResponseWithDefaults instantiates a new AddKeyResponse 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.
NewAddRuleRequest instantiates a new AddRuleRequest 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.
NewAddRuleRequestWithDefaults instantiates a new AddRuleRequest 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.
NewAddScriptRequest instantiates a new AddScriptRequest 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.
NewAddScriptRequestWithDefaults instantiates a new AddScriptRequest 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.
NewAlibabaCloudRequest instantiates a new AlibabaCloudRequest 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.
NewAlibabaCloudRequestWithDefaults instantiates a new AlibabaCloudRequest 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.
NewAlibabaCredentials instantiates a new AlibabaCredentials 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.
NewAlibabaCredentialsWithDefaults instantiates a new AlibabaCredentials 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.
NewAlibabaNet instantiates a new AlibabaNet 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.
NewAlibabaNetWithDefaults instantiates a new AlibabaNet 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.
NewAmazonCloudRequest instantiates a new AmazonCloudRequest 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.
NewAmazonCloudRequestWithDefaults instantiates a new AmazonCloudRequest 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.
NewAmazonClusterRequest instantiates a new AmazonClusterRequest 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.
NewAmazonClusterRequestWithDefaults instantiates a new AmazonClusterRequest 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.
NewAmazonCredentials instantiates a new AmazonCredentials 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.
NewAmazonCredentialsWithDefaults instantiates a new AmazonCredentials 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.
NewAmazonNet instantiates a new AmazonNet 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.
NewAmazonNetWithDefaults instantiates a new AmazonNet 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.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAzureCloudRequest instantiates a new AzureCloudRequest 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.
NewAzureCloudRequestWithDefaults instantiates a new AzureCloudRequest 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.
NewAzureCredentials instantiates a new AzureCredentials 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.
NewAzureCredentialsWithDefaults instantiates a new AzureCredentials 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.
NewAzureExtra instantiates a new AzureExtra 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.
NewAzureExtraWithDefaults instantiates a new AzureExtra 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.
NewAzureNet instantiates a new AzureNet 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.
NewAzureNetWithDefaults instantiates a new AzureNet 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.
NewCloud instantiates a new Cloud 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.
NewCloudFeatures instantiates a new CloudFeatures 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.
NewCloudFeaturesWithDefaults instantiates a new CloudFeatures 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.
NewCloudSigmaCloudRequest instantiates a new CloudSigmaCloudRequest 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.
NewCloudSigmaCloudRequestWithDefaults instantiates a new CloudSigmaCloudRequest 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.
NewCloudSigmaCredentials instantiates a new CloudSigmaCredentials 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.
NewCloudSigmaCredentialsWithDefaults instantiates a new CloudSigmaCredentials 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.
NewCloudWithDefaults instantiates a new Cloud 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.
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.
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.
NewConfiguration returns a new Configuration object.
NewCreateClusterRequest instantiates a new CreateClusterRequest 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.
NewCreateClusterRequestAllOf instantiates a new CreateClusterRequestAllOf 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.
NewCreateClusterRequestAllOfWithDefaults instantiates a new CreateClusterRequestAllOf 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.
NewCreateClusterRequestWithDefaults instantiates a new CreateClusterRequest 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.
NewCreateMachineResponseOneOf instantiates a new CreateMachineResponseOneOf 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.
NewCreateMachineResponseOneOf1 instantiates a new CreateMachineResponseOneOf1 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.
NewCreateMachineResponseOneOf1WithDefaults instantiates a new CreateMachineResponseOneOf1 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.
NewCreateMachineResponseOneOfWithDefaults instantiates a new CreateMachineResponseOneOf 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.
NewCreateNetworkRequest instantiates a new CreateNetworkRequest 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.
NewCreateNetworkRequestWithDefaults instantiates a new CreateNetworkRequest 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.
NewCreateVolumeRequest instantiates a new CreateVolumeRequest 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.
NewCreateVolumeRequestWithDefaults instantiates a new CreateVolumeRequest 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.
NewCreateZoneRequest instantiates a new CreateZoneRequest 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.
NewCreateZoneRequestWithDefaults instantiates a new CreateZoneRequest 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.
NewCronSchedule instantiates a new CronSchedule 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.
NewCronScheduleWithDefaults instantiates a new CronSchedule 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.
NewDatapoints instantiates a new Datapoints 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.
NewDatapointsData instantiates a new DatapointsData 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.
NewDatapointsDataWithDefaults instantiates a new DatapointsData 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.
NewDatapointsWithDefaults instantiates a new Datapoints 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.
NewDigitaloceanCloudRequest instantiates a new DigitaloceanCloudRequest 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.
NewDigitaloceanCloudRequestWithDefaults instantiates a new DigitaloceanCloudRequest 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.
NewDigitaloceanCredentials instantiates a new DigitaloceanCredentials 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.
NewDigitaloceanCredentialsWithDefaults instantiates a new DigitaloceanCredentials 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.
NewDockerCloudRequest instantiates a new DockerCloudRequest 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.
NewDockerCloudRequestWithDefaults instantiates a new DockerCloudRequest 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.
NewDockerCredentials instantiates a new DockerCredentials 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.
NewDockerCredentialsWithDefaults instantiates a new DockerCredentials 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.
NewDockerExtra instantiates a new DockerExtra 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.
NewDockerExtraWithDefaults instantiates a new DockerExtra 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.
NewDockerNet instantiates a new DockerNet 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.
NewDockerNetWithDefaults instantiates a new DockerNet 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.
NewEditMachineRequest instantiates a new EditMachineRequest 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.
NewEditMachineRequestExpiration instantiates a new EditMachineRequestExpiration 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.
NewEditMachineRequestExpirationWithDefaults instantiates a new EditMachineRequestExpiration 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.
NewEditMachineRequestWithDefaults instantiates a new EditMachineRequest 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.
NewEditRuleRequest instantiates a new EditRuleRequest 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.
NewEditRuleRequestWithDefaults instantiates a new EditRuleRequest 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.
NewEquinixCloudRequest instantiates a new EquinixCloudRequest 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.
NewEquinixCloudRequestWithDefaults instantiates a new EquinixCloudRequest 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.
NewEquinixCredentials instantiates a new EquinixCredentials 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.
NewEquinixCredentialsWithDefaults instantiates a new EquinixCredentials 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.
NewEquinixMetalExtra instantiates a new EquinixMetalExtra 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.
NewEquinixMetalExtraWithDefaults instantiates a new EquinixMetalExtra 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.
NewEquinixMetalNet instantiates a new EquinixMetalNet 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.
NewEquinixMetalNetIpAddresses instantiates a new EquinixMetalNetIpAddresses 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.
NewEquinixMetalNetIpAddressesWithDefaults instantiates a new EquinixMetalNetIpAddresses 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.
NewEquinixMetalNetWithDefaults instantiates a new EquinixMetalNet 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.
NewExpiration instantiates a new Expiration 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.
NewExpirationNotify instantiates a new ExpirationNotify 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.
NewExpirationNotifyWithDefaults instantiates a new ExpirationNotify 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.
NewExpirationWithDefaults instantiates a new Expiration 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.
NewFrequency instantiates a new Frequency 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.
NewFrequencyWithDefaults instantiates a new Frequency 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.
NewGetCloudResponse instantiates a new GetCloudResponse 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.
NewGetCloudResponseWithDefaults instantiates a new GetCloudResponse 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.
NewGetClusterResponse instantiates a new GetClusterResponse 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.
NewGetClusterResponseWithDefaults instantiates a new GetClusterResponse 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.
NewGetDatapointsResponse instantiates a new GetDatapointsResponse 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.
NewGetDatapointsResponseWithDefaults instantiates a new GetDatapointsResponse 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.
NewGetImageResponse instantiates a new GetImageResponse 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.
NewGetImageResponseWithDefaults instantiates a new GetImageResponse 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.
NewGetJobResponse instantiates a new GetJobResponse 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.
NewGetJobResponseWithDefaults instantiates a new GetJobResponse 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.
NewGetKeyResponse instantiates a new GetKeyResponse 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.
NewGetKeyResponseWithDefaults instantiates a new GetKeyResponse 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.
NewGetLocationResponse instantiates a new GetLocationResponse 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.
NewGetLocationResponseWithDefaults instantiates a new GetLocationResponse 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.
NewGetMachineResponse instantiates a new GetMachineResponse 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.
NewGetMachineResponseWithDefaults instantiates a new GetMachineResponse 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.
NewGetNetworkResponse instantiates a new GetNetworkResponse 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.
NewGetNetworkResponseWithDefaults instantiates a new GetNetworkResponse 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.
NewGetOrgMemberResponse instantiates a new GetOrgMemberResponse 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.
NewGetOrgMemberResponseWithDefaults instantiates a new GetOrgMemberResponse 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.
NewGetOrgResponse instantiates a new GetOrgResponse 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.
NewGetOrgResponseWithDefaults instantiates a new GetOrgResponse 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.
NewGetRuleResponse instantiates a new GetRuleResponse 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.
NewGetRuleResponseWithDefaults instantiates a new GetRuleResponse 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.
NewGetScriptResponse instantiates a new GetScriptResponse 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.
NewGetScriptResponseWithDefaults instantiates a new GetScriptResponse 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.
NewGetSizeResponse instantiates a new GetSizeResponse 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.
NewGetSizeResponseWithDefaults instantiates a new GetSizeResponse 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.
NewGetVolumeResponse instantiates a new GetVolumeResponse 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.
NewGetVolumeResponseWithDefaults instantiates a new GetVolumeResponse 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.
NewGetZoneResponse instantiates a new GetZoneResponse 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.
NewGetZoneResponseWithDefaults instantiates a new GetZoneResponse 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.
NewGoogleCloudRequest instantiates a new GoogleCloudRequest 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.
NewGoogleCloudRequestWithDefaults instantiates a new GoogleCloudRequest 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.
NewGoogleClusterRequest instantiates a new GoogleClusterRequest 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.
NewGoogleClusterRequestWithDefaults instantiates a new GoogleClusterRequest 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.
NewGoogleCredentials instantiates a new GoogleCredentials 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.
NewGoogleCredentialsWithDefaults instantiates a new GoogleCredentials 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.
NewGoogleNet instantiates a new GoogleNet 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.
NewGoogleNetWithDefaults instantiates a new GoogleNet 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.
NewIbmCloudRequest instantiates a new IbmCloudRequest 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.
NewIbmCloudRequestWithDefaults instantiates a new IbmCloudRequest 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.
NewIbmCredentials instantiates a new IbmCredentials 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.
NewIbmCredentialsWithDefaults instantiates a new IbmCredentials 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.
NewImage instantiates a new Image 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.
NewImageWithDefaults instantiates a new Image 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.
NewInlineResponse200 instantiates a new InlineResponse200 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.
NewInlineResponse2001 instantiates a new InlineResponse2001 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.
NewInlineResponse2001WithDefaults instantiates a new InlineResponse2001 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.
NewInlineResponse200WithDefaults instantiates a new InlineResponse200 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.
NewInlineScript instantiates a new InlineScript 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.
NewInlineScriptWithDefaults instantiates a new InlineScript 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.
NewInstantVector instantiates a new InstantVector 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.
NewInstantVectorWithDefaults instantiates a new InstantVector 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.
NewIntervalSchedule instantiates a new IntervalSchedule 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.
NewIntervalScheduleWithDefaults instantiates a new IntervalSchedule 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.
NewJob instantiates a new Job 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.
NewJobWithDefaults instantiates a new Job 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.
NewKey instantiates a new Key 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.
NewKeyMachineAssociation instantiates a new KeyMachineAssociation 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.
NewKeyMachineAssociationWithDefaults instantiates a new KeyMachineAssociation 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.
NewKeyMachineDisassociation instantiates a new KeyMachineDisassociation 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.
NewKeyMachineDisassociationWithDefaults instantiates a new KeyMachineDisassociation 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.
NewKeyWithDefaults instantiates a new Key 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.
NewKubernetesCloudRequest instantiates a new KubernetesCloudRequest 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.
NewKubernetesCloudRequestWithDefaults instantiates a new KubernetesCloudRequest 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.
NewKubernetesCredentials instantiates a new KubernetesCredentials 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.
NewKubernetesCredentialsWithDefaults instantiates a new KubernetesCredentials 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.
NewKubevirtCloudRequest instantiates a new KubevirtCloudRequest 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.
NewKubevirtCloudRequestWithDefaults instantiates a new KubevirtCloudRequest 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.
NewKvmCloudRequest instantiates a new KvmCloudRequest 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.
NewKvmCloudRequestWithDefaults instantiates a new KvmCloudRequest 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.
NewKVMNet instantiates a new KVMNet 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.
NewKVMNetNetworks instantiates a new KVMNetNetworks 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.
NewKVMNetNetworksWithDefaults instantiates a new KVMNetNetworks 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.
NewKVMNetWithDefaults instantiates a new KVMNet 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.
NewLinodeCloudRequest instantiates a new LinodeCloudRequest 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.
NewLinodeCloudRequestWithDefaults instantiates a new LinodeCloudRequest 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.
NewLinodeCredentials instantiates a new LinodeCredentials 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.
NewLinodeCredentialsWithDefaults instantiates a new LinodeCredentials 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.
NewLinodeExtra instantiates a new LinodeExtra 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.
NewLinodeExtraWithDefaults instantiates a new LinodeExtra 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.
NewLinodeNet instantiates a new LinodeNet 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.
NewLinodeNetWithDefaults instantiates a new LinodeNet 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.
NewListCloudsResponse instantiates a new ListCloudsResponse 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.
NewListCloudsResponseWithDefaults instantiates a new ListCloudsResponse 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.
NewListClustersResponse instantiates a new ListClustersResponse 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.
NewListClustersResponseWithDefaults instantiates a new ListClustersResponse 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.
NewListImagesResponse instantiates a new ListImagesResponse 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.
NewListImagesResponseWithDefaults instantiates a new ListImagesResponse 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.
NewListKeysResponse instantiates a new ListKeysResponse 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.
NewListKeysResponseWithDefaults instantiates a new ListKeysResponse 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.
NewListLocationsResponse instantiates a new ListLocationsResponse 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.
NewListLocationsResponseWithDefaults instantiates a new ListLocationsResponse 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.
NewListMachinesResponse instantiates a new ListMachinesResponse 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.
NewListMachinesResponseWithDefaults instantiates a new ListMachinesResponse 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.
NewListNetworksResponse instantiates a new ListNetworksResponse 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.
NewListNetworksResponseWithDefaults instantiates a new ListNetworksResponse 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.
NewListOrgMembersResponse instantiates a new ListOrgMembersResponse 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.
NewListOrgMembersResponseWithDefaults instantiates a new ListOrgMembersResponse 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.
NewListOrgsResponse instantiates a new ListOrgsResponse 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.
NewListOrgsResponseWithDefaults instantiates a new ListOrgsResponse 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.
NewListOrgTeamsResponse instantiates a new ListOrgTeamsResponse 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.
NewListOrgTeamsResponseWithDefaults instantiates a new ListOrgTeamsResponse 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.
NewListRulesResponse instantiates a new ListRulesResponse 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.
NewListRulesResponseWithDefaults instantiates a new ListRulesResponse 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.
NewListScriptsResponse instantiates a new ListScriptsResponse 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.
NewListScriptsResponseWithDefaults instantiates a new ListScriptsResponse 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.
NewListSizesResponse instantiates a new ListSizesResponse 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.
NewListSizesResponseWithDefaults instantiates a new ListSizesResponse 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.
NewListSnapshotsResponse instantiates a new ListSnapshotsResponse 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.
NewListSnapshotsResponseWithDefaults instantiates a new ListSnapshotsResponse 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.
NewListUsersResponse instantiates a new ListUsersResponse 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.
NewListUsersResponseWithDefaults instantiates a new ListUsersResponse 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.
NewListVolumesResponse instantiates a new ListVolumesResponse 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.
NewListVolumesResponseWithDefaults instantiates a new ListVolumesResponse 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.
NewListZonesResponse instantiates a new ListZonesResponse 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.
NewListZonesResponseWithDefaults instantiates a new ListZonesResponse 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.
NewLocation instantiates a new Location 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.
NewLocationWithDefaults instantiates a new Location 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.
NewLog instantiates a new Log 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.
NewLogWithDefaults instantiates a new Log 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.
NewLxdCloudRequest instantiates a new LxdCloudRequest 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.
NewLxdCloudRequestWithDefaults instantiates a new LxdCloudRequest 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.
NewLxdCredentials instantiates a new LxdCredentials 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.
NewLxdCredentialsWithDefaults instantiates a new LxdCredentials 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.
NewLXDExtra instantiates a new LXDExtra 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.
NewLXDExtraWithDefaults instantiates a new LXDExtra 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.
NewLXDNet instantiates a new LXDNet 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.
NewLXDNetWithDefaults instantiates a new LXDNet 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.
NewMachine instantiates a new Machine 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.
NewMachineWithDefaults instantiates a new Machine 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.
NewMaxihostCloudRequest instantiates a new MaxihostCloudRequest 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.
NewMaxihostCloudRequestWithDefaults instantiates a new MaxihostCloudRequest 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.
NewMaxihostCredentials instantiates a new MaxihostCredentials 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.
NewMaxihostCredentialsWithDefaults instantiates a new MaxihostCredentials 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.
NewMember instantiates a new Member 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.
NewMemberWithDefaults instantiates a new Member 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.
NewNetwork instantiates a new Network 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.
NewNetworkWithDefaults instantiates a new Network 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.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOnappCloudRequest instantiates a new OnappCloudRequest 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.
NewOnappCloudRequestWithDefaults instantiates a new OnappCloudRequest 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.
NewOnappCredentials instantiates a new OnappCredentials 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.
NewOnappCredentialsWithDefaults instantiates a new OnappCredentials 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.
NewOneOffSchedule instantiates a new OneOffSchedule 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.
NewOneOffScheduleWithDefaults instantiates a new OneOffSchedule 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.
NewOpenshiftCloudRequest instantiates a new OpenshiftCloudRequest 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.
NewOpenshiftCloudRequestWithDefaults instantiates a new OpenshiftCloudRequest 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.
NewOpenshiftCredentials instantiates a new OpenshiftCredentials 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.
NewOpenshiftCredentialsWithDefaults instantiates a new OpenshiftCredentials 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.
NewOpenstackCloudRequest instantiates a new OpenstackCloudRequest 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.
NewOpenstackCloudRequestWithDefaults instantiates a new OpenstackCloudRequest 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.
NewOpenstackCredentials instantiates a new OpenstackCredentials 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.
NewOpenstackCredentialsWithDefaults instantiates a new OpenstackCredentials 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.
NewOpenstackNet instantiates a new OpenstackNet 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.
NewOpenstackNetWithDefaults instantiates a new OpenstackNet 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.
NewOrg instantiates a new Org 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.
NewOrgWithDefaults instantiates a new Org 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.
NewOtherCloudRequest instantiates a new OtherCloudRequest 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.
NewOtherCloudRequestWithDefaults instantiates a new OtherCloudRequest 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.
NewPostDeployScript instantiates a new PostDeployScript 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.
NewPostDeployScriptWithDefaults instantiates a new PostDeployScript 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.
NewQuery instantiates a new Query 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.
NewQueryWithDefaults instantiates a new Query 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.
NewRackspaceCloudRequest instantiates a new RackspaceCloudRequest 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.
NewRackspaceCloudRequestWithDefaults instantiates a new RackspaceCloudRequest 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.
NewRackspaceCredentials instantiates a new RackspaceCredentials 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.
NewRackspaceCredentialsWithDefaults instantiates a new RackspaceCredentials 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.
NewRangeVector instantiates a new RangeVector 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.
NewRangeVectorWithDefaults instantiates a new RangeVector 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.
NewResponseMetadata instantiates a new ResponseMetadata 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.
NewResponseMetadataWithDefaults instantiates a new ResponseMetadata 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.
NewRule instantiates a new Rule 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.
NewRuleAction instantiates a new RuleAction 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.
NewRuleActionWithDefaults instantiates a new RuleAction 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.
NewRuleWithDefaults instantiates a new Rule 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.
NewRunScriptRequest instantiates a new RunScriptRequest 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.
NewRunScriptRequestWithDefaults instantiates a new RunScriptRequest 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.
NewRunScriptResponse instantiates a new RunScriptResponse 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.
NewRunScriptResponseWithDefaults instantiates a new RunScriptResponse 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.
NewScript instantiates a new Script 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.
NewScriptWithDefaults instantiates a new Script 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.
NewSelector instantiates a new Selector 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.
NewSelectorWithDefaults instantiates a new Selector 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.
NewSize instantiates a new Size 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.
NewSizeWithDefaults instantiates a new Size 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.
NewTeam instantiates a new Team 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.
NewTeamWithDefaults instantiates a new Team 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.
NewTriggerAfter instantiates a new TriggerAfter 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.
NewTriggerAfterWithDefaults instantiates a new TriggerAfter 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.
NewUser instantiates a new User 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.
NewUserWithDefaults instantiates a new User 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.
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.
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.
NewVsphereCloudRequest instantiates a new VsphereCloudRequest 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.
NewVsphereCloudRequestWithDefaults instantiates a new VsphereCloudRequest 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.
NewVsphereCredentials instantiates a new VsphereCredentials 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.
NewVsphereCredentialsWithDefaults instantiates a new VsphereCredentials 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.
NewVSphereExtra instantiates a new VSphereExtra 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.
NewVSphereExtraWithDefaults instantiates a new VSphereExtra 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.
NewVSphereNet instantiates a new VSphereNet 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.
NewVSphereNetWithDefaults instantiates a new VSphereNet 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.
NewVultrCloudRequest instantiates a new VultrCloudRequest 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.
NewVultrCloudRequestWithDefaults instantiates a new VultrCloudRequest 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.
NewVultrCredentials instantiates a new VultrCredentials 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.
NewVultrCredentialsWithDefaults instantiates a new VultrCredentials 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.
NewVultrExtra instantiates a new VultrExtra 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.
NewVultrExtraWithDefaults instantiates a new VultrExtra 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.
NewVultrNet instantiates a new VultrNet 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.
NewVultrNetWithDefaults instantiates a new VultrNet 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.
NewWindow instantiates a new Window 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.
NewWindowWithDefaults instantiates a new Window 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.
NewZone instantiates a new Zone 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.
NewZoneWithDefaults instantiates a new Zone 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.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
RangeVectorAsVector is a convenience function that returns RangeVector wrapped in Vector.

# Constants

List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of MachineState.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of DataType.
List of SupportedProviders.
List of SupportedProviders.
List of DataType.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.
List of MachineState.
List of MachineState.
List of SupportedProviders.
List of MachineState.
List of MachineState.
List of MachineState.
List of MachineState.
List of MachineState.
List of MachineState.
List of MachineState.
List of MachineState.
List of MachineState.
List of SupportedProviders.
List of SupportedProviders.
List of SupportedProviders.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AddCloudRequest struct for AddCloudRequest.
AddCloudRequestAllOf struct for AddCloudRequestAllOf.
AddKeyRequest struct for AddKeyRequest.
AddKeyRequestAnyOf struct for AddKeyRequestAnyOf.
AddKeyRequestAnyOf1 struct for AddKeyRequestAnyOf1.
AddKeyRequestAnyOf2 struct for AddKeyRequestAnyOf2.
AddKeyResponse struct for AddKeyResponse.
AddRuleRequest struct for AddRuleRequest.
AddScriptRequest struct for AddScriptRequest.
AlibabaCloudRequest struct for AlibabaCloudRequest.
AlibabaCredentials struct for AlibabaCredentials.
AlibabaNet struct for AlibabaNet.
AmazonCloudRequest struct for AmazonCloudRequest.
AmazonClusterRequest struct for AmazonClusterRequest.
AmazonCredentials struct for AmazonCredentials.
AmazonNet struct for AmazonNet.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Mist API API v2.0.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AzureCloudRequest struct for AzureCloudRequest.
AzureCredentials struct for AzureCredentials.
AzureExtra struct for AzureExtra.
AzureNet struct for AzureNet.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Cloud struct for Cloud.
CloudFeatures The cloud features that should be enabled.
CloudSigmaCloudRequest struct for CloudSigmaCloudRequest.
CloudSigmaCredentials struct for CloudSigmaCredentials.
Cluster struct for Cluster.
Configuration stores the configuration of the API client.
CreateClusterRequest struct for CreateClusterRequest.
CreateClusterRequestAllOf struct for CreateClusterRequestAllOf.
CreateMachineResponse - struct for CreateMachineResponse.
CreateMachineResponseOneOf struct for CreateMachineResponseOneOf.
CreateMachineResponseOneOf1 struct for CreateMachineResponseOneOf1.
CreateNetworkRequest struct for CreateNetworkRequest.
CreateNetworkResponse - struct for CreateNetworkResponse.
CreateVolumeRequest struct for CreateVolumeRequest.
CreateVolumeResponse - struct for CreateVolumeResponse.
CreateZoneRequest struct for CreateZoneRequest.
CreateZoneResponse - struct for CreateZoneResponse.
CronSchedule crontab schedule.
Datapoints struct for Datapoints.
DatapointsData struct for DatapointsData.
DatapointsValuesItem struct for DatapointsValuesItem.
DigitaloceanCloudRequest struct for DigitaloceanCloudRequest.
DigitaloceanCredentials struct for DigitaloceanCredentials.
DockerCloudRequest struct for DockerCloudRequest.
DockerCredentials struct for DockerCredentials.
DockerExtra struct for DockerExtra.
DockerNet struct for DockerNet.
EditMachineRequest struct for EditMachineRequest.
EditMachineRequestExpiration struct for EditMachineRequestExpiration.
EditRuleRequest struct for EditRuleRequest.
EquinixCloudRequest struct for EquinixCloudRequest.
EquinixCredentials struct for EquinixCredentials.
EquinixMetalExtra struct for EquinixMetalExtra.
EquinixMetalNet struct for EquinixMetalNet.
EquinixMetalNetIpAddresses struct for EquinixMetalNetIpAddresses.
Expiration struct for Expiration.
ExpirationNotify Notify user before machine expiration.
Frequency struct for Frequency.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetCloudResponse struct for GetCloudResponse.
GetClusterResponse struct for GetClusterResponse.
GetDatapointsResponse struct for GetDatapointsResponse.
GetImageResponse struct for GetImageResponse.
GetJobResponse struct for GetJobResponse.
GetKeyResponse struct for GetKeyResponse.
GetLocationResponse struct for GetLocationResponse.
GetMachineResponse struct for GetMachineResponse.
GetNetworkResponse struct for GetNetworkResponse.
GetOrgMemberResponse struct for GetOrgMemberResponse.
GetOrgResponse struct for GetOrgResponse.
GetRuleResponse struct for GetRuleResponse.
GetScriptResponse struct for GetScriptResponse.
GetSizeResponse struct for GetSizeResponse.
GetVolumeResponse struct for GetVolumeResponse.
GetZoneResponse struct for GetZoneResponse.
GoogleCloudRequest struct for GoogleCloudRequest.
GoogleClusterRequest struct for GoogleClusterRequest.
GoogleCredentials struct for GoogleCredentials.
GoogleNet struct for GoogleNet.
IbmCloudRequest struct for IbmCloudRequest.
IbmCredentials struct for IbmCredentials.
Image struct for Image.
InlineResponse200 struct for InlineResponse200.
InlineResponse2001 struct for InlineResponse2001.
InlineScript struct for InlineScript.
InstantVector struct for InstantVector.
IntervalSchedule interval schedule.
Job struct for Job.
Key struct for Key.
KeyMachineAssociation struct for KeyMachineAssociation.
KeyMachineDisassociation struct for KeyMachineDisassociation.
KubernetesCloudRequest struct for KubernetesCloudRequest.
KubernetesCredentials struct for KubernetesCredentials.
KubevirtCloudRequest struct for KubevirtCloudRequest.
KvmCloudRequest struct for KvmCloudRequest.
KVMNet struct for KVMNet.
KVMNetNetworks struct for KVMNetNetworks.
LinodeCloudRequest struct for LinodeCloudRequest.
LinodeCredentials struct for LinodeCredentials.
LinodeExtra struct for LinodeExtra.
LinodeNet struct for LinodeNet.
ListCloudsResponse struct for ListCloudsResponse.
ListClustersResponse struct for ListClustersResponse.
ListImagesResponse struct for ListImagesResponse.
ListKeysResponse struct for ListKeysResponse.
ListLocationsResponse struct for ListLocationsResponse.
ListMachinesResponse struct for ListMachinesResponse.
ListNetworksResponse struct for ListNetworksResponse.
ListOrgMembersResponse struct for ListOrgMembersResponse.
ListOrgsResponse struct for ListOrgsResponse.
ListOrgTeamsResponse struct for ListOrgTeamsResponse.
ListRulesResponse struct for ListRulesResponse.
ListScriptsResponse struct for ListScriptsResponse.
ListSizesResponse struct for ListSizesResponse.
ListSnapshotsResponse struct for ListSnapshotsResponse.
ListUsersResponse struct for ListUsersResponse.
ListVolumesResponse struct for ListVolumesResponse.
ListZonesResponse struct for ListZonesResponse.
Location struct for Location.
Log struct for Log.
LxdCloudRequest struct for LxdCloudRequest.
LxdCredentials struct for LxdCredentials.
LXDExtra struct for LXDExtra.
LXDNet struct for LXDNet.
Machine struct for Machine.
MaxihostCloudRequest struct for MaxihostCloudRequest.
MaxihostCredentials struct for MaxihostCredentials.
Member struct for Member.
Network struct for Network.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OnappCloudRequest struct for OnappCloudRequest.
OnappCredentials struct for OnappCredentials.
OneOffSchedule one_off schedule.
OpenshiftCloudRequest struct for OpenshiftCloudRequest.
OpenshiftCredentials struct for OpenshiftCredentials.
OpenstackCloudRequest struct for OpenstackCloudRequest.
OpenstackCredentials struct for OpenstackCredentials.
OpenstackNet struct for OpenstackNet.
Org struct for Org.
OtherCloudRequest struct for OtherCloudRequest.
PostDeployScript struct for PostDeployScript.
Query struct for Query.
RackspaceCloudRequest struct for RackspaceCloudRequest.
RackspaceCredentials struct for RackspaceCredentials.
RangeVector struct for RangeVector.
ResponseMetadata struct for ResponseMetadata.
Rule struct for Rule.
RuleAction struct for RuleAction.
RunScriptRequest struct for RunScriptRequest.
RunScriptResponse struct for RunScriptResponse.
Script struct for Script.
Selector struct for Selector.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Size struct for Size.
Team struct for Team.
TriggerAfter struct for TriggerAfter.
User struct for User.
Vector - struct for Vector.
Volume struct for Volume.
VsphereCloudRequest struct for VsphereCloudRequest.
VsphereCredentials struct for VsphereCredentials.
VSphereExtra struct for VSphereExtra.
VSphereNet struct for VSphereNet.
VultrCloudRequest struct for VultrCloudRequest.
VultrCredentials struct for VultrCredentials.
VultrExtra struct for VultrExtra.
VultrNet struct for VultrNet.
Window struct for Window.
Zone struct for Zone.

# Type aliases

CloudsApiService CloudsApi service.
ClusterProviders The cloud provider of the cluster.
ClustersApiService ClustersApi service.
DatapointsApiService DatapointsApi service.
DataType the model 'DataType'.
ImagesApiService ImagesApi service.
JobsApiService JobsApi service.
KeysApiService KeysApi service.
LocationsApiService LocationsApi service.
MachinesApiService MachinesApi service.
MachineState the model 'MachineState'.
NetworksApiService NetworksApi service.
OrgsApiService OrgsApi service.
RulesApiService RulesApi service.
ScriptsApiService ScriptsApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SizesApiService SizesApi service.
SnapshotsApiService SnapshotsApi service.
SupportedProviders the model 'SupportedProviders'.
UsersApiService UsersApi service.
VolumesApiService VolumesApi service.
ZonesApiService ZonesApi service.