pxapiflat

package module
v1.0.12 Latest Latest
Warning

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

Go to latest
Published: Dec 18, 2023 License: BSD-3-Clause Imports: 20 Imported by: 0

README

Go API client for pxapiflat

ProxMox VE API

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: 8.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import pxapiflat "github.com/DirkTheDaring/px-api-client-go"

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 pxapiflat.ContextServerIndex of type int.

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

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

ctx := context.WithValue(context.Background(), pxapiflat.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 identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using pxapiflat.ContextOperationServerIndices and pxapiflat.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://127.0.0.1:8006/api2/json

Class Method HTTP request Description
AccessAPI CreateAccessTicket Post /access/ticket createAccessTicket
AccessAPI GetAccessTicket Get /access/ticket getAccessTicket
ClusterAPI GetClusterConfigNodes Get /cluster/config/nodes getClusterConfigNodes
ClusterAPI GetClusterNextid Get /cluster/nextid getClusterNextid
ClusterAPI GetClusterResources Get /cluster/resources getClusterResources
NodesAPI CreateContainer Post /nodes/{node}/lxc createContainer
NodesAPI CreateContainerSnapshot Post /nodes/{node}/lxc/{vmid}/snapshot createContainerSnapshot
NodesAPI CreateNodesSingleStorageSingleContent Post /nodes/{node}/storage/{storage}/content createNodesSingleStorageSingleContent
NodesAPI CreateVM Post /nodes/{node}/qemu createVM
NodesAPI CreateVMSnapshot Post /nodes/{node}/qemu/{vmid}/snapshot createVMSnapshot
NodesAPI DeleteContainer Delete /nodes/{node}/lxc/{vmid} deleteContainer
NodesAPI DeleteContainerSnapshot Delete /nodes/{node}/lxc/{vmid}/snapshot/{snapname} deleteContainerSnapshot
NodesAPI DeleteVM Delete /nodes/{node}/qemu/{vmid} deleteVM
NodesAPI DeleteVMSnapshot Delete /nodes/{node}/qemu/{vmid}/snapshot/{snapname} deleteVMSnapshot
NodesAPI GetContainer Get /nodes/{node}/lxc/{vmid} getContainer
NodesAPI GetContainerConfig Get /nodes/{node}/lxc/{vmid}/config getContainerConfig
NodesAPI GetContainerConfigPending Get /nodes/{node}/lxc/{vmid}/pending getContainerConfigPending
NodesAPI GetContainerSnapshot Get /nodes/{node}/lxc/{vmid}/snapshot/{snapname} getContainerSnapshot
NodesAPI GetContainerSnapshotConfig Get /nodes/{node}/lxc/{vmid}/snapshot/{snapname}/config getContainerSnapshotConfig
NodesAPI GetContainerSnapshots Get /nodes/{node}/lxc/{vmid}/snapshot getContainerSnapshots
NodesAPI GetContainerStatus Get /nodes/{node}/lxc/{vmid}/status getContainerStatus
NodesAPI GetContainers Get /nodes/{node}/lxc getContainers
NodesAPI GetCurrentContainerStatus Get /nodes/{node}/lxc/{vmid}/status/current getCurrentContainerStatus
NodesAPI GetCurrentVMStatus Get /nodes/{node}/qemu/{vmid}/status/current getCurrentVMStatus
NodesAPI GetNodeTask Get /nodes/{node}/tasks/{upid} getNodeTask
NodesAPI GetNodeTaskLog Get /nodes/{node}/tasks/{upid}/log getNodeTaskLog
NodesAPI GetNodeTaskStatus Get /nodes/{node}/tasks/{upid}/status getNodeTaskStatus
NodesAPI GetNodeTasks Get /nodes/{node}/tasks getNodeTasks
NodesAPI GetStorageContent Get /nodes/{node}/storage/{storage}/content getStorageContent
NodesAPI GetStorages Get /nodes/{node}/storage getStorages
NodesAPI GetVM Get /nodes/{node}/qemu/{vmid} getVM
NodesAPI GetVMConfig Get /nodes/{node}/qemu/{vmid}/config getVMConfig
NodesAPI GetVMConfigPending Get /nodes/{node}/qemu/{vmid}/pending getVMConfigPending
NodesAPI GetVMSnapshot Get /nodes/{node}/qemu/{vmid}/snapshot/{snapname} getVMSnapshot
NodesAPI GetVMSnapshotConfig Get /nodes/{node}/qemu/{vmid}/snapshot/{snapname}/config getVMSnapshotConfig
NodesAPI GetVMSnapshots Get /nodes/{node}/qemu/{vmid}/snapshot getVMSnapshots
NodesAPI GetVMs Get /nodes/{node}/qemu getVMs
NodesAPI RebootContainer Post /nodes/{node}/lxc/{vmid}/status/reboot rebootContainer
NodesAPI RebootVM Post /nodes/{node}/qemu/{vmid}/status/reboot rebootVM
NodesAPI ResizeContainerDisk Put /nodes/{node}/lxc/{vmid}/resize resizeContainerDisk
NodesAPI ResizeVMDisk Put /nodes/{node}/qemu/{vmid}/resize resizeVMDisk
NodesAPI ResumeContainer Post /nodes/{node}/lxc/{vmid}/status/resume resumeContainer
NodesAPI ResumeVM Post /nodes/{node}/qemu/{vmid}/status/resume resumeVM
NodesAPI RollbackContainerSnapshot Post /nodes/{node}/lxc/{vmid}/snapshot/{snapname}/rollback rollbackContainerSnapshot
NodesAPI RollbackVMSnapshot Post /nodes/{node}/qemu/{vmid}/snapshot/{snapname}/rollback rollbackVMSnapshot
NodesAPI ShutdownContainer Post /nodes/{node}/lxc/{vmid}/status/shutdown shutdownContainer
NodesAPI ShutdownVM Post /nodes/{node}/qemu/{vmid}/status/shutdown shutdownVM
NodesAPI StartContainer Post /nodes/{node}/lxc/{vmid}/status/start startContainer
NodesAPI StartVM Post /nodes/{node}/qemu/{vmid}/status/start startVM
NodesAPI StopContainer Post /nodes/{node}/lxc/{vmid}/status/stop stopContainer
NodesAPI StopNodeTask Delete /nodes/{node}/tasks/{upid} stopNodeTask
NodesAPI StopVM Post /nodes/{node}/qemu/{vmid}/status/stop stopVM
NodesAPI SuspendContainer Post /nodes/{node}/lxc/{vmid}/status/suspend suspendContainer
NodesAPI SuspendVM Post /nodes/{node}/qemu/{vmid}/status/suspend suspendVM
NodesAPI UpdateContainerConfigSync Put /nodes/{node}/lxc/{vmid}/config updateContainerConfigSync
NodesAPI UpdateContainerSnapshotConfig Put /nodes/{node}/lxc/{vmid}/snapshot/{snapname}/config updateContainerSnapshotConfig
NodesAPI UpdateVMConfig Post /nodes/{node}/qemu/{vmid}/config updateVMConfig
NodesAPI UpdateVMConfigSync Put /nodes/{node}/qemu/{vmid}/config updateVMConfigSync
NodesAPI UpdateVMSnapshotConfig Put /nodes/{node}/qemu/{vmid}/snapshot/{snapname}/config updateVMSnapshotConfig
NodesAPI UploadFile Post /nodes/{node}/storage/{storage}/upload uploadFile
StorageAPI CreateStorage Post /storage createStorage
StorageAPI GetStorage Get /storage getStorage

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

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

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

Example

auth := context.WithValue(
		context.Background(),
		pxapiflat.ContextAPIKeys,
		map[string]pxapiflat.APIKey{
			"Cookie": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
token
  • Type: API key
  • API key parameter name: CSRFPreventionToken
  • Location: HTTP header

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

Example

auth := context.WithValue(
		context.Background(),
		pxapiflat.ContextAPIKeys,
		map[string]pxapiflat.APIKey{
			"CSRFPreventionToken": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

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

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

Author

baldur@email.de

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AccessAPI AccessAPI

	ClusterAPI ClusterAPI

	NodesAPI NodesAPI

	StorageAPI StorageAPI
	// contains filtered or unexported fields
}

APIClient manages communication with the ProxMox VE API API v8.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessAPI added in v1.0.9

type AccessAPI interface {

	/*
		CreateAccessTicket createAccessTicket

		Create or verify authentication ticket.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateAccessTicketRequest
	*/
	CreateAccessTicket(ctx context.Context) ApiCreateAccessTicketRequest

	// CreateAccessTicketExecute executes the request
	//  @return CreateAccessTicket200Response
	CreateAccessTicketExecute(r ApiCreateAccessTicketRequest) (*CreateAccessTicket200Response, *http.Response, error)

	/*
		GetAccessTicket getAccessTicket

		Dummy. Useful for formatters which want to provide a login page.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetAccessTicketRequest
	*/
	GetAccessTicket(ctx context.Context) ApiGetAccessTicketRequest

	// GetAccessTicketExecute executes the request
	//  @return CreateVM200Response
	GetAccessTicketExecute(r ApiGetAccessTicketRequest) (*CreateVM200Response, *http.Response, error)
}

type AccessAPIService added in v1.0.9

type AccessAPIService service

AccessAPIService AccessAPI service

func (*AccessAPIService) CreateAccessTicket added in v1.0.9

func (a *AccessAPIService) CreateAccessTicket(ctx context.Context) ApiCreateAccessTicketRequest

CreateAccessTicket createAccessTicket

Create or verify authentication ticket.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateAccessTicketRequest

func (*AccessAPIService) CreateAccessTicketExecute added in v1.0.9

Execute executes the request

@return CreateAccessTicket200Response

func (*AccessAPIService) GetAccessTicket added in v1.0.9

GetAccessTicket getAccessTicket

Dummy. Useful for formatters which want to provide a login page.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAccessTicketRequest

func (*AccessAPIService) GetAccessTicketExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

type ApiCreateAccessTicketRequest

type ApiCreateAccessTicketRequest struct {
	ApiService AccessAPI
	// contains filtered or unexported fields
}

func (ApiCreateAccessTicketRequest) CreateAccessTicketRequest

func (r ApiCreateAccessTicketRequest) CreateAccessTicketRequest(createAccessTicketRequest CreateAccessTicketRequest) ApiCreateAccessTicketRequest

func (ApiCreateAccessTicketRequest) Execute

type ApiCreateContainerRequest

type ApiCreateContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiCreateContainerRequest) CreateContainerRequest

func (r ApiCreateContainerRequest) CreateContainerRequest(createContainerRequest CreateContainerRequest) ApiCreateContainerRequest

func (ApiCreateContainerRequest) Execute

type ApiCreateContainerSnapshotRequest

type ApiCreateContainerSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiCreateContainerSnapshotRequest) CreateContainerSnapshotRequest

func (r ApiCreateContainerSnapshotRequest) CreateContainerSnapshotRequest(createContainerSnapshotRequest CreateContainerSnapshotRequest) ApiCreateContainerSnapshotRequest

func (ApiCreateContainerSnapshotRequest) Execute

type ApiCreateNodesSingleStorageSingleContentRequest

type ApiCreateNodesSingleStorageSingleContentRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiCreateNodesSingleStorageSingleContentRequest) CreateNodesSingleStorageSingleContentRequest

func (r ApiCreateNodesSingleStorageSingleContentRequest) CreateNodesSingleStorageSingleContentRequest(createNodesSingleStorageSingleContentRequest CreateNodesSingleStorageSingleContentRequest) ApiCreateNodesSingleStorageSingleContentRequest

func (ApiCreateNodesSingleStorageSingleContentRequest) Execute

type ApiCreateStorageRequest

type ApiCreateStorageRequest struct {
	ApiService StorageAPI
	// contains filtered or unexported fields
}

func (ApiCreateStorageRequest) CreateStorageRequest

func (r ApiCreateStorageRequest) CreateStorageRequest(createStorageRequest CreateStorageRequest) ApiCreateStorageRequest

func (ApiCreateStorageRequest) Execute

type ApiCreateVMRequest

type ApiCreateVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiCreateVMRequest) CreateVMRequest

func (r ApiCreateVMRequest) CreateVMRequest(createVMRequest CreateVMRequest) ApiCreateVMRequest

func (ApiCreateVMRequest) Execute

type ApiCreateVMSnapshotRequest

type ApiCreateVMSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiCreateVMSnapshotRequest) CreateVMSnapshotRequest

func (r ApiCreateVMSnapshotRequest) CreateVMSnapshotRequest(createVMSnapshotRequest CreateVMSnapshotRequest) ApiCreateVMSnapshotRequest

func (ApiCreateVMSnapshotRequest) Execute

type ApiDeleteContainerRequest

type ApiDeleteContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiDeleteContainerRequest) DestroyUnreferencedDisks

func (r ApiDeleteContainerRequest) DestroyUnreferencedDisks(destroyUnreferencedDisks bool) ApiDeleteContainerRequest

If set, destroy additionally all disks with the VMID from all enabled storages which are not referenced in the config.

func (ApiDeleteContainerRequest) Execute

func (ApiDeleteContainerRequest) Force

Force destroy, even if running.

func (ApiDeleteContainerRequest) Purge

Remove container from all related configurations. For example, backup jobs, replication jobs or HA. Related ACLs and Firewall entries will *always* be removed.

type ApiDeleteContainerSnapshotRequest

type ApiDeleteContainerSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiDeleteContainerSnapshotRequest) Execute

func (ApiDeleteContainerSnapshotRequest) Force

For removal from config file, even if removing disk snapshots fails.

type ApiDeleteVMRequest

type ApiDeleteVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiDeleteVMRequest) DestroyUnreferencedDisks

func (r ApiDeleteVMRequest) DestroyUnreferencedDisks(destroyUnreferencedDisks bool) ApiDeleteVMRequest

If set, destroy additionally all disks not referenced in the config but with a matching VMID from all enabled storages.

func (ApiDeleteVMRequest) Execute

func (ApiDeleteVMRequest) Purge

Remove VMID from configurations, like backup & replication jobs and HA.

func (ApiDeleteVMRequest) Skiplock

func (r ApiDeleteVMRequest) Skiplock(skiplock bool) ApiDeleteVMRequest

Ignore locks - only root is allowed to use this option.

type ApiDeleteVMSnapshotRequest

type ApiDeleteVMSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiDeleteVMSnapshotRequest) Execute

func (ApiDeleteVMSnapshotRequest) Force

For removal from config file, even if removing disk snapshots fails.

type ApiGetAccessTicketRequest

type ApiGetAccessTicketRequest struct {
	ApiService AccessAPI
	// contains filtered or unexported fields
}

func (ApiGetAccessTicketRequest) Execute

type ApiGetClusterConfigNodesRequest

type ApiGetClusterConfigNodesRequest struct {
	ApiService ClusterAPI
	// contains filtered or unexported fields
}

func (ApiGetClusterConfigNodesRequest) Execute

type ApiGetClusterNextidRequest

type ApiGetClusterNextidRequest struct {
	ApiService ClusterAPI
	// contains filtered or unexported fields
}

func (ApiGetClusterNextidRequest) Execute

func (ApiGetClusterNextidRequest) Vmid

The (unique) ID of the VM.

type ApiGetClusterResourcesRequest

type ApiGetClusterResourcesRequest struct {
	ApiService ClusterAPI
	// contains filtered or unexported fields
}

func (ApiGetClusterResourcesRequest) Execute

func (ApiGetClusterResourcesRequest) Type_

type ApiGetContainerConfigPendingRequest

type ApiGetContainerConfigPendingRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerConfigPendingRequest) Execute

type ApiGetContainerConfigRequest

type ApiGetContainerConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerConfigRequest) Current

Get current values (instead of pending values).

func (ApiGetContainerConfigRequest) Execute

func (ApiGetContainerConfigRequest) Snapshot

Fetch config values from given snapshot.

type ApiGetContainerRequest

type ApiGetContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerRequest) Execute

type ApiGetContainerSnapshotConfigRequest

type ApiGetContainerSnapshotConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerSnapshotConfigRequest) Execute

type ApiGetContainerSnapshotRequest

type ApiGetContainerSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerSnapshotRequest) Execute

type ApiGetContainerSnapshotsRequest

type ApiGetContainerSnapshotsRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerSnapshotsRequest) Execute

type ApiGetContainerStatusRequest

type ApiGetContainerStatusRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainerStatusRequest) Execute

type ApiGetContainersRequest

type ApiGetContainersRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetContainersRequest) Execute

type ApiGetCurrentContainerStatusRequest

type ApiGetCurrentContainerStatusRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetCurrentContainerStatusRequest) Execute

type ApiGetCurrentVMStatusRequest

type ApiGetCurrentVMStatusRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetCurrentVMStatusRequest) Execute

type ApiGetNodeTaskLogRequest

type ApiGetNodeTaskLogRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetNodeTaskLogRequest) Download

Whether the tasklog file should be downloaded. This parameter can't be used in conjunction with other parameters

func (ApiGetNodeTaskLogRequest) Execute

func (ApiGetNodeTaskLogRequest) Limit

The amount of lines to read from the tasklog.

func (ApiGetNodeTaskLogRequest) Start

Start at this line when reading the tasklog

type ApiGetNodeTaskRequest

type ApiGetNodeTaskRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetNodeTaskRequest) Execute

type ApiGetNodeTaskStatusRequest

type ApiGetNodeTaskStatusRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetNodeTaskStatusRequest) Execute

type ApiGetNodeTasksRequest

type ApiGetNodeTasksRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetNodeTasksRequest) Errors

Only list tasks with a status of ERROR.

func (ApiGetNodeTasksRequest) Execute

func (ApiGetNodeTasksRequest) Limit

Only list this amount of tasks.

func (ApiGetNodeTasksRequest) Since

Only list tasks since this UNIX epoch.

func (ApiGetNodeTasksRequest) Source

List archived, active or all tasks.

func (ApiGetNodeTasksRequest) Start

List tasks beginning from this offset.

func (ApiGetNodeTasksRequest) Statusfilter

func (r ApiGetNodeTasksRequest) Statusfilter(statusfilter string) ApiGetNodeTasksRequest

List of Task States that should be returned.

func (ApiGetNodeTasksRequest) Typefilter

func (r ApiGetNodeTasksRequest) Typefilter(typefilter string) ApiGetNodeTasksRequest

Only list tasks of this type (e.g., vzstart, vzdump).

func (ApiGetNodeTasksRequest) Until

Only list tasks until this UNIX epoch.

func (ApiGetNodeTasksRequest) Userfilter

func (r ApiGetNodeTasksRequest) Userfilter(userfilter string) ApiGetNodeTasksRequest

Only list tasks from this user.

func (ApiGetNodeTasksRequest) Vmid

Only list tasks for this VM.

type ApiGetStorageContentRequest

type ApiGetStorageContentRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetStorageContentRequest) Content

Only list content of this type.

func (ApiGetStorageContentRequest) Execute

func (ApiGetStorageContentRequest) Vmid

Only list images for this VM

type ApiGetStorageRequest

type ApiGetStorageRequest struct {
	ApiService StorageAPI
	// contains filtered or unexported fields
}

func (ApiGetStorageRequest) Execute

func (ApiGetStorageRequest) Type_

Only list storage of specific type

type ApiGetStoragesRequest

type ApiGetStoragesRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetStoragesRequest) Content

Only list stores which support this content type.

func (ApiGetStoragesRequest) Enabled

Only list stores which are enabled (not disabled in config).

func (ApiGetStoragesRequest) Execute

func (ApiGetStoragesRequest) Format

Include information about formats

func (ApiGetStoragesRequest) Storage

Only list status for specified storage

func (ApiGetStoragesRequest) Target

If target is different to 'node', we only lists shared storages which content is accessible on this 'node' and the specified 'target' node.

type ApiGetVMConfigPendingRequest

type ApiGetVMConfigPendingRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMConfigPendingRequest) Execute

type ApiGetVMConfigRequest

type ApiGetVMConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMConfigRequest) Current

Get current values (instead of pending values).

func (ApiGetVMConfigRequest) Execute

func (ApiGetVMConfigRequest) Snapshot

func (r ApiGetVMConfigRequest) Snapshot(snapshot string) ApiGetVMConfigRequest

Fetch config values from given snapshot.

type ApiGetVMRequest

type ApiGetVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMRequest) Execute

type ApiGetVMSnapshotConfigRequest

type ApiGetVMSnapshotConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMSnapshotConfigRequest) Execute

type ApiGetVMSnapshotRequest

type ApiGetVMSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMSnapshotRequest) Execute

type ApiGetVMSnapshotsRequest

type ApiGetVMSnapshotsRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMSnapshotsRequest) Execute

type ApiGetVMsRequest

type ApiGetVMsRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiGetVMsRequest) Execute

func (ApiGetVMsRequest) Full

func (r ApiGetVMsRequest) Full(full bool) ApiGetVMsRequest

Determine the full status of active VMs.

type ApiRebootContainerRequest

type ApiRebootContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiRebootContainerRequest) Execute

func (ApiRebootContainerRequest) RebootContainerRequest

func (r ApiRebootContainerRequest) RebootContainerRequest(rebootContainerRequest RebootContainerRequest) ApiRebootContainerRequest

type ApiRebootVMRequest

type ApiRebootVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiRebootVMRequest) Execute

func (ApiRebootVMRequest) RebootVMRequest

func (r ApiRebootVMRequest) RebootVMRequest(rebootVMRequest RebootVMRequest) ApiRebootVMRequest

type ApiResizeContainerDiskRequest

type ApiResizeContainerDiskRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiResizeContainerDiskRequest) Execute

func (ApiResizeContainerDiskRequest) ResizeContainerDiskRequest

func (r ApiResizeContainerDiskRequest) ResizeContainerDiskRequest(resizeContainerDiskRequest ResizeContainerDiskRequest) ApiResizeContainerDiskRequest

type ApiResizeVMDiskRequest

type ApiResizeVMDiskRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiResizeVMDiskRequest) Execute

func (ApiResizeVMDiskRequest) ResizeVMDiskRequest

func (r ApiResizeVMDiskRequest) ResizeVMDiskRequest(resizeVMDiskRequest ResizeVMDiskRequest) ApiResizeVMDiskRequest

type ApiResumeContainerRequest

type ApiResumeContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiResumeContainerRequest) Body

func (r ApiResumeContainerRequest) Body(body map[string]interface{}) ApiResumeContainerRequest

func (ApiResumeContainerRequest) Execute

type ApiResumeVMRequest

type ApiResumeVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiResumeVMRequest) Execute

func (ApiResumeVMRequest) ResumeVMRequest

func (r ApiResumeVMRequest) ResumeVMRequest(resumeVMRequest ResumeVMRequest) ApiResumeVMRequest

type ApiRollbackContainerSnapshotRequest

type ApiRollbackContainerSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiRollbackContainerSnapshotRequest) Execute

func (ApiRollbackContainerSnapshotRequest) RollbackContainerSnapshotRequest

func (r ApiRollbackContainerSnapshotRequest) RollbackContainerSnapshotRequest(rollbackContainerSnapshotRequest RollbackContainerSnapshotRequest) ApiRollbackContainerSnapshotRequest

type ApiRollbackVMSnapshotRequest

type ApiRollbackVMSnapshotRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiRollbackVMSnapshotRequest) Execute

func (ApiRollbackVMSnapshotRequest) RollbackVMSnapshotRequest

func (r ApiRollbackVMSnapshotRequest) RollbackVMSnapshotRequest(rollbackVMSnapshotRequest RollbackVMSnapshotRequest) ApiRollbackVMSnapshotRequest

type ApiShutdownContainerRequest

type ApiShutdownContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiShutdownContainerRequest) Execute

func (ApiShutdownContainerRequest) ShutdownContainerRequest

func (r ApiShutdownContainerRequest) ShutdownContainerRequest(shutdownContainerRequest ShutdownContainerRequest) ApiShutdownContainerRequest

type ApiShutdownVMRequest

type ApiShutdownVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiShutdownVMRequest) Execute

func (ApiShutdownVMRequest) ShutdownVMRequest

func (r ApiShutdownVMRequest) ShutdownVMRequest(shutdownVMRequest ShutdownVMRequest) ApiShutdownVMRequest

type ApiStartContainerRequest

type ApiStartContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiStartContainerRequest) Execute

func (ApiStartContainerRequest) StartContainerRequest

func (r ApiStartContainerRequest) StartContainerRequest(startContainerRequest StartContainerRequest) ApiStartContainerRequest

type ApiStartVMRequest

type ApiStartVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiStartVMRequest) Execute

func (ApiStartVMRequest) StartVMRequest

func (r ApiStartVMRequest) StartVMRequest(startVMRequest StartVMRequest) ApiStartVMRequest

type ApiStopContainerRequest

type ApiStopContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiStopContainerRequest) Execute

func (ApiStopContainerRequest) StopContainerRequest

func (r ApiStopContainerRequest) StopContainerRequest(stopContainerRequest StopContainerRequest) ApiStopContainerRequest

type ApiStopNodeTaskRequest

type ApiStopNodeTaskRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiStopNodeTaskRequest) Execute

type ApiStopVMRequest

type ApiStopVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiStopVMRequest) Execute

func (ApiStopVMRequest) StopVMRequest

func (r ApiStopVMRequest) StopVMRequest(stopVMRequest StopVMRequest) ApiStopVMRequest

type ApiSuspendContainerRequest

type ApiSuspendContainerRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiSuspendContainerRequest) Body

func (r ApiSuspendContainerRequest) Body(body map[string]interface{}) ApiSuspendContainerRequest

func (ApiSuspendContainerRequest) Execute

type ApiSuspendVMRequest

type ApiSuspendVMRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiSuspendVMRequest) Execute

func (ApiSuspendVMRequest) SuspendVMRequest

func (r ApiSuspendVMRequest) SuspendVMRequest(suspendVMRequest SuspendVMRequest) ApiSuspendVMRequest

type ApiUpdateContainerConfigSyncRequest

type ApiUpdateContainerConfigSyncRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiUpdateContainerConfigSyncRequest) Execute

func (ApiUpdateContainerConfigSyncRequest) UpdateContainerConfigSyncRequest

func (r ApiUpdateContainerConfigSyncRequest) UpdateContainerConfigSyncRequest(updateContainerConfigSyncRequest UpdateContainerConfigSyncRequest) ApiUpdateContainerConfigSyncRequest

type ApiUpdateContainerSnapshotConfigRequest

type ApiUpdateContainerSnapshotConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiUpdateContainerSnapshotConfigRequest) Execute

func (ApiUpdateContainerSnapshotConfigRequest) UpdateContainerSnapshotConfigRequest

func (r ApiUpdateContainerSnapshotConfigRequest) UpdateContainerSnapshotConfigRequest(updateContainerSnapshotConfigRequest UpdateContainerSnapshotConfigRequest) ApiUpdateContainerSnapshotConfigRequest

type ApiUpdateVMConfigRequest

type ApiUpdateVMConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiUpdateVMConfigRequest) Execute

func (ApiUpdateVMConfigRequest) UpdateVMConfigRequest

func (r ApiUpdateVMConfigRequest) UpdateVMConfigRequest(updateVMConfigRequest UpdateVMConfigRequest) ApiUpdateVMConfigRequest

type ApiUpdateVMConfigSyncRequest

type ApiUpdateVMConfigSyncRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiUpdateVMConfigSyncRequest) Execute

func (ApiUpdateVMConfigSyncRequest) UpdateVMConfigSyncRequest

func (r ApiUpdateVMConfigSyncRequest) UpdateVMConfigSyncRequest(updateVMConfigSyncRequest UpdateVMConfigSyncRequest) ApiUpdateVMConfigSyncRequest

type ApiUpdateVMSnapshotConfigRequest

type ApiUpdateVMSnapshotConfigRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiUpdateVMSnapshotConfigRequest) Execute

func (ApiUpdateVMSnapshotConfigRequest) UpdateVMSnapshotConfigRequest

func (r ApiUpdateVMSnapshotConfigRequest) UpdateVMSnapshotConfigRequest(updateVMSnapshotConfigRequest UpdateVMSnapshotConfigRequest) ApiUpdateVMSnapshotConfigRequest

type ApiUploadFileRequest

type ApiUploadFileRequest struct {
	ApiService NodesAPI
	// contains filtered or unexported fields
}

func (ApiUploadFileRequest) Checksum

func (r ApiUploadFileRequest) Checksum(checksum string) ApiUploadFileRequest

The expected checksum of the file.

func (ApiUploadFileRequest) ChecksumAlgorithm

func (r ApiUploadFileRequest) ChecksumAlgorithm(checksumAlgorithm string) ApiUploadFileRequest

The algorithm to calculate the checksum of the file.

func (ApiUploadFileRequest) Content

Content type.

func (ApiUploadFileRequest) Execute

func (ApiUploadFileRequest) Filename

func (r ApiUploadFileRequest) Filename(filename *os.File) ApiUploadFileRequest

The name of the file to create. Caution: This will be normalized!

func (ApiUploadFileRequest) Tmpfilename

func (r ApiUploadFileRequest) Tmpfilename(tmpfilename string) ApiUploadFileRequest

The source file name. This parameter is usually set by the REST handler. You can only overwrite it when connecting to the trusted port on localhost.

type BasicAuth

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

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

type ClusterAPI added in v1.0.9

type ClusterAPI interface {

	/*
		GetClusterConfigNodes getClusterConfigNodes

		Corosync node list.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetClusterConfigNodesRequest
	*/
	GetClusterConfigNodes(ctx context.Context) ApiGetClusterConfigNodesRequest

	// GetClusterConfigNodesExecute executes the request
	//  @return GetClusterConfigNodes200Response
	GetClusterConfigNodesExecute(r ApiGetClusterConfigNodesRequest) (*GetClusterConfigNodes200Response, *http.Response, error)

	/*
		GetClusterNextid getClusterNextid

		Get next free VMID. Pass a VMID to assert that its free (at time of check).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetClusterNextidRequest
	*/
	GetClusterNextid(ctx context.Context) ApiGetClusterNextidRequest

	// GetClusterNextidExecute executes the request
	//  @return GetClusterNextid200Response
	GetClusterNextidExecute(r ApiGetClusterNextidRequest) (*GetClusterNextid200Response, *http.Response, error)

	/*
		GetClusterResources getClusterResources

		Resources index (cluster wide).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetClusterResourcesRequest
	*/
	GetClusterResources(ctx context.Context) ApiGetClusterResourcesRequest

	// GetClusterResourcesExecute executes the request
	//  @return GetClusterResources200Response
	GetClusterResourcesExecute(r ApiGetClusterResourcesRequest) (*GetClusterResources200Response, *http.Response, error)
}

type ClusterAPIService added in v1.0.9

type ClusterAPIService service

ClusterAPIService ClusterAPI service

func (*ClusterAPIService) GetClusterConfigNodes added in v1.0.9

func (a *ClusterAPIService) GetClusterConfigNodes(ctx context.Context) ApiGetClusterConfigNodesRequest

GetClusterConfigNodes getClusterConfigNodes

Corosync node list.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetClusterConfigNodesRequest

func (*ClusterAPIService) GetClusterConfigNodesExecute added in v1.0.9

Execute executes the request

@return GetClusterConfigNodes200Response

func (*ClusterAPIService) GetClusterNextid added in v1.0.9

GetClusterNextid getClusterNextid

Get next free VMID. Pass a VMID to assert that its free (at time of check).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetClusterNextidRequest

func (*ClusterAPIService) GetClusterNextidExecute added in v1.0.9

Execute executes the request

@return GetClusterNextid200Response

func (*ClusterAPIService) GetClusterResources added in v1.0.9

func (a *ClusterAPIService) GetClusterResources(ctx context.Context) ApiGetClusterResourcesRequest

GetClusterResources getClusterResources

Resources index (cluster wide).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetClusterResourcesRequest

func (*ClusterAPIService) GetClusterResourcesExecute added in v1.0.9

Execute executes the request

@return GetClusterResources200Response

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CreateAccessTicket200Response

type CreateAccessTicket200Response struct {
	Data   *CreateAccessTicket200ResponseData `json:"data,omitempty"`
	Errors []string                           `json:"errors,omitempty"`
}

CreateAccessTicket200Response struct for CreateAccessTicket200Response

func NewCreateAccessTicket200Response

func NewCreateAccessTicket200Response() *CreateAccessTicket200Response

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

func NewCreateAccessTicket200ResponseWithDefaults

func NewCreateAccessTicket200ResponseWithDefaults() *CreateAccessTicket200Response

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

func (*CreateAccessTicket200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CreateAccessTicket200Response) GetDataOk

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

func (*CreateAccessTicket200Response) GetErrors

func (o *CreateAccessTicket200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*CreateAccessTicket200Response) GetErrorsOk

func (o *CreateAccessTicket200Response) GetErrorsOk() ([]string, bool)

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

func (*CreateAccessTicket200Response) HasData

func (o *CreateAccessTicket200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*CreateAccessTicket200Response) HasErrors

func (o *CreateAccessTicket200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CreateAccessTicket200Response) MarshalJSON

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

func (*CreateAccessTicket200Response) SetData

SetData gets a reference to the given CreateAccessTicket200ResponseData and assigns it to the Data field.

func (*CreateAccessTicket200Response) SetErrors

func (o *CreateAccessTicket200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (CreateAccessTicket200Response) ToMap

func (o CreateAccessTicket200Response) ToMap() (map[string]interface{}, error)

type CreateAccessTicket200ResponseData

type CreateAccessTicket200ResponseData struct {
	CSRFPreventionToken *string `json:"CSRFPreventionToken,omitempty"`
	Clustername         *string `json:"clustername,omitempty"`
	Ticket              *string `json:"ticket,omitempty"`
	Username            *string `json:"username,omitempty"`
}

CreateAccessTicket200ResponseData struct for CreateAccessTicket200ResponseData

func NewCreateAccessTicket200ResponseData

func NewCreateAccessTicket200ResponseData() *CreateAccessTicket200ResponseData

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

func NewCreateAccessTicket200ResponseDataWithDefaults

func NewCreateAccessTicket200ResponseDataWithDefaults() *CreateAccessTicket200ResponseData

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

func (*CreateAccessTicket200ResponseData) GetCSRFPreventionToken

func (o *CreateAccessTicket200ResponseData) GetCSRFPreventionToken() string

GetCSRFPreventionToken returns the CSRFPreventionToken field value if set, zero value otherwise.

func (*CreateAccessTicket200ResponseData) GetCSRFPreventionTokenOk

func (o *CreateAccessTicket200ResponseData) GetCSRFPreventionTokenOk() (*string, bool)

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

func (*CreateAccessTicket200ResponseData) GetClustername

func (o *CreateAccessTicket200ResponseData) GetClustername() string

GetClustername returns the Clustername field value if set, zero value otherwise.

func (*CreateAccessTicket200ResponseData) GetClusternameOk

func (o *CreateAccessTicket200ResponseData) GetClusternameOk() (*string, bool)

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

func (*CreateAccessTicket200ResponseData) GetTicket

GetTicket returns the Ticket field value if set, zero value otherwise.

func (*CreateAccessTicket200ResponseData) GetTicketOk

func (o *CreateAccessTicket200ResponseData) GetTicketOk() (*string, bool)

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

func (*CreateAccessTicket200ResponseData) GetUsername

func (o *CreateAccessTicket200ResponseData) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*CreateAccessTicket200ResponseData) GetUsernameOk

func (o *CreateAccessTicket200ResponseData) GetUsernameOk() (*string, bool)

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

func (*CreateAccessTicket200ResponseData) HasCSRFPreventionToken

func (o *CreateAccessTicket200ResponseData) HasCSRFPreventionToken() bool

HasCSRFPreventionToken returns a boolean if a field has been set.

func (*CreateAccessTicket200ResponseData) HasClustername

func (o *CreateAccessTicket200ResponseData) HasClustername() bool

HasClustername returns a boolean if a field has been set.

func (*CreateAccessTicket200ResponseData) HasTicket

func (o *CreateAccessTicket200ResponseData) HasTicket() bool

HasTicket returns a boolean if a field has been set.

func (*CreateAccessTicket200ResponseData) HasUsername

func (o *CreateAccessTicket200ResponseData) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (CreateAccessTicket200ResponseData) MarshalJSON

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

func (*CreateAccessTicket200ResponseData) SetCSRFPreventionToken

func (o *CreateAccessTicket200ResponseData) SetCSRFPreventionToken(v string)

SetCSRFPreventionToken gets a reference to the given string and assigns it to the CSRFPreventionToken field.

func (*CreateAccessTicket200ResponseData) SetClustername

func (o *CreateAccessTicket200ResponseData) SetClustername(v string)

SetClustername gets a reference to the given string and assigns it to the Clustername field.

func (*CreateAccessTicket200ResponseData) SetTicket

func (o *CreateAccessTicket200ResponseData) SetTicket(v string)

SetTicket gets a reference to the given string and assigns it to the Ticket field.

func (*CreateAccessTicket200ResponseData) SetUsername

func (o *CreateAccessTicket200ResponseData) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (CreateAccessTicket200ResponseData) ToMap

func (o CreateAccessTicket200ResponseData) ToMap() (map[string]interface{}, error)

type CreateAccessTicketRequest

type CreateAccessTicketRequest struct {
	// This parameter is now ignored and assumed to be 1.
	NewFormat *int32 `json:"new-format,omitempty"`
	// One-time password for Two-factor authentication.
	Otp *string `json:"otp,omitempty"`
	// The secret password. This can also be a valid ticket.
	Password string `json:"password"`
	// Verify ticket, and check if user have access 'privs' on 'path'
	Path *string `json:"path,omitempty"`
	// Verify ticket, and check if user have access 'privs' on 'path'
	Privs *string `json:"privs,omitempty"`
	// You can optionally pass the realm using this parameter. Normally the realm is simply added to the username <username>@<relam>.
	Realm *string `json:"realm,omitempty"`
	// The signed TFA challenge string the user wants to respond to.
	TfaChallenge *string `json:"tfa-challenge,omitempty"`
	// User name
	Username string `json:"username"`
}

CreateAccessTicketRequest struct for CreateAccessTicketRequest

func NewCreateAccessTicketRequest

func NewCreateAccessTicketRequest(password string, username string) *CreateAccessTicketRequest

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

func NewCreateAccessTicketRequestWithDefaults

func NewCreateAccessTicketRequestWithDefaults() *CreateAccessTicketRequest

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

func (*CreateAccessTicketRequest) GetNewFormat

func (o *CreateAccessTicketRequest) GetNewFormat() int32

GetNewFormat returns the NewFormat field value if set, zero value otherwise.

func (*CreateAccessTicketRequest) GetNewFormatOk

func (o *CreateAccessTicketRequest) GetNewFormatOk() (*int32, bool)

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

func (*CreateAccessTicketRequest) GetOtp

func (o *CreateAccessTicketRequest) GetOtp() string

GetOtp returns the Otp field value if set, zero value otherwise.

func (*CreateAccessTicketRequest) GetOtpOk

func (o *CreateAccessTicketRequest) GetOtpOk() (*string, bool)

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

func (*CreateAccessTicketRequest) GetPassword

func (o *CreateAccessTicketRequest) GetPassword() string

GetPassword returns the Password field value

func (*CreateAccessTicketRequest) GetPasswordOk

func (o *CreateAccessTicketRequest) GetPasswordOk() (*string, bool)

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

func (*CreateAccessTicketRequest) GetPath

func (o *CreateAccessTicketRequest) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*CreateAccessTicketRequest) GetPathOk

func (o *CreateAccessTicketRequest) GetPathOk() (*string, bool)

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

func (*CreateAccessTicketRequest) GetPrivs

func (o *CreateAccessTicketRequest) GetPrivs() string

GetPrivs returns the Privs field value if set, zero value otherwise.

func (*CreateAccessTicketRequest) GetPrivsOk

func (o *CreateAccessTicketRequest) GetPrivsOk() (*string, bool)

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

func (*CreateAccessTicketRequest) GetRealm

func (o *CreateAccessTicketRequest) GetRealm() string

GetRealm returns the Realm field value if set, zero value otherwise.

func (*CreateAccessTicketRequest) GetRealmOk

func (o *CreateAccessTicketRequest) GetRealmOk() (*string, bool)

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

func (*CreateAccessTicketRequest) GetTfaChallenge

func (o *CreateAccessTicketRequest) GetTfaChallenge() string

GetTfaChallenge returns the TfaChallenge field value if set, zero value otherwise.

func (*CreateAccessTicketRequest) GetTfaChallengeOk

func (o *CreateAccessTicketRequest) GetTfaChallengeOk() (*string, bool)

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

func (*CreateAccessTicketRequest) GetUsername

func (o *CreateAccessTicketRequest) GetUsername() string

GetUsername returns the Username field value

func (*CreateAccessTicketRequest) GetUsernameOk

func (o *CreateAccessTicketRequest) GetUsernameOk() (*string, bool)

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

func (*CreateAccessTicketRequest) HasNewFormat

func (o *CreateAccessTicketRequest) HasNewFormat() bool

HasNewFormat returns a boolean if a field has been set.

func (*CreateAccessTicketRequest) HasOtp

func (o *CreateAccessTicketRequest) HasOtp() bool

HasOtp returns a boolean if a field has been set.

func (*CreateAccessTicketRequest) HasPath

func (o *CreateAccessTicketRequest) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*CreateAccessTicketRequest) HasPrivs

func (o *CreateAccessTicketRequest) HasPrivs() bool

HasPrivs returns a boolean if a field has been set.

func (*CreateAccessTicketRequest) HasRealm

func (o *CreateAccessTicketRequest) HasRealm() bool

HasRealm returns a boolean if a field has been set.

func (*CreateAccessTicketRequest) HasTfaChallenge

func (o *CreateAccessTicketRequest) HasTfaChallenge() bool

HasTfaChallenge returns a boolean if a field has been set.

func (CreateAccessTicketRequest) MarshalJSON

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

func (*CreateAccessTicketRequest) SetNewFormat

func (o *CreateAccessTicketRequest) SetNewFormat(v int32)

SetNewFormat gets a reference to the given int32 and assigns it to the NewFormat field.

func (*CreateAccessTicketRequest) SetOtp

func (o *CreateAccessTicketRequest) SetOtp(v string)

SetOtp gets a reference to the given string and assigns it to the Otp field.

func (*CreateAccessTicketRequest) SetPassword

func (o *CreateAccessTicketRequest) SetPassword(v string)

SetPassword sets field value

func (*CreateAccessTicketRequest) SetPath

func (o *CreateAccessTicketRequest) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*CreateAccessTicketRequest) SetPrivs

func (o *CreateAccessTicketRequest) SetPrivs(v string)

SetPrivs gets a reference to the given string and assigns it to the Privs field.

func (*CreateAccessTicketRequest) SetRealm

func (o *CreateAccessTicketRequest) SetRealm(v string)

SetRealm gets a reference to the given string and assigns it to the Realm field.

func (*CreateAccessTicketRequest) SetTfaChallenge

func (o *CreateAccessTicketRequest) SetTfaChallenge(v string)

SetTfaChallenge gets a reference to the given string and assigns it to the TfaChallenge field.

func (*CreateAccessTicketRequest) SetUsername

func (o *CreateAccessTicketRequest) SetUsername(v string)

SetUsername sets field value

func (CreateAccessTicketRequest) ToMap

func (o CreateAccessTicketRequest) ToMap() (map[string]interface{}, error)

func (*CreateAccessTicketRequest) UnmarshalJSON added in v1.0.9

func (o *CreateAccessTicketRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateContainerRequest

type CreateContainerRequest struct {
	// OS architecture type.
	Arch *string `json:"arch,omitempty"`
	// Override I/O bandwidth limit (in KiB/s).
	Bwlimit *float32 `json:"bwlimit,omitempty"`
	// Console mode. By default, the console command tries to open a connection to one of the available tty devices. By setting cmode to 'console' it tries to attach to /dev/console instead. If you set cmode to 'shell', it simply invokes a shell inside the container (no login).
	Cmode *string `json:"cmode,omitempty"`
	// Attach a console device (/dev/console) to the container.
	Console *int32 `json:"console,omitempty"`
	// The number of cores assigned to the container. A container can use all available cores by default.
	Cores *int64 `json:"cores,omitempty"`
	// Limit of CPU usage.  NOTE: If the computer has 2 CPUs, it has a total of '2' CPU time. Value '0' indicates no CPU limit.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a container, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// Try to be more verbose. For now this only enables debug log-level on start.
	Debug *int32 `json:"debug,omitempty"`
	// Description for the Container. Shown in the web-interface CT's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// Device to pass through to the container
	Dev0 *string `json:"dev0,omitempty"`
	// Device to pass through to the container
	Dev1 *string `json:"dev1,omitempty"`
	// Device to pass through to the container
	Dev2 *string `json:"dev2,omitempty"`
	// Device to pass through to the container
	Dev3 *string `json:"dev3,omitempty"`
	// Device to pass through to the container
	Dev4 *string `json:"dev4,omitempty"`
	// Device to pass through to the container
	Dev5 *string `json:"dev5,omitempty"`
	// Device to pass through to the container
	Dev6 *string `json:"dev6,omitempty"`
	// Device to pass through to the container
	Dev7 *string `json:"dev7,omitempty"`
	// Device to pass through to the container
	Dev8 *string `json:"dev8,omitempty"`
	// Device to pass through to the container
	Dev9 *string `json:"dev9,omitempty"`
	// Device to pass through to the container
	Dev10 *string `json:"dev10,omitempty"`
	// Device to pass through to the container
	Dev11 *string `json:"dev11,omitempty"`
	// Device to pass through to the container
	Dev12 *string `json:"dev12,omitempty"`
	// Device to pass through to the container
	Dev13 *string `json:"dev13,omitempty"`
	// Device to pass through to the container
	Dev14 *string `json:"dev14,omitempty"`
	// Device to pass through to the container
	Dev15 *string `json:"dev15,omitempty"`
	// Device to pass through to the container
	Dev16 *string `json:"dev16,omitempty"`
	// Device to pass through to the container
	Dev17 *string `json:"dev17,omitempty"`
	// Device to pass through to the container
	Dev18 *string `json:"dev18,omitempty"`
	// Device to pass through to the container
	Dev19 *string `json:"dev19,omitempty"`
	// Device to pass through to the container
	Dev20 *string `json:"dev20,omitempty"`
	// Device to pass through to the container
	Dev21 *string `json:"dev21,omitempty"`
	// Device to pass through to the container
	Dev22 *string `json:"dev22,omitempty"`
	// Device to pass through to the container
	Dev23 *string `json:"dev23,omitempty"`
	// Device to pass through to the container
	Dev24 *string `json:"dev24,omitempty"`
	// Device to pass through to the container
	Dev25 *string `json:"dev25,omitempty"`
	// Device to pass through to the container
	Dev26 *string `json:"dev26,omitempty"`
	// Device to pass through to the container
	Dev27 *string `json:"dev27,omitempty"`
	// Device to pass through to the container
	Dev28 *string `json:"dev28,omitempty"`
	// Device to pass through to the container
	Dev29 *string `json:"dev29,omitempty"`
	// Allow containers access to advanced features.
	Features *string `json:"features,omitempty"`
	// Allow to overwrite existing container.
	Force *int32 `json:"force,omitempty"`
	// Script that will be exectued during various steps in the containers lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Set a host name for the container.
	Hostname *string `json:"hostname,omitempty"`
	// Ignore errors when extracting the template.
	IgnoreUnpackErrors *int32 `json:"ignore-unpack-errors,omitempty"`
	// Lock/unlock the container.
	Lock *string `json:"lock,omitempty"`
	// Amount of RAM for the container in MB.
	Memory *int64 `json:"memory,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp0 *string `json:"mp0,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp1 *string `json:"mp1,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp2 *string `json:"mp2,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp3 *string `json:"mp3,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp4 *string `json:"mp4,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp5 *string `json:"mp5,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp6 *string `json:"mp6,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp7 *string `json:"mp7,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp8 *string `json:"mp8,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp9 *string `json:"mp9,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp10 *string `json:"mp10,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp11 *string `json:"mp11,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp12 *string `json:"mp12,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp13 *string `json:"mp13,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp14 *string `json:"mp14,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp15 *string `json:"mp15,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp16 *string `json:"mp16,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp17 *string `json:"mp17,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp18 *string `json:"mp18,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp19 *string `json:"mp19,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp20 *string `json:"mp20,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp21 *string `json:"mp21,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp22 *string `json:"mp22,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp23 *string `json:"mp23,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp24 *string `json:"mp24,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp25 *string `json:"mp25,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp26 *string `json:"mp26,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp27 *string `json:"mp27,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp28 *string `json:"mp28,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp29 *string `json:"mp29,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp30 *string `json:"mp30,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp31 *string `json:"mp31,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp32 *string `json:"mp32,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp33 *string `json:"mp33,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp34 *string `json:"mp34,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp35 *string `json:"mp35,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp36 *string `json:"mp36,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp37 *string `json:"mp37,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp38 *string `json:"mp38,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp39 *string `json:"mp39,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp40 *string `json:"mp40,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp41 *string `json:"mp41,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp42 *string `json:"mp42,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp43 *string `json:"mp43,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp44 *string `json:"mp44,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp45 *string `json:"mp45,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp46 *string `json:"mp46,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp47 *string `json:"mp47,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp48 *string `json:"mp48,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp49 *string `json:"mp49,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp50 *string `json:"mp50,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp51 *string `json:"mp51,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp52 *string `json:"mp52,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp53 *string `json:"mp53,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp54 *string `json:"mp54,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp55 *string `json:"mp55,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp56 *string `json:"mp56,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp57 *string `json:"mp57,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp58 *string `json:"mp58,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp59 *string `json:"mp59,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp60 *string `json:"mp60,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp61 *string `json:"mp61,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp62 *string `json:"mp62,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp63 *string `json:"mp63,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp64 *string `json:"mp64,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp65 *string `json:"mp65,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp66 *string `json:"mp66,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp67 *string `json:"mp67,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp68 *string `json:"mp68,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp69 *string `json:"mp69,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp70 *string `json:"mp70,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp71 *string `json:"mp71,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp72 *string `json:"mp72,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp73 *string `json:"mp73,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp74 *string `json:"mp74,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp75 *string `json:"mp75,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp76 *string `json:"mp76,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp77 *string `json:"mp77,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp78 *string `json:"mp78,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp79 *string `json:"mp79,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp80 *string `json:"mp80,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp81 *string `json:"mp81,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp82 *string `json:"mp82,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp83 *string `json:"mp83,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp84 *string `json:"mp84,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp85 *string `json:"mp85,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp86 *string `json:"mp86,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp87 *string `json:"mp87,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp88 *string `json:"mp88,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp89 *string `json:"mp89,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp90 *string `json:"mp90,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp91 *string `json:"mp91,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp92 *string `json:"mp92,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp93 *string `json:"mp93,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp94 *string `json:"mp94,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp95 *string `json:"mp95,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp96 *string `json:"mp96,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp97 *string `json:"mp97,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp98 *string `json:"mp98,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp99 *string `json:"mp99,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp100 *string `json:"mp100,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp101 *string `json:"mp101,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp102 *string `json:"mp102,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp103 *string `json:"mp103,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp104 *string `json:"mp104,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp105 *string `json:"mp105,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp106 *string `json:"mp106,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp107 *string `json:"mp107,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp108 *string `json:"mp108,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp109 *string `json:"mp109,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp110 *string `json:"mp110,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp111 *string `json:"mp111,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp112 *string `json:"mp112,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp113 *string `json:"mp113,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp114 *string `json:"mp114,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp115 *string `json:"mp115,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp116 *string `json:"mp116,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp117 *string `json:"mp117,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp118 *string `json:"mp118,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp119 *string `json:"mp119,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp120 *string `json:"mp120,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp121 *string `json:"mp121,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp122 *string `json:"mp122,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp123 *string `json:"mp123,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp124 *string `json:"mp124,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp125 *string `json:"mp125,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp126 *string `json:"mp126,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp127 *string `json:"mp127,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp128 *string `json:"mp128,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp129 *string `json:"mp129,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp130 *string `json:"mp130,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp131 *string `json:"mp131,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp132 *string `json:"mp132,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp133 *string `json:"mp133,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp134 *string `json:"mp134,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp135 *string `json:"mp135,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp136 *string `json:"mp136,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp137 *string `json:"mp137,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp138 *string `json:"mp138,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp139 *string `json:"mp139,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp140 *string `json:"mp140,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp141 *string `json:"mp141,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp142 *string `json:"mp142,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp143 *string `json:"mp143,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp144 *string `json:"mp144,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp145 *string `json:"mp145,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp146 *string `json:"mp146,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp147 *string `json:"mp147,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp148 *string `json:"mp148,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp149 *string `json:"mp149,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp150 *string `json:"mp150,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp151 *string `json:"mp151,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp152 *string `json:"mp152,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp153 *string `json:"mp153,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp154 *string `json:"mp154,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp155 *string `json:"mp155,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp156 *string `json:"mp156,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp157 *string `json:"mp157,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp158 *string `json:"mp158,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp159 *string `json:"mp159,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp160 *string `json:"mp160,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp161 *string `json:"mp161,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp162 *string `json:"mp162,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp163 *string `json:"mp163,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp164 *string `json:"mp164,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp165 *string `json:"mp165,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp166 *string `json:"mp166,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp167 *string `json:"mp167,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp168 *string `json:"mp168,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp169 *string `json:"mp169,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp170 *string `json:"mp170,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp171 *string `json:"mp171,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp172 *string `json:"mp172,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp173 *string `json:"mp173,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp174 *string `json:"mp174,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp175 *string `json:"mp175,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp176 *string `json:"mp176,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp177 *string `json:"mp177,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp178 *string `json:"mp178,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp179 *string `json:"mp179,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp180 *string `json:"mp180,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp181 *string `json:"mp181,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp182 *string `json:"mp182,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp183 *string `json:"mp183,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp184 *string `json:"mp184,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp185 *string `json:"mp185,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp186 *string `json:"mp186,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp187 *string `json:"mp187,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp188 *string `json:"mp188,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp189 *string `json:"mp189,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp190 *string `json:"mp190,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp191 *string `json:"mp191,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp192 *string `json:"mp192,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp193 *string `json:"mp193,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp194 *string `json:"mp194,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp195 *string `json:"mp195,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp196 *string `json:"mp196,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp197 *string `json:"mp197,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp198 *string `json:"mp198,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp199 *string `json:"mp199,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp200 *string `json:"mp200,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp201 *string `json:"mp201,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp202 *string `json:"mp202,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp203 *string `json:"mp203,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp204 *string `json:"mp204,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp205 *string `json:"mp205,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp206 *string `json:"mp206,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp207 *string `json:"mp207,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp208 *string `json:"mp208,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp209 *string `json:"mp209,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp210 *string `json:"mp210,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp211 *string `json:"mp211,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp212 *string `json:"mp212,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp213 *string `json:"mp213,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp214 *string `json:"mp214,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp215 *string `json:"mp215,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp216 *string `json:"mp216,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp217 *string `json:"mp217,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp218 *string `json:"mp218,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp219 *string `json:"mp219,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp220 *string `json:"mp220,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp221 *string `json:"mp221,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp222 *string `json:"mp222,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp223 *string `json:"mp223,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp224 *string `json:"mp224,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp225 *string `json:"mp225,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp226 *string `json:"mp226,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp227 *string `json:"mp227,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp228 *string `json:"mp228,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp229 *string `json:"mp229,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp230 *string `json:"mp230,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp231 *string `json:"mp231,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp232 *string `json:"mp232,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp233 *string `json:"mp233,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp234 *string `json:"mp234,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp235 *string `json:"mp235,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp236 *string `json:"mp236,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp237 *string `json:"mp237,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp238 *string `json:"mp238,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp239 *string `json:"mp239,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp240 *string `json:"mp240,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp241 *string `json:"mp241,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp242 *string `json:"mp242,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp243 *string `json:"mp243,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp244 *string `json:"mp244,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp245 *string `json:"mp245,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp246 *string `json:"mp246,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp247 *string `json:"mp247,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp248 *string `json:"mp248,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp249 *string `json:"mp249,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp250 *string `json:"mp250,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp251 *string `json:"mp251,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp252 *string `json:"mp252,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp253 *string `json:"mp253,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp254 *string `json:"mp254,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp255 *string `json:"mp255,omitempty"`
	// Sets DNS server IP address for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specifies network interfaces for the container.
	Net0 *string `json:"net0,omitempty"`
	// Specifies network interfaces for the container.
	Net1 *string `json:"net1,omitempty"`
	// Specifies network interfaces for the container.
	Net2 *string `json:"net2,omitempty"`
	// Specifies network interfaces for the container.
	Net3 *string `json:"net3,omitempty"`
	// Specifies network interfaces for the container.
	Net4 *string `json:"net4,omitempty"`
	// Specifies network interfaces for the container.
	Net5 *string `json:"net5,omitempty"`
	// Specifies network interfaces for the container.
	Net6 *string `json:"net6,omitempty"`
	// Specifies network interfaces for the container.
	Net7 *string `json:"net7,omitempty"`
	// Specifies network interfaces for the container.
	Net8 *string `json:"net8,omitempty"`
	// Specifies network interfaces for the container.
	Net9 *string `json:"net9,omitempty"`
	// Specifies network interfaces for the container.
	Net10 *string `json:"net10,omitempty"`
	// Specifies network interfaces for the container.
	Net11 *string `json:"net11,omitempty"`
	// Specifies network interfaces for the container.
	Net12 *string `json:"net12,omitempty"`
	// Specifies network interfaces for the container.
	Net13 *string `json:"net13,omitempty"`
	// Specifies network interfaces for the container.
	Net14 *string `json:"net14,omitempty"`
	// Specifies network interfaces for the container.
	Net15 *string `json:"net15,omitempty"`
	// Specifies network interfaces for the container.
	Net16 *string `json:"net16,omitempty"`
	// Specifies network interfaces for the container.
	Net17 *string `json:"net17,omitempty"`
	// Specifies network interfaces for the container.
	Net18 *string `json:"net18,omitempty"`
	// Specifies network interfaces for the container.
	Net19 *string `json:"net19,omitempty"`
	// Specifies network interfaces for the container.
	Net20 *string `json:"net20,omitempty"`
	// Specifies network interfaces for the container.
	Net21 *string `json:"net21,omitempty"`
	// Specifies network interfaces for the container.
	Net22 *string `json:"net22,omitempty"`
	// Specifies network interfaces for the container.
	Net23 *string `json:"net23,omitempty"`
	// Specifies network interfaces for the container.
	Net24 *string `json:"net24,omitempty"`
	// Specifies network interfaces for the container.
	Net25 *string `json:"net25,omitempty"`
	// Specifies network interfaces for the container.
	Net26 *string `json:"net26,omitempty"`
	// Specifies network interfaces for the container.
	Net27 *string `json:"net27,omitempty"`
	// Specifies network interfaces for the container.
	Net28 *string `json:"net28,omitempty"`
	// Specifies network interfaces for the container.
	Net29 *string `json:"net29,omitempty"`
	// Specifies network interfaces for the container.
	Net30 *string `json:"net30,omitempty"`
	// Specifies network interfaces for the container.
	Net31 *string `json:"net31,omitempty"`
	// Specifies whether a container will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// The OS template or backup file.
	Ostemplate string `json:"ostemplate"`
	// OS type. This is used to setup configuration inside the container, and corresponds to lxc setup scripts in /usr/share/lxc/config/<ostype>.common.conf. Value 'unmanaged' can be used to skip and OS specific setup.
	Ostype *string `json:"ostype,omitempty"`
	// Sets root password inside container.
	Password *string `json:"password,omitempty"`
	// Add the VM to the specified pool.
	Pool *string `json:"pool,omitempty"`
	// Sets the protection flag of the container. This will prevent the CT or CT's disk remove/update operation.
	Protection *int32 `json:"protection,omitempty"`
	// Mark this as restore task.
	Restore *int32 `json:"restore,omitempty"`
	// Use volume as container root.
	Rootfs *string `json:"rootfs,omitempty"`
	// Sets DNS search domains for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Setup public SSH keys (one key per line, OpenSSH format).
	SshPublicKeys *string `json:"ssh-public-keys,omitempty"`
	// Start the CT after its creation finished successfully.
	Start *int32 `json:"start,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Default Storage.
	Storage *string `json:"storage,omitempty"`
	// Amount of SWAP for the container in MB.
	Swap *int64 `json:"swap,omitempty"`
	// Tags of the Container. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Time zone to use in the container. If option isn't set, then nothing will be done. Can be set to 'host' to match the host time zone, or an arbitrary time zone option from /usr/share/zoneinfo/zone.tab
	Timezone *string `json:"timezone,omitempty"`
	// Specify the number of tty available to the container
	Tty *int64 `json:"tty,omitempty"`
	// Assign a unique random ethernet address.
	Unique *int32 `json:"unique,omitempty"`
	// Makes the container run as unprivileged user. (Should not be modified manually.)
	Unprivileged *int32 `json:"unprivileged,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
	// The (unique) ID of the VM.
	Vmid int64 `json:"vmid"`
}

CreateContainerRequest struct for CreateContainerRequest

func NewCreateContainerRequest

func NewCreateContainerRequest(ostemplate string, vmid int64) *CreateContainerRequest

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

func NewCreateContainerRequestWithDefaults

func NewCreateContainerRequestWithDefaults() *CreateContainerRequest

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

func (*CreateContainerRequest) GetArch

func (o *CreateContainerRequest) GetArch() string

GetArch returns the Arch field value if set, zero value otherwise.

func (*CreateContainerRequest) GetArchOk

func (o *CreateContainerRequest) GetArchOk() (*string, bool)

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

func (*CreateContainerRequest) GetBwlimit

func (o *CreateContainerRequest) GetBwlimit() float32

GetBwlimit returns the Bwlimit field value if set, zero value otherwise.

func (*CreateContainerRequest) GetBwlimitOk

func (o *CreateContainerRequest) GetBwlimitOk() (*float32, bool)

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

func (*CreateContainerRequest) GetCmode

func (o *CreateContainerRequest) GetCmode() string

GetCmode returns the Cmode field value if set, zero value otherwise.

func (*CreateContainerRequest) GetCmodeOk

func (o *CreateContainerRequest) GetCmodeOk() (*string, bool)

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

func (*CreateContainerRequest) GetConsole

func (o *CreateContainerRequest) GetConsole() int32

GetConsole returns the Console field value if set, zero value otherwise.

func (*CreateContainerRequest) GetConsoleOk

func (o *CreateContainerRequest) GetConsoleOk() (*int32, bool)

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

func (*CreateContainerRequest) GetCores

func (o *CreateContainerRequest) GetCores() int64

GetCores returns the Cores field value if set, zero value otherwise.

func (*CreateContainerRequest) GetCoresOk

func (o *CreateContainerRequest) GetCoresOk() (*int64, bool)

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

func (*CreateContainerRequest) GetCpulimit

func (o *CreateContainerRequest) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*CreateContainerRequest) GetCpulimitOk

func (o *CreateContainerRequest) GetCpulimitOk() (*float32, bool)

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

func (*CreateContainerRequest) GetCpuunits

func (o *CreateContainerRequest) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*CreateContainerRequest) GetCpuunitsOk

func (o *CreateContainerRequest) GetCpuunitsOk() (*int64, bool)

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

func (*CreateContainerRequest) GetDebug

func (o *CreateContainerRequest) GetDebug() int32

GetDebug returns the Debug field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDebugOk

func (o *CreateContainerRequest) GetDebugOk() (*int32, bool)

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

func (*CreateContainerRequest) GetDescription

func (o *CreateContainerRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDescriptionOk

func (o *CreateContainerRequest) GetDescriptionOk() (*string, bool)

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

func (*CreateContainerRequest) GetDev0 added in v1.0.4

func (o *CreateContainerRequest) GetDev0() string

GetDev0 returns the Dev0 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev0Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev0Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev1 added in v1.0.4

func (o *CreateContainerRequest) GetDev1() string

GetDev1 returns the Dev1 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev10 added in v1.0.4

func (o *CreateContainerRequest) GetDev10() string

GetDev10 returns the Dev10 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev10Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev10Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev11 added in v1.0.4

func (o *CreateContainerRequest) GetDev11() string

GetDev11 returns the Dev11 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev11Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev11Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev12 added in v1.0.4

func (o *CreateContainerRequest) GetDev12() string

GetDev12 returns the Dev12 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev12Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev12Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev13 added in v1.0.4

func (o *CreateContainerRequest) GetDev13() string

GetDev13 returns the Dev13 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev13Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev13Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev14 added in v1.0.4

func (o *CreateContainerRequest) GetDev14() string

GetDev14 returns the Dev14 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev14Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev14Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev15 added in v1.0.4

func (o *CreateContainerRequest) GetDev15() string

GetDev15 returns the Dev15 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev15Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev15Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev16 added in v1.0.4

func (o *CreateContainerRequest) GetDev16() string

GetDev16 returns the Dev16 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev16Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev16Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev17 added in v1.0.4

func (o *CreateContainerRequest) GetDev17() string

GetDev17 returns the Dev17 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev17Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev17Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev18 added in v1.0.4

func (o *CreateContainerRequest) GetDev18() string

GetDev18 returns the Dev18 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev18Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev18Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev19 added in v1.0.4

func (o *CreateContainerRequest) GetDev19() string

GetDev19 returns the Dev19 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev19Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev19Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev1Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev1Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev2 added in v1.0.4

func (o *CreateContainerRequest) GetDev2() string

GetDev2 returns the Dev2 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev20 added in v1.0.4

func (o *CreateContainerRequest) GetDev20() string

GetDev20 returns the Dev20 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev20Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev20Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev21 added in v1.0.4

func (o *CreateContainerRequest) GetDev21() string

GetDev21 returns the Dev21 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev21Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev21Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev22 added in v1.0.4

func (o *CreateContainerRequest) GetDev22() string

GetDev22 returns the Dev22 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev22Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev22Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev23 added in v1.0.4

func (o *CreateContainerRequest) GetDev23() string

GetDev23 returns the Dev23 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev23Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev23Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev24 added in v1.0.4

func (o *CreateContainerRequest) GetDev24() string

GetDev24 returns the Dev24 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev24Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev24Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev25 added in v1.0.4

func (o *CreateContainerRequest) GetDev25() string

GetDev25 returns the Dev25 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev25Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev25Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev26 added in v1.0.4

func (o *CreateContainerRequest) GetDev26() string

GetDev26 returns the Dev26 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev26Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev26Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev27 added in v1.0.4

func (o *CreateContainerRequest) GetDev27() string

GetDev27 returns the Dev27 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev27Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev27Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev28 added in v1.0.4

func (o *CreateContainerRequest) GetDev28() string

GetDev28 returns the Dev28 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev28Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev28Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev29 added in v1.0.4

func (o *CreateContainerRequest) GetDev29() string

GetDev29 returns the Dev29 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev29Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev29Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev2Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev2Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev3 added in v1.0.4

func (o *CreateContainerRequest) GetDev3() string

GetDev3 returns the Dev3 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev3Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev3Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev4 added in v1.0.4

func (o *CreateContainerRequest) GetDev4() string

GetDev4 returns the Dev4 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev4Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev4Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev5 added in v1.0.4

func (o *CreateContainerRequest) GetDev5() string

GetDev5 returns the Dev5 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev5Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev5Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev6 added in v1.0.4

func (o *CreateContainerRequest) GetDev6() string

GetDev6 returns the Dev6 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev6Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev6Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev7 added in v1.0.4

func (o *CreateContainerRequest) GetDev7() string

GetDev7 returns the Dev7 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev7Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev7Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev8 added in v1.0.4

func (o *CreateContainerRequest) GetDev8() string

GetDev8 returns the Dev8 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev8Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev8Ok() (*string, bool)

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

func (*CreateContainerRequest) GetDev9 added in v1.0.4

func (o *CreateContainerRequest) GetDev9() string

GetDev9 returns the Dev9 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetDev9Ok added in v1.0.4

func (o *CreateContainerRequest) GetDev9Ok() (*string, bool)

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

func (*CreateContainerRequest) GetFeatures

func (o *CreateContainerRequest) GetFeatures() string

GetFeatures returns the Features field value if set, zero value otherwise.

func (*CreateContainerRequest) GetFeaturesOk

func (o *CreateContainerRequest) GetFeaturesOk() (*string, bool)

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

func (*CreateContainerRequest) GetForce

func (o *CreateContainerRequest) GetForce() int32

GetForce returns the Force field value if set, zero value otherwise.

func (*CreateContainerRequest) GetForceOk

func (o *CreateContainerRequest) GetForceOk() (*int32, bool)

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

func (*CreateContainerRequest) GetHookscript

func (o *CreateContainerRequest) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*CreateContainerRequest) GetHookscriptOk

func (o *CreateContainerRequest) GetHookscriptOk() (*string, bool)

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

func (*CreateContainerRequest) GetHostname

func (o *CreateContainerRequest) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*CreateContainerRequest) GetHostnameOk

func (o *CreateContainerRequest) GetHostnameOk() (*string, bool)

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

func (*CreateContainerRequest) GetIgnoreUnpackErrors

func (o *CreateContainerRequest) GetIgnoreUnpackErrors() int32

GetIgnoreUnpackErrors returns the IgnoreUnpackErrors field value if set, zero value otherwise.

func (*CreateContainerRequest) GetIgnoreUnpackErrorsOk

func (o *CreateContainerRequest) GetIgnoreUnpackErrorsOk() (*int32, bool)

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

func (*CreateContainerRequest) GetLock

func (o *CreateContainerRequest) GetLock() string

GetLock returns the Lock field value if set, zero value otherwise.

func (*CreateContainerRequest) GetLockOk

func (o *CreateContainerRequest) GetLockOk() (*string, bool)

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

func (*CreateContainerRequest) GetMemory

func (o *CreateContainerRequest) GetMemory() int64

GetMemory returns the Memory field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMemoryOk

func (o *CreateContainerRequest) GetMemoryOk() (*int64, bool)

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

func (*CreateContainerRequest) GetMp0

func (o *CreateContainerRequest) GetMp0() string

GetMp0 returns the Mp0 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp0Ok

func (o *CreateContainerRequest) GetMp0Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp1

func (o *CreateContainerRequest) GetMp1() string

GetMp1 returns the Mp1 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp10

func (o *CreateContainerRequest) GetMp10() string

GetMp10 returns the Mp10 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp100

func (o *CreateContainerRequest) GetMp100() string

GetMp100 returns the Mp100 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp100Ok

func (o *CreateContainerRequest) GetMp100Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp101

func (o *CreateContainerRequest) GetMp101() string

GetMp101 returns the Mp101 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp101Ok

func (o *CreateContainerRequest) GetMp101Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp102

func (o *CreateContainerRequest) GetMp102() string

GetMp102 returns the Mp102 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp102Ok

func (o *CreateContainerRequest) GetMp102Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp103

func (o *CreateContainerRequest) GetMp103() string

GetMp103 returns the Mp103 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp103Ok

func (o *CreateContainerRequest) GetMp103Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp104

func (o *CreateContainerRequest) GetMp104() string

GetMp104 returns the Mp104 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp104Ok

func (o *CreateContainerRequest) GetMp104Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp105

func (o *CreateContainerRequest) GetMp105() string

GetMp105 returns the Mp105 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp105Ok

func (o *CreateContainerRequest) GetMp105Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp106

func (o *CreateContainerRequest) GetMp106() string

GetMp106 returns the Mp106 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp106Ok

func (o *CreateContainerRequest) GetMp106Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp107

func (o *CreateContainerRequest) GetMp107() string

GetMp107 returns the Mp107 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp107Ok

func (o *CreateContainerRequest) GetMp107Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp108

func (o *CreateContainerRequest) GetMp108() string

GetMp108 returns the Mp108 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp108Ok

func (o *CreateContainerRequest) GetMp108Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp109

func (o *CreateContainerRequest) GetMp109() string

GetMp109 returns the Mp109 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp109Ok

func (o *CreateContainerRequest) GetMp109Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp10Ok

func (o *CreateContainerRequest) GetMp10Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp11

func (o *CreateContainerRequest) GetMp11() string

GetMp11 returns the Mp11 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp110

func (o *CreateContainerRequest) GetMp110() string

GetMp110 returns the Mp110 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp110Ok

func (o *CreateContainerRequest) GetMp110Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp111

func (o *CreateContainerRequest) GetMp111() string

GetMp111 returns the Mp111 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp111Ok

func (o *CreateContainerRequest) GetMp111Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp112

func (o *CreateContainerRequest) GetMp112() string

GetMp112 returns the Mp112 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp112Ok

func (o *CreateContainerRequest) GetMp112Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp113

func (o *CreateContainerRequest) GetMp113() string

GetMp113 returns the Mp113 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp113Ok

func (o *CreateContainerRequest) GetMp113Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp114

func (o *CreateContainerRequest) GetMp114() string

GetMp114 returns the Mp114 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp114Ok

func (o *CreateContainerRequest) GetMp114Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp115

func (o *CreateContainerRequest) GetMp115() string

GetMp115 returns the Mp115 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp115Ok

func (o *CreateContainerRequest) GetMp115Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp116

func (o *CreateContainerRequest) GetMp116() string

GetMp116 returns the Mp116 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp116Ok

func (o *CreateContainerRequest) GetMp116Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp117

func (o *CreateContainerRequest) GetMp117() string

GetMp117 returns the Mp117 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp117Ok

func (o *CreateContainerRequest) GetMp117Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp118

func (o *CreateContainerRequest) GetMp118() string

GetMp118 returns the Mp118 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp118Ok

func (o *CreateContainerRequest) GetMp118Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp119

func (o *CreateContainerRequest) GetMp119() string

GetMp119 returns the Mp119 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp119Ok

func (o *CreateContainerRequest) GetMp119Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp11Ok

func (o *CreateContainerRequest) GetMp11Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp12

func (o *CreateContainerRequest) GetMp12() string

GetMp12 returns the Mp12 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp120

func (o *CreateContainerRequest) GetMp120() string

GetMp120 returns the Mp120 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp120Ok

func (o *CreateContainerRequest) GetMp120Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp121

func (o *CreateContainerRequest) GetMp121() string

GetMp121 returns the Mp121 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp121Ok

func (o *CreateContainerRequest) GetMp121Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp122

func (o *CreateContainerRequest) GetMp122() string

GetMp122 returns the Mp122 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp122Ok

func (o *CreateContainerRequest) GetMp122Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp123

func (o *CreateContainerRequest) GetMp123() string

GetMp123 returns the Mp123 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp123Ok

func (o *CreateContainerRequest) GetMp123Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp124

func (o *CreateContainerRequest) GetMp124() string

GetMp124 returns the Mp124 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp124Ok

func (o *CreateContainerRequest) GetMp124Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp125

func (o *CreateContainerRequest) GetMp125() string

GetMp125 returns the Mp125 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp125Ok

func (o *CreateContainerRequest) GetMp125Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp126

func (o *CreateContainerRequest) GetMp126() string

GetMp126 returns the Mp126 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp126Ok

func (o *CreateContainerRequest) GetMp126Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp127

func (o *CreateContainerRequest) GetMp127() string

GetMp127 returns the Mp127 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp127Ok

func (o *CreateContainerRequest) GetMp127Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp128

func (o *CreateContainerRequest) GetMp128() string

GetMp128 returns the Mp128 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp128Ok

func (o *CreateContainerRequest) GetMp128Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp129

func (o *CreateContainerRequest) GetMp129() string

GetMp129 returns the Mp129 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp129Ok

func (o *CreateContainerRequest) GetMp129Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp12Ok

func (o *CreateContainerRequest) GetMp12Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp13

func (o *CreateContainerRequest) GetMp13() string

GetMp13 returns the Mp13 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp130

func (o *CreateContainerRequest) GetMp130() string

GetMp130 returns the Mp130 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp130Ok

func (o *CreateContainerRequest) GetMp130Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp131

func (o *CreateContainerRequest) GetMp131() string

GetMp131 returns the Mp131 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp131Ok

func (o *CreateContainerRequest) GetMp131Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp132

func (o *CreateContainerRequest) GetMp132() string

GetMp132 returns the Mp132 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp132Ok

func (o *CreateContainerRequest) GetMp132Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp133

func (o *CreateContainerRequest) GetMp133() string

GetMp133 returns the Mp133 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp133Ok

func (o *CreateContainerRequest) GetMp133Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp134

func (o *CreateContainerRequest) GetMp134() string

GetMp134 returns the Mp134 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp134Ok

func (o *CreateContainerRequest) GetMp134Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp135

func (o *CreateContainerRequest) GetMp135() string

GetMp135 returns the Mp135 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp135Ok

func (o *CreateContainerRequest) GetMp135Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp136

func (o *CreateContainerRequest) GetMp136() string

GetMp136 returns the Mp136 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp136Ok

func (o *CreateContainerRequest) GetMp136Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp137

func (o *CreateContainerRequest) GetMp137() string

GetMp137 returns the Mp137 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp137Ok

func (o *CreateContainerRequest) GetMp137Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp138

func (o *CreateContainerRequest) GetMp138() string

GetMp138 returns the Mp138 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp138Ok

func (o *CreateContainerRequest) GetMp138Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp139

func (o *CreateContainerRequest) GetMp139() string

GetMp139 returns the Mp139 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp139Ok

func (o *CreateContainerRequest) GetMp139Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp13Ok

func (o *CreateContainerRequest) GetMp13Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp14

func (o *CreateContainerRequest) GetMp14() string

GetMp14 returns the Mp14 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp140

func (o *CreateContainerRequest) GetMp140() string

GetMp140 returns the Mp140 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp140Ok

func (o *CreateContainerRequest) GetMp140Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp141

func (o *CreateContainerRequest) GetMp141() string

GetMp141 returns the Mp141 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp141Ok

func (o *CreateContainerRequest) GetMp141Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp142

func (o *CreateContainerRequest) GetMp142() string

GetMp142 returns the Mp142 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp142Ok

func (o *CreateContainerRequest) GetMp142Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp143

func (o *CreateContainerRequest) GetMp143() string

GetMp143 returns the Mp143 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp143Ok

func (o *CreateContainerRequest) GetMp143Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp144

func (o *CreateContainerRequest) GetMp144() string

GetMp144 returns the Mp144 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp144Ok

func (o *CreateContainerRequest) GetMp144Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp145

func (o *CreateContainerRequest) GetMp145() string

GetMp145 returns the Mp145 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp145Ok

func (o *CreateContainerRequest) GetMp145Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp146

func (o *CreateContainerRequest) GetMp146() string

GetMp146 returns the Mp146 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp146Ok

func (o *CreateContainerRequest) GetMp146Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp147

func (o *CreateContainerRequest) GetMp147() string

GetMp147 returns the Mp147 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp147Ok

func (o *CreateContainerRequest) GetMp147Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp148

func (o *CreateContainerRequest) GetMp148() string

GetMp148 returns the Mp148 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp148Ok

func (o *CreateContainerRequest) GetMp148Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp149

func (o *CreateContainerRequest) GetMp149() string

GetMp149 returns the Mp149 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp149Ok

func (o *CreateContainerRequest) GetMp149Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp14Ok

func (o *CreateContainerRequest) GetMp14Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp15

func (o *CreateContainerRequest) GetMp15() string

GetMp15 returns the Mp15 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp150

func (o *CreateContainerRequest) GetMp150() string

GetMp150 returns the Mp150 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp150Ok

func (o *CreateContainerRequest) GetMp150Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp151

func (o *CreateContainerRequest) GetMp151() string

GetMp151 returns the Mp151 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp151Ok

func (o *CreateContainerRequest) GetMp151Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp152

func (o *CreateContainerRequest) GetMp152() string

GetMp152 returns the Mp152 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp152Ok

func (o *CreateContainerRequest) GetMp152Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp153

func (o *CreateContainerRequest) GetMp153() string

GetMp153 returns the Mp153 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp153Ok

func (o *CreateContainerRequest) GetMp153Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp154

func (o *CreateContainerRequest) GetMp154() string

GetMp154 returns the Mp154 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp154Ok

func (o *CreateContainerRequest) GetMp154Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp155

func (o *CreateContainerRequest) GetMp155() string

GetMp155 returns the Mp155 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp155Ok

func (o *CreateContainerRequest) GetMp155Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp156

func (o *CreateContainerRequest) GetMp156() string

GetMp156 returns the Mp156 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp156Ok

func (o *CreateContainerRequest) GetMp156Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp157

func (o *CreateContainerRequest) GetMp157() string

GetMp157 returns the Mp157 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp157Ok

func (o *CreateContainerRequest) GetMp157Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp158

func (o *CreateContainerRequest) GetMp158() string

GetMp158 returns the Mp158 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp158Ok

func (o *CreateContainerRequest) GetMp158Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp159

func (o *CreateContainerRequest) GetMp159() string

GetMp159 returns the Mp159 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp159Ok

func (o *CreateContainerRequest) GetMp159Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp15Ok

func (o *CreateContainerRequest) GetMp15Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp16

func (o *CreateContainerRequest) GetMp16() string

GetMp16 returns the Mp16 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp160

func (o *CreateContainerRequest) GetMp160() string

GetMp160 returns the Mp160 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp160Ok

func (o *CreateContainerRequest) GetMp160Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp161

func (o *CreateContainerRequest) GetMp161() string

GetMp161 returns the Mp161 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp161Ok

func (o *CreateContainerRequest) GetMp161Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp162

func (o *CreateContainerRequest) GetMp162() string

GetMp162 returns the Mp162 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp162Ok

func (o *CreateContainerRequest) GetMp162Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp163

func (o *CreateContainerRequest) GetMp163() string

GetMp163 returns the Mp163 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp163Ok

func (o *CreateContainerRequest) GetMp163Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp164

func (o *CreateContainerRequest) GetMp164() string

GetMp164 returns the Mp164 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp164Ok

func (o *CreateContainerRequest) GetMp164Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp165

func (o *CreateContainerRequest) GetMp165() string

GetMp165 returns the Mp165 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp165Ok

func (o *CreateContainerRequest) GetMp165Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp166

func (o *CreateContainerRequest) GetMp166() string

GetMp166 returns the Mp166 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp166Ok

func (o *CreateContainerRequest) GetMp166Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp167

func (o *CreateContainerRequest) GetMp167() string

GetMp167 returns the Mp167 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp167Ok

func (o *CreateContainerRequest) GetMp167Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp168

func (o *CreateContainerRequest) GetMp168() string

GetMp168 returns the Mp168 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp168Ok

func (o *CreateContainerRequest) GetMp168Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp169

func (o *CreateContainerRequest) GetMp169() string

GetMp169 returns the Mp169 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp169Ok

func (o *CreateContainerRequest) GetMp169Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp16Ok

func (o *CreateContainerRequest) GetMp16Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp17

func (o *CreateContainerRequest) GetMp17() string

GetMp17 returns the Mp17 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp170

func (o *CreateContainerRequest) GetMp170() string

GetMp170 returns the Mp170 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp170Ok

func (o *CreateContainerRequest) GetMp170Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp171

func (o *CreateContainerRequest) GetMp171() string

GetMp171 returns the Mp171 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp171Ok

func (o *CreateContainerRequest) GetMp171Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp172

func (o *CreateContainerRequest) GetMp172() string

GetMp172 returns the Mp172 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp172Ok

func (o *CreateContainerRequest) GetMp172Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp173

func (o *CreateContainerRequest) GetMp173() string

GetMp173 returns the Mp173 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp173Ok

func (o *CreateContainerRequest) GetMp173Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp174

func (o *CreateContainerRequest) GetMp174() string

GetMp174 returns the Mp174 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp174Ok

func (o *CreateContainerRequest) GetMp174Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp175

func (o *CreateContainerRequest) GetMp175() string

GetMp175 returns the Mp175 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp175Ok

func (o *CreateContainerRequest) GetMp175Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp176

func (o *CreateContainerRequest) GetMp176() string

GetMp176 returns the Mp176 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp176Ok

func (o *CreateContainerRequest) GetMp176Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp177

func (o *CreateContainerRequest) GetMp177() string

GetMp177 returns the Mp177 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp177Ok

func (o *CreateContainerRequest) GetMp177Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp178

func (o *CreateContainerRequest) GetMp178() string

GetMp178 returns the Mp178 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp178Ok

func (o *CreateContainerRequest) GetMp178Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp179

func (o *CreateContainerRequest) GetMp179() string

GetMp179 returns the Mp179 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp179Ok

func (o *CreateContainerRequest) GetMp179Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp17Ok

func (o *CreateContainerRequest) GetMp17Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp18

func (o *CreateContainerRequest) GetMp18() string

GetMp18 returns the Mp18 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp180

func (o *CreateContainerRequest) GetMp180() string

GetMp180 returns the Mp180 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp180Ok

func (o *CreateContainerRequest) GetMp180Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp181

func (o *CreateContainerRequest) GetMp181() string

GetMp181 returns the Mp181 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp181Ok

func (o *CreateContainerRequest) GetMp181Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp182

func (o *CreateContainerRequest) GetMp182() string

GetMp182 returns the Mp182 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp182Ok

func (o *CreateContainerRequest) GetMp182Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp183

func (o *CreateContainerRequest) GetMp183() string

GetMp183 returns the Mp183 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp183Ok

func (o *CreateContainerRequest) GetMp183Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp184

func (o *CreateContainerRequest) GetMp184() string

GetMp184 returns the Mp184 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp184Ok

func (o *CreateContainerRequest) GetMp184Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp185

func (o *CreateContainerRequest) GetMp185() string

GetMp185 returns the Mp185 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp185Ok

func (o *CreateContainerRequest) GetMp185Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp186

func (o *CreateContainerRequest) GetMp186() string

GetMp186 returns the Mp186 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp186Ok

func (o *CreateContainerRequest) GetMp186Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp187

func (o *CreateContainerRequest) GetMp187() string

GetMp187 returns the Mp187 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp187Ok

func (o *CreateContainerRequest) GetMp187Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp188

func (o *CreateContainerRequest) GetMp188() string

GetMp188 returns the Mp188 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp188Ok

func (o *CreateContainerRequest) GetMp188Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp189

func (o *CreateContainerRequest) GetMp189() string

GetMp189 returns the Mp189 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp189Ok

func (o *CreateContainerRequest) GetMp189Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp18Ok

func (o *CreateContainerRequest) GetMp18Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp19

func (o *CreateContainerRequest) GetMp19() string

GetMp19 returns the Mp19 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp190

func (o *CreateContainerRequest) GetMp190() string

GetMp190 returns the Mp190 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp190Ok

func (o *CreateContainerRequest) GetMp190Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp191

func (o *CreateContainerRequest) GetMp191() string

GetMp191 returns the Mp191 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp191Ok

func (o *CreateContainerRequest) GetMp191Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp192

func (o *CreateContainerRequest) GetMp192() string

GetMp192 returns the Mp192 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp192Ok

func (o *CreateContainerRequest) GetMp192Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp193

func (o *CreateContainerRequest) GetMp193() string

GetMp193 returns the Mp193 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp193Ok

func (o *CreateContainerRequest) GetMp193Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp194

func (o *CreateContainerRequest) GetMp194() string

GetMp194 returns the Mp194 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp194Ok

func (o *CreateContainerRequest) GetMp194Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp195

func (o *CreateContainerRequest) GetMp195() string

GetMp195 returns the Mp195 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp195Ok

func (o *CreateContainerRequest) GetMp195Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp196

func (o *CreateContainerRequest) GetMp196() string

GetMp196 returns the Mp196 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp196Ok

func (o *CreateContainerRequest) GetMp196Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp197

func (o *CreateContainerRequest) GetMp197() string

GetMp197 returns the Mp197 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp197Ok

func (o *CreateContainerRequest) GetMp197Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp198

func (o *CreateContainerRequest) GetMp198() string

GetMp198 returns the Mp198 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp198Ok

func (o *CreateContainerRequest) GetMp198Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp199

func (o *CreateContainerRequest) GetMp199() string

GetMp199 returns the Mp199 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp199Ok

func (o *CreateContainerRequest) GetMp199Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp19Ok

func (o *CreateContainerRequest) GetMp19Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp1Ok

func (o *CreateContainerRequest) GetMp1Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp2

func (o *CreateContainerRequest) GetMp2() string

GetMp2 returns the Mp2 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp20

func (o *CreateContainerRequest) GetMp20() string

GetMp20 returns the Mp20 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp200

func (o *CreateContainerRequest) GetMp200() string

GetMp200 returns the Mp200 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp200Ok

func (o *CreateContainerRequest) GetMp200Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp201

func (o *CreateContainerRequest) GetMp201() string

GetMp201 returns the Mp201 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp201Ok

func (o *CreateContainerRequest) GetMp201Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp202

func (o *CreateContainerRequest) GetMp202() string

GetMp202 returns the Mp202 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp202Ok

func (o *CreateContainerRequest) GetMp202Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp203

func (o *CreateContainerRequest) GetMp203() string

GetMp203 returns the Mp203 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp203Ok

func (o *CreateContainerRequest) GetMp203Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp204

func (o *CreateContainerRequest) GetMp204() string

GetMp204 returns the Mp204 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp204Ok

func (o *CreateContainerRequest) GetMp204Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp205

func (o *CreateContainerRequest) GetMp205() string

GetMp205 returns the Mp205 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp205Ok

func (o *CreateContainerRequest) GetMp205Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp206

func (o *CreateContainerRequest) GetMp206() string

GetMp206 returns the Mp206 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp206Ok

func (o *CreateContainerRequest) GetMp206Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp207

func (o *CreateContainerRequest) GetMp207() string

GetMp207 returns the Mp207 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp207Ok

func (o *CreateContainerRequest) GetMp207Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp208

func (o *CreateContainerRequest) GetMp208() string

GetMp208 returns the Mp208 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp208Ok

func (o *CreateContainerRequest) GetMp208Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp209

func (o *CreateContainerRequest) GetMp209() string

GetMp209 returns the Mp209 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp209Ok

func (o *CreateContainerRequest) GetMp209Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp20Ok

func (o *CreateContainerRequest) GetMp20Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp21

func (o *CreateContainerRequest) GetMp21() string

GetMp21 returns the Mp21 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp210

func (o *CreateContainerRequest) GetMp210() string

GetMp210 returns the Mp210 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp210Ok

func (o *CreateContainerRequest) GetMp210Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp211

func (o *CreateContainerRequest) GetMp211() string

GetMp211 returns the Mp211 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp211Ok

func (o *CreateContainerRequest) GetMp211Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp212

func (o *CreateContainerRequest) GetMp212() string

GetMp212 returns the Mp212 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp212Ok

func (o *CreateContainerRequest) GetMp212Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp213

func (o *CreateContainerRequest) GetMp213() string

GetMp213 returns the Mp213 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp213Ok

func (o *CreateContainerRequest) GetMp213Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp214

func (o *CreateContainerRequest) GetMp214() string

GetMp214 returns the Mp214 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp214Ok

func (o *CreateContainerRequest) GetMp214Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp215

func (o *CreateContainerRequest) GetMp215() string

GetMp215 returns the Mp215 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp215Ok

func (o *CreateContainerRequest) GetMp215Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp216

func (o *CreateContainerRequest) GetMp216() string

GetMp216 returns the Mp216 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp216Ok

func (o *CreateContainerRequest) GetMp216Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp217

func (o *CreateContainerRequest) GetMp217() string

GetMp217 returns the Mp217 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp217Ok

func (o *CreateContainerRequest) GetMp217Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp218

func (o *CreateContainerRequest) GetMp218() string

GetMp218 returns the Mp218 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp218Ok

func (o *CreateContainerRequest) GetMp218Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp219

func (o *CreateContainerRequest) GetMp219() string

GetMp219 returns the Mp219 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp219Ok

func (o *CreateContainerRequest) GetMp219Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp21Ok

func (o *CreateContainerRequest) GetMp21Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp22

func (o *CreateContainerRequest) GetMp22() string

GetMp22 returns the Mp22 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp220

func (o *CreateContainerRequest) GetMp220() string

GetMp220 returns the Mp220 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp220Ok

func (o *CreateContainerRequest) GetMp220Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp221

func (o *CreateContainerRequest) GetMp221() string

GetMp221 returns the Mp221 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp221Ok

func (o *CreateContainerRequest) GetMp221Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp222

func (o *CreateContainerRequest) GetMp222() string

GetMp222 returns the Mp222 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp222Ok

func (o *CreateContainerRequest) GetMp222Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp223

func (o *CreateContainerRequest) GetMp223() string

GetMp223 returns the Mp223 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp223Ok

func (o *CreateContainerRequest) GetMp223Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp224

func (o *CreateContainerRequest) GetMp224() string

GetMp224 returns the Mp224 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp224Ok

func (o *CreateContainerRequest) GetMp224Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp225

func (o *CreateContainerRequest) GetMp225() string

GetMp225 returns the Mp225 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp225Ok

func (o *CreateContainerRequest) GetMp225Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp226

func (o *CreateContainerRequest) GetMp226() string

GetMp226 returns the Mp226 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp226Ok

func (o *CreateContainerRequest) GetMp226Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp227

func (o *CreateContainerRequest) GetMp227() string

GetMp227 returns the Mp227 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp227Ok

func (o *CreateContainerRequest) GetMp227Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp228

func (o *CreateContainerRequest) GetMp228() string

GetMp228 returns the Mp228 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp228Ok

func (o *CreateContainerRequest) GetMp228Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp229

func (o *CreateContainerRequest) GetMp229() string

GetMp229 returns the Mp229 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp229Ok

func (o *CreateContainerRequest) GetMp229Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp22Ok

func (o *CreateContainerRequest) GetMp22Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp23

func (o *CreateContainerRequest) GetMp23() string

GetMp23 returns the Mp23 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp230

func (o *CreateContainerRequest) GetMp230() string

GetMp230 returns the Mp230 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp230Ok

func (o *CreateContainerRequest) GetMp230Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp231

func (o *CreateContainerRequest) GetMp231() string

GetMp231 returns the Mp231 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp231Ok

func (o *CreateContainerRequest) GetMp231Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp232

func (o *CreateContainerRequest) GetMp232() string

GetMp232 returns the Mp232 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp232Ok

func (o *CreateContainerRequest) GetMp232Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp233

func (o *CreateContainerRequest) GetMp233() string

GetMp233 returns the Mp233 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp233Ok

func (o *CreateContainerRequest) GetMp233Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp234

func (o *CreateContainerRequest) GetMp234() string

GetMp234 returns the Mp234 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp234Ok

func (o *CreateContainerRequest) GetMp234Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp235

func (o *CreateContainerRequest) GetMp235() string

GetMp235 returns the Mp235 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp235Ok

func (o *CreateContainerRequest) GetMp235Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp236

func (o *CreateContainerRequest) GetMp236() string

GetMp236 returns the Mp236 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp236Ok

func (o *CreateContainerRequest) GetMp236Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp237

func (o *CreateContainerRequest) GetMp237() string

GetMp237 returns the Mp237 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp237Ok

func (o *CreateContainerRequest) GetMp237Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp238

func (o *CreateContainerRequest) GetMp238() string

GetMp238 returns the Mp238 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp238Ok

func (o *CreateContainerRequest) GetMp238Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp239

func (o *CreateContainerRequest) GetMp239() string

GetMp239 returns the Mp239 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp239Ok

func (o *CreateContainerRequest) GetMp239Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp23Ok

func (o *CreateContainerRequest) GetMp23Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp24

func (o *CreateContainerRequest) GetMp24() string

GetMp24 returns the Mp24 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp240

func (o *CreateContainerRequest) GetMp240() string

GetMp240 returns the Mp240 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp240Ok

func (o *CreateContainerRequest) GetMp240Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp241

func (o *CreateContainerRequest) GetMp241() string

GetMp241 returns the Mp241 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp241Ok

func (o *CreateContainerRequest) GetMp241Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp242

func (o *CreateContainerRequest) GetMp242() string

GetMp242 returns the Mp242 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp242Ok

func (o *CreateContainerRequest) GetMp242Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp243

func (o *CreateContainerRequest) GetMp243() string

GetMp243 returns the Mp243 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp243Ok

func (o *CreateContainerRequest) GetMp243Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp244

func (o *CreateContainerRequest) GetMp244() string

GetMp244 returns the Mp244 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp244Ok

func (o *CreateContainerRequest) GetMp244Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp245

func (o *CreateContainerRequest) GetMp245() string

GetMp245 returns the Mp245 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp245Ok

func (o *CreateContainerRequest) GetMp245Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp246

func (o *CreateContainerRequest) GetMp246() string

GetMp246 returns the Mp246 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp246Ok

func (o *CreateContainerRequest) GetMp246Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp247

func (o *CreateContainerRequest) GetMp247() string

GetMp247 returns the Mp247 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp247Ok

func (o *CreateContainerRequest) GetMp247Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp248

func (o *CreateContainerRequest) GetMp248() string

GetMp248 returns the Mp248 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp248Ok

func (o *CreateContainerRequest) GetMp248Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp249

func (o *CreateContainerRequest) GetMp249() string

GetMp249 returns the Mp249 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp249Ok

func (o *CreateContainerRequest) GetMp249Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp24Ok

func (o *CreateContainerRequest) GetMp24Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp25

func (o *CreateContainerRequest) GetMp25() string

GetMp25 returns the Mp25 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp250

func (o *CreateContainerRequest) GetMp250() string

GetMp250 returns the Mp250 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp250Ok

func (o *CreateContainerRequest) GetMp250Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp251

func (o *CreateContainerRequest) GetMp251() string

GetMp251 returns the Mp251 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp251Ok

func (o *CreateContainerRequest) GetMp251Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp252

func (o *CreateContainerRequest) GetMp252() string

GetMp252 returns the Mp252 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp252Ok

func (o *CreateContainerRequest) GetMp252Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp253

func (o *CreateContainerRequest) GetMp253() string

GetMp253 returns the Mp253 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp253Ok

func (o *CreateContainerRequest) GetMp253Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp254

func (o *CreateContainerRequest) GetMp254() string

GetMp254 returns the Mp254 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp254Ok

func (o *CreateContainerRequest) GetMp254Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp255

func (o *CreateContainerRequest) GetMp255() string

GetMp255 returns the Mp255 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp255Ok

func (o *CreateContainerRequest) GetMp255Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp25Ok

func (o *CreateContainerRequest) GetMp25Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp26

func (o *CreateContainerRequest) GetMp26() string

GetMp26 returns the Mp26 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp26Ok

func (o *CreateContainerRequest) GetMp26Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp27

func (o *CreateContainerRequest) GetMp27() string

GetMp27 returns the Mp27 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp27Ok

func (o *CreateContainerRequest) GetMp27Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp28

func (o *CreateContainerRequest) GetMp28() string

GetMp28 returns the Mp28 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp28Ok

func (o *CreateContainerRequest) GetMp28Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp29

func (o *CreateContainerRequest) GetMp29() string

GetMp29 returns the Mp29 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp29Ok

func (o *CreateContainerRequest) GetMp29Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp2Ok

func (o *CreateContainerRequest) GetMp2Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp3

func (o *CreateContainerRequest) GetMp3() string

GetMp3 returns the Mp3 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp30

func (o *CreateContainerRequest) GetMp30() string

GetMp30 returns the Mp30 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp30Ok

func (o *CreateContainerRequest) GetMp30Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp31

func (o *CreateContainerRequest) GetMp31() string

GetMp31 returns the Mp31 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp31Ok

func (o *CreateContainerRequest) GetMp31Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp32

func (o *CreateContainerRequest) GetMp32() string

GetMp32 returns the Mp32 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp32Ok

func (o *CreateContainerRequest) GetMp32Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp33

func (o *CreateContainerRequest) GetMp33() string

GetMp33 returns the Mp33 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp33Ok

func (o *CreateContainerRequest) GetMp33Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp34

func (o *CreateContainerRequest) GetMp34() string

GetMp34 returns the Mp34 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp34Ok

func (o *CreateContainerRequest) GetMp34Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp35

func (o *CreateContainerRequest) GetMp35() string

GetMp35 returns the Mp35 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp35Ok

func (o *CreateContainerRequest) GetMp35Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp36

func (o *CreateContainerRequest) GetMp36() string

GetMp36 returns the Mp36 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp36Ok

func (o *CreateContainerRequest) GetMp36Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp37

func (o *CreateContainerRequest) GetMp37() string

GetMp37 returns the Mp37 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp37Ok

func (o *CreateContainerRequest) GetMp37Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp38

func (o *CreateContainerRequest) GetMp38() string

GetMp38 returns the Mp38 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp38Ok

func (o *CreateContainerRequest) GetMp38Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp39

func (o *CreateContainerRequest) GetMp39() string

GetMp39 returns the Mp39 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp39Ok

func (o *CreateContainerRequest) GetMp39Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp3Ok

func (o *CreateContainerRequest) GetMp3Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp4

func (o *CreateContainerRequest) GetMp4() string

GetMp4 returns the Mp4 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp40

func (o *CreateContainerRequest) GetMp40() string

GetMp40 returns the Mp40 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp40Ok

func (o *CreateContainerRequest) GetMp40Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp41

func (o *CreateContainerRequest) GetMp41() string

GetMp41 returns the Mp41 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp41Ok

func (o *CreateContainerRequest) GetMp41Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp42

func (o *CreateContainerRequest) GetMp42() string

GetMp42 returns the Mp42 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp42Ok

func (o *CreateContainerRequest) GetMp42Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp43

func (o *CreateContainerRequest) GetMp43() string

GetMp43 returns the Mp43 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp43Ok

func (o *CreateContainerRequest) GetMp43Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp44

func (o *CreateContainerRequest) GetMp44() string

GetMp44 returns the Mp44 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp44Ok

func (o *CreateContainerRequest) GetMp44Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp45

func (o *CreateContainerRequest) GetMp45() string

GetMp45 returns the Mp45 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp45Ok

func (o *CreateContainerRequest) GetMp45Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp46

func (o *CreateContainerRequest) GetMp46() string

GetMp46 returns the Mp46 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp46Ok

func (o *CreateContainerRequest) GetMp46Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp47

func (o *CreateContainerRequest) GetMp47() string

GetMp47 returns the Mp47 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp47Ok

func (o *CreateContainerRequest) GetMp47Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp48

func (o *CreateContainerRequest) GetMp48() string

GetMp48 returns the Mp48 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp48Ok

func (o *CreateContainerRequest) GetMp48Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp49

func (o *CreateContainerRequest) GetMp49() string

GetMp49 returns the Mp49 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp49Ok

func (o *CreateContainerRequest) GetMp49Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp4Ok

func (o *CreateContainerRequest) GetMp4Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp5

func (o *CreateContainerRequest) GetMp5() string

GetMp5 returns the Mp5 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp50

func (o *CreateContainerRequest) GetMp50() string

GetMp50 returns the Mp50 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp50Ok

func (o *CreateContainerRequest) GetMp50Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp51

func (o *CreateContainerRequest) GetMp51() string

GetMp51 returns the Mp51 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp51Ok

func (o *CreateContainerRequest) GetMp51Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp52

func (o *CreateContainerRequest) GetMp52() string

GetMp52 returns the Mp52 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp52Ok

func (o *CreateContainerRequest) GetMp52Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp53

func (o *CreateContainerRequest) GetMp53() string

GetMp53 returns the Mp53 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp53Ok

func (o *CreateContainerRequest) GetMp53Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp54

func (o *CreateContainerRequest) GetMp54() string

GetMp54 returns the Mp54 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp54Ok

func (o *CreateContainerRequest) GetMp54Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp55

func (o *CreateContainerRequest) GetMp55() string

GetMp55 returns the Mp55 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp55Ok

func (o *CreateContainerRequest) GetMp55Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp56

func (o *CreateContainerRequest) GetMp56() string

GetMp56 returns the Mp56 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp56Ok

func (o *CreateContainerRequest) GetMp56Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp57

func (o *CreateContainerRequest) GetMp57() string

GetMp57 returns the Mp57 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp57Ok

func (o *CreateContainerRequest) GetMp57Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp58

func (o *CreateContainerRequest) GetMp58() string

GetMp58 returns the Mp58 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp58Ok

func (o *CreateContainerRequest) GetMp58Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp59

func (o *CreateContainerRequest) GetMp59() string

GetMp59 returns the Mp59 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp59Ok

func (o *CreateContainerRequest) GetMp59Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp5Ok

func (o *CreateContainerRequest) GetMp5Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp6

func (o *CreateContainerRequest) GetMp6() string

GetMp6 returns the Mp6 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp60

func (o *CreateContainerRequest) GetMp60() string

GetMp60 returns the Mp60 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp60Ok

func (o *CreateContainerRequest) GetMp60Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp61

func (o *CreateContainerRequest) GetMp61() string

GetMp61 returns the Mp61 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp61Ok

func (o *CreateContainerRequest) GetMp61Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp62

func (o *CreateContainerRequest) GetMp62() string

GetMp62 returns the Mp62 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp62Ok

func (o *CreateContainerRequest) GetMp62Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp63

func (o *CreateContainerRequest) GetMp63() string

GetMp63 returns the Mp63 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp63Ok

func (o *CreateContainerRequest) GetMp63Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp64

func (o *CreateContainerRequest) GetMp64() string

GetMp64 returns the Mp64 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp64Ok

func (o *CreateContainerRequest) GetMp64Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp65

func (o *CreateContainerRequest) GetMp65() string

GetMp65 returns the Mp65 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp65Ok

func (o *CreateContainerRequest) GetMp65Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp66

func (o *CreateContainerRequest) GetMp66() string

GetMp66 returns the Mp66 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp66Ok

func (o *CreateContainerRequest) GetMp66Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp67

func (o *CreateContainerRequest) GetMp67() string

GetMp67 returns the Mp67 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp67Ok

func (o *CreateContainerRequest) GetMp67Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp68

func (o *CreateContainerRequest) GetMp68() string

GetMp68 returns the Mp68 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp68Ok

func (o *CreateContainerRequest) GetMp68Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp69

func (o *CreateContainerRequest) GetMp69() string

GetMp69 returns the Mp69 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp69Ok

func (o *CreateContainerRequest) GetMp69Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp6Ok

func (o *CreateContainerRequest) GetMp6Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp7

func (o *CreateContainerRequest) GetMp7() string

GetMp7 returns the Mp7 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp70

func (o *CreateContainerRequest) GetMp70() string

GetMp70 returns the Mp70 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp70Ok

func (o *CreateContainerRequest) GetMp70Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp71

func (o *CreateContainerRequest) GetMp71() string

GetMp71 returns the Mp71 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp71Ok

func (o *CreateContainerRequest) GetMp71Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp72

func (o *CreateContainerRequest) GetMp72() string

GetMp72 returns the Mp72 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp72Ok

func (o *CreateContainerRequest) GetMp72Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp73

func (o *CreateContainerRequest) GetMp73() string

GetMp73 returns the Mp73 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp73Ok

func (o *CreateContainerRequest) GetMp73Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp74

func (o *CreateContainerRequest) GetMp74() string

GetMp74 returns the Mp74 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp74Ok

func (o *CreateContainerRequest) GetMp74Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp75

func (o *CreateContainerRequest) GetMp75() string

GetMp75 returns the Mp75 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp75Ok

func (o *CreateContainerRequest) GetMp75Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp76

func (o *CreateContainerRequest) GetMp76() string

GetMp76 returns the Mp76 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp76Ok

func (o *CreateContainerRequest) GetMp76Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp77

func (o *CreateContainerRequest) GetMp77() string

GetMp77 returns the Mp77 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp77Ok

func (o *CreateContainerRequest) GetMp77Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp78

func (o *CreateContainerRequest) GetMp78() string

GetMp78 returns the Mp78 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp78Ok

func (o *CreateContainerRequest) GetMp78Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp79

func (o *CreateContainerRequest) GetMp79() string

GetMp79 returns the Mp79 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp79Ok

func (o *CreateContainerRequest) GetMp79Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp7Ok

func (o *CreateContainerRequest) GetMp7Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp8

func (o *CreateContainerRequest) GetMp8() string

GetMp8 returns the Mp8 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp80

func (o *CreateContainerRequest) GetMp80() string

GetMp80 returns the Mp80 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp80Ok

func (o *CreateContainerRequest) GetMp80Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp81

func (o *CreateContainerRequest) GetMp81() string

GetMp81 returns the Mp81 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp81Ok

func (o *CreateContainerRequest) GetMp81Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp82

func (o *CreateContainerRequest) GetMp82() string

GetMp82 returns the Mp82 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp82Ok

func (o *CreateContainerRequest) GetMp82Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp83

func (o *CreateContainerRequest) GetMp83() string

GetMp83 returns the Mp83 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp83Ok

func (o *CreateContainerRequest) GetMp83Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp84

func (o *CreateContainerRequest) GetMp84() string

GetMp84 returns the Mp84 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp84Ok

func (o *CreateContainerRequest) GetMp84Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp85

func (o *CreateContainerRequest) GetMp85() string

GetMp85 returns the Mp85 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp85Ok

func (o *CreateContainerRequest) GetMp85Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp86

func (o *CreateContainerRequest) GetMp86() string

GetMp86 returns the Mp86 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp86Ok

func (o *CreateContainerRequest) GetMp86Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp87

func (o *CreateContainerRequest) GetMp87() string

GetMp87 returns the Mp87 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp87Ok

func (o *CreateContainerRequest) GetMp87Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp88

func (o *CreateContainerRequest) GetMp88() string

GetMp88 returns the Mp88 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp88Ok

func (o *CreateContainerRequest) GetMp88Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp89

func (o *CreateContainerRequest) GetMp89() string

GetMp89 returns the Mp89 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp89Ok

func (o *CreateContainerRequest) GetMp89Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp8Ok

func (o *CreateContainerRequest) GetMp8Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp9

func (o *CreateContainerRequest) GetMp9() string

GetMp9 returns the Mp9 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp90

func (o *CreateContainerRequest) GetMp90() string

GetMp90 returns the Mp90 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp90Ok

func (o *CreateContainerRequest) GetMp90Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp91

func (o *CreateContainerRequest) GetMp91() string

GetMp91 returns the Mp91 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp91Ok

func (o *CreateContainerRequest) GetMp91Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp92

func (o *CreateContainerRequest) GetMp92() string

GetMp92 returns the Mp92 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp92Ok

func (o *CreateContainerRequest) GetMp92Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp93

func (o *CreateContainerRequest) GetMp93() string

GetMp93 returns the Mp93 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp93Ok

func (o *CreateContainerRequest) GetMp93Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp94

func (o *CreateContainerRequest) GetMp94() string

GetMp94 returns the Mp94 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp94Ok

func (o *CreateContainerRequest) GetMp94Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp95

func (o *CreateContainerRequest) GetMp95() string

GetMp95 returns the Mp95 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp95Ok

func (o *CreateContainerRequest) GetMp95Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp96

func (o *CreateContainerRequest) GetMp96() string

GetMp96 returns the Mp96 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp96Ok

func (o *CreateContainerRequest) GetMp96Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp97

func (o *CreateContainerRequest) GetMp97() string

GetMp97 returns the Mp97 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp97Ok

func (o *CreateContainerRequest) GetMp97Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp98

func (o *CreateContainerRequest) GetMp98() string

GetMp98 returns the Mp98 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp98Ok

func (o *CreateContainerRequest) GetMp98Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp99

func (o *CreateContainerRequest) GetMp99() string

GetMp99 returns the Mp99 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetMp99Ok

func (o *CreateContainerRequest) GetMp99Ok() (*string, bool)

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

func (*CreateContainerRequest) GetMp9Ok

func (o *CreateContainerRequest) GetMp9Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNameserver

func (o *CreateContainerRequest) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNameserverOk

func (o *CreateContainerRequest) GetNameserverOk() (*string, bool)

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

func (*CreateContainerRequest) GetNet0

func (o *CreateContainerRequest) GetNet0() string

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet0Ok

func (o *CreateContainerRequest) GetNet0Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet1

func (o *CreateContainerRequest) GetNet1() string

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet10

func (o *CreateContainerRequest) GetNet10() string

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet10Ok

func (o *CreateContainerRequest) GetNet10Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet11

func (o *CreateContainerRequest) GetNet11() string

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet11Ok

func (o *CreateContainerRequest) GetNet11Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet12

func (o *CreateContainerRequest) GetNet12() string

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet12Ok

func (o *CreateContainerRequest) GetNet12Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet13

func (o *CreateContainerRequest) GetNet13() string

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet13Ok

func (o *CreateContainerRequest) GetNet13Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet14

func (o *CreateContainerRequest) GetNet14() string

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet14Ok

func (o *CreateContainerRequest) GetNet14Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet15

func (o *CreateContainerRequest) GetNet15() string

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet15Ok

func (o *CreateContainerRequest) GetNet15Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet16

func (o *CreateContainerRequest) GetNet16() string

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet16Ok

func (o *CreateContainerRequest) GetNet16Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet17

func (o *CreateContainerRequest) GetNet17() string

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet17Ok

func (o *CreateContainerRequest) GetNet17Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet18

func (o *CreateContainerRequest) GetNet18() string

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet18Ok

func (o *CreateContainerRequest) GetNet18Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet19

func (o *CreateContainerRequest) GetNet19() string

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet19Ok

func (o *CreateContainerRequest) GetNet19Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet1Ok

func (o *CreateContainerRequest) GetNet1Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet2

func (o *CreateContainerRequest) GetNet2() string

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet20

func (o *CreateContainerRequest) GetNet20() string

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet20Ok

func (o *CreateContainerRequest) GetNet20Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet21

func (o *CreateContainerRequest) GetNet21() string

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet21Ok

func (o *CreateContainerRequest) GetNet21Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet22

func (o *CreateContainerRequest) GetNet22() string

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet22Ok

func (o *CreateContainerRequest) GetNet22Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet23

func (o *CreateContainerRequest) GetNet23() string

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet23Ok

func (o *CreateContainerRequest) GetNet23Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet24

func (o *CreateContainerRequest) GetNet24() string

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet24Ok

func (o *CreateContainerRequest) GetNet24Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet25

func (o *CreateContainerRequest) GetNet25() string

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet25Ok

func (o *CreateContainerRequest) GetNet25Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet26

func (o *CreateContainerRequest) GetNet26() string

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet26Ok

func (o *CreateContainerRequest) GetNet26Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet27

func (o *CreateContainerRequest) GetNet27() string

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet27Ok

func (o *CreateContainerRequest) GetNet27Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet28

func (o *CreateContainerRequest) GetNet28() string

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet28Ok

func (o *CreateContainerRequest) GetNet28Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet29

func (o *CreateContainerRequest) GetNet29() string

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet29Ok

func (o *CreateContainerRequest) GetNet29Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet2Ok

func (o *CreateContainerRequest) GetNet2Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet3

func (o *CreateContainerRequest) GetNet3() string

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet30

func (o *CreateContainerRequest) GetNet30() string

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet30Ok

func (o *CreateContainerRequest) GetNet30Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet31

func (o *CreateContainerRequest) GetNet31() string

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet31Ok

func (o *CreateContainerRequest) GetNet31Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet3Ok

func (o *CreateContainerRequest) GetNet3Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet4

func (o *CreateContainerRequest) GetNet4() string

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet4Ok

func (o *CreateContainerRequest) GetNet4Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet5

func (o *CreateContainerRequest) GetNet5() string

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet5Ok

func (o *CreateContainerRequest) GetNet5Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet6

func (o *CreateContainerRequest) GetNet6() string

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet6Ok

func (o *CreateContainerRequest) GetNet6Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet7

func (o *CreateContainerRequest) GetNet7() string

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet7Ok

func (o *CreateContainerRequest) GetNet7Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet8

func (o *CreateContainerRequest) GetNet8() string

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet8Ok

func (o *CreateContainerRequest) GetNet8Ok() (*string, bool)

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

func (*CreateContainerRequest) GetNet9

func (o *CreateContainerRequest) GetNet9() string

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetNet9Ok

func (o *CreateContainerRequest) GetNet9Ok() (*string, bool)

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

func (*CreateContainerRequest) GetOnboot

func (o *CreateContainerRequest) GetOnboot() int32

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*CreateContainerRequest) GetOnbootOk

func (o *CreateContainerRequest) GetOnbootOk() (*int32, bool)

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

func (*CreateContainerRequest) GetOstemplate

func (o *CreateContainerRequest) GetOstemplate() string

GetOstemplate returns the Ostemplate field value

func (*CreateContainerRequest) GetOstemplateOk

func (o *CreateContainerRequest) GetOstemplateOk() (*string, bool)

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

func (*CreateContainerRequest) GetOstype

func (o *CreateContainerRequest) GetOstype() string

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*CreateContainerRequest) GetOstypeOk

func (o *CreateContainerRequest) GetOstypeOk() (*string, bool)

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

func (*CreateContainerRequest) GetPassword

func (o *CreateContainerRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*CreateContainerRequest) GetPasswordOk

func (o *CreateContainerRequest) GetPasswordOk() (*string, bool)

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

func (*CreateContainerRequest) GetPool

func (o *CreateContainerRequest) GetPool() string

GetPool returns the Pool field value if set, zero value otherwise.

func (*CreateContainerRequest) GetPoolOk

func (o *CreateContainerRequest) GetPoolOk() (*string, bool)

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

func (*CreateContainerRequest) GetProtection

func (o *CreateContainerRequest) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*CreateContainerRequest) GetProtectionOk

func (o *CreateContainerRequest) GetProtectionOk() (*int32, bool)

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

func (*CreateContainerRequest) GetRestore

func (o *CreateContainerRequest) GetRestore() int32

GetRestore returns the Restore field value if set, zero value otherwise.

func (*CreateContainerRequest) GetRestoreOk

func (o *CreateContainerRequest) GetRestoreOk() (*int32, bool)

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

func (*CreateContainerRequest) GetRootfs

func (o *CreateContainerRequest) GetRootfs() string

GetRootfs returns the Rootfs field value if set, zero value otherwise.

func (*CreateContainerRequest) GetRootfsOk

func (o *CreateContainerRequest) GetRootfsOk() (*string, bool)

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

func (*CreateContainerRequest) GetSearchdomain

func (o *CreateContainerRequest) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*CreateContainerRequest) GetSearchdomainOk

func (o *CreateContainerRequest) GetSearchdomainOk() (*string, bool)

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

func (*CreateContainerRequest) GetSshPublicKeys

func (o *CreateContainerRequest) GetSshPublicKeys() string

GetSshPublicKeys returns the SshPublicKeys field value if set, zero value otherwise.

func (*CreateContainerRequest) GetSshPublicKeysOk

func (o *CreateContainerRequest) GetSshPublicKeysOk() (*string, bool)

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

func (*CreateContainerRequest) GetStart

func (o *CreateContainerRequest) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*CreateContainerRequest) GetStartOk

func (o *CreateContainerRequest) GetStartOk() (*int32, bool)

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

func (*CreateContainerRequest) GetStartup

func (o *CreateContainerRequest) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*CreateContainerRequest) GetStartupOk

func (o *CreateContainerRequest) GetStartupOk() (*string, bool)

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

func (*CreateContainerRequest) GetStorage

func (o *CreateContainerRequest) GetStorage() string

GetStorage returns the Storage field value if set, zero value otherwise.

func (*CreateContainerRequest) GetStorageOk

func (o *CreateContainerRequest) GetStorageOk() (*string, bool)

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

func (*CreateContainerRequest) GetSwap

func (o *CreateContainerRequest) GetSwap() int64

GetSwap returns the Swap field value if set, zero value otherwise.

func (*CreateContainerRequest) GetSwapOk

func (o *CreateContainerRequest) GetSwapOk() (*int64, bool)

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

func (*CreateContainerRequest) GetTags

func (o *CreateContainerRequest) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*CreateContainerRequest) GetTagsOk

func (o *CreateContainerRequest) GetTagsOk() (*string, bool)

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

func (*CreateContainerRequest) GetTemplate

func (o *CreateContainerRequest) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*CreateContainerRequest) GetTemplateOk

func (o *CreateContainerRequest) GetTemplateOk() (*int32, bool)

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

func (*CreateContainerRequest) GetTimezone

func (o *CreateContainerRequest) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*CreateContainerRequest) GetTimezoneOk

func (o *CreateContainerRequest) GetTimezoneOk() (*string, bool)

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

func (*CreateContainerRequest) GetTty

func (o *CreateContainerRequest) GetTty() int64

GetTty returns the Tty field value if set, zero value otherwise.

func (*CreateContainerRequest) GetTtyOk

func (o *CreateContainerRequest) GetTtyOk() (*int64, bool)

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

func (*CreateContainerRequest) GetUnique

func (o *CreateContainerRequest) GetUnique() int32

GetUnique returns the Unique field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUniqueOk

func (o *CreateContainerRequest) GetUniqueOk() (*int32, bool)

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

func (*CreateContainerRequest) GetUnprivileged

func (o *CreateContainerRequest) GetUnprivileged() int32

GetUnprivileged returns the Unprivileged field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnprivilegedOk

func (o *CreateContainerRequest) GetUnprivilegedOk() (*int32, bool)

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

func (*CreateContainerRequest) GetUnused0

func (o *CreateContainerRequest) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused0Ok

func (o *CreateContainerRequest) GetUnused0Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused1

func (o *CreateContainerRequest) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused10

func (o *CreateContainerRequest) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused10Ok

func (o *CreateContainerRequest) GetUnused10Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused11

func (o *CreateContainerRequest) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused11Ok

func (o *CreateContainerRequest) GetUnused11Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused12

func (o *CreateContainerRequest) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused12Ok

func (o *CreateContainerRequest) GetUnused12Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused13

func (o *CreateContainerRequest) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused13Ok

func (o *CreateContainerRequest) GetUnused13Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused14

func (o *CreateContainerRequest) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused14Ok

func (o *CreateContainerRequest) GetUnused14Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused15

func (o *CreateContainerRequest) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused15Ok

func (o *CreateContainerRequest) GetUnused15Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused16

func (o *CreateContainerRequest) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused16Ok

func (o *CreateContainerRequest) GetUnused16Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused17

func (o *CreateContainerRequest) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused17Ok

func (o *CreateContainerRequest) GetUnused17Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused18

func (o *CreateContainerRequest) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused18Ok

func (o *CreateContainerRequest) GetUnused18Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused19

func (o *CreateContainerRequest) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused19Ok

func (o *CreateContainerRequest) GetUnused19Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused1Ok

func (o *CreateContainerRequest) GetUnused1Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused2

func (o *CreateContainerRequest) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused20

func (o *CreateContainerRequest) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused20Ok

func (o *CreateContainerRequest) GetUnused20Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused21

func (o *CreateContainerRequest) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused21Ok

func (o *CreateContainerRequest) GetUnused21Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused22

func (o *CreateContainerRequest) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused22Ok

func (o *CreateContainerRequest) GetUnused22Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused23

func (o *CreateContainerRequest) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused23Ok

func (o *CreateContainerRequest) GetUnused23Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused24

func (o *CreateContainerRequest) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused24Ok

func (o *CreateContainerRequest) GetUnused24Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused25

func (o *CreateContainerRequest) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused25Ok

func (o *CreateContainerRequest) GetUnused25Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused26

func (o *CreateContainerRequest) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused26Ok

func (o *CreateContainerRequest) GetUnused26Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused27

func (o *CreateContainerRequest) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused27Ok

func (o *CreateContainerRequest) GetUnused27Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused28

func (o *CreateContainerRequest) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused28Ok

func (o *CreateContainerRequest) GetUnused28Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused29

func (o *CreateContainerRequest) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused29Ok

func (o *CreateContainerRequest) GetUnused29Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused2Ok

func (o *CreateContainerRequest) GetUnused2Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused3

func (o *CreateContainerRequest) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused3Ok

func (o *CreateContainerRequest) GetUnused3Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused4

func (o *CreateContainerRequest) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused4Ok

func (o *CreateContainerRequest) GetUnused4Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused5

func (o *CreateContainerRequest) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused5Ok

func (o *CreateContainerRequest) GetUnused5Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused6

func (o *CreateContainerRequest) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused6Ok

func (o *CreateContainerRequest) GetUnused6Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused7

func (o *CreateContainerRequest) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused7Ok

func (o *CreateContainerRequest) GetUnused7Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused8

func (o *CreateContainerRequest) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused8Ok

func (o *CreateContainerRequest) GetUnused8Ok() (*string, bool)

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

func (*CreateContainerRequest) GetUnused9

func (o *CreateContainerRequest) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*CreateContainerRequest) GetUnused9Ok

func (o *CreateContainerRequest) GetUnused9Ok() (*string, bool)

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

func (*CreateContainerRequest) GetVmid

func (o *CreateContainerRequest) GetVmid() int64

GetVmid returns the Vmid field value

func (*CreateContainerRequest) GetVmidOk

func (o *CreateContainerRequest) GetVmidOk() (*int64, bool)

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

func (*CreateContainerRequest) HasArch

func (o *CreateContainerRequest) HasArch() bool

HasArch returns a boolean if a field has been set.

func (*CreateContainerRequest) HasBwlimit

func (o *CreateContainerRequest) HasBwlimit() bool

HasBwlimit returns a boolean if a field has been set.

func (*CreateContainerRequest) HasCmode

func (o *CreateContainerRequest) HasCmode() bool

HasCmode returns a boolean if a field has been set.

func (*CreateContainerRequest) HasConsole

func (o *CreateContainerRequest) HasConsole() bool

HasConsole returns a boolean if a field has been set.

func (*CreateContainerRequest) HasCores

func (o *CreateContainerRequest) HasCores() bool

HasCores returns a boolean if a field has been set.

func (*CreateContainerRequest) HasCpulimit

func (o *CreateContainerRequest) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*CreateContainerRequest) HasCpuunits

func (o *CreateContainerRequest) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDebug

func (o *CreateContainerRequest) HasDebug() bool

HasDebug returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDescription

func (o *CreateContainerRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev0 added in v1.0.4

func (o *CreateContainerRequest) HasDev0() bool

HasDev0 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev1 added in v1.0.4

func (o *CreateContainerRequest) HasDev1() bool

HasDev1 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev10 added in v1.0.4

func (o *CreateContainerRequest) HasDev10() bool

HasDev10 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev11 added in v1.0.4

func (o *CreateContainerRequest) HasDev11() bool

HasDev11 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev12 added in v1.0.4

func (o *CreateContainerRequest) HasDev12() bool

HasDev12 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev13 added in v1.0.4

func (o *CreateContainerRequest) HasDev13() bool

HasDev13 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev14 added in v1.0.4

func (o *CreateContainerRequest) HasDev14() bool

HasDev14 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev15 added in v1.0.4

func (o *CreateContainerRequest) HasDev15() bool

HasDev15 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev16 added in v1.0.4

func (o *CreateContainerRequest) HasDev16() bool

HasDev16 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev17 added in v1.0.4

func (o *CreateContainerRequest) HasDev17() bool

HasDev17 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev18 added in v1.0.4

func (o *CreateContainerRequest) HasDev18() bool

HasDev18 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev19 added in v1.0.4

func (o *CreateContainerRequest) HasDev19() bool

HasDev19 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev2 added in v1.0.4

func (o *CreateContainerRequest) HasDev2() bool

HasDev2 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev20 added in v1.0.4

func (o *CreateContainerRequest) HasDev20() bool

HasDev20 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev21 added in v1.0.4

func (o *CreateContainerRequest) HasDev21() bool

HasDev21 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev22 added in v1.0.4

func (o *CreateContainerRequest) HasDev22() bool

HasDev22 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev23 added in v1.0.4

func (o *CreateContainerRequest) HasDev23() bool

HasDev23 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev24 added in v1.0.4

func (o *CreateContainerRequest) HasDev24() bool

HasDev24 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev25 added in v1.0.4

func (o *CreateContainerRequest) HasDev25() bool

HasDev25 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev26 added in v1.0.4

func (o *CreateContainerRequest) HasDev26() bool

HasDev26 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev27 added in v1.0.4

func (o *CreateContainerRequest) HasDev27() bool

HasDev27 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev28 added in v1.0.4

func (o *CreateContainerRequest) HasDev28() bool

HasDev28 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev29 added in v1.0.4

func (o *CreateContainerRequest) HasDev29() bool

HasDev29 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev3 added in v1.0.4

func (o *CreateContainerRequest) HasDev3() bool

HasDev3 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev4 added in v1.0.4

func (o *CreateContainerRequest) HasDev4() bool

HasDev4 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev5 added in v1.0.4

func (o *CreateContainerRequest) HasDev5() bool

HasDev5 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev6 added in v1.0.4

func (o *CreateContainerRequest) HasDev6() bool

HasDev6 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev7 added in v1.0.4

func (o *CreateContainerRequest) HasDev7() bool

HasDev7 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev8 added in v1.0.4

func (o *CreateContainerRequest) HasDev8() bool

HasDev8 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasDev9 added in v1.0.4

func (o *CreateContainerRequest) HasDev9() bool

HasDev9 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasFeatures

func (o *CreateContainerRequest) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*CreateContainerRequest) HasForce

func (o *CreateContainerRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*CreateContainerRequest) HasHookscript

func (o *CreateContainerRequest) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*CreateContainerRequest) HasHostname

func (o *CreateContainerRequest) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*CreateContainerRequest) HasIgnoreUnpackErrors

func (o *CreateContainerRequest) HasIgnoreUnpackErrors() bool

HasIgnoreUnpackErrors returns a boolean if a field has been set.

func (*CreateContainerRequest) HasLock

func (o *CreateContainerRequest) HasLock() bool

HasLock returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMemory

func (o *CreateContainerRequest) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp0

func (o *CreateContainerRequest) HasMp0() bool

HasMp0 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp1

func (o *CreateContainerRequest) HasMp1() bool

HasMp1 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp10

func (o *CreateContainerRequest) HasMp10() bool

HasMp10 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp100

func (o *CreateContainerRequest) HasMp100() bool

HasMp100 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp101

func (o *CreateContainerRequest) HasMp101() bool

HasMp101 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp102

func (o *CreateContainerRequest) HasMp102() bool

HasMp102 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp103

func (o *CreateContainerRequest) HasMp103() bool

HasMp103 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp104

func (o *CreateContainerRequest) HasMp104() bool

HasMp104 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp105

func (o *CreateContainerRequest) HasMp105() bool

HasMp105 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp106

func (o *CreateContainerRequest) HasMp106() bool

HasMp106 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp107

func (o *CreateContainerRequest) HasMp107() bool

HasMp107 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp108

func (o *CreateContainerRequest) HasMp108() bool

HasMp108 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp109

func (o *CreateContainerRequest) HasMp109() bool

HasMp109 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp11

func (o *CreateContainerRequest) HasMp11() bool

HasMp11 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp110

func (o *CreateContainerRequest) HasMp110() bool

HasMp110 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp111

func (o *CreateContainerRequest) HasMp111() bool

HasMp111 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp112

func (o *CreateContainerRequest) HasMp112() bool

HasMp112 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp113

func (o *CreateContainerRequest) HasMp113() bool

HasMp113 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp114

func (o *CreateContainerRequest) HasMp114() bool

HasMp114 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp115

func (o *CreateContainerRequest) HasMp115() bool

HasMp115 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp116

func (o *CreateContainerRequest) HasMp116() bool

HasMp116 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp117

func (o *CreateContainerRequest) HasMp117() bool

HasMp117 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp118

func (o *CreateContainerRequest) HasMp118() bool

HasMp118 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp119

func (o *CreateContainerRequest) HasMp119() bool

HasMp119 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp12

func (o *CreateContainerRequest) HasMp12() bool

HasMp12 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp120

func (o *CreateContainerRequest) HasMp120() bool

HasMp120 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp121

func (o *CreateContainerRequest) HasMp121() bool

HasMp121 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp122

func (o *CreateContainerRequest) HasMp122() bool

HasMp122 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp123

func (o *CreateContainerRequest) HasMp123() bool

HasMp123 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp124

func (o *CreateContainerRequest) HasMp124() bool

HasMp124 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp125

func (o *CreateContainerRequest) HasMp125() bool

HasMp125 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp126

func (o *CreateContainerRequest) HasMp126() bool

HasMp126 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp127

func (o *CreateContainerRequest) HasMp127() bool

HasMp127 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp128

func (o *CreateContainerRequest) HasMp128() bool

HasMp128 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp129

func (o *CreateContainerRequest) HasMp129() bool

HasMp129 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp13

func (o *CreateContainerRequest) HasMp13() bool

HasMp13 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp130

func (o *CreateContainerRequest) HasMp130() bool

HasMp130 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp131

func (o *CreateContainerRequest) HasMp131() bool

HasMp131 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp132

func (o *CreateContainerRequest) HasMp132() bool

HasMp132 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp133

func (o *CreateContainerRequest) HasMp133() bool

HasMp133 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp134

func (o *CreateContainerRequest) HasMp134() bool

HasMp134 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp135

func (o *CreateContainerRequest) HasMp135() bool

HasMp135 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp136

func (o *CreateContainerRequest) HasMp136() bool

HasMp136 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp137

func (o *CreateContainerRequest) HasMp137() bool

HasMp137 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp138

func (o *CreateContainerRequest) HasMp138() bool

HasMp138 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp139

func (o *CreateContainerRequest) HasMp139() bool

HasMp139 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp14

func (o *CreateContainerRequest) HasMp14() bool

HasMp14 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp140

func (o *CreateContainerRequest) HasMp140() bool

HasMp140 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp141

func (o *CreateContainerRequest) HasMp141() bool

HasMp141 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp142

func (o *CreateContainerRequest) HasMp142() bool

HasMp142 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp143

func (o *CreateContainerRequest) HasMp143() bool

HasMp143 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp144

func (o *CreateContainerRequest) HasMp144() bool

HasMp144 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp145

func (o *CreateContainerRequest) HasMp145() bool

HasMp145 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp146

func (o *CreateContainerRequest) HasMp146() bool

HasMp146 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp147

func (o *CreateContainerRequest) HasMp147() bool

HasMp147 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp148

func (o *CreateContainerRequest) HasMp148() bool

HasMp148 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp149

func (o *CreateContainerRequest) HasMp149() bool

HasMp149 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp15

func (o *CreateContainerRequest) HasMp15() bool

HasMp15 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp150

func (o *CreateContainerRequest) HasMp150() bool

HasMp150 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp151

func (o *CreateContainerRequest) HasMp151() bool

HasMp151 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp152

func (o *CreateContainerRequest) HasMp152() bool

HasMp152 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp153

func (o *CreateContainerRequest) HasMp153() bool

HasMp153 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp154

func (o *CreateContainerRequest) HasMp154() bool

HasMp154 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp155

func (o *CreateContainerRequest) HasMp155() bool

HasMp155 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp156

func (o *CreateContainerRequest) HasMp156() bool

HasMp156 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp157

func (o *CreateContainerRequest) HasMp157() bool

HasMp157 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp158

func (o *CreateContainerRequest) HasMp158() bool

HasMp158 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp159

func (o *CreateContainerRequest) HasMp159() bool

HasMp159 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp16

func (o *CreateContainerRequest) HasMp16() bool

HasMp16 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp160

func (o *CreateContainerRequest) HasMp160() bool

HasMp160 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp161

func (o *CreateContainerRequest) HasMp161() bool

HasMp161 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp162

func (o *CreateContainerRequest) HasMp162() bool

HasMp162 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp163

func (o *CreateContainerRequest) HasMp163() bool

HasMp163 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp164

func (o *CreateContainerRequest) HasMp164() bool

HasMp164 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp165

func (o *CreateContainerRequest) HasMp165() bool

HasMp165 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp166

func (o *CreateContainerRequest) HasMp166() bool

HasMp166 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp167

func (o *CreateContainerRequest) HasMp167() bool

HasMp167 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp168

func (o *CreateContainerRequest) HasMp168() bool

HasMp168 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp169

func (o *CreateContainerRequest) HasMp169() bool

HasMp169 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp17

func (o *CreateContainerRequest) HasMp17() bool

HasMp17 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp170

func (o *CreateContainerRequest) HasMp170() bool

HasMp170 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp171

func (o *CreateContainerRequest) HasMp171() bool

HasMp171 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp172

func (o *CreateContainerRequest) HasMp172() bool

HasMp172 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp173

func (o *CreateContainerRequest) HasMp173() bool

HasMp173 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp174

func (o *CreateContainerRequest) HasMp174() bool

HasMp174 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp175

func (o *CreateContainerRequest) HasMp175() bool

HasMp175 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp176

func (o *CreateContainerRequest) HasMp176() bool

HasMp176 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp177

func (o *CreateContainerRequest) HasMp177() bool

HasMp177 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp178

func (o *CreateContainerRequest) HasMp178() bool

HasMp178 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp179

func (o *CreateContainerRequest) HasMp179() bool

HasMp179 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp18

func (o *CreateContainerRequest) HasMp18() bool

HasMp18 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp180

func (o *CreateContainerRequest) HasMp180() bool

HasMp180 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp181

func (o *CreateContainerRequest) HasMp181() bool

HasMp181 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp182

func (o *CreateContainerRequest) HasMp182() bool

HasMp182 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp183

func (o *CreateContainerRequest) HasMp183() bool

HasMp183 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp184

func (o *CreateContainerRequest) HasMp184() bool

HasMp184 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp185

func (o *CreateContainerRequest) HasMp185() bool

HasMp185 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp186

func (o *CreateContainerRequest) HasMp186() bool

HasMp186 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp187

func (o *CreateContainerRequest) HasMp187() bool

HasMp187 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp188

func (o *CreateContainerRequest) HasMp188() bool

HasMp188 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp189

func (o *CreateContainerRequest) HasMp189() bool

HasMp189 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp19

func (o *CreateContainerRequest) HasMp19() bool

HasMp19 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp190

func (o *CreateContainerRequest) HasMp190() bool

HasMp190 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp191

func (o *CreateContainerRequest) HasMp191() bool

HasMp191 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp192

func (o *CreateContainerRequest) HasMp192() bool

HasMp192 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp193

func (o *CreateContainerRequest) HasMp193() bool

HasMp193 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp194

func (o *CreateContainerRequest) HasMp194() bool

HasMp194 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp195

func (o *CreateContainerRequest) HasMp195() bool

HasMp195 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp196

func (o *CreateContainerRequest) HasMp196() bool

HasMp196 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp197

func (o *CreateContainerRequest) HasMp197() bool

HasMp197 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp198

func (o *CreateContainerRequest) HasMp198() bool

HasMp198 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp199

func (o *CreateContainerRequest) HasMp199() bool

HasMp199 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp2

func (o *CreateContainerRequest) HasMp2() bool

HasMp2 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp20

func (o *CreateContainerRequest) HasMp20() bool

HasMp20 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp200

func (o *CreateContainerRequest) HasMp200() bool

HasMp200 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp201

func (o *CreateContainerRequest) HasMp201() bool

HasMp201 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp202

func (o *CreateContainerRequest) HasMp202() bool

HasMp202 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp203

func (o *CreateContainerRequest) HasMp203() bool

HasMp203 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp204

func (o *CreateContainerRequest) HasMp204() bool

HasMp204 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp205

func (o *CreateContainerRequest) HasMp205() bool

HasMp205 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp206

func (o *CreateContainerRequest) HasMp206() bool

HasMp206 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp207

func (o *CreateContainerRequest) HasMp207() bool

HasMp207 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp208

func (o *CreateContainerRequest) HasMp208() bool

HasMp208 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp209

func (o *CreateContainerRequest) HasMp209() bool

HasMp209 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp21

func (o *CreateContainerRequest) HasMp21() bool

HasMp21 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp210

func (o *CreateContainerRequest) HasMp210() bool

HasMp210 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp211

func (o *CreateContainerRequest) HasMp211() bool

HasMp211 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp212

func (o *CreateContainerRequest) HasMp212() bool

HasMp212 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp213

func (o *CreateContainerRequest) HasMp213() bool

HasMp213 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp214

func (o *CreateContainerRequest) HasMp214() bool

HasMp214 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp215

func (o *CreateContainerRequest) HasMp215() bool

HasMp215 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp216

func (o *CreateContainerRequest) HasMp216() bool

HasMp216 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp217

func (o *CreateContainerRequest) HasMp217() bool

HasMp217 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp218

func (o *CreateContainerRequest) HasMp218() bool

HasMp218 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp219

func (o *CreateContainerRequest) HasMp219() bool

HasMp219 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp22

func (o *CreateContainerRequest) HasMp22() bool

HasMp22 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp220

func (o *CreateContainerRequest) HasMp220() bool

HasMp220 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp221

func (o *CreateContainerRequest) HasMp221() bool

HasMp221 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp222

func (o *CreateContainerRequest) HasMp222() bool

HasMp222 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp223

func (o *CreateContainerRequest) HasMp223() bool

HasMp223 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp224

func (o *CreateContainerRequest) HasMp224() bool

HasMp224 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp225

func (o *CreateContainerRequest) HasMp225() bool

HasMp225 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp226

func (o *CreateContainerRequest) HasMp226() bool

HasMp226 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp227

func (o *CreateContainerRequest) HasMp227() bool

HasMp227 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp228

func (o *CreateContainerRequest) HasMp228() bool

HasMp228 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp229

func (o *CreateContainerRequest) HasMp229() bool

HasMp229 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp23

func (o *CreateContainerRequest) HasMp23() bool

HasMp23 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp230

func (o *CreateContainerRequest) HasMp230() bool

HasMp230 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp231

func (o *CreateContainerRequest) HasMp231() bool

HasMp231 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp232

func (o *CreateContainerRequest) HasMp232() bool

HasMp232 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp233

func (o *CreateContainerRequest) HasMp233() bool

HasMp233 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp234

func (o *CreateContainerRequest) HasMp234() bool

HasMp234 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp235

func (o *CreateContainerRequest) HasMp235() bool

HasMp235 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp236

func (o *CreateContainerRequest) HasMp236() bool

HasMp236 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp237

func (o *CreateContainerRequest) HasMp237() bool

HasMp237 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp238

func (o *CreateContainerRequest) HasMp238() bool

HasMp238 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp239

func (o *CreateContainerRequest) HasMp239() bool

HasMp239 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp24

func (o *CreateContainerRequest) HasMp24() bool

HasMp24 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp240

func (o *CreateContainerRequest) HasMp240() bool

HasMp240 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp241

func (o *CreateContainerRequest) HasMp241() bool

HasMp241 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp242

func (o *CreateContainerRequest) HasMp242() bool

HasMp242 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp243

func (o *CreateContainerRequest) HasMp243() bool

HasMp243 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp244

func (o *CreateContainerRequest) HasMp244() bool

HasMp244 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp245

func (o *CreateContainerRequest) HasMp245() bool

HasMp245 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp246

func (o *CreateContainerRequest) HasMp246() bool

HasMp246 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp247

func (o *CreateContainerRequest) HasMp247() bool

HasMp247 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp248

func (o *CreateContainerRequest) HasMp248() bool

HasMp248 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp249

func (o *CreateContainerRequest) HasMp249() bool

HasMp249 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp25

func (o *CreateContainerRequest) HasMp25() bool

HasMp25 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp250

func (o *CreateContainerRequest) HasMp250() bool

HasMp250 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp251

func (o *CreateContainerRequest) HasMp251() bool

HasMp251 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp252

func (o *CreateContainerRequest) HasMp252() bool

HasMp252 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp253

func (o *CreateContainerRequest) HasMp253() bool

HasMp253 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp254

func (o *CreateContainerRequest) HasMp254() bool

HasMp254 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp255

func (o *CreateContainerRequest) HasMp255() bool

HasMp255 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp26

func (o *CreateContainerRequest) HasMp26() bool

HasMp26 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp27

func (o *CreateContainerRequest) HasMp27() bool

HasMp27 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp28

func (o *CreateContainerRequest) HasMp28() bool

HasMp28 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp29

func (o *CreateContainerRequest) HasMp29() bool

HasMp29 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp3

func (o *CreateContainerRequest) HasMp3() bool

HasMp3 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp30

func (o *CreateContainerRequest) HasMp30() bool

HasMp30 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp31

func (o *CreateContainerRequest) HasMp31() bool

HasMp31 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp32

func (o *CreateContainerRequest) HasMp32() bool

HasMp32 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp33

func (o *CreateContainerRequest) HasMp33() bool

HasMp33 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp34

func (o *CreateContainerRequest) HasMp34() bool

HasMp34 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp35

func (o *CreateContainerRequest) HasMp35() bool

HasMp35 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp36

func (o *CreateContainerRequest) HasMp36() bool

HasMp36 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp37

func (o *CreateContainerRequest) HasMp37() bool

HasMp37 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp38

func (o *CreateContainerRequest) HasMp38() bool

HasMp38 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp39

func (o *CreateContainerRequest) HasMp39() bool

HasMp39 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp4

func (o *CreateContainerRequest) HasMp4() bool

HasMp4 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp40

func (o *CreateContainerRequest) HasMp40() bool

HasMp40 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp41

func (o *CreateContainerRequest) HasMp41() bool

HasMp41 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp42

func (o *CreateContainerRequest) HasMp42() bool

HasMp42 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp43

func (o *CreateContainerRequest) HasMp43() bool

HasMp43 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp44

func (o *CreateContainerRequest) HasMp44() bool

HasMp44 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp45

func (o *CreateContainerRequest) HasMp45() bool

HasMp45 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp46

func (o *CreateContainerRequest) HasMp46() bool

HasMp46 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp47

func (o *CreateContainerRequest) HasMp47() bool

HasMp47 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp48

func (o *CreateContainerRequest) HasMp48() bool

HasMp48 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp49

func (o *CreateContainerRequest) HasMp49() bool

HasMp49 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp5

func (o *CreateContainerRequest) HasMp5() bool

HasMp5 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp50

func (o *CreateContainerRequest) HasMp50() bool

HasMp50 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp51

func (o *CreateContainerRequest) HasMp51() bool

HasMp51 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp52

func (o *CreateContainerRequest) HasMp52() bool

HasMp52 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp53

func (o *CreateContainerRequest) HasMp53() bool

HasMp53 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp54

func (o *CreateContainerRequest) HasMp54() bool

HasMp54 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp55

func (o *CreateContainerRequest) HasMp55() bool

HasMp55 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp56

func (o *CreateContainerRequest) HasMp56() bool

HasMp56 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp57

func (o *CreateContainerRequest) HasMp57() bool

HasMp57 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp58

func (o *CreateContainerRequest) HasMp58() bool

HasMp58 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp59

func (o *CreateContainerRequest) HasMp59() bool

HasMp59 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp6

func (o *CreateContainerRequest) HasMp6() bool

HasMp6 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp60

func (o *CreateContainerRequest) HasMp60() bool

HasMp60 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp61

func (o *CreateContainerRequest) HasMp61() bool

HasMp61 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp62

func (o *CreateContainerRequest) HasMp62() bool

HasMp62 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp63

func (o *CreateContainerRequest) HasMp63() bool

HasMp63 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp64

func (o *CreateContainerRequest) HasMp64() bool

HasMp64 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp65

func (o *CreateContainerRequest) HasMp65() bool

HasMp65 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp66

func (o *CreateContainerRequest) HasMp66() bool

HasMp66 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp67

func (o *CreateContainerRequest) HasMp67() bool

HasMp67 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp68

func (o *CreateContainerRequest) HasMp68() bool

HasMp68 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp69

func (o *CreateContainerRequest) HasMp69() bool

HasMp69 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp7

func (o *CreateContainerRequest) HasMp7() bool

HasMp7 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp70

func (o *CreateContainerRequest) HasMp70() bool

HasMp70 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp71

func (o *CreateContainerRequest) HasMp71() bool

HasMp71 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp72

func (o *CreateContainerRequest) HasMp72() bool

HasMp72 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp73

func (o *CreateContainerRequest) HasMp73() bool

HasMp73 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp74

func (o *CreateContainerRequest) HasMp74() bool

HasMp74 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp75

func (o *CreateContainerRequest) HasMp75() bool

HasMp75 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp76

func (o *CreateContainerRequest) HasMp76() bool

HasMp76 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp77

func (o *CreateContainerRequest) HasMp77() bool

HasMp77 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp78

func (o *CreateContainerRequest) HasMp78() bool

HasMp78 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp79

func (o *CreateContainerRequest) HasMp79() bool

HasMp79 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp8

func (o *CreateContainerRequest) HasMp8() bool

HasMp8 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp80

func (o *CreateContainerRequest) HasMp80() bool

HasMp80 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp81

func (o *CreateContainerRequest) HasMp81() bool

HasMp81 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp82

func (o *CreateContainerRequest) HasMp82() bool

HasMp82 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp83

func (o *CreateContainerRequest) HasMp83() bool

HasMp83 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp84

func (o *CreateContainerRequest) HasMp84() bool

HasMp84 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp85

func (o *CreateContainerRequest) HasMp85() bool

HasMp85 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp86

func (o *CreateContainerRequest) HasMp86() bool

HasMp86 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp87

func (o *CreateContainerRequest) HasMp87() bool

HasMp87 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp88

func (o *CreateContainerRequest) HasMp88() bool

HasMp88 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp89

func (o *CreateContainerRequest) HasMp89() bool

HasMp89 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp9

func (o *CreateContainerRequest) HasMp9() bool

HasMp9 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp90

func (o *CreateContainerRequest) HasMp90() bool

HasMp90 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp91

func (o *CreateContainerRequest) HasMp91() bool

HasMp91 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp92

func (o *CreateContainerRequest) HasMp92() bool

HasMp92 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp93

func (o *CreateContainerRequest) HasMp93() bool

HasMp93 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp94

func (o *CreateContainerRequest) HasMp94() bool

HasMp94 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp95

func (o *CreateContainerRequest) HasMp95() bool

HasMp95 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp96

func (o *CreateContainerRequest) HasMp96() bool

HasMp96 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp97

func (o *CreateContainerRequest) HasMp97() bool

HasMp97 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp98

func (o *CreateContainerRequest) HasMp98() bool

HasMp98 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasMp99

func (o *CreateContainerRequest) HasMp99() bool

HasMp99 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNameserver

func (o *CreateContainerRequest) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet0

func (o *CreateContainerRequest) HasNet0() bool

HasNet0 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet1

func (o *CreateContainerRequest) HasNet1() bool

HasNet1 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet10

func (o *CreateContainerRequest) HasNet10() bool

HasNet10 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet11

func (o *CreateContainerRequest) HasNet11() bool

HasNet11 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet12

func (o *CreateContainerRequest) HasNet12() bool

HasNet12 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet13

func (o *CreateContainerRequest) HasNet13() bool

HasNet13 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet14

func (o *CreateContainerRequest) HasNet14() bool

HasNet14 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet15

func (o *CreateContainerRequest) HasNet15() bool

HasNet15 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet16

func (o *CreateContainerRequest) HasNet16() bool

HasNet16 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet17

func (o *CreateContainerRequest) HasNet17() bool

HasNet17 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet18

func (o *CreateContainerRequest) HasNet18() bool

HasNet18 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet19

func (o *CreateContainerRequest) HasNet19() bool

HasNet19 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet2

func (o *CreateContainerRequest) HasNet2() bool

HasNet2 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet20

func (o *CreateContainerRequest) HasNet20() bool

HasNet20 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet21

func (o *CreateContainerRequest) HasNet21() bool

HasNet21 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet22

func (o *CreateContainerRequest) HasNet22() bool

HasNet22 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet23

func (o *CreateContainerRequest) HasNet23() bool

HasNet23 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet24

func (o *CreateContainerRequest) HasNet24() bool

HasNet24 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet25

func (o *CreateContainerRequest) HasNet25() bool

HasNet25 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet26

func (o *CreateContainerRequest) HasNet26() bool

HasNet26 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet27

func (o *CreateContainerRequest) HasNet27() bool

HasNet27 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet28

func (o *CreateContainerRequest) HasNet28() bool

HasNet28 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet29

func (o *CreateContainerRequest) HasNet29() bool

HasNet29 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet3

func (o *CreateContainerRequest) HasNet3() bool

HasNet3 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet30

func (o *CreateContainerRequest) HasNet30() bool

HasNet30 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet31

func (o *CreateContainerRequest) HasNet31() bool

HasNet31 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet4

func (o *CreateContainerRequest) HasNet4() bool

HasNet4 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet5

func (o *CreateContainerRequest) HasNet5() bool

HasNet5 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet6

func (o *CreateContainerRequest) HasNet6() bool

HasNet6 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet7

func (o *CreateContainerRequest) HasNet7() bool

HasNet7 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet8

func (o *CreateContainerRequest) HasNet8() bool

HasNet8 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasNet9

func (o *CreateContainerRequest) HasNet9() bool

HasNet9 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasOnboot

func (o *CreateContainerRequest) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*CreateContainerRequest) HasOstype

func (o *CreateContainerRequest) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*CreateContainerRequest) HasPassword

func (o *CreateContainerRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CreateContainerRequest) HasPool

func (o *CreateContainerRequest) HasPool() bool

HasPool returns a boolean if a field has been set.

func (*CreateContainerRequest) HasProtection

func (o *CreateContainerRequest) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*CreateContainerRequest) HasRestore

func (o *CreateContainerRequest) HasRestore() bool

HasRestore returns a boolean if a field has been set.

func (*CreateContainerRequest) HasRootfs

func (o *CreateContainerRequest) HasRootfs() bool

HasRootfs returns a boolean if a field has been set.

func (*CreateContainerRequest) HasSearchdomain

func (o *CreateContainerRequest) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*CreateContainerRequest) HasSshPublicKeys

func (o *CreateContainerRequest) HasSshPublicKeys() bool

HasSshPublicKeys returns a boolean if a field has been set.

func (*CreateContainerRequest) HasStart

func (o *CreateContainerRequest) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*CreateContainerRequest) HasStartup

func (o *CreateContainerRequest) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*CreateContainerRequest) HasStorage

func (o *CreateContainerRequest) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*CreateContainerRequest) HasSwap

func (o *CreateContainerRequest) HasSwap() bool

HasSwap returns a boolean if a field has been set.

func (*CreateContainerRequest) HasTags

func (o *CreateContainerRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*CreateContainerRequest) HasTemplate

func (o *CreateContainerRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*CreateContainerRequest) HasTimezone

func (o *CreateContainerRequest) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*CreateContainerRequest) HasTty

func (o *CreateContainerRequest) HasTty() bool

HasTty returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnique

func (o *CreateContainerRequest) HasUnique() bool

HasUnique returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnprivileged

func (o *CreateContainerRequest) HasUnprivileged() bool

HasUnprivileged returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused0

func (o *CreateContainerRequest) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused1

func (o *CreateContainerRequest) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused10

func (o *CreateContainerRequest) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused11

func (o *CreateContainerRequest) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused12

func (o *CreateContainerRequest) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused13

func (o *CreateContainerRequest) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused14

func (o *CreateContainerRequest) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused15

func (o *CreateContainerRequest) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused16

func (o *CreateContainerRequest) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused17

func (o *CreateContainerRequest) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused18

func (o *CreateContainerRequest) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused19

func (o *CreateContainerRequest) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused2

func (o *CreateContainerRequest) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused20

func (o *CreateContainerRequest) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused21

func (o *CreateContainerRequest) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused22

func (o *CreateContainerRequest) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused23

func (o *CreateContainerRequest) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused24

func (o *CreateContainerRequest) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused25

func (o *CreateContainerRequest) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused26

func (o *CreateContainerRequest) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused27

func (o *CreateContainerRequest) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused28

func (o *CreateContainerRequest) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused29

func (o *CreateContainerRequest) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused3

func (o *CreateContainerRequest) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused4

func (o *CreateContainerRequest) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused5

func (o *CreateContainerRequest) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused6

func (o *CreateContainerRequest) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused7

func (o *CreateContainerRequest) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused8

func (o *CreateContainerRequest) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*CreateContainerRequest) HasUnused9

func (o *CreateContainerRequest) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (CreateContainerRequest) MarshalJSON

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

func (*CreateContainerRequest) SetArch

func (o *CreateContainerRequest) SetArch(v string)

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*CreateContainerRequest) SetBwlimit

func (o *CreateContainerRequest) SetBwlimit(v float32)

SetBwlimit gets a reference to the given float32 and assigns it to the Bwlimit field.

func (*CreateContainerRequest) SetCmode

func (o *CreateContainerRequest) SetCmode(v string)

SetCmode gets a reference to the given string and assigns it to the Cmode field.

func (*CreateContainerRequest) SetConsole

func (o *CreateContainerRequest) SetConsole(v int32)

SetConsole gets a reference to the given int32 and assigns it to the Console field.

func (*CreateContainerRequest) SetCores

func (o *CreateContainerRequest) SetCores(v int64)

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*CreateContainerRequest) SetCpulimit

func (o *CreateContainerRequest) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*CreateContainerRequest) SetCpuunits

func (o *CreateContainerRequest) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*CreateContainerRequest) SetDebug

func (o *CreateContainerRequest) SetDebug(v int32)

SetDebug gets a reference to the given int32 and assigns it to the Debug field.

func (*CreateContainerRequest) SetDescription

func (o *CreateContainerRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateContainerRequest) SetDev0 added in v1.0.4

func (o *CreateContainerRequest) SetDev0(v string)

SetDev0 gets a reference to the given string and assigns it to the Dev0 field.

func (*CreateContainerRequest) SetDev1 added in v1.0.4

func (o *CreateContainerRequest) SetDev1(v string)

SetDev1 gets a reference to the given string and assigns it to the Dev1 field.

func (*CreateContainerRequest) SetDev10 added in v1.0.4

func (o *CreateContainerRequest) SetDev10(v string)

SetDev10 gets a reference to the given string and assigns it to the Dev10 field.

func (*CreateContainerRequest) SetDev11 added in v1.0.4

func (o *CreateContainerRequest) SetDev11(v string)

SetDev11 gets a reference to the given string and assigns it to the Dev11 field.

func (*CreateContainerRequest) SetDev12 added in v1.0.4

func (o *CreateContainerRequest) SetDev12(v string)

SetDev12 gets a reference to the given string and assigns it to the Dev12 field.

func (*CreateContainerRequest) SetDev13 added in v1.0.4

func (o *CreateContainerRequest) SetDev13(v string)

SetDev13 gets a reference to the given string and assigns it to the Dev13 field.

func (*CreateContainerRequest) SetDev14 added in v1.0.4

func (o *CreateContainerRequest) SetDev14(v string)

SetDev14 gets a reference to the given string and assigns it to the Dev14 field.

func (*CreateContainerRequest) SetDev15 added in v1.0.4

func (o *CreateContainerRequest) SetDev15(v string)

SetDev15 gets a reference to the given string and assigns it to the Dev15 field.

func (*CreateContainerRequest) SetDev16 added in v1.0.4

func (o *CreateContainerRequest) SetDev16(v string)

SetDev16 gets a reference to the given string and assigns it to the Dev16 field.

func (*CreateContainerRequest) SetDev17 added in v1.0.4

func (o *CreateContainerRequest) SetDev17(v string)

SetDev17 gets a reference to the given string and assigns it to the Dev17 field.

func (*CreateContainerRequest) SetDev18 added in v1.0.4

func (o *CreateContainerRequest) SetDev18(v string)

SetDev18 gets a reference to the given string and assigns it to the Dev18 field.

func (*CreateContainerRequest) SetDev19 added in v1.0.4

func (o *CreateContainerRequest) SetDev19(v string)

SetDev19 gets a reference to the given string and assigns it to the Dev19 field.

func (*CreateContainerRequest) SetDev2 added in v1.0.4

func (o *CreateContainerRequest) SetDev2(v string)

SetDev2 gets a reference to the given string and assigns it to the Dev2 field.

func (*CreateContainerRequest) SetDev20 added in v1.0.4

func (o *CreateContainerRequest) SetDev20(v string)

SetDev20 gets a reference to the given string and assigns it to the Dev20 field.

func (*CreateContainerRequest) SetDev21 added in v1.0.4

func (o *CreateContainerRequest) SetDev21(v string)

SetDev21 gets a reference to the given string and assigns it to the Dev21 field.

func (*CreateContainerRequest) SetDev22 added in v1.0.4

func (o *CreateContainerRequest) SetDev22(v string)

SetDev22 gets a reference to the given string and assigns it to the Dev22 field.

func (*CreateContainerRequest) SetDev23 added in v1.0.4

func (o *CreateContainerRequest) SetDev23(v string)

SetDev23 gets a reference to the given string and assigns it to the Dev23 field.

func (*CreateContainerRequest) SetDev24 added in v1.0.4

func (o *CreateContainerRequest) SetDev24(v string)

SetDev24 gets a reference to the given string and assigns it to the Dev24 field.

func (*CreateContainerRequest) SetDev25 added in v1.0.4

func (o *CreateContainerRequest) SetDev25(v string)

SetDev25 gets a reference to the given string and assigns it to the Dev25 field.

func (*CreateContainerRequest) SetDev26 added in v1.0.4

func (o *CreateContainerRequest) SetDev26(v string)

SetDev26 gets a reference to the given string and assigns it to the Dev26 field.

func (*CreateContainerRequest) SetDev27 added in v1.0.4

func (o *CreateContainerRequest) SetDev27(v string)

SetDev27 gets a reference to the given string and assigns it to the Dev27 field.

func (*CreateContainerRequest) SetDev28 added in v1.0.4

func (o *CreateContainerRequest) SetDev28(v string)

SetDev28 gets a reference to the given string and assigns it to the Dev28 field.

func (*CreateContainerRequest) SetDev29 added in v1.0.4

func (o *CreateContainerRequest) SetDev29(v string)

SetDev29 gets a reference to the given string and assigns it to the Dev29 field.

func (*CreateContainerRequest) SetDev3 added in v1.0.4

func (o *CreateContainerRequest) SetDev3(v string)

SetDev3 gets a reference to the given string and assigns it to the Dev3 field.

func (*CreateContainerRequest) SetDev4 added in v1.0.4

func (o *CreateContainerRequest) SetDev4(v string)

SetDev4 gets a reference to the given string and assigns it to the Dev4 field.

func (*CreateContainerRequest) SetDev5 added in v1.0.4

func (o *CreateContainerRequest) SetDev5(v string)

SetDev5 gets a reference to the given string and assigns it to the Dev5 field.

func (*CreateContainerRequest) SetDev6 added in v1.0.4

func (o *CreateContainerRequest) SetDev6(v string)

SetDev6 gets a reference to the given string and assigns it to the Dev6 field.

func (*CreateContainerRequest) SetDev7 added in v1.0.4

func (o *CreateContainerRequest) SetDev7(v string)

SetDev7 gets a reference to the given string and assigns it to the Dev7 field.

func (*CreateContainerRequest) SetDev8 added in v1.0.4

func (o *CreateContainerRequest) SetDev8(v string)

SetDev8 gets a reference to the given string and assigns it to the Dev8 field.

func (*CreateContainerRequest) SetDev9 added in v1.0.4

func (o *CreateContainerRequest) SetDev9(v string)

SetDev9 gets a reference to the given string and assigns it to the Dev9 field.

func (*CreateContainerRequest) SetFeatures

func (o *CreateContainerRequest) SetFeatures(v string)

SetFeatures gets a reference to the given string and assigns it to the Features field.

func (*CreateContainerRequest) SetForce

func (o *CreateContainerRequest) SetForce(v int32)

SetForce gets a reference to the given int32 and assigns it to the Force field.

func (*CreateContainerRequest) SetHookscript

func (o *CreateContainerRequest) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*CreateContainerRequest) SetHostname

func (o *CreateContainerRequest) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*CreateContainerRequest) SetIgnoreUnpackErrors

func (o *CreateContainerRequest) SetIgnoreUnpackErrors(v int32)

SetIgnoreUnpackErrors gets a reference to the given int32 and assigns it to the IgnoreUnpackErrors field.

func (*CreateContainerRequest) SetLock

func (o *CreateContainerRequest) SetLock(v string)

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*CreateContainerRequest) SetMemory

func (o *CreateContainerRequest) SetMemory(v int64)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (*CreateContainerRequest) SetMp0

func (o *CreateContainerRequest) SetMp0(v string)

SetMp0 gets a reference to the given string and assigns it to the Mp0 field.

func (*CreateContainerRequest) SetMp1

func (o *CreateContainerRequest) SetMp1(v string)

SetMp1 gets a reference to the given string and assigns it to the Mp1 field.

func (*CreateContainerRequest) SetMp10

func (o *CreateContainerRequest) SetMp10(v string)

SetMp10 gets a reference to the given string and assigns it to the Mp10 field.

func (*CreateContainerRequest) SetMp100

func (o *CreateContainerRequest) SetMp100(v string)

SetMp100 gets a reference to the given string and assigns it to the Mp100 field.

func (*CreateContainerRequest) SetMp101

func (o *CreateContainerRequest) SetMp101(v string)

SetMp101 gets a reference to the given string and assigns it to the Mp101 field.

func (*CreateContainerRequest) SetMp102

func (o *CreateContainerRequest) SetMp102(v string)

SetMp102 gets a reference to the given string and assigns it to the Mp102 field.

func (*CreateContainerRequest) SetMp103

func (o *CreateContainerRequest) SetMp103(v string)

SetMp103 gets a reference to the given string and assigns it to the Mp103 field.

func (*CreateContainerRequest) SetMp104

func (o *CreateContainerRequest) SetMp104(v string)

SetMp104 gets a reference to the given string and assigns it to the Mp104 field.

func (*CreateContainerRequest) SetMp105

func (o *CreateContainerRequest) SetMp105(v string)

SetMp105 gets a reference to the given string and assigns it to the Mp105 field.

func (*CreateContainerRequest) SetMp106

func (o *CreateContainerRequest) SetMp106(v string)

SetMp106 gets a reference to the given string and assigns it to the Mp106 field.

func (*CreateContainerRequest) SetMp107

func (o *CreateContainerRequest) SetMp107(v string)

SetMp107 gets a reference to the given string and assigns it to the Mp107 field.

func (*CreateContainerRequest) SetMp108

func (o *CreateContainerRequest) SetMp108(v string)

SetMp108 gets a reference to the given string and assigns it to the Mp108 field.

func (*CreateContainerRequest) SetMp109

func (o *CreateContainerRequest) SetMp109(v string)

SetMp109 gets a reference to the given string and assigns it to the Mp109 field.

func (*CreateContainerRequest) SetMp11

func (o *CreateContainerRequest) SetMp11(v string)

SetMp11 gets a reference to the given string and assigns it to the Mp11 field.

func (*CreateContainerRequest) SetMp110

func (o *CreateContainerRequest) SetMp110(v string)

SetMp110 gets a reference to the given string and assigns it to the Mp110 field.

func (*CreateContainerRequest) SetMp111

func (o *CreateContainerRequest) SetMp111(v string)

SetMp111 gets a reference to the given string and assigns it to the Mp111 field.

func (*CreateContainerRequest) SetMp112

func (o *CreateContainerRequest) SetMp112(v string)

SetMp112 gets a reference to the given string and assigns it to the Mp112 field.

func (*CreateContainerRequest) SetMp113

func (o *CreateContainerRequest) SetMp113(v string)

SetMp113 gets a reference to the given string and assigns it to the Mp113 field.

func (*CreateContainerRequest) SetMp114

func (o *CreateContainerRequest) SetMp114(v string)

SetMp114 gets a reference to the given string and assigns it to the Mp114 field.

func (*CreateContainerRequest) SetMp115

func (o *CreateContainerRequest) SetMp115(v string)

SetMp115 gets a reference to the given string and assigns it to the Mp115 field.

func (*CreateContainerRequest) SetMp116

func (o *CreateContainerRequest) SetMp116(v string)

SetMp116 gets a reference to the given string and assigns it to the Mp116 field.

func (*CreateContainerRequest) SetMp117

func (o *CreateContainerRequest) SetMp117(v string)

SetMp117 gets a reference to the given string and assigns it to the Mp117 field.

func (*CreateContainerRequest) SetMp118

func (o *CreateContainerRequest) SetMp118(v string)

SetMp118 gets a reference to the given string and assigns it to the Mp118 field.

func (*CreateContainerRequest) SetMp119

func (o *CreateContainerRequest) SetMp119(v string)

SetMp119 gets a reference to the given string and assigns it to the Mp119 field.

func (*CreateContainerRequest) SetMp12

func (o *CreateContainerRequest) SetMp12(v string)

SetMp12 gets a reference to the given string and assigns it to the Mp12 field.

func (*CreateContainerRequest) SetMp120

func (o *CreateContainerRequest) SetMp120(v string)

SetMp120 gets a reference to the given string and assigns it to the Mp120 field.

func (*CreateContainerRequest) SetMp121

func (o *CreateContainerRequest) SetMp121(v string)

SetMp121 gets a reference to the given string and assigns it to the Mp121 field.

func (*CreateContainerRequest) SetMp122

func (o *CreateContainerRequest) SetMp122(v string)

SetMp122 gets a reference to the given string and assigns it to the Mp122 field.

func (*CreateContainerRequest) SetMp123

func (o *CreateContainerRequest) SetMp123(v string)

SetMp123 gets a reference to the given string and assigns it to the Mp123 field.

func (*CreateContainerRequest) SetMp124

func (o *CreateContainerRequest) SetMp124(v string)

SetMp124 gets a reference to the given string and assigns it to the Mp124 field.

func (*CreateContainerRequest) SetMp125

func (o *CreateContainerRequest) SetMp125(v string)

SetMp125 gets a reference to the given string and assigns it to the Mp125 field.

func (*CreateContainerRequest) SetMp126

func (o *CreateContainerRequest) SetMp126(v string)

SetMp126 gets a reference to the given string and assigns it to the Mp126 field.

func (*CreateContainerRequest) SetMp127

func (o *CreateContainerRequest) SetMp127(v string)

SetMp127 gets a reference to the given string and assigns it to the Mp127 field.

func (*CreateContainerRequest) SetMp128

func (o *CreateContainerRequest) SetMp128(v string)

SetMp128 gets a reference to the given string and assigns it to the Mp128 field.

func (*CreateContainerRequest) SetMp129

func (o *CreateContainerRequest) SetMp129(v string)

SetMp129 gets a reference to the given string and assigns it to the Mp129 field.

func (*CreateContainerRequest) SetMp13

func (o *CreateContainerRequest) SetMp13(v string)

SetMp13 gets a reference to the given string and assigns it to the Mp13 field.

func (*CreateContainerRequest) SetMp130

func (o *CreateContainerRequest) SetMp130(v string)

SetMp130 gets a reference to the given string and assigns it to the Mp130 field.

func (*CreateContainerRequest) SetMp131

func (o *CreateContainerRequest) SetMp131(v string)

SetMp131 gets a reference to the given string and assigns it to the Mp131 field.

func (*CreateContainerRequest) SetMp132

func (o *CreateContainerRequest) SetMp132(v string)

SetMp132 gets a reference to the given string and assigns it to the Mp132 field.

func (*CreateContainerRequest) SetMp133

func (o *CreateContainerRequest) SetMp133(v string)

SetMp133 gets a reference to the given string and assigns it to the Mp133 field.

func (*CreateContainerRequest) SetMp134

func (o *CreateContainerRequest) SetMp134(v string)

SetMp134 gets a reference to the given string and assigns it to the Mp134 field.

func (*CreateContainerRequest) SetMp135

func (o *CreateContainerRequest) SetMp135(v string)

SetMp135 gets a reference to the given string and assigns it to the Mp135 field.

func (*CreateContainerRequest) SetMp136

func (o *CreateContainerRequest) SetMp136(v string)

SetMp136 gets a reference to the given string and assigns it to the Mp136 field.

func (*CreateContainerRequest) SetMp137

func (o *CreateContainerRequest) SetMp137(v string)

SetMp137 gets a reference to the given string and assigns it to the Mp137 field.

func (*CreateContainerRequest) SetMp138

func (o *CreateContainerRequest) SetMp138(v string)

SetMp138 gets a reference to the given string and assigns it to the Mp138 field.

func (*CreateContainerRequest) SetMp139

func (o *CreateContainerRequest) SetMp139(v string)

SetMp139 gets a reference to the given string and assigns it to the Mp139 field.

func (*CreateContainerRequest) SetMp14

func (o *CreateContainerRequest) SetMp14(v string)

SetMp14 gets a reference to the given string and assigns it to the Mp14 field.

func (*CreateContainerRequest) SetMp140

func (o *CreateContainerRequest) SetMp140(v string)

SetMp140 gets a reference to the given string and assigns it to the Mp140 field.

func (*CreateContainerRequest) SetMp141

func (o *CreateContainerRequest) SetMp141(v string)

SetMp141 gets a reference to the given string and assigns it to the Mp141 field.

func (*CreateContainerRequest) SetMp142

func (o *CreateContainerRequest) SetMp142(v string)

SetMp142 gets a reference to the given string and assigns it to the Mp142 field.

func (*CreateContainerRequest) SetMp143

func (o *CreateContainerRequest) SetMp143(v string)

SetMp143 gets a reference to the given string and assigns it to the Mp143 field.

func (*CreateContainerRequest) SetMp144

func (o *CreateContainerRequest) SetMp144(v string)

SetMp144 gets a reference to the given string and assigns it to the Mp144 field.

func (*CreateContainerRequest) SetMp145

func (o *CreateContainerRequest) SetMp145(v string)

SetMp145 gets a reference to the given string and assigns it to the Mp145 field.

func (*CreateContainerRequest) SetMp146

func (o *CreateContainerRequest) SetMp146(v string)

SetMp146 gets a reference to the given string and assigns it to the Mp146 field.

func (*CreateContainerRequest) SetMp147

func (o *CreateContainerRequest) SetMp147(v string)

SetMp147 gets a reference to the given string and assigns it to the Mp147 field.

func (*CreateContainerRequest) SetMp148

func (o *CreateContainerRequest) SetMp148(v string)

SetMp148 gets a reference to the given string and assigns it to the Mp148 field.

func (*CreateContainerRequest) SetMp149

func (o *CreateContainerRequest) SetMp149(v string)

SetMp149 gets a reference to the given string and assigns it to the Mp149 field.

func (*CreateContainerRequest) SetMp15

func (o *CreateContainerRequest) SetMp15(v string)

SetMp15 gets a reference to the given string and assigns it to the Mp15 field.

func (*CreateContainerRequest) SetMp150

func (o *CreateContainerRequest) SetMp150(v string)

SetMp150 gets a reference to the given string and assigns it to the Mp150 field.

func (*CreateContainerRequest) SetMp151

func (o *CreateContainerRequest) SetMp151(v string)

SetMp151 gets a reference to the given string and assigns it to the Mp151 field.

func (*CreateContainerRequest) SetMp152

func (o *CreateContainerRequest) SetMp152(v string)

SetMp152 gets a reference to the given string and assigns it to the Mp152 field.

func (*CreateContainerRequest) SetMp153

func (o *CreateContainerRequest) SetMp153(v string)

SetMp153 gets a reference to the given string and assigns it to the Mp153 field.

func (*CreateContainerRequest) SetMp154

func (o *CreateContainerRequest) SetMp154(v string)

SetMp154 gets a reference to the given string and assigns it to the Mp154 field.

func (*CreateContainerRequest) SetMp155

func (o *CreateContainerRequest) SetMp155(v string)

SetMp155 gets a reference to the given string and assigns it to the Mp155 field.

func (*CreateContainerRequest) SetMp156

func (o *CreateContainerRequest) SetMp156(v string)

SetMp156 gets a reference to the given string and assigns it to the Mp156 field.

func (*CreateContainerRequest) SetMp157

func (o *CreateContainerRequest) SetMp157(v string)

SetMp157 gets a reference to the given string and assigns it to the Mp157 field.

func (*CreateContainerRequest) SetMp158

func (o *CreateContainerRequest) SetMp158(v string)

SetMp158 gets a reference to the given string and assigns it to the Mp158 field.

func (*CreateContainerRequest) SetMp159

func (o *CreateContainerRequest) SetMp159(v string)

SetMp159 gets a reference to the given string and assigns it to the Mp159 field.

func (*CreateContainerRequest) SetMp16

func (o *CreateContainerRequest) SetMp16(v string)

SetMp16 gets a reference to the given string and assigns it to the Mp16 field.

func (*CreateContainerRequest) SetMp160

func (o *CreateContainerRequest) SetMp160(v string)

SetMp160 gets a reference to the given string and assigns it to the Mp160 field.

func (*CreateContainerRequest) SetMp161

func (o *CreateContainerRequest) SetMp161(v string)

SetMp161 gets a reference to the given string and assigns it to the Mp161 field.

func (*CreateContainerRequest) SetMp162

func (o *CreateContainerRequest) SetMp162(v string)

SetMp162 gets a reference to the given string and assigns it to the Mp162 field.

func (*CreateContainerRequest) SetMp163

func (o *CreateContainerRequest) SetMp163(v string)

SetMp163 gets a reference to the given string and assigns it to the Mp163 field.

func (*CreateContainerRequest) SetMp164

func (o *CreateContainerRequest) SetMp164(v string)

SetMp164 gets a reference to the given string and assigns it to the Mp164 field.

func (*CreateContainerRequest) SetMp165

func (o *CreateContainerRequest) SetMp165(v string)

SetMp165 gets a reference to the given string and assigns it to the Mp165 field.

func (*CreateContainerRequest) SetMp166

func (o *CreateContainerRequest) SetMp166(v string)

SetMp166 gets a reference to the given string and assigns it to the Mp166 field.

func (*CreateContainerRequest) SetMp167

func (o *CreateContainerRequest) SetMp167(v string)

SetMp167 gets a reference to the given string and assigns it to the Mp167 field.

func (*CreateContainerRequest) SetMp168

func (o *CreateContainerRequest) SetMp168(v string)

SetMp168 gets a reference to the given string and assigns it to the Mp168 field.

func (*CreateContainerRequest) SetMp169

func (o *CreateContainerRequest) SetMp169(v string)

SetMp169 gets a reference to the given string and assigns it to the Mp169 field.

func (*CreateContainerRequest) SetMp17

func (o *CreateContainerRequest) SetMp17(v string)

SetMp17 gets a reference to the given string and assigns it to the Mp17 field.

func (*CreateContainerRequest) SetMp170

func (o *CreateContainerRequest) SetMp170(v string)

SetMp170 gets a reference to the given string and assigns it to the Mp170 field.

func (*CreateContainerRequest) SetMp171

func (o *CreateContainerRequest) SetMp171(v string)

SetMp171 gets a reference to the given string and assigns it to the Mp171 field.

func (*CreateContainerRequest) SetMp172

func (o *CreateContainerRequest) SetMp172(v string)

SetMp172 gets a reference to the given string and assigns it to the Mp172 field.

func (*CreateContainerRequest) SetMp173

func (o *CreateContainerRequest) SetMp173(v string)

SetMp173 gets a reference to the given string and assigns it to the Mp173 field.

func (*CreateContainerRequest) SetMp174

func (o *CreateContainerRequest) SetMp174(v string)

SetMp174 gets a reference to the given string and assigns it to the Mp174 field.

func (*CreateContainerRequest) SetMp175

func (o *CreateContainerRequest) SetMp175(v string)

SetMp175 gets a reference to the given string and assigns it to the Mp175 field.

func (*CreateContainerRequest) SetMp176

func (o *CreateContainerRequest) SetMp176(v string)

SetMp176 gets a reference to the given string and assigns it to the Mp176 field.

func (*CreateContainerRequest) SetMp177

func (o *CreateContainerRequest) SetMp177(v string)

SetMp177 gets a reference to the given string and assigns it to the Mp177 field.

func (*CreateContainerRequest) SetMp178

func (o *CreateContainerRequest) SetMp178(v string)

SetMp178 gets a reference to the given string and assigns it to the Mp178 field.

func (*CreateContainerRequest) SetMp179

func (o *CreateContainerRequest) SetMp179(v string)

SetMp179 gets a reference to the given string and assigns it to the Mp179 field.

func (*CreateContainerRequest) SetMp18

func (o *CreateContainerRequest) SetMp18(v string)

SetMp18 gets a reference to the given string and assigns it to the Mp18 field.

func (*CreateContainerRequest) SetMp180

func (o *CreateContainerRequest) SetMp180(v string)

SetMp180 gets a reference to the given string and assigns it to the Mp180 field.

func (*CreateContainerRequest) SetMp181

func (o *CreateContainerRequest) SetMp181(v string)

SetMp181 gets a reference to the given string and assigns it to the Mp181 field.

func (*CreateContainerRequest) SetMp182

func (o *CreateContainerRequest) SetMp182(v string)

SetMp182 gets a reference to the given string and assigns it to the Mp182 field.

func (*CreateContainerRequest) SetMp183

func (o *CreateContainerRequest) SetMp183(v string)

SetMp183 gets a reference to the given string and assigns it to the Mp183 field.

func (*CreateContainerRequest) SetMp184

func (o *CreateContainerRequest) SetMp184(v string)

SetMp184 gets a reference to the given string and assigns it to the Mp184 field.

func (*CreateContainerRequest) SetMp185

func (o *CreateContainerRequest) SetMp185(v string)

SetMp185 gets a reference to the given string and assigns it to the Mp185 field.

func (*CreateContainerRequest) SetMp186

func (o *CreateContainerRequest) SetMp186(v string)

SetMp186 gets a reference to the given string and assigns it to the Mp186 field.

func (*CreateContainerRequest) SetMp187

func (o *CreateContainerRequest) SetMp187(v string)

SetMp187 gets a reference to the given string and assigns it to the Mp187 field.

func (*CreateContainerRequest) SetMp188

func (o *CreateContainerRequest) SetMp188(v string)

SetMp188 gets a reference to the given string and assigns it to the Mp188 field.

func (*CreateContainerRequest) SetMp189

func (o *CreateContainerRequest) SetMp189(v string)

SetMp189 gets a reference to the given string and assigns it to the Mp189 field.

func (*CreateContainerRequest) SetMp19

func (o *CreateContainerRequest) SetMp19(v string)

SetMp19 gets a reference to the given string and assigns it to the Mp19 field.

func (*CreateContainerRequest) SetMp190

func (o *CreateContainerRequest) SetMp190(v string)

SetMp190 gets a reference to the given string and assigns it to the Mp190 field.

func (*CreateContainerRequest) SetMp191

func (o *CreateContainerRequest) SetMp191(v string)

SetMp191 gets a reference to the given string and assigns it to the Mp191 field.

func (*CreateContainerRequest) SetMp192

func (o *CreateContainerRequest) SetMp192(v string)

SetMp192 gets a reference to the given string and assigns it to the Mp192 field.

func (*CreateContainerRequest) SetMp193

func (o *CreateContainerRequest) SetMp193(v string)

SetMp193 gets a reference to the given string and assigns it to the Mp193 field.

func (*CreateContainerRequest) SetMp194

func (o *CreateContainerRequest) SetMp194(v string)

SetMp194 gets a reference to the given string and assigns it to the Mp194 field.

func (*CreateContainerRequest) SetMp195

func (o *CreateContainerRequest) SetMp195(v string)

SetMp195 gets a reference to the given string and assigns it to the Mp195 field.

func (*CreateContainerRequest) SetMp196

func (o *CreateContainerRequest) SetMp196(v string)

SetMp196 gets a reference to the given string and assigns it to the Mp196 field.

func (*CreateContainerRequest) SetMp197

func (o *CreateContainerRequest) SetMp197(v string)

SetMp197 gets a reference to the given string and assigns it to the Mp197 field.

func (*CreateContainerRequest) SetMp198

func (o *CreateContainerRequest) SetMp198(v string)

SetMp198 gets a reference to the given string and assigns it to the Mp198 field.

func (*CreateContainerRequest) SetMp199

func (o *CreateContainerRequest) SetMp199(v string)

SetMp199 gets a reference to the given string and assigns it to the Mp199 field.

func (*CreateContainerRequest) SetMp2

func (o *CreateContainerRequest) SetMp2(v string)

SetMp2 gets a reference to the given string and assigns it to the Mp2 field.

func (*CreateContainerRequest) SetMp20

func (o *CreateContainerRequest) SetMp20(v string)

SetMp20 gets a reference to the given string and assigns it to the Mp20 field.

func (*CreateContainerRequest) SetMp200

func (o *CreateContainerRequest) SetMp200(v string)

SetMp200 gets a reference to the given string and assigns it to the Mp200 field.

func (*CreateContainerRequest) SetMp201

func (o *CreateContainerRequest) SetMp201(v string)

SetMp201 gets a reference to the given string and assigns it to the Mp201 field.

func (*CreateContainerRequest) SetMp202

func (o *CreateContainerRequest) SetMp202(v string)

SetMp202 gets a reference to the given string and assigns it to the Mp202 field.

func (*CreateContainerRequest) SetMp203

func (o *CreateContainerRequest) SetMp203(v string)

SetMp203 gets a reference to the given string and assigns it to the Mp203 field.

func (*CreateContainerRequest) SetMp204

func (o *CreateContainerRequest) SetMp204(v string)

SetMp204 gets a reference to the given string and assigns it to the Mp204 field.

func (*CreateContainerRequest) SetMp205

func (o *CreateContainerRequest) SetMp205(v string)

SetMp205 gets a reference to the given string and assigns it to the Mp205 field.

func (*CreateContainerRequest) SetMp206

func (o *CreateContainerRequest) SetMp206(v string)

SetMp206 gets a reference to the given string and assigns it to the Mp206 field.

func (*CreateContainerRequest) SetMp207

func (o *CreateContainerRequest) SetMp207(v string)

SetMp207 gets a reference to the given string and assigns it to the Mp207 field.

func (*CreateContainerRequest) SetMp208

func (o *CreateContainerRequest) SetMp208(v string)

SetMp208 gets a reference to the given string and assigns it to the Mp208 field.

func (*CreateContainerRequest) SetMp209

func (o *CreateContainerRequest) SetMp209(v string)

SetMp209 gets a reference to the given string and assigns it to the Mp209 field.

func (*CreateContainerRequest) SetMp21

func (o *CreateContainerRequest) SetMp21(v string)

SetMp21 gets a reference to the given string and assigns it to the Mp21 field.

func (*CreateContainerRequest) SetMp210

func (o *CreateContainerRequest) SetMp210(v string)

SetMp210 gets a reference to the given string and assigns it to the Mp210 field.

func (*CreateContainerRequest) SetMp211

func (o *CreateContainerRequest) SetMp211(v string)

SetMp211 gets a reference to the given string and assigns it to the Mp211 field.

func (*CreateContainerRequest) SetMp212

func (o *CreateContainerRequest) SetMp212(v string)

SetMp212 gets a reference to the given string and assigns it to the Mp212 field.

func (*CreateContainerRequest) SetMp213

func (o *CreateContainerRequest) SetMp213(v string)

SetMp213 gets a reference to the given string and assigns it to the Mp213 field.

func (*CreateContainerRequest) SetMp214

func (o *CreateContainerRequest) SetMp214(v string)

SetMp214 gets a reference to the given string and assigns it to the Mp214 field.

func (*CreateContainerRequest) SetMp215

func (o *CreateContainerRequest) SetMp215(v string)

SetMp215 gets a reference to the given string and assigns it to the Mp215 field.

func (*CreateContainerRequest) SetMp216

func (o *CreateContainerRequest) SetMp216(v string)

SetMp216 gets a reference to the given string and assigns it to the Mp216 field.

func (*CreateContainerRequest) SetMp217

func (o *CreateContainerRequest) SetMp217(v string)

SetMp217 gets a reference to the given string and assigns it to the Mp217 field.

func (*CreateContainerRequest) SetMp218

func (o *CreateContainerRequest) SetMp218(v string)

SetMp218 gets a reference to the given string and assigns it to the Mp218 field.

func (*CreateContainerRequest) SetMp219

func (o *CreateContainerRequest) SetMp219(v string)

SetMp219 gets a reference to the given string and assigns it to the Mp219 field.

func (*CreateContainerRequest) SetMp22

func (o *CreateContainerRequest) SetMp22(v string)

SetMp22 gets a reference to the given string and assigns it to the Mp22 field.

func (*CreateContainerRequest) SetMp220

func (o *CreateContainerRequest) SetMp220(v string)

SetMp220 gets a reference to the given string and assigns it to the Mp220 field.

func (*CreateContainerRequest) SetMp221

func (o *CreateContainerRequest) SetMp221(v string)

SetMp221 gets a reference to the given string and assigns it to the Mp221 field.

func (*CreateContainerRequest) SetMp222

func (o *CreateContainerRequest) SetMp222(v string)

SetMp222 gets a reference to the given string and assigns it to the Mp222 field.

func (*CreateContainerRequest) SetMp223

func (o *CreateContainerRequest) SetMp223(v string)

SetMp223 gets a reference to the given string and assigns it to the Mp223 field.

func (*CreateContainerRequest) SetMp224

func (o *CreateContainerRequest) SetMp224(v string)

SetMp224 gets a reference to the given string and assigns it to the Mp224 field.

func (*CreateContainerRequest) SetMp225

func (o *CreateContainerRequest) SetMp225(v string)

SetMp225 gets a reference to the given string and assigns it to the Mp225 field.

func (*CreateContainerRequest) SetMp226

func (o *CreateContainerRequest) SetMp226(v string)

SetMp226 gets a reference to the given string and assigns it to the Mp226 field.

func (*CreateContainerRequest) SetMp227

func (o *CreateContainerRequest) SetMp227(v string)

SetMp227 gets a reference to the given string and assigns it to the Mp227 field.

func (*CreateContainerRequest) SetMp228

func (o *CreateContainerRequest) SetMp228(v string)

SetMp228 gets a reference to the given string and assigns it to the Mp228 field.

func (*CreateContainerRequest) SetMp229

func (o *CreateContainerRequest) SetMp229(v string)

SetMp229 gets a reference to the given string and assigns it to the Mp229 field.

func (*CreateContainerRequest) SetMp23

func (o *CreateContainerRequest) SetMp23(v string)

SetMp23 gets a reference to the given string and assigns it to the Mp23 field.

func (*CreateContainerRequest) SetMp230

func (o *CreateContainerRequest) SetMp230(v string)

SetMp230 gets a reference to the given string and assigns it to the Mp230 field.

func (*CreateContainerRequest) SetMp231

func (o *CreateContainerRequest) SetMp231(v string)

SetMp231 gets a reference to the given string and assigns it to the Mp231 field.

func (*CreateContainerRequest) SetMp232

func (o *CreateContainerRequest) SetMp232(v string)

SetMp232 gets a reference to the given string and assigns it to the Mp232 field.

func (*CreateContainerRequest) SetMp233

func (o *CreateContainerRequest) SetMp233(v string)

SetMp233 gets a reference to the given string and assigns it to the Mp233 field.

func (*CreateContainerRequest) SetMp234

func (o *CreateContainerRequest) SetMp234(v string)

SetMp234 gets a reference to the given string and assigns it to the Mp234 field.

func (*CreateContainerRequest) SetMp235

func (o *CreateContainerRequest) SetMp235(v string)

SetMp235 gets a reference to the given string and assigns it to the Mp235 field.

func (*CreateContainerRequest) SetMp236

func (o *CreateContainerRequest) SetMp236(v string)

SetMp236 gets a reference to the given string and assigns it to the Mp236 field.

func (*CreateContainerRequest) SetMp237

func (o *CreateContainerRequest) SetMp237(v string)

SetMp237 gets a reference to the given string and assigns it to the Mp237 field.

func (*CreateContainerRequest) SetMp238

func (o *CreateContainerRequest) SetMp238(v string)

SetMp238 gets a reference to the given string and assigns it to the Mp238 field.

func (*CreateContainerRequest) SetMp239

func (o *CreateContainerRequest) SetMp239(v string)

SetMp239 gets a reference to the given string and assigns it to the Mp239 field.

func (*CreateContainerRequest) SetMp24

func (o *CreateContainerRequest) SetMp24(v string)

SetMp24 gets a reference to the given string and assigns it to the Mp24 field.

func (*CreateContainerRequest) SetMp240

func (o *CreateContainerRequest) SetMp240(v string)

SetMp240 gets a reference to the given string and assigns it to the Mp240 field.

func (*CreateContainerRequest) SetMp241

func (o *CreateContainerRequest) SetMp241(v string)

SetMp241 gets a reference to the given string and assigns it to the Mp241 field.

func (*CreateContainerRequest) SetMp242

func (o *CreateContainerRequest) SetMp242(v string)

SetMp242 gets a reference to the given string and assigns it to the Mp242 field.

func (*CreateContainerRequest) SetMp243

func (o *CreateContainerRequest) SetMp243(v string)

SetMp243 gets a reference to the given string and assigns it to the Mp243 field.

func (*CreateContainerRequest) SetMp244

func (o *CreateContainerRequest) SetMp244(v string)

SetMp244 gets a reference to the given string and assigns it to the Mp244 field.

func (*CreateContainerRequest) SetMp245

func (o *CreateContainerRequest) SetMp245(v string)

SetMp245 gets a reference to the given string and assigns it to the Mp245 field.

func (*CreateContainerRequest) SetMp246

func (o *CreateContainerRequest) SetMp246(v string)

SetMp246 gets a reference to the given string and assigns it to the Mp246 field.

func (*CreateContainerRequest) SetMp247

func (o *CreateContainerRequest) SetMp247(v string)

SetMp247 gets a reference to the given string and assigns it to the Mp247 field.

func (*CreateContainerRequest) SetMp248

func (o *CreateContainerRequest) SetMp248(v string)

SetMp248 gets a reference to the given string and assigns it to the Mp248 field.

func (*CreateContainerRequest) SetMp249

func (o *CreateContainerRequest) SetMp249(v string)

SetMp249 gets a reference to the given string and assigns it to the Mp249 field.

func (*CreateContainerRequest) SetMp25

func (o *CreateContainerRequest) SetMp25(v string)

SetMp25 gets a reference to the given string and assigns it to the Mp25 field.

func (*CreateContainerRequest) SetMp250

func (o *CreateContainerRequest) SetMp250(v string)

SetMp250 gets a reference to the given string and assigns it to the Mp250 field.

func (*CreateContainerRequest) SetMp251

func (o *CreateContainerRequest) SetMp251(v string)

SetMp251 gets a reference to the given string and assigns it to the Mp251 field.

func (*CreateContainerRequest) SetMp252

func (o *CreateContainerRequest) SetMp252(v string)

SetMp252 gets a reference to the given string and assigns it to the Mp252 field.

func (*CreateContainerRequest) SetMp253

func (o *CreateContainerRequest) SetMp253(v string)

SetMp253 gets a reference to the given string and assigns it to the Mp253 field.

func (*CreateContainerRequest) SetMp254

func (o *CreateContainerRequest) SetMp254(v string)

SetMp254 gets a reference to the given string and assigns it to the Mp254 field.

func (*CreateContainerRequest) SetMp255

func (o *CreateContainerRequest) SetMp255(v string)

SetMp255 gets a reference to the given string and assigns it to the Mp255 field.

func (*CreateContainerRequest) SetMp26

func (o *CreateContainerRequest) SetMp26(v string)

SetMp26 gets a reference to the given string and assigns it to the Mp26 field.

func (*CreateContainerRequest) SetMp27

func (o *CreateContainerRequest) SetMp27(v string)

SetMp27 gets a reference to the given string and assigns it to the Mp27 field.

func (*CreateContainerRequest) SetMp28

func (o *CreateContainerRequest) SetMp28(v string)

SetMp28 gets a reference to the given string and assigns it to the Mp28 field.

func (*CreateContainerRequest) SetMp29

func (o *CreateContainerRequest) SetMp29(v string)

SetMp29 gets a reference to the given string and assigns it to the Mp29 field.

func (*CreateContainerRequest) SetMp3

func (o *CreateContainerRequest) SetMp3(v string)

SetMp3 gets a reference to the given string and assigns it to the Mp3 field.

func (*CreateContainerRequest) SetMp30

func (o *CreateContainerRequest) SetMp30(v string)

SetMp30 gets a reference to the given string and assigns it to the Mp30 field.

func (*CreateContainerRequest) SetMp31

func (o *CreateContainerRequest) SetMp31(v string)

SetMp31 gets a reference to the given string and assigns it to the Mp31 field.

func (*CreateContainerRequest) SetMp32

func (o *CreateContainerRequest) SetMp32(v string)

SetMp32 gets a reference to the given string and assigns it to the Mp32 field.

func (*CreateContainerRequest) SetMp33

func (o *CreateContainerRequest) SetMp33(v string)

SetMp33 gets a reference to the given string and assigns it to the Mp33 field.

func (*CreateContainerRequest) SetMp34

func (o *CreateContainerRequest) SetMp34(v string)

SetMp34 gets a reference to the given string and assigns it to the Mp34 field.

func (*CreateContainerRequest) SetMp35

func (o *CreateContainerRequest) SetMp35(v string)

SetMp35 gets a reference to the given string and assigns it to the Mp35 field.

func (*CreateContainerRequest) SetMp36

func (o *CreateContainerRequest) SetMp36(v string)

SetMp36 gets a reference to the given string and assigns it to the Mp36 field.

func (*CreateContainerRequest) SetMp37

func (o *CreateContainerRequest) SetMp37(v string)

SetMp37 gets a reference to the given string and assigns it to the Mp37 field.

func (*CreateContainerRequest) SetMp38

func (o *CreateContainerRequest) SetMp38(v string)

SetMp38 gets a reference to the given string and assigns it to the Mp38 field.

func (*CreateContainerRequest) SetMp39

func (o *CreateContainerRequest) SetMp39(v string)

SetMp39 gets a reference to the given string and assigns it to the Mp39 field.

func (*CreateContainerRequest) SetMp4

func (o *CreateContainerRequest) SetMp4(v string)

SetMp4 gets a reference to the given string and assigns it to the Mp4 field.

func (*CreateContainerRequest) SetMp40

func (o *CreateContainerRequest) SetMp40(v string)

SetMp40 gets a reference to the given string and assigns it to the Mp40 field.

func (*CreateContainerRequest) SetMp41

func (o *CreateContainerRequest) SetMp41(v string)

SetMp41 gets a reference to the given string and assigns it to the Mp41 field.

func (*CreateContainerRequest) SetMp42

func (o *CreateContainerRequest) SetMp42(v string)

SetMp42 gets a reference to the given string and assigns it to the Mp42 field.

func (*CreateContainerRequest) SetMp43

func (o *CreateContainerRequest) SetMp43(v string)

SetMp43 gets a reference to the given string and assigns it to the Mp43 field.

func (*CreateContainerRequest) SetMp44

func (o *CreateContainerRequest) SetMp44(v string)

SetMp44 gets a reference to the given string and assigns it to the Mp44 field.

func (*CreateContainerRequest) SetMp45

func (o *CreateContainerRequest) SetMp45(v string)

SetMp45 gets a reference to the given string and assigns it to the Mp45 field.

func (*CreateContainerRequest) SetMp46

func (o *CreateContainerRequest) SetMp46(v string)

SetMp46 gets a reference to the given string and assigns it to the Mp46 field.

func (*CreateContainerRequest) SetMp47

func (o *CreateContainerRequest) SetMp47(v string)

SetMp47 gets a reference to the given string and assigns it to the Mp47 field.

func (*CreateContainerRequest) SetMp48

func (o *CreateContainerRequest) SetMp48(v string)

SetMp48 gets a reference to the given string and assigns it to the Mp48 field.

func (*CreateContainerRequest) SetMp49

func (o *CreateContainerRequest) SetMp49(v string)

SetMp49 gets a reference to the given string and assigns it to the Mp49 field.

func (*CreateContainerRequest) SetMp5

func (o *CreateContainerRequest) SetMp5(v string)

SetMp5 gets a reference to the given string and assigns it to the Mp5 field.

func (*CreateContainerRequest) SetMp50

func (o *CreateContainerRequest) SetMp50(v string)

SetMp50 gets a reference to the given string and assigns it to the Mp50 field.

func (*CreateContainerRequest) SetMp51

func (o *CreateContainerRequest) SetMp51(v string)

SetMp51 gets a reference to the given string and assigns it to the Mp51 field.

func (*CreateContainerRequest) SetMp52

func (o *CreateContainerRequest) SetMp52(v string)

SetMp52 gets a reference to the given string and assigns it to the Mp52 field.

func (*CreateContainerRequest) SetMp53

func (o *CreateContainerRequest) SetMp53(v string)

SetMp53 gets a reference to the given string and assigns it to the Mp53 field.

func (*CreateContainerRequest) SetMp54

func (o *CreateContainerRequest) SetMp54(v string)

SetMp54 gets a reference to the given string and assigns it to the Mp54 field.

func (*CreateContainerRequest) SetMp55

func (o *CreateContainerRequest) SetMp55(v string)

SetMp55 gets a reference to the given string and assigns it to the Mp55 field.

func (*CreateContainerRequest) SetMp56

func (o *CreateContainerRequest) SetMp56(v string)

SetMp56 gets a reference to the given string and assigns it to the Mp56 field.

func (*CreateContainerRequest) SetMp57

func (o *CreateContainerRequest) SetMp57(v string)

SetMp57 gets a reference to the given string and assigns it to the Mp57 field.

func (*CreateContainerRequest) SetMp58

func (o *CreateContainerRequest) SetMp58(v string)

SetMp58 gets a reference to the given string and assigns it to the Mp58 field.

func (*CreateContainerRequest) SetMp59

func (o *CreateContainerRequest) SetMp59(v string)

SetMp59 gets a reference to the given string and assigns it to the Mp59 field.

func (*CreateContainerRequest) SetMp6

func (o *CreateContainerRequest) SetMp6(v string)

SetMp6 gets a reference to the given string and assigns it to the Mp6 field.

func (*CreateContainerRequest) SetMp60

func (o *CreateContainerRequest) SetMp60(v string)

SetMp60 gets a reference to the given string and assigns it to the Mp60 field.

func (*CreateContainerRequest) SetMp61

func (o *CreateContainerRequest) SetMp61(v string)

SetMp61 gets a reference to the given string and assigns it to the Mp61 field.

func (*CreateContainerRequest) SetMp62

func (o *CreateContainerRequest) SetMp62(v string)

SetMp62 gets a reference to the given string and assigns it to the Mp62 field.

func (*CreateContainerRequest) SetMp63

func (o *CreateContainerRequest) SetMp63(v string)

SetMp63 gets a reference to the given string and assigns it to the Mp63 field.

func (*CreateContainerRequest) SetMp64

func (o *CreateContainerRequest) SetMp64(v string)

SetMp64 gets a reference to the given string and assigns it to the Mp64 field.

func (*CreateContainerRequest) SetMp65

func (o *CreateContainerRequest) SetMp65(v string)

SetMp65 gets a reference to the given string and assigns it to the Mp65 field.

func (*CreateContainerRequest) SetMp66

func (o *CreateContainerRequest) SetMp66(v string)

SetMp66 gets a reference to the given string and assigns it to the Mp66 field.

func (*CreateContainerRequest) SetMp67

func (o *CreateContainerRequest) SetMp67(v string)

SetMp67 gets a reference to the given string and assigns it to the Mp67 field.

func (*CreateContainerRequest) SetMp68

func (o *CreateContainerRequest) SetMp68(v string)

SetMp68 gets a reference to the given string and assigns it to the Mp68 field.

func (*CreateContainerRequest) SetMp69

func (o *CreateContainerRequest) SetMp69(v string)

SetMp69 gets a reference to the given string and assigns it to the Mp69 field.

func (*CreateContainerRequest) SetMp7

func (o *CreateContainerRequest) SetMp7(v string)

SetMp7 gets a reference to the given string and assigns it to the Mp7 field.

func (*CreateContainerRequest) SetMp70

func (o *CreateContainerRequest) SetMp70(v string)

SetMp70 gets a reference to the given string and assigns it to the Mp70 field.

func (*CreateContainerRequest) SetMp71

func (o *CreateContainerRequest) SetMp71(v string)

SetMp71 gets a reference to the given string and assigns it to the Mp71 field.

func (*CreateContainerRequest) SetMp72

func (o *CreateContainerRequest) SetMp72(v string)

SetMp72 gets a reference to the given string and assigns it to the Mp72 field.

func (*CreateContainerRequest) SetMp73

func (o *CreateContainerRequest) SetMp73(v string)

SetMp73 gets a reference to the given string and assigns it to the Mp73 field.

func (*CreateContainerRequest) SetMp74

func (o *CreateContainerRequest) SetMp74(v string)

SetMp74 gets a reference to the given string and assigns it to the Mp74 field.

func (*CreateContainerRequest) SetMp75

func (o *CreateContainerRequest) SetMp75(v string)

SetMp75 gets a reference to the given string and assigns it to the Mp75 field.

func (*CreateContainerRequest) SetMp76

func (o *CreateContainerRequest) SetMp76(v string)

SetMp76 gets a reference to the given string and assigns it to the Mp76 field.

func (*CreateContainerRequest) SetMp77

func (o *CreateContainerRequest) SetMp77(v string)

SetMp77 gets a reference to the given string and assigns it to the Mp77 field.

func (*CreateContainerRequest) SetMp78

func (o *CreateContainerRequest) SetMp78(v string)

SetMp78 gets a reference to the given string and assigns it to the Mp78 field.

func (*CreateContainerRequest) SetMp79

func (o *CreateContainerRequest) SetMp79(v string)

SetMp79 gets a reference to the given string and assigns it to the Mp79 field.

func (*CreateContainerRequest) SetMp8

func (o *CreateContainerRequest) SetMp8(v string)

SetMp8 gets a reference to the given string and assigns it to the Mp8 field.

func (*CreateContainerRequest) SetMp80

func (o *CreateContainerRequest) SetMp80(v string)

SetMp80 gets a reference to the given string and assigns it to the Mp80 field.

func (*CreateContainerRequest) SetMp81

func (o *CreateContainerRequest) SetMp81(v string)

SetMp81 gets a reference to the given string and assigns it to the Mp81 field.

func (*CreateContainerRequest) SetMp82

func (o *CreateContainerRequest) SetMp82(v string)

SetMp82 gets a reference to the given string and assigns it to the Mp82 field.

func (*CreateContainerRequest) SetMp83

func (o *CreateContainerRequest) SetMp83(v string)

SetMp83 gets a reference to the given string and assigns it to the Mp83 field.

func (*CreateContainerRequest) SetMp84

func (o *CreateContainerRequest) SetMp84(v string)

SetMp84 gets a reference to the given string and assigns it to the Mp84 field.

func (*CreateContainerRequest) SetMp85

func (o *CreateContainerRequest) SetMp85(v string)

SetMp85 gets a reference to the given string and assigns it to the Mp85 field.

func (*CreateContainerRequest) SetMp86

func (o *CreateContainerRequest) SetMp86(v string)

SetMp86 gets a reference to the given string and assigns it to the Mp86 field.

func (*CreateContainerRequest) SetMp87

func (o *CreateContainerRequest) SetMp87(v string)

SetMp87 gets a reference to the given string and assigns it to the Mp87 field.

func (*CreateContainerRequest) SetMp88

func (o *CreateContainerRequest) SetMp88(v string)

SetMp88 gets a reference to the given string and assigns it to the Mp88 field.

func (*CreateContainerRequest) SetMp89

func (o *CreateContainerRequest) SetMp89(v string)

SetMp89 gets a reference to the given string and assigns it to the Mp89 field.

func (*CreateContainerRequest) SetMp9

func (o *CreateContainerRequest) SetMp9(v string)

SetMp9 gets a reference to the given string and assigns it to the Mp9 field.

func (*CreateContainerRequest) SetMp90

func (o *CreateContainerRequest) SetMp90(v string)

SetMp90 gets a reference to the given string and assigns it to the Mp90 field.

func (*CreateContainerRequest) SetMp91

func (o *CreateContainerRequest) SetMp91(v string)

SetMp91 gets a reference to the given string and assigns it to the Mp91 field.

func (*CreateContainerRequest) SetMp92

func (o *CreateContainerRequest) SetMp92(v string)

SetMp92 gets a reference to the given string and assigns it to the Mp92 field.

func (*CreateContainerRequest) SetMp93

func (o *CreateContainerRequest) SetMp93(v string)

SetMp93 gets a reference to the given string and assigns it to the Mp93 field.

func (*CreateContainerRequest) SetMp94

func (o *CreateContainerRequest) SetMp94(v string)

SetMp94 gets a reference to the given string and assigns it to the Mp94 field.

func (*CreateContainerRequest) SetMp95

func (o *CreateContainerRequest) SetMp95(v string)

SetMp95 gets a reference to the given string and assigns it to the Mp95 field.

func (*CreateContainerRequest) SetMp96

func (o *CreateContainerRequest) SetMp96(v string)

SetMp96 gets a reference to the given string and assigns it to the Mp96 field.

func (*CreateContainerRequest) SetMp97

func (o *CreateContainerRequest) SetMp97(v string)

SetMp97 gets a reference to the given string and assigns it to the Mp97 field.

func (*CreateContainerRequest) SetMp98

func (o *CreateContainerRequest) SetMp98(v string)

SetMp98 gets a reference to the given string and assigns it to the Mp98 field.

func (*CreateContainerRequest) SetMp99

func (o *CreateContainerRequest) SetMp99(v string)

SetMp99 gets a reference to the given string and assigns it to the Mp99 field.

func (*CreateContainerRequest) SetNameserver

func (o *CreateContainerRequest) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*CreateContainerRequest) SetNet0

func (o *CreateContainerRequest) SetNet0(v string)

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*CreateContainerRequest) SetNet1

func (o *CreateContainerRequest) SetNet1(v string)

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*CreateContainerRequest) SetNet10

func (o *CreateContainerRequest) SetNet10(v string)

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*CreateContainerRequest) SetNet11

func (o *CreateContainerRequest) SetNet11(v string)

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*CreateContainerRequest) SetNet12

func (o *CreateContainerRequest) SetNet12(v string)

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*CreateContainerRequest) SetNet13

func (o *CreateContainerRequest) SetNet13(v string)

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*CreateContainerRequest) SetNet14

func (o *CreateContainerRequest) SetNet14(v string)

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*CreateContainerRequest) SetNet15

func (o *CreateContainerRequest) SetNet15(v string)

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*CreateContainerRequest) SetNet16

func (o *CreateContainerRequest) SetNet16(v string)

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*CreateContainerRequest) SetNet17

func (o *CreateContainerRequest) SetNet17(v string)

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*CreateContainerRequest) SetNet18

func (o *CreateContainerRequest) SetNet18(v string)

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*CreateContainerRequest) SetNet19

func (o *CreateContainerRequest) SetNet19(v string)

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*CreateContainerRequest) SetNet2

func (o *CreateContainerRequest) SetNet2(v string)

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*CreateContainerRequest) SetNet20

func (o *CreateContainerRequest) SetNet20(v string)

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*CreateContainerRequest) SetNet21

func (o *CreateContainerRequest) SetNet21(v string)

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*CreateContainerRequest) SetNet22

func (o *CreateContainerRequest) SetNet22(v string)

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*CreateContainerRequest) SetNet23

func (o *CreateContainerRequest) SetNet23(v string)

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*CreateContainerRequest) SetNet24

func (o *CreateContainerRequest) SetNet24(v string)

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*CreateContainerRequest) SetNet25

func (o *CreateContainerRequest) SetNet25(v string)

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*CreateContainerRequest) SetNet26

func (o *CreateContainerRequest) SetNet26(v string)

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*CreateContainerRequest) SetNet27

func (o *CreateContainerRequest) SetNet27(v string)

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*CreateContainerRequest) SetNet28

func (o *CreateContainerRequest) SetNet28(v string)

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*CreateContainerRequest) SetNet29

func (o *CreateContainerRequest) SetNet29(v string)

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*CreateContainerRequest) SetNet3

func (o *CreateContainerRequest) SetNet3(v string)

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*CreateContainerRequest) SetNet30

func (o *CreateContainerRequest) SetNet30(v string)

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*CreateContainerRequest) SetNet31

func (o *CreateContainerRequest) SetNet31(v string)

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*CreateContainerRequest) SetNet4

func (o *CreateContainerRequest) SetNet4(v string)

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*CreateContainerRequest) SetNet5

func (o *CreateContainerRequest) SetNet5(v string)

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*CreateContainerRequest) SetNet6

func (o *CreateContainerRequest) SetNet6(v string)

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*CreateContainerRequest) SetNet7

func (o *CreateContainerRequest) SetNet7(v string)

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*CreateContainerRequest) SetNet8

func (o *CreateContainerRequest) SetNet8(v string)

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*CreateContainerRequest) SetNet9

func (o *CreateContainerRequest) SetNet9(v string)

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*CreateContainerRequest) SetOnboot

func (o *CreateContainerRequest) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*CreateContainerRequest) SetOstemplate

func (o *CreateContainerRequest) SetOstemplate(v string)

SetOstemplate sets field value

func (*CreateContainerRequest) SetOstype

func (o *CreateContainerRequest) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*CreateContainerRequest) SetPassword

func (o *CreateContainerRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*CreateContainerRequest) SetPool

func (o *CreateContainerRequest) SetPool(v string)

SetPool gets a reference to the given string and assigns it to the Pool field.

func (*CreateContainerRequest) SetProtection

func (o *CreateContainerRequest) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*CreateContainerRequest) SetRestore

func (o *CreateContainerRequest) SetRestore(v int32)

SetRestore gets a reference to the given int32 and assigns it to the Restore field.

func (*CreateContainerRequest) SetRootfs

func (o *CreateContainerRequest) SetRootfs(v string)

SetRootfs gets a reference to the given string and assigns it to the Rootfs field.

func (*CreateContainerRequest) SetSearchdomain

func (o *CreateContainerRequest) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*CreateContainerRequest) SetSshPublicKeys

func (o *CreateContainerRequest) SetSshPublicKeys(v string)

SetSshPublicKeys gets a reference to the given string and assigns it to the SshPublicKeys field.

func (*CreateContainerRequest) SetStart

func (o *CreateContainerRequest) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*CreateContainerRequest) SetStartup

func (o *CreateContainerRequest) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*CreateContainerRequest) SetStorage

func (o *CreateContainerRequest) SetStorage(v string)

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (*CreateContainerRequest) SetSwap

func (o *CreateContainerRequest) SetSwap(v int64)

SetSwap gets a reference to the given int64 and assigns it to the Swap field.

func (*CreateContainerRequest) SetTags

func (o *CreateContainerRequest) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*CreateContainerRequest) SetTemplate

func (o *CreateContainerRequest) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*CreateContainerRequest) SetTimezone

func (o *CreateContainerRequest) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*CreateContainerRequest) SetTty

func (o *CreateContainerRequest) SetTty(v int64)

SetTty gets a reference to the given int64 and assigns it to the Tty field.

func (*CreateContainerRequest) SetUnique

func (o *CreateContainerRequest) SetUnique(v int32)

SetUnique gets a reference to the given int32 and assigns it to the Unique field.

func (*CreateContainerRequest) SetUnprivileged

func (o *CreateContainerRequest) SetUnprivileged(v int32)

SetUnprivileged gets a reference to the given int32 and assigns it to the Unprivileged field.

func (*CreateContainerRequest) SetUnused0

func (o *CreateContainerRequest) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*CreateContainerRequest) SetUnused1

func (o *CreateContainerRequest) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*CreateContainerRequest) SetUnused10

func (o *CreateContainerRequest) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*CreateContainerRequest) SetUnused11

func (o *CreateContainerRequest) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*CreateContainerRequest) SetUnused12

func (o *CreateContainerRequest) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*CreateContainerRequest) SetUnused13

func (o *CreateContainerRequest) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*CreateContainerRequest) SetUnused14

func (o *CreateContainerRequest) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*CreateContainerRequest) SetUnused15

func (o *CreateContainerRequest) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*CreateContainerRequest) SetUnused16

func (o *CreateContainerRequest) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*CreateContainerRequest) SetUnused17

func (o *CreateContainerRequest) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*CreateContainerRequest) SetUnused18

func (o *CreateContainerRequest) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*CreateContainerRequest) SetUnused19

func (o *CreateContainerRequest) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*CreateContainerRequest) SetUnused2

func (o *CreateContainerRequest) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*CreateContainerRequest) SetUnused20

func (o *CreateContainerRequest) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*CreateContainerRequest) SetUnused21

func (o *CreateContainerRequest) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*CreateContainerRequest) SetUnused22

func (o *CreateContainerRequest) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*CreateContainerRequest) SetUnused23

func (o *CreateContainerRequest) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*CreateContainerRequest) SetUnused24

func (o *CreateContainerRequest) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*CreateContainerRequest) SetUnused25

func (o *CreateContainerRequest) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*CreateContainerRequest) SetUnused26

func (o *CreateContainerRequest) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*CreateContainerRequest) SetUnused27

func (o *CreateContainerRequest) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*CreateContainerRequest) SetUnused28

func (o *CreateContainerRequest) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*CreateContainerRequest) SetUnused29

func (o *CreateContainerRequest) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*CreateContainerRequest) SetUnused3

func (o *CreateContainerRequest) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*CreateContainerRequest) SetUnused4

func (o *CreateContainerRequest) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*CreateContainerRequest) SetUnused5

func (o *CreateContainerRequest) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*CreateContainerRequest) SetUnused6

func (o *CreateContainerRequest) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*CreateContainerRequest) SetUnused7

func (o *CreateContainerRequest) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*CreateContainerRequest) SetUnused8

func (o *CreateContainerRequest) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*CreateContainerRequest) SetUnused9

func (o *CreateContainerRequest) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (*CreateContainerRequest) SetVmid

func (o *CreateContainerRequest) SetVmid(v int64)

SetVmid sets field value

func (CreateContainerRequest) ToMap

func (o CreateContainerRequest) ToMap() (map[string]interface{}, error)

func (*CreateContainerRequest) UnmarshalJSON added in v1.0.9

func (o *CreateContainerRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateContainerSnapshotRequest

type CreateContainerSnapshotRequest struct {
	// A textual description or comment.
	Description *string `json:"description,omitempty"`
	// The name of the snapshot.
	Snapname string `json:"snapname"`
}

CreateContainerSnapshotRequest struct for CreateContainerSnapshotRequest

func NewCreateContainerSnapshotRequest

func NewCreateContainerSnapshotRequest(snapname string) *CreateContainerSnapshotRequest

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

func NewCreateContainerSnapshotRequestWithDefaults

func NewCreateContainerSnapshotRequestWithDefaults() *CreateContainerSnapshotRequest

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

func (*CreateContainerSnapshotRequest) GetDescription

func (o *CreateContainerSnapshotRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateContainerSnapshotRequest) GetDescriptionOk

func (o *CreateContainerSnapshotRequest) GetDescriptionOk() (*string, bool)

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

func (*CreateContainerSnapshotRequest) GetSnapname

func (o *CreateContainerSnapshotRequest) GetSnapname() string

GetSnapname returns the Snapname field value

func (*CreateContainerSnapshotRequest) GetSnapnameOk

func (o *CreateContainerSnapshotRequest) GetSnapnameOk() (*string, bool)

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

func (*CreateContainerSnapshotRequest) HasDescription

func (o *CreateContainerSnapshotRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (CreateContainerSnapshotRequest) MarshalJSON

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

func (*CreateContainerSnapshotRequest) SetDescription

func (o *CreateContainerSnapshotRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateContainerSnapshotRequest) SetSnapname

func (o *CreateContainerSnapshotRequest) SetSnapname(v string)

SetSnapname sets field value

func (CreateContainerSnapshotRequest) ToMap

func (o CreateContainerSnapshotRequest) ToMap() (map[string]interface{}, error)

func (*CreateContainerSnapshotRequest) UnmarshalJSON added in v1.0.9

func (o *CreateContainerSnapshotRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateNodesSingleStorageSingleContent200Response

type CreateNodesSingleStorageSingleContent200Response struct {
	// Volume identifier
	Data   *string  `json:"data,omitempty"`
	Errors []string `json:"errors,omitempty"`
}

CreateNodesSingleStorageSingleContent200Response struct for CreateNodesSingleStorageSingleContent200Response

func NewCreateNodesSingleStorageSingleContent200Response

func NewCreateNodesSingleStorageSingleContent200Response() *CreateNodesSingleStorageSingleContent200Response

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

func NewCreateNodesSingleStorageSingleContent200ResponseWithDefaults

func NewCreateNodesSingleStorageSingleContent200ResponseWithDefaults() *CreateNodesSingleStorageSingleContent200Response

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

func (*CreateNodesSingleStorageSingleContent200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CreateNodesSingleStorageSingleContent200Response) GetDataOk

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

func (*CreateNodesSingleStorageSingleContent200Response) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*CreateNodesSingleStorageSingleContent200Response) GetErrorsOk

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

func (*CreateNodesSingleStorageSingleContent200Response) HasData

HasData returns a boolean if a field has been set.

func (*CreateNodesSingleStorageSingleContent200Response) HasErrors

HasErrors returns a boolean if a field has been set.

func (CreateNodesSingleStorageSingleContent200Response) MarshalJSON

func (*CreateNodesSingleStorageSingleContent200Response) SetData

SetData gets a reference to the given string and assigns it to the Data field.

func (*CreateNodesSingleStorageSingleContent200Response) SetErrors

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (CreateNodesSingleStorageSingleContent200Response) ToMap

func (o CreateNodesSingleStorageSingleContent200Response) ToMap() (map[string]interface{}, error)

type CreateNodesSingleStorageSingleContentRequest

type CreateNodesSingleStorageSingleContentRequest struct {
	// The name of the file to create.
	Filename *os.File `json:"filename"`
	Format   *string  `json:"format,omitempty"`
	// Size in kilobyte (1024 bytes). Optional suffixes 'M' (megabyte, 1024K) and 'G' (gigabyte, 1024M)
	Size string `json:"size"`
	// Specify owner VM
	Vmid int64 `json:"vmid"`
}

CreateNodesSingleStorageSingleContentRequest struct for CreateNodesSingleStorageSingleContentRequest

func NewCreateNodesSingleStorageSingleContentRequest

func NewCreateNodesSingleStorageSingleContentRequest(filename *os.File, size string, vmid int64) *CreateNodesSingleStorageSingleContentRequest

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

func NewCreateNodesSingleStorageSingleContentRequestWithDefaults

func NewCreateNodesSingleStorageSingleContentRequestWithDefaults() *CreateNodesSingleStorageSingleContentRequest

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

func (*CreateNodesSingleStorageSingleContentRequest) GetFilename

GetFilename returns the Filename field value

func (*CreateNodesSingleStorageSingleContentRequest) GetFilenameOk

func (o *CreateNodesSingleStorageSingleContentRequest) GetFilenameOk() (**os.File, bool)

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

func (*CreateNodesSingleStorageSingleContentRequest) GetFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*CreateNodesSingleStorageSingleContentRequest) GetFormatOk

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

func (*CreateNodesSingleStorageSingleContentRequest) GetSize

GetSize returns the Size field value

func (*CreateNodesSingleStorageSingleContentRequest) GetSizeOk

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

func (*CreateNodesSingleStorageSingleContentRequest) GetVmid

GetVmid returns the Vmid field value

func (*CreateNodesSingleStorageSingleContentRequest) GetVmidOk

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

func (*CreateNodesSingleStorageSingleContentRequest) HasFormat

HasFormat returns a boolean if a field has been set.

func (CreateNodesSingleStorageSingleContentRequest) MarshalJSON

func (*CreateNodesSingleStorageSingleContentRequest) SetFilename

SetFilename sets field value

func (*CreateNodesSingleStorageSingleContentRequest) SetFormat

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*CreateNodesSingleStorageSingleContentRequest) SetSize

SetSize sets field value

func (*CreateNodesSingleStorageSingleContentRequest) SetVmid

SetVmid sets field value

func (CreateNodesSingleStorageSingleContentRequest) ToMap

func (o CreateNodesSingleStorageSingleContentRequest) ToMap() (map[string]interface{}, error)

func (*CreateNodesSingleStorageSingleContentRequest) UnmarshalJSON added in v1.0.9

func (o *CreateNodesSingleStorageSingleContentRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateStorage200Response

type CreateStorage200Response struct {
	Data   *CreateStorage200ResponseData `json:"data,omitempty"`
	Errors []string                      `json:"errors,omitempty"`
}

CreateStorage200Response struct for CreateStorage200Response

func NewCreateStorage200Response

func NewCreateStorage200Response() *CreateStorage200Response

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

func NewCreateStorage200ResponseWithDefaults

func NewCreateStorage200ResponseWithDefaults() *CreateStorage200Response

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

func (*CreateStorage200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CreateStorage200Response) GetDataOk

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

func (*CreateStorage200Response) GetErrors

func (o *CreateStorage200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*CreateStorage200Response) GetErrorsOk

func (o *CreateStorage200Response) GetErrorsOk() ([]string, bool)

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

func (*CreateStorage200Response) HasData

func (o *CreateStorage200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*CreateStorage200Response) HasErrors

func (o *CreateStorage200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CreateStorage200Response) MarshalJSON

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

func (*CreateStorage200Response) SetData

SetData gets a reference to the given CreateStorage200ResponseData and assigns it to the Data field.

func (*CreateStorage200Response) SetErrors

func (o *CreateStorage200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (CreateStorage200Response) ToMap

func (o CreateStorage200Response) ToMap() (map[string]interface{}, error)

type CreateStorage200ResponseData

type CreateStorage200ResponseData struct {
	Config *CreateStorage200ResponseDataConfig `json:"config,omitempty"`
	// The ID of the created storage.
	Storage *string `json:"storage,omitempty"`
	// The type of the created storage.
	Type *string `json:"type,omitempty"`
}

CreateStorage200ResponseData struct for CreateStorage200ResponseData

func NewCreateStorage200ResponseData

func NewCreateStorage200ResponseData() *CreateStorage200ResponseData

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

func NewCreateStorage200ResponseDataWithDefaults

func NewCreateStorage200ResponseDataWithDefaults() *CreateStorage200ResponseData

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

func (*CreateStorage200ResponseData) GetConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*CreateStorage200ResponseData) GetConfigOk

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

func (*CreateStorage200ResponseData) GetStorage

func (o *CreateStorage200ResponseData) GetStorage() string

GetStorage returns the Storage field value if set, zero value otherwise.

func (*CreateStorage200ResponseData) GetStorageOk

func (o *CreateStorage200ResponseData) GetStorageOk() (*string, bool)

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

func (*CreateStorage200ResponseData) GetType

func (o *CreateStorage200ResponseData) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CreateStorage200ResponseData) GetTypeOk

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

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

func (*CreateStorage200ResponseData) HasConfig

func (o *CreateStorage200ResponseData) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*CreateStorage200ResponseData) HasStorage

func (o *CreateStorage200ResponseData) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*CreateStorage200ResponseData) HasType

func (o *CreateStorage200ResponseData) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateStorage200ResponseData) MarshalJSON

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

func (*CreateStorage200ResponseData) SetConfig

SetConfig gets a reference to the given CreateStorage200ResponseDataConfig and assigns it to the Config field.

func (*CreateStorage200ResponseData) SetStorage

func (o *CreateStorage200ResponseData) SetStorage(v string)

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (*CreateStorage200ResponseData) SetType

func (o *CreateStorage200ResponseData) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CreateStorage200ResponseData) ToMap

func (o CreateStorage200ResponseData) ToMap() (map[string]interface{}, error)

type CreateStorage200ResponseDataConfig

type CreateStorage200ResponseDataConfig struct {
	// The, possible auto-generated, encryption-key.
	EncryptionKey *string `json:"encryption-key,omitempty"`
}

CreateStorage200ResponseDataConfig Partial, possible server generated, configuration properties.

func NewCreateStorage200ResponseDataConfig

func NewCreateStorage200ResponseDataConfig() *CreateStorage200ResponseDataConfig

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

func NewCreateStorage200ResponseDataConfigWithDefaults

func NewCreateStorage200ResponseDataConfigWithDefaults() *CreateStorage200ResponseDataConfig

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

func (*CreateStorage200ResponseDataConfig) GetEncryptionKey

func (o *CreateStorage200ResponseDataConfig) GetEncryptionKey() string

GetEncryptionKey returns the EncryptionKey field value if set, zero value otherwise.

func (*CreateStorage200ResponseDataConfig) GetEncryptionKeyOk

func (o *CreateStorage200ResponseDataConfig) GetEncryptionKeyOk() (*string, bool)

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

func (*CreateStorage200ResponseDataConfig) HasEncryptionKey

func (o *CreateStorage200ResponseDataConfig) HasEncryptionKey() bool

HasEncryptionKey returns a boolean if a field has been set.

func (CreateStorage200ResponseDataConfig) MarshalJSON

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

func (*CreateStorage200ResponseDataConfig) SetEncryptionKey

func (o *CreateStorage200ResponseDataConfig) SetEncryptionKey(v string)

SetEncryptionKey gets a reference to the given string and assigns it to the EncryptionKey field.

func (CreateStorage200ResponseDataConfig) ToMap

func (o CreateStorage200ResponseDataConfig) ToMap() (map[string]interface{}, error)

type CreateStorageRequest

type CreateStorageRequest struct {
	// Authsupported.
	Authsupported *string `json:"authsupported,omitempty"`
	// Base volume. This volume is automatically activated.
	Base *string `json:"base,omitempty"`
	// block size
	Blocksize *string `json:"blocksize,omitempty"`
	// Set I/O bandwidth limit for various operations (in KiB/s).
	Bwlimit *string `json:"bwlimit,omitempty"`
	// host group for comstar views
	ComstarHg *string `json:"comstar_hg,omitempty"`
	// target group for comstar views
	ComstarTg *string `json:"comstar_tg,omitempty"`
	// Allowed content types.  NOTE: the value 'rootdir' is used for Containers, and value 'images' for VMs.
	Content *string `json:"content,omitempty"`
	// Overrides for default content type directories.
	ContentDirs *string `json:"content-dirs,omitempty"`
	// Create the base directory if it doesn't exist.
	CreateBasePath *int32 `json:"create-base-path,omitempty"`
	// Populate the directory with the default structure.
	CreateSubdirs *int32 `json:"create-subdirs,omitempty"`
	// Data Pool (for erasure coding only)
	DataPool *string `json:"data-pool,omitempty"`
	// Proxmox Backup Server datastore name.
	Datastore *string `json:"datastore,omitempty"`
	// Flag to disable the storage.
	Disable *int32 `json:"disable,omitempty"`
	// CIFS domain.
	Domain *string `json:"domain,omitempty"`
	// Encryption key. Use 'autogen' to generate one automatically without passphrase.
	EncryptionKey *string `json:"encryption-key,omitempty"`
	// NFS export path.
	Export *string `json:"export,omitempty"`
	// Certificate SHA 256 fingerprint.
	Fingerprint *string `json:"fingerprint,omitempty"`
	// Default image format.
	Format *string `json:"format,omitempty"`
	// The Ceph filesystem name.
	FsName *string `json:"fs-name,omitempty"`
	// Mount CephFS through FUSE.
	Fuse *int32 `json:"fuse,omitempty"`
	// Assume the given path is an externally managed mountpoint and consider the storage offline if it is not mounted. Using a boolean (yes/no) value serves as a shortcut to using the target path in this field.
	IsMountpoint *string `json:"is_mountpoint,omitempty"`
	// iscsi provider
	Iscsiprovider *string `json:"iscsiprovider,omitempty"`
	// Client keyring contents (for external clusters).
	Keyring *string `json:"keyring,omitempty"`
	// Always access rbd through krbd kernel module.
	Krbd *int32 `json:"krbd,omitempty"`
	// target portal group for Linux LIO targets
	LioTpg *string `json:"lio_tpg,omitempty"`
	// Base64-encoded, PEM-formatted public RSA key. Used to encrypt a copy of the encryption-key which will be added to each encrypted backup.
	MasterPubkey *string `json:"master-pubkey,omitempty"`
	// Maximal number of protected backups per guest. Use '-1' for unlimited.
	MaxProtectedBackups *int64 `json:"max-protected-backups,omitempty"`
	// Deprecated: use 'prune-backups' instead. Maximal number of backup files per VM. Use '0' for unlimited.
	Maxfiles *int64 `json:"maxfiles,omitempty"`
	// Create the directory if it doesn't exist and populate it with default sub-dirs. NOTE: Deprecated, use the 'create-base-path' and 'create-subdirs' options instead.
	Mkdir *int32 `json:"mkdir,omitempty"`
	// IP addresses of monitors (for external clusters).
	Monhost *string `json:"monhost,omitempty"`
	// mount point
	Mountpoint *string `json:"mountpoint,omitempty"`
	// Namespace.
	Namespace *string `json:"namespace,omitempty"`
	// Set the NOCOW flag on files. Disables data checksumming and causes data errors to be unrecoverable from while allowing direct I/O. Only use this if data does not need to be any more safe than on a single ext4 formatted disk with no underlying raid system.
	Nocow *int32 `json:"nocow,omitempty"`
	// List of cluster node names.
	Nodes *string `json:"nodes,omitempty"`
	// disable write caching on the target
	Nowritecache *int32 `json:"nowritecache,omitempty"`
	// NFS/CIFS mount options (see 'man nfs' or 'man mount.cifs')
	Options *string `json:"options,omitempty"`
	// Password for accessing the share/datastore.
	Password *string `json:"password,omitempty"`
	// File system path.
	Path *string `json:"path,omitempty"`
	// Pool.
	Pool *string `json:"pool,omitempty"`
	// For non default port.
	Port *int64 `json:"port,omitempty"`
	// iSCSI portal (IP or DNS name with optional port).
	Portal *string `json:"portal,omitempty"`
	// Preallocation mode for raw and qcow2 images. Using 'metadata' on raw images results in preallocation=off.
	Preallocation *string `json:"preallocation,omitempty"`
	// The retention options with shorter intervals are processed first with --keep-last being the very first one. Each option covers a specific period of time. We say that backups within this period are covered by this option. The next option does not take care of already covered backups and only considers older backups.
	PruneBackups *string `json:"prune-backups,omitempty"`
	// Zero-out data when removing LVs.
	Saferemove *int32 `json:"saferemove,omitempty"`
	// Wipe throughput (cstream -t parameter value).
	SaferemoveThroughput *string `json:"saferemove_throughput,omitempty"`
	// Server IP or DNS name.
	Server *string `json:"server,omitempty"`
	// Backup volfile server IP or DNS name.
	Server2 *string `json:"server2,omitempty"`
	// CIFS share.
	Share *string `json:"share,omitempty"`
	// Mark storage as shared.
	Shared *int32 `json:"shared,omitempty"`
	// SMB protocol version. 'default' if not set, negotiates the highest SMB2+ version supported by both the client and server.
	Smbversion *string `json:"smbversion,omitempty"`
	// use sparse volumes
	Sparse *int32 `json:"sparse,omitempty"`
	// The storage identifier.
	Storage string `json:"storage"`
	// Subdir to mount.
	Subdir *string `json:"subdir,omitempty"`
	// Only use logical volumes tagged with 'pve-vm-ID'.
	TaggedOnly *int32 `json:"tagged_only,omitempty"`
	// iSCSI target.
	Target *string `json:"target,omitempty"`
	// LVM thin pool LV name.
	Thinpool *string `json:"thinpool,omitempty"`
	// Gluster transport: tcp or rdma
	Transport *string `json:"transport,omitempty"`
	// Storage type.
	Type string `json:"type"`
	// RBD Id.
	Username *string `json:"username,omitempty"`
	// Volume group name.
	Vgname *string `json:"vgname,omitempty"`
	// Glusterfs Volume.
	Volume *string `json:"volume,omitempty"`
}

CreateStorageRequest struct for CreateStorageRequest

func NewCreateStorageRequest

func NewCreateStorageRequest(storage string, type_ string) *CreateStorageRequest

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

func NewCreateStorageRequestWithDefaults

func NewCreateStorageRequestWithDefaults() *CreateStorageRequest

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

func (*CreateStorageRequest) GetAuthsupported

func (o *CreateStorageRequest) GetAuthsupported() string

GetAuthsupported returns the Authsupported field value if set, zero value otherwise.

func (*CreateStorageRequest) GetAuthsupportedOk

func (o *CreateStorageRequest) GetAuthsupportedOk() (*string, bool)

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

func (*CreateStorageRequest) GetBase

func (o *CreateStorageRequest) GetBase() string

GetBase returns the Base field value if set, zero value otherwise.

func (*CreateStorageRequest) GetBaseOk

func (o *CreateStorageRequest) GetBaseOk() (*string, bool)

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

func (*CreateStorageRequest) GetBlocksize

func (o *CreateStorageRequest) GetBlocksize() string

GetBlocksize returns the Blocksize field value if set, zero value otherwise.

func (*CreateStorageRequest) GetBlocksizeOk

func (o *CreateStorageRequest) GetBlocksizeOk() (*string, bool)

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

func (*CreateStorageRequest) GetBwlimit

func (o *CreateStorageRequest) GetBwlimit() string

GetBwlimit returns the Bwlimit field value if set, zero value otherwise.

func (*CreateStorageRequest) GetBwlimitOk

func (o *CreateStorageRequest) GetBwlimitOk() (*string, bool)

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

func (*CreateStorageRequest) GetComstarHg

func (o *CreateStorageRequest) GetComstarHg() string

GetComstarHg returns the ComstarHg field value if set, zero value otherwise.

func (*CreateStorageRequest) GetComstarHgOk

func (o *CreateStorageRequest) GetComstarHgOk() (*string, bool)

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

func (*CreateStorageRequest) GetComstarTg

func (o *CreateStorageRequest) GetComstarTg() string

GetComstarTg returns the ComstarTg field value if set, zero value otherwise.

func (*CreateStorageRequest) GetComstarTgOk

func (o *CreateStorageRequest) GetComstarTgOk() (*string, bool)

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

func (*CreateStorageRequest) GetContent

func (o *CreateStorageRequest) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*CreateStorageRequest) GetContentDirs

func (o *CreateStorageRequest) GetContentDirs() string

GetContentDirs returns the ContentDirs field value if set, zero value otherwise.

func (*CreateStorageRequest) GetContentDirsOk

func (o *CreateStorageRequest) GetContentDirsOk() (*string, bool)

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

func (*CreateStorageRequest) GetContentOk

func (o *CreateStorageRequest) GetContentOk() (*string, bool)

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

func (*CreateStorageRequest) GetCreateBasePath

func (o *CreateStorageRequest) GetCreateBasePath() int32

GetCreateBasePath returns the CreateBasePath field value if set, zero value otherwise.

func (*CreateStorageRequest) GetCreateBasePathOk

func (o *CreateStorageRequest) GetCreateBasePathOk() (*int32, bool)

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

func (*CreateStorageRequest) GetCreateSubdirs

func (o *CreateStorageRequest) GetCreateSubdirs() int32

GetCreateSubdirs returns the CreateSubdirs field value if set, zero value otherwise.

func (*CreateStorageRequest) GetCreateSubdirsOk

func (o *CreateStorageRequest) GetCreateSubdirsOk() (*int32, bool)

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

func (*CreateStorageRequest) GetDataPool

func (o *CreateStorageRequest) GetDataPool() string

GetDataPool returns the DataPool field value if set, zero value otherwise.

func (*CreateStorageRequest) GetDataPoolOk

func (o *CreateStorageRequest) GetDataPoolOk() (*string, bool)

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

func (*CreateStorageRequest) GetDatastore

func (o *CreateStorageRequest) GetDatastore() string

GetDatastore returns the Datastore field value if set, zero value otherwise.

func (*CreateStorageRequest) GetDatastoreOk

func (o *CreateStorageRequest) GetDatastoreOk() (*string, bool)

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

func (*CreateStorageRequest) GetDisable

func (o *CreateStorageRequest) GetDisable() int32

GetDisable returns the Disable field value if set, zero value otherwise.

func (*CreateStorageRequest) GetDisableOk

func (o *CreateStorageRequest) GetDisableOk() (*int32, bool)

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

func (*CreateStorageRequest) GetDomain

func (o *CreateStorageRequest) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*CreateStorageRequest) GetDomainOk

func (o *CreateStorageRequest) GetDomainOk() (*string, bool)

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

func (*CreateStorageRequest) GetEncryptionKey

func (o *CreateStorageRequest) GetEncryptionKey() string

GetEncryptionKey returns the EncryptionKey field value if set, zero value otherwise.

func (*CreateStorageRequest) GetEncryptionKeyOk

func (o *CreateStorageRequest) GetEncryptionKeyOk() (*string, bool)

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

func (*CreateStorageRequest) GetExport

func (o *CreateStorageRequest) GetExport() string

GetExport returns the Export field value if set, zero value otherwise.

func (*CreateStorageRequest) GetExportOk

func (o *CreateStorageRequest) GetExportOk() (*string, bool)

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

func (*CreateStorageRequest) GetFingerprint

func (o *CreateStorageRequest) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*CreateStorageRequest) GetFingerprintOk

func (o *CreateStorageRequest) GetFingerprintOk() (*string, bool)

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

func (*CreateStorageRequest) GetFormat

func (o *CreateStorageRequest) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*CreateStorageRequest) GetFormatOk

func (o *CreateStorageRequest) GetFormatOk() (*string, bool)

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

func (*CreateStorageRequest) GetFsName

func (o *CreateStorageRequest) GetFsName() string

GetFsName returns the FsName field value if set, zero value otherwise.

func (*CreateStorageRequest) GetFsNameOk

func (o *CreateStorageRequest) GetFsNameOk() (*string, bool)

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

func (*CreateStorageRequest) GetFuse

func (o *CreateStorageRequest) GetFuse() int32

GetFuse returns the Fuse field value if set, zero value otherwise.

func (*CreateStorageRequest) GetFuseOk

func (o *CreateStorageRequest) GetFuseOk() (*int32, bool)

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

func (*CreateStorageRequest) GetIsMountpoint

func (o *CreateStorageRequest) GetIsMountpoint() string

GetIsMountpoint returns the IsMountpoint field value if set, zero value otherwise.

func (*CreateStorageRequest) GetIsMountpointOk

func (o *CreateStorageRequest) GetIsMountpointOk() (*string, bool)

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

func (*CreateStorageRequest) GetIscsiprovider

func (o *CreateStorageRequest) GetIscsiprovider() string

GetIscsiprovider returns the Iscsiprovider field value if set, zero value otherwise.

func (*CreateStorageRequest) GetIscsiproviderOk

func (o *CreateStorageRequest) GetIscsiproviderOk() (*string, bool)

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

func (*CreateStorageRequest) GetKeyring

func (o *CreateStorageRequest) GetKeyring() string

GetKeyring returns the Keyring field value if set, zero value otherwise.

func (*CreateStorageRequest) GetKeyringOk

func (o *CreateStorageRequest) GetKeyringOk() (*string, bool)

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

func (*CreateStorageRequest) GetKrbd

func (o *CreateStorageRequest) GetKrbd() int32

GetKrbd returns the Krbd field value if set, zero value otherwise.

func (*CreateStorageRequest) GetKrbdOk

func (o *CreateStorageRequest) GetKrbdOk() (*int32, bool)

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

func (*CreateStorageRequest) GetLioTpg

func (o *CreateStorageRequest) GetLioTpg() string

GetLioTpg returns the LioTpg field value if set, zero value otherwise.

func (*CreateStorageRequest) GetLioTpgOk

func (o *CreateStorageRequest) GetLioTpgOk() (*string, bool)

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

func (*CreateStorageRequest) GetMasterPubkey

func (o *CreateStorageRequest) GetMasterPubkey() string

GetMasterPubkey returns the MasterPubkey field value if set, zero value otherwise.

func (*CreateStorageRequest) GetMasterPubkeyOk

func (o *CreateStorageRequest) GetMasterPubkeyOk() (*string, bool)

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

func (*CreateStorageRequest) GetMaxProtectedBackups

func (o *CreateStorageRequest) GetMaxProtectedBackups() int64

GetMaxProtectedBackups returns the MaxProtectedBackups field value if set, zero value otherwise.

func (*CreateStorageRequest) GetMaxProtectedBackupsOk

func (o *CreateStorageRequest) GetMaxProtectedBackupsOk() (*int64, bool)

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

func (*CreateStorageRequest) GetMaxfiles

func (o *CreateStorageRequest) GetMaxfiles() int64

GetMaxfiles returns the Maxfiles field value if set, zero value otherwise.

func (*CreateStorageRequest) GetMaxfilesOk

func (o *CreateStorageRequest) GetMaxfilesOk() (*int64, bool)

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

func (*CreateStorageRequest) GetMkdir

func (o *CreateStorageRequest) GetMkdir() int32

GetMkdir returns the Mkdir field value if set, zero value otherwise.

func (*CreateStorageRequest) GetMkdirOk

func (o *CreateStorageRequest) GetMkdirOk() (*int32, bool)

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

func (*CreateStorageRequest) GetMonhost

func (o *CreateStorageRequest) GetMonhost() string

GetMonhost returns the Monhost field value if set, zero value otherwise.

func (*CreateStorageRequest) GetMonhostOk

func (o *CreateStorageRequest) GetMonhostOk() (*string, bool)

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

func (*CreateStorageRequest) GetMountpoint

func (o *CreateStorageRequest) GetMountpoint() string

GetMountpoint returns the Mountpoint field value if set, zero value otherwise.

func (*CreateStorageRequest) GetMountpointOk

func (o *CreateStorageRequest) GetMountpointOk() (*string, bool)

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

func (*CreateStorageRequest) GetNamespace

func (o *CreateStorageRequest) GetNamespace() string

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

func (*CreateStorageRequest) GetNamespaceOk

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

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

func (*CreateStorageRequest) GetNocow

func (o *CreateStorageRequest) GetNocow() int32

GetNocow returns the Nocow field value if set, zero value otherwise.

func (*CreateStorageRequest) GetNocowOk

func (o *CreateStorageRequest) GetNocowOk() (*int32, bool)

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

func (*CreateStorageRequest) GetNodes

func (o *CreateStorageRequest) GetNodes() string

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*CreateStorageRequest) GetNodesOk

func (o *CreateStorageRequest) GetNodesOk() (*string, bool)

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

func (*CreateStorageRequest) GetNowritecache

func (o *CreateStorageRequest) GetNowritecache() int32

GetNowritecache returns the Nowritecache field value if set, zero value otherwise.

func (*CreateStorageRequest) GetNowritecacheOk

func (o *CreateStorageRequest) GetNowritecacheOk() (*int32, bool)

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

func (*CreateStorageRequest) GetOptions

func (o *CreateStorageRequest) GetOptions() string

GetOptions returns the Options field value if set, zero value otherwise.

func (*CreateStorageRequest) GetOptionsOk

func (o *CreateStorageRequest) GetOptionsOk() (*string, bool)

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

func (*CreateStorageRequest) GetPassword

func (o *CreateStorageRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPasswordOk

func (o *CreateStorageRequest) GetPasswordOk() (*string, bool)

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

func (*CreateStorageRequest) GetPath

func (o *CreateStorageRequest) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPathOk

func (o *CreateStorageRequest) GetPathOk() (*string, bool)

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

func (*CreateStorageRequest) GetPool

func (o *CreateStorageRequest) GetPool() string

GetPool returns the Pool field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPoolOk

func (o *CreateStorageRequest) GetPoolOk() (*string, bool)

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

func (*CreateStorageRequest) GetPort

func (o *CreateStorageRequest) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPortOk

func (o *CreateStorageRequest) GetPortOk() (*int64, bool)

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

func (*CreateStorageRequest) GetPortal

func (o *CreateStorageRequest) GetPortal() string

GetPortal returns the Portal field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPortalOk

func (o *CreateStorageRequest) GetPortalOk() (*string, bool)

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

func (*CreateStorageRequest) GetPreallocation

func (o *CreateStorageRequest) GetPreallocation() string

GetPreallocation returns the Preallocation field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPreallocationOk

func (o *CreateStorageRequest) GetPreallocationOk() (*string, bool)

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

func (*CreateStorageRequest) GetPruneBackups

func (o *CreateStorageRequest) GetPruneBackups() string

GetPruneBackups returns the PruneBackups field value if set, zero value otherwise.

func (*CreateStorageRequest) GetPruneBackupsOk

func (o *CreateStorageRequest) GetPruneBackupsOk() (*string, bool)

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

func (*CreateStorageRequest) GetSaferemove

func (o *CreateStorageRequest) GetSaferemove() int32

GetSaferemove returns the Saferemove field value if set, zero value otherwise.

func (*CreateStorageRequest) GetSaferemoveOk

func (o *CreateStorageRequest) GetSaferemoveOk() (*int32, bool)

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

func (*CreateStorageRequest) GetSaferemoveThroughput

func (o *CreateStorageRequest) GetSaferemoveThroughput() string

GetSaferemoveThroughput returns the SaferemoveThroughput field value if set, zero value otherwise.

func (*CreateStorageRequest) GetSaferemoveThroughputOk

func (o *CreateStorageRequest) GetSaferemoveThroughputOk() (*string, bool)

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

func (*CreateStorageRequest) GetServer

func (o *CreateStorageRequest) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*CreateStorageRequest) GetServer2

func (o *CreateStorageRequest) GetServer2() string

GetServer2 returns the Server2 field value if set, zero value otherwise.

func (*CreateStorageRequest) GetServer2Ok

func (o *CreateStorageRequest) GetServer2Ok() (*string, bool)

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

func (*CreateStorageRequest) GetServerOk

func (o *CreateStorageRequest) GetServerOk() (*string, bool)

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

func (*CreateStorageRequest) GetShare

func (o *CreateStorageRequest) GetShare() string

GetShare returns the Share field value if set, zero value otherwise.

func (*CreateStorageRequest) GetShareOk

func (o *CreateStorageRequest) GetShareOk() (*string, bool)

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

func (*CreateStorageRequest) GetShared

func (o *CreateStorageRequest) GetShared() int32

GetShared returns the Shared field value if set, zero value otherwise.

func (*CreateStorageRequest) GetSharedOk

func (o *CreateStorageRequest) GetSharedOk() (*int32, bool)

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

func (*CreateStorageRequest) GetSmbversion

func (o *CreateStorageRequest) GetSmbversion() string

GetSmbversion returns the Smbversion field value if set, zero value otherwise.

func (*CreateStorageRequest) GetSmbversionOk

func (o *CreateStorageRequest) GetSmbversionOk() (*string, bool)

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

func (*CreateStorageRequest) GetSparse

func (o *CreateStorageRequest) GetSparse() int32

GetSparse returns the Sparse field value if set, zero value otherwise.

func (*CreateStorageRequest) GetSparseOk

func (o *CreateStorageRequest) GetSparseOk() (*int32, bool)

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

func (*CreateStorageRequest) GetStorage

func (o *CreateStorageRequest) GetStorage() string

GetStorage returns the Storage field value

func (*CreateStorageRequest) GetStorageOk

func (o *CreateStorageRequest) GetStorageOk() (*string, bool)

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

func (*CreateStorageRequest) GetSubdir

func (o *CreateStorageRequest) GetSubdir() string

GetSubdir returns the Subdir field value if set, zero value otherwise.

func (*CreateStorageRequest) GetSubdirOk

func (o *CreateStorageRequest) GetSubdirOk() (*string, bool)

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

func (*CreateStorageRequest) GetTaggedOnly

func (o *CreateStorageRequest) GetTaggedOnly() int32

GetTaggedOnly returns the TaggedOnly field value if set, zero value otherwise.

func (*CreateStorageRequest) GetTaggedOnlyOk

func (o *CreateStorageRequest) GetTaggedOnlyOk() (*int32, bool)

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

func (*CreateStorageRequest) GetTarget

func (o *CreateStorageRequest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*CreateStorageRequest) GetTargetOk

func (o *CreateStorageRequest) GetTargetOk() (*string, bool)

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

func (*CreateStorageRequest) GetThinpool

func (o *CreateStorageRequest) GetThinpool() string

GetThinpool returns the Thinpool field value if set, zero value otherwise.

func (*CreateStorageRequest) GetThinpoolOk

func (o *CreateStorageRequest) GetThinpoolOk() (*string, bool)

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

func (*CreateStorageRequest) GetTransport

func (o *CreateStorageRequest) GetTransport() string

GetTransport returns the Transport field value if set, zero value otherwise.

func (*CreateStorageRequest) GetTransportOk

func (o *CreateStorageRequest) GetTransportOk() (*string, bool)

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

func (*CreateStorageRequest) GetType

func (o *CreateStorageRequest) GetType() string

GetType returns the Type field value

func (*CreateStorageRequest) GetTypeOk

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

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

func (*CreateStorageRequest) GetUsername

func (o *CreateStorageRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*CreateStorageRequest) GetUsernameOk

func (o *CreateStorageRequest) GetUsernameOk() (*string, bool)

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

func (*CreateStorageRequest) GetVgname

func (o *CreateStorageRequest) GetVgname() string

GetVgname returns the Vgname field value if set, zero value otherwise.

func (*CreateStorageRequest) GetVgnameOk

func (o *CreateStorageRequest) GetVgnameOk() (*string, bool)

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

func (*CreateStorageRequest) GetVolume

func (o *CreateStorageRequest) GetVolume() string

GetVolume returns the Volume field value if set, zero value otherwise.

func (*CreateStorageRequest) GetVolumeOk

func (o *CreateStorageRequest) GetVolumeOk() (*string, bool)

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

func (*CreateStorageRequest) HasAuthsupported

func (o *CreateStorageRequest) HasAuthsupported() bool

HasAuthsupported returns a boolean if a field has been set.

func (*CreateStorageRequest) HasBase

func (o *CreateStorageRequest) HasBase() bool

HasBase returns a boolean if a field has been set.

func (*CreateStorageRequest) HasBlocksize

func (o *CreateStorageRequest) HasBlocksize() bool

HasBlocksize returns a boolean if a field has been set.

func (*CreateStorageRequest) HasBwlimit

func (o *CreateStorageRequest) HasBwlimit() bool

HasBwlimit returns a boolean if a field has been set.

func (*CreateStorageRequest) HasComstarHg

func (o *CreateStorageRequest) HasComstarHg() bool

HasComstarHg returns a boolean if a field has been set.

func (*CreateStorageRequest) HasComstarTg

func (o *CreateStorageRequest) HasComstarTg() bool

HasComstarTg returns a boolean if a field has been set.

func (*CreateStorageRequest) HasContent

func (o *CreateStorageRequest) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*CreateStorageRequest) HasContentDirs

func (o *CreateStorageRequest) HasContentDirs() bool

HasContentDirs returns a boolean if a field has been set.

func (*CreateStorageRequest) HasCreateBasePath

func (o *CreateStorageRequest) HasCreateBasePath() bool

HasCreateBasePath returns a boolean if a field has been set.

func (*CreateStorageRequest) HasCreateSubdirs

func (o *CreateStorageRequest) HasCreateSubdirs() bool

HasCreateSubdirs returns a boolean if a field has been set.

func (*CreateStorageRequest) HasDataPool

func (o *CreateStorageRequest) HasDataPool() bool

HasDataPool returns a boolean if a field has been set.

func (*CreateStorageRequest) HasDatastore

func (o *CreateStorageRequest) HasDatastore() bool

HasDatastore returns a boolean if a field has been set.

func (*CreateStorageRequest) HasDisable

func (o *CreateStorageRequest) HasDisable() bool

HasDisable returns a boolean if a field has been set.

func (*CreateStorageRequest) HasDomain

func (o *CreateStorageRequest) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*CreateStorageRequest) HasEncryptionKey

func (o *CreateStorageRequest) HasEncryptionKey() bool

HasEncryptionKey returns a boolean if a field has been set.

func (*CreateStorageRequest) HasExport

func (o *CreateStorageRequest) HasExport() bool

HasExport returns a boolean if a field has been set.

func (*CreateStorageRequest) HasFingerprint

func (o *CreateStorageRequest) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*CreateStorageRequest) HasFormat

func (o *CreateStorageRequest) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*CreateStorageRequest) HasFsName

func (o *CreateStorageRequest) HasFsName() bool

HasFsName returns a boolean if a field has been set.

func (*CreateStorageRequest) HasFuse

func (o *CreateStorageRequest) HasFuse() bool

HasFuse returns a boolean if a field has been set.

func (*CreateStorageRequest) HasIsMountpoint

func (o *CreateStorageRequest) HasIsMountpoint() bool

HasIsMountpoint returns a boolean if a field has been set.

func (*CreateStorageRequest) HasIscsiprovider

func (o *CreateStorageRequest) HasIscsiprovider() bool

HasIscsiprovider returns a boolean if a field has been set.

func (*CreateStorageRequest) HasKeyring

func (o *CreateStorageRequest) HasKeyring() bool

HasKeyring returns a boolean if a field has been set.

func (*CreateStorageRequest) HasKrbd

func (o *CreateStorageRequest) HasKrbd() bool

HasKrbd returns a boolean if a field has been set.

func (*CreateStorageRequest) HasLioTpg

func (o *CreateStorageRequest) HasLioTpg() bool

HasLioTpg returns a boolean if a field has been set.

func (*CreateStorageRequest) HasMasterPubkey

func (o *CreateStorageRequest) HasMasterPubkey() bool

HasMasterPubkey returns a boolean if a field has been set.

func (*CreateStorageRequest) HasMaxProtectedBackups

func (o *CreateStorageRequest) HasMaxProtectedBackups() bool

HasMaxProtectedBackups returns a boolean if a field has been set.

func (*CreateStorageRequest) HasMaxfiles

func (o *CreateStorageRequest) HasMaxfiles() bool

HasMaxfiles returns a boolean if a field has been set.

func (*CreateStorageRequest) HasMkdir

func (o *CreateStorageRequest) HasMkdir() bool

HasMkdir returns a boolean if a field has been set.

func (*CreateStorageRequest) HasMonhost

func (o *CreateStorageRequest) HasMonhost() bool

HasMonhost returns a boolean if a field has been set.

func (*CreateStorageRequest) HasMountpoint

func (o *CreateStorageRequest) HasMountpoint() bool

HasMountpoint returns a boolean if a field has been set.

func (*CreateStorageRequest) HasNamespace

func (o *CreateStorageRequest) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*CreateStorageRequest) HasNocow

func (o *CreateStorageRequest) HasNocow() bool

HasNocow returns a boolean if a field has been set.

func (*CreateStorageRequest) HasNodes

func (o *CreateStorageRequest) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (*CreateStorageRequest) HasNowritecache

func (o *CreateStorageRequest) HasNowritecache() bool

HasNowritecache returns a boolean if a field has been set.

func (*CreateStorageRequest) HasOptions

func (o *CreateStorageRequest) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPassword

func (o *CreateStorageRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPath

func (o *CreateStorageRequest) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPool

func (o *CreateStorageRequest) HasPool() bool

HasPool returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPort

func (o *CreateStorageRequest) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPortal

func (o *CreateStorageRequest) HasPortal() bool

HasPortal returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPreallocation

func (o *CreateStorageRequest) HasPreallocation() bool

HasPreallocation returns a boolean if a field has been set.

func (*CreateStorageRequest) HasPruneBackups

func (o *CreateStorageRequest) HasPruneBackups() bool

HasPruneBackups returns a boolean if a field has been set.

func (*CreateStorageRequest) HasSaferemove

func (o *CreateStorageRequest) HasSaferemove() bool

HasSaferemove returns a boolean if a field has been set.

func (*CreateStorageRequest) HasSaferemoveThroughput

func (o *CreateStorageRequest) HasSaferemoveThroughput() bool

HasSaferemoveThroughput returns a boolean if a field has been set.

func (*CreateStorageRequest) HasServer

func (o *CreateStorageRequest) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*CreateStorageRequest) HasServer2

func (o *CreateStorageRequest) HasServer2() bool

HasServer2 returns a boolean if a field has been set.

func (*CreateStorageRequest) HasShare

func (o *CreateStorageRequest) HasShare() bool

HasShare returns a boolean if a field has been set.

func (*CreateStorageRequest) HasShared

func (o *CreateStorageRequest) HasShared() bool

HasShared returns a boolean if a field has been set.

func (*CreateStorageRequest) HasSmbversion

func (o *CreateStorageRequest) HasSmbversion() bool

HasSmbversion returns a boolean if a field has been set.

func (*CreateStorageRequest) HasSparse

func (o *CreateStorageRequest) HasSparse() bool

HasSparse returns a boolean if a field has been set.

func (*CreateStorageRequest) HasSubdir

func (o *CreateStorageRequest) HasSubdir() bool

HasSubdir returns a boolean if a field has been set.

func (*CreateStorageRequest) HasTaggedOnly

func (o *CreateStorageRequest) HasTaggedOnly() bool

HasTaggedOnly returns a boolean if a field has been set.

func (*CreateStorageRequest) HasTarget

func (o *CreateStorageRequest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*CreateStorageRequest) HasThinpool

func (o *CreateStorageRequest) HasThinpool() bool

HasThinpool returns a boolean if a field has been set.

func (*CreateStorageRequest) HasTransport

func (o *CreateStorageRequest) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (*CreateStorageRequest) HasUsername

func (o *CreateStorageRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*CreateStorageRequest) HasVgname

func (o *CreateStorageRequest) HasVgname() bool

HasVgname returns a boolean if a field has been set.

func (*CreateStorageRequest) HasVolume

func (o *CreateStorageRequest) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (CreateStorageRequest) MarshalJSON

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

func (*CreateStorageRequest) SetAuthsupported

func (o *CreateStorageRequest) SetAuthsupported(v string)

SetAuthsupported gets a reference to the given string and assigns it to the Authsupported field.

func (*CreateStorageRequest) SetBase

func (o *CreateStorageRequest) SetBase(v string)

SetBase gets a reference to the given string and assigns it to the Base field.

func (*CreateStorageRequest) SetBlocksize

func (o *CreateStorageRequest) SetBlocksize(v string)

SetBlocksize gets a reference to the given string and assigns it to the Blocksize field.

func (*CreateStorageRequest) SetBwlimit

func (o *CreateStorageRequest) SetBwlimit(v string)

SetBwlimit gets a reference to the given string and assigns it to the Bwlimit field.

func (*CreateStorageRequest) SetComstarHg

func (o *CreateStorageRequest) SetComstarHg(v string)

SetComstarHg gets a reference to the given string and assigns it to the ComstarHg field.

func (*CreateStorageRequest) SetComstarTg

func (o *CreateStorageRequest) SetComstarTg(v string)

SetComstarTg gets a reference to the given string and assigns it to the ComstarTg field.

func (*CreateStorageRequest) SetContent

func (o *CreateStorageRequest) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*CreateStorageRequest) SetContentDirs

func (o *CreateStorageRequest) SetContentDirs(v string)

SetContentDirs gets a reference to the given string and assigns it to the ContentDirs field.

func (*CreateStorageRequest) SetCreateBasePath

func (o *CreateStorageRequest) SetCreateBasePath(v int32)

SetCreateBasePath gets a reference to the given int32 and assigns it to the CreateBasePath field.

func (*CreateStorageRequest) SetCreateSubdirs

func (o *CreateStorageRequest) SetCreateSubdirs(v int32)

SetCreateSubdirs gets a reference to the given int32 and assigns it to the CreateSubdirs field.

func (*CreateStorageRequest) SetDataPool

func (o *CreateStorageRequest) SetDataPool(v string)

SetDataPool gets a reference to the given string and assigns it to the DataPool field.

func (*CreateStorageRequest) SetDatastore

func (o *CreateStorageRequest) SetDatastore(v string)

SetDatastore gets a reference to the given string and assigns it to the Datastore field.

func (*CreateStorageRequest) SetDisable

func (o *CreateStorageRequest) SetDisable(v int32)

SetDisable gets a reference to the given int32 and assigns it to the Disable field.

func (*CreateStorageRequest) SetDomain

func (o *CreateStorageRequest) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*CreateStorageRequest) SetEncryptionKey

func (o *CreateStorageRequest) SetEncryptionKey(v string)

SetEncryptionKey gets a reference to the given string and assigns it to the EncryptionKey field.

func (*CreateStorageRequest) SetExport

func (o *CreateStorageRequest) SetExport(v string)

SetExport gets a reference to the given string and assigns it to the Export field.

func (*CreateStorageRequest) SetFingerprint

func (o *CreateStorageRequest) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*CreateStorageRequest) SetFormat

func (o *CreateStorageRequest) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*CreateStorageRequest) SetFsName

func (o *CreateStorageRequest) SetFsName(v string)

SetFsName gets a reference to the given string and assigns it to the FsName field.

func (*CreateStorageRequest) SetFuse

func (o *CreateStorageRequest) SetFuse(v int32)

SetFuse gets a reference to the given int32 and assigns it to the Fuse field.

func (*CreateStorageRequest) SetIsMountpoint

func (o *CreateStorageRequest) SetIsMountpoint(v string)

SetIsMountpoint gets a reference to the given string and assigns it to the IsMountpoint field.

func (*CreateStorageRequest) SetIscsiprovider

func (o *CreateStorageRequest) SetIscsiprovider(v string)

SetIscsiprovider gets a reference to the given string and assigns it to the Iscsiprovider field.

func (*CreateStorageRequest) SetKeyring

func (o *CreateStorageRequest) SetKeyring(v string)

SetKeyring gets a reference to the given string and assigns it to the Keyring field.

func (*CreateStorageRequest) SetKrbd

func (o *CreateStorageRequest) SetKrbd(v int32)

SetKrbd gets a reference to the given int32 and assigns it to the Krbd field.

func (*CreateStorageRequest) SetLioTpg

func (o *CreateStorageRequest) SetLioTpg(v string)

SetLioTpg gets a reference to the given string and assigns it to the LioTpg field.

func (*CreateStorageRequest) SetMasterPubkey

func (o *CreateStorageRequest) SetMasterPubkey(v string)

SetMasterPubkey gets a reference to the given string and assigns it to the MasterPubkey field.

func (*CreateStorageRequest) SetMaxProtectedBackups

func (o *CreateStorageRequest) SetMaxProtectedBackups(v int64)

SetMaxProtectedBackups gets a reference to the given int64 and assigns it to the MaxProtectedBackups field.

func (*CreateStorageRequest) SetMaxfiles

func (o *CreateStorageRequest) SetMaxfiles(v int64)

SetMaxfiles gets a reference to the given int64 and assigns it to the Maxfiles field.

func (*CreateStorageRequest) SetMkdir

func (o *CreateStorageRequest) SetMkdir(v int32)

SetMkdir gets a reference to the given int32 and assigns it to the Mkdir field.

func (*CreateStorageRequest) SetMonhost

func (o *CreateStorageRequest) SetMonhost(v string)

SetMonhost gets a reference to the given string and assigns it to the Monhost field.

func (*CreateStorageRequest) SetMountpoint

func (o *CreateStorageRequest) SetMountpoint(v string)

SetMountpoint gets a reference to the given string and assigns it to the Mountpoint field.

func (*CreateStorageRequest) SetNamespace

func (o *CreateStorageRequest) SetNamespace(v string)

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

func (*CreateStorageRequest) SetNocow

func (o *CreateStorageRequest) SetNocow(v int32)

SetNocow gets a reference to the given int32 and assigns it to the Nocow field.

func (*CreateStorageRequest) SetNodes

func (o *CreateStorageRequest) SetNodes(v string)

SetNodes gets a reference to the given string and assigns it to the Nodes field.

func (*CreateStorageRequest) SetNowritecache

func (o *CreateStorageRequest) SetNowritecache(v int32)

SetNowritecache gets a reference to the given int32 and assigns it to the Nowritecache field.

func (*CreateStorageRequest) SetOptions

func (o *CreateStorageRequest) SetOptions(v string)

SetOptions gets a reference to the given string and assigns it to the Options field.

func (*CreateStorageRequest) SetPassword

func (o *CreateStorageRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*CreateStorageRequest) SetPath

func (o *CreateStorageRequest) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*CreateStorageRequest) SetPool

func (o *CreateStorageRequest) SetPool(v string)

SetPool gets a reference to the given string and assigns it to the Pool field.

func (*CreateStorageRequest) SetPort

func (o *CreateStorageRequest) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*CreateStorageRequest) SetPortal

func (o *CreateStorageRequest) SetPortal(v string)

SetPortal gets a reference to the given string and assigns it to the Portal field.

func (*CreateStorageRequest) SetPreallocation

func (o *CreateStorageRequest) SetPreallocation(v string)

SetPreallocation gets a reference to the given string and assigns it to the Preallocation field.

func (*CreateStorageRequest) SetPruneBackups

func (o *CreateStorageRequest) SetPruneBackups(v string)

SetPruneBackups gets a reference to the given string and assigns it to the PruneBackups field.

func (*CreateStorageRequest) SetSaferemove

func (o *CreateStorageRequest) SetSaferemove(v int32)

SetSaferemove gets a reference to the given int32 and assigns it to the Saferemove field.

func (*CreateStorageRequest) SetSaferemoveThroughput

func (o *CreateStorageRequest) SetSaferemoveThroughput(v string)

SetSaferemoveThroughput gets a reference to the given string and assigns it to the SaferemoveThroughput field.

func (*CreateStorageRequest) SetServer

func (o *CreateStorageRequest) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (*CreateStorageRequest) SetServer2

func (o *CreateStorageRequest) SetServer2(v string)

SetServer2 gets a reference to the given string and assigns it to the Server2 field.

func (*CreateStorageRequest) SetShare

func (o *CreateStorageRequest) SetShare(v string)

SetShare gets a reference to the given string and assigns it to the Share field.

func (*CreateStorageRequest) SetShared

func (o *CreateStorageRequest) SetShared(v int32)

SetShared gets a reference to the given int32 and assigns it to the Shared field.

func (*CreateStorageRequest) SetSmbversion

func (o *CreateStorageRequest) SetSmbversion(v string)

SetSmbversion gets a reference to the given string and assigns it to the Smbversion field.

func (*CreateStorageRequest) SetSparse

func (o *CreateStorageRequest) SetSparse(v int32)

SetSparse gets a reference to the given int32 and assigns it to the Sparse field.

func (*CreateStorageRequest) SetStorage

func (o *CreateStorageRequest) SetStorage(v string)

SetStorage sets field value

func (*CreateStorageRequest) SetSubdir

func (o *CreateStorageRequest) SetSubdir(v string)

SetSubdir gets a reference to the given string and assigns it to the Subdir field.

func (*CreateStorageRequest) SetTaggedOnly

func (o *CreateStorageRequest) SetTaggedOnly(v int32)

SetTaggedOnly gets a reference to the given int32 and assigns it to the TaggedOnly field.

func (*CreateStorageRequest) SetTarget

func (o *CreateStorageRequest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*CreateStorageRequest) SetThinpool

func (o *CreateStorageRequest) SetThinpool(v string)

SetThinpool gets a reference to the given string and assigns it to the Thinpool field.

func (*CreateStorageRequest) SetTransport

func (o *CreateStorageRequest) SetTransport(v string)

SetTransport gets a reference to the given string and assigns it to the Transport field.

func (*CreateStorageRequest) SetType

func (o *CreateStorageRequest) SetType(v string)

SetType sets field value

func (*CreateStorageRequest) SetUsername

func (o *CreateStorageRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*CreateStorageRequest) SetVgname

func (o *CreateStorageRequest) SetVgname(v string)

SetVgname gets a reference to the given string and assigns it to the Vgname field.

func (*CreateStorageRequest) SetVolume

func (o *CreateStorageRequest) SetVolume(v string)

SetVolume gets a reference to the given string and assigns it to the Volume field.

func (CreateStorageRequest) ToMap

func (o CreateStorageRequest) ToMap() (map[string]interface{}, error)

func (*CreateStorageRequest) UnmarshalJSON added in v1.0.9

func (o *CreateStorageRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateVM200Response

type CreateVM200Response struct {
	Data   *string  `json:"data,omitempty"`
	Errors []string `json:"errors,omitempty"`
}

CreateVM200Response struct for CreateVM200Response

func NewCreateVM200Response

func NewCreateVM200Response() *CreateVM200Response

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

func NewCreateVM200ResponseWithDefaults

func NewCreateVM200ResponseWithDefaults() *CreateVM200Response

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

func (*CreateVM200Response) GetData

func (o *CreateVM200Response) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*CreateVM200Response) GetDataOk

func (o *CreateVM200Response) GetDataOk() (*string, bool)

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

func (*CreateVM200Response) GetErrors

func (o *CreateVM200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*CreateVM200Response) GetErrorsOk

func (o *CreateVM200Response) GetErrorsOk() ([]string, bool)

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

func (*CreateVM200Response) HasData

func (o *CreateVM200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*CreateVM200Response) HasErrors

func (o *CreateVM200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CreateVM200Response) MarshalJSON

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

func (*CreateVM200Response) SetData

func (o *CreateVM200Response) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*CreateVM200Response) SetErrors

func (o *CreateVM200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (CreateVM200Response) ToMap

func (o CreateVM200Response) ToMap() (map[string]interface{}, error)

type CreateVMRequest

type CreateVMRequest struct {
	// Enable/disable ACPI.
	Acpi *int32 `json:"acpi,omitempty"`
	// List of host cores used to execute guest processes, for example: 0,5,8-11
	Affinity *string `json:"affinity,omitempty"`
	// Enable/disable communication with the QEMU Guest Agent and its properties.
	Agent *string `json:"agent,omitempty"`
	// Virtual processor architecture. Defaults to the host.
	Arch *string `json:"arch,omitempty"`
	// The backup archive. Either the file system path to a .tar or .vma file (use '-' to pipe data from stdin) or a proxmox storage backup volume identifier.
	Archive *string `json:"archive,omitempty"`
	// Arbitrary arguments passed to kvm.
	Args *string `json:"args,omitempty"`
	// Configure a audio device, useful in combination with QXL/Spice.
	Audio0 *string `json:"audio0,omitempty"`
	// Automatic restart after crash (currently ignored).
	Autostart *int32 `json:"autostart,omitempty"`
	// Amount of target RAM for the VM in MiB. Using zero disables the ballon driver.
	Balloon *int64 `json:"balloon,omitempty"`
	// Select BIOS implementation.
	Bios *string `json:"bios,omitempty"`
	// Specify guest boot order. Use the 'order=' sub-property as usage with no key or 'legacy=' is deprecated.
	Boot *string `json:"boot,omitempty"`
	// Enable booting from specified disk. Deprecated: Use 'boot: order=foo;bar' instead.
	Bootdisk *string `json:"bootdisk,omitempty"`
	// Override I/O bandwidth limit (in KiB/s).
	Bwlimit *int64 `json:"bwlimit,omitempty"`
	// This is an alias for option -ide2
	Cdrom *string `json:"cdrom,omitempty"`
	// cloud-init: Specify custom files to replace the automatically generated ones at start.
	Cicustom *string `json:"cicustom,omitempty"`
	// cloud-init: Password to assign the user. Using this is generally not recommended. Use ssh keys instead. Also note that older cloud-init versions do not support hashed passwords.
	Cipassword *string `json:"cipassword,omitempty"`
	// Specifies the cloud-init configuration format. The default depends on the configured operating system type (`ostype`. We use the `nocloud` format for Linux, and `configdrive2` for windows.
	Citype *string `json:"citype,omitempty"`
	// cloud-init: do an automatic package upgrade after the first boot.
	Ciupgrade *int32 `json:"ciupgrade,omitempty"`
	// cloud-init: User name to change ssh keys and password for instead of the image's configured default user.
	Ciuser *string `json:"ciuser,omitempty"`
	// The number of cores per socket.
	Cores *int64 `json:"cores,omitempty"`
	// Emulated CPU type.
	Cpu *string `json:"cpu,omitempty"`
	// Limit of CPU usage.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a VM, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// Description for the VM. Shown in the web-interface VM's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// Configure a disk for storing EFI vars. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Note that SIZE_IN_GiB is ignored here and that the default EFI vars are copied to the volume instead. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Efidisk0 *string `json:"efidisk0,omitempty"`
	// Allow to overwrite existing VM.
	Force *int32 `json:"force,omitempty"`
	// Freeze CPU at startup (use 'c' monitor command to start execution).
	Freeze *int32 `json:"freeze,omitempty"`
	// Script that will be executed during various steps in the vms lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Map host PCI devices into guest.
	Hostpci0 *string `json:"hostpci0,omitempty"`
	// Map host PCI devices into guest.
	Hostpci1 *string `json:"hostpci1,omitempty"`
	// Map host PCI devices into guest.
	Hostpci2 *string `json:"hostpci2,omitempty"`
	// Map host PCI devices into guest.
	Hostpci3 *string `json:"hostpci3,omitempty"`
	// Map host PCI devices into guest.
	Hostpci4 *string `json:"hostpci4,omitempty"`
	// Map host PCI devices into guest.
	Hostpci5 *string `json:"hostpci5,omitempty"`
	// Map host PCI devices into guest.
	Hostpci6 *string `json:"hostpci6,omitempty"`
	// Map host PCI devices into guest.
	Hostpci7 *string `json:"hostpci7,omitempty"`
	// Map host PCI devices into guest.
	Hostpci8 *string `json:"hostpci8,omitempty"`
	// Map host PCI devices into guest.
	Hostpci9 *string `json:"hostpci9,omitempty"`
	// Map host PCI devices into guest.
	Hostpci10 *string `json:"hostpci10,omitempty"`
	// Map host PCI devices into guest.
	Hostpci11 *string `json:"hostpci11,omitempty"`
	// Map host PCI devices into guest.
	Hostpci12 *string `json:"hostpci12,omitempty"`
	// Map host PCI devices into guest.
	Hostpci13 *string `json:"hostpci13,omitempty"`
	// Map host PCI devices into guest.
	Hostpci14 *string `json:"hostpci14,omitempty"`
	// Map host PCI devices into guest.
	Hostpci15 *string `json:"hostpci15,omitempty"`
	// Map host PCI devices into guest.
	Hostpci16 *string `json:"hostpci16,omitempty"`
	// Map host PCI devices into guest.
	Hostpci17 *string `json:"hostpci17,omitempty"`
	// Map host PCI devices into guest.
	Hostpci18 *string `json:"hostpci18,omitempty"`
	// Map host PCI devices into guest.
	Hostpci19 *string `json:"hostpci19,omitempty"`
	// Map host PCI devices into guest.
	Hostpci20 *string `json:"hostpci20,omitempty"`
	// Map host PCI devices into guest.
	Hostpci21 *string `json:"hostpci21,omitempty"`
	// Map host PCI devices into guest.
	Hostpci22 *string `json:"hostpci22,omitempty"`
	// Map host PCI devices into guest.
	Hostpci23 *string `json:"hostpci23,omitempty"`
	// Map host PCI devices into guest.
	Hostpci24 *string `json:"hostpci24,omitempty"`
	// Map host PCI devices into guest.
	Hostpci25 *string `json:"hostpci25,omitempty"`
	// Map host PCI devices into guest.
	Hostpci26 *string `json:"hostpci26,omitempty"`
	// Map host PCI devices into guest.
	Hostpci27 *string `json:"hostpci27,omitempty"`
	// Map host PCI devices into guest.
	Hostpci28 *string `json:"hostpci28,omitempty"`
	// Map host PCI devices into guest.
	Hostpci29 *string `json:"hostpci29,omitempty"`
	// Selectively enable hotplug features. This is a comma separated list of hotplug features: 'network', 'disk', 'cpu', 'memory', 'usb' and 'cloudinit'. Use '0' to disable hotplug completely. Using '1' as value is an alias for the default `network,disk,usb`. USB hotplugging is possible for guests with machine version >= 7.1 and ostype l26 or windows > 7.
	Hotplug *string `json:"hotplug,omitempty"`
	// Enable/disable hugepages memory.
	Hugepages *string `json:"hugepages,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide0 *string `json:"ide0,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide1 *string `json:"ide1,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide2 *string `json:"ide2,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide3 *string `json:"ide3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig0 *string `json:"ipconfig0,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig1 *string `json:"ipconfig1,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig2 *string `json:"ipconfig2,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig3 *string `json:"ipconfig3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig4 *string `json:"ipconfig4,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig5 *string `json:"ipconfig5,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig6 *string `json:"ipconfig6,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig7 *string `json:"ipconfig7,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig8 *string `json:"ipconfig8,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig9 *string `json:"ipconfig9,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig10 *string `json:"ipconfig10,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig11 *string `json:"ipconfig11,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig12 *string `json:"ipconfig12,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig13 *string `json:"ipconfig13,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig14 *string `json:"ipconfig14,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig15 *string `json:"ipconfig15,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig16 *string `json:"ipconfig16,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig17 *string `json:"ipconfig17,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig18 *string `json:"ipconfig18,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig19 *string `json:"ipconfig19,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig20 *string `json:"ipconfig20,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig21 *string `json:"ipconfig21,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig22 *string `json:"ipconfig22,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig23 *string `json:"ipconfig23,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig24 *string `json:"ipconfig24,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig25 *string `json:"ipconfig25,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig26 *string `json:"ipconfig26,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig27 *string `json:"ipconfig27,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig28 *string `json:"ipconfig28,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig29 *string `json:"ipconfig29,omitempty"`
	// Inter-VM shared memory. Useful for direct communication between VMs, or to the host.
	Ivshmem *string `json:"ivshmem,omitempty"`
	// Use together with hugepages. If enabled, hugepages will not not be deleted after VM shutdown and can be used for subsequent starts.
	Keephugepages *int32 `json:"keephugepages,omitempty"`
	// Keyboard layout for VNC server. This option is generally not required and is often better handled from within the guest OS.
	Keyboard *string `json:"keyboard,omitempty"`
	// Enable/disable KVM hardware virtualization.
	Kvm *int32 `json:"kvm,omitempty"`
	// Start the VM immediately from the backup and restore in background. PBS only.
	LiveRestore *int32 `json:"live-restore,omitempty"`
	// Set the real time clock (RTC) to local time. This is enabled by default if the `ostype` indicates a Microsoft Windows OS.
	Localtime *int32 `json:"localtime,omitempty"`
	// Lock/unlock the VM.
	Lock *string `json:"lock,omitempty"`
	// Specifies the QEMU machine type.
	Machine *string `json:"machine,omitempty"`
	// Memory
	Memory *int64 `json:"memory,omitempty"`
	// Set maximum tolerated downtime (in seconds) for migrations.
	MigrateDowntime *float32 `json:"migrate_downtime,omitempty"`
	// Set maximum speed (in MB/s) for migrations. Value 0 is no limit.
	MigrateSpeed *int64 `json:"migrate_speed,omitempty"`
	// Set a name for the VM. Only used on the configuration web interface.
	Name *string `json:"name,omitempty"`
	// cloud-init: Sets DNS server IP address for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specify network devices.
	Net0 *string `json:"net0,omitempty"`
	// Specify network devices.
	Net1 *string `json:"net1,omitempty"`
	// Specify network devices.
	Net2 *string `json:"net2,omitempty"`
	// Specify network devices.
	Net3 *string `json:"net3,omitempty"`
	// Specify network devices.
	Net4 *string `json:"net4,omitempty"`
	// Specify network devices.
	Net5 *string `json:"net5,omitempty"`
	// Specify network devices.
	Net6 *string `json:"net6,omitempty"`
	// Specify network devices.
	Net7 *string `json:"net7,omitempty"`
	// Specify network devices.
	Net8 *string `json:"net8,omitempty"`
	// Specify network devices.
	Net9 *string `json:"net9,omitempty"`
	// Specify network devices.
	Net10 *string `json:"net10,omitempty"`
	// Specify network devices.
	Net11 *string `json:"net11,omitempty"`
	// Specify network devices.
	Net12 *string `json:"net12,omitempty"`
	// Specify network devices.
	Net13 *string `json:"net13,omitempty"`
	// Specify network devices.
	Net14 *string `json:"net14,omitempty"`
	// Specify network devices.
	Net15 *string `json:"net15,omitempty"`
	// Specify network devices.
	Net16 *string `json:"net16,omitempty"`
	// Specify network devices.
	Net17 *string `json:"net17,omitempty"`
	// Specify network devices.
	Net18 *string `json:"net18,omitempty"`
	// Specify network devices.
	Net19 *string `json:"net19,omitempty"`
	// Specify network devices.
	Net20 *string `json:"net20,omitempty"`
	// Specify network devices.
	Net21 *string `json:"net21,omitempty"`
	// Specify network devices.
	Net22 *string `json:"net22,omitempty"`
	// Specify network devices.
	Net23 *string `json:"net23,omitempty"`
	// Specify network devices.
	Net24 *string `json:"net24,omitempty"`
	// Specify network devices.
	Net25 *string `json:"net25,omitempty"`
	// Specify network devices.
	Net26 *string `json:"net26,omitempty"`
	// Specify network devices.
	Net27 *string `json:"net27,omitempty"`
	// Specify network devices.
	Net28 *string `json:"net28,omitempty"`
	// Specify network devices.
	Net29 *string `json:"net29,omitempty"`
	// Specify network devices.
	Net30 *string `json:"net30,omitempty"`
	// Specify network devices.
	Net31 *string `json:"net31,omitempty"`
	// Enable/disable NUMA.
	Numa *int32 `json:"numa,omitempty"`
	// NUMA topology.
	Numa0 *string `json:"numa0,omitempty"`
	// NUMA topology.
	Numa1 *string `json:"numa1,omitempty"`
	// NUMA topology.
	Numa2 *string `json:"numa2,omitempty"`
	// NUMA topology.
	Numa3 *string `json:"numa3,omitempty"`
	// NUMA topology.
	Numa4 *string `json:"numa4,omitempty"`
	// NUMA topology.
	Numa5 *string `json:"numa5,omitempty"`
	// NUMA topology.
	Numa6 *string `json:"numa6,omitempty"`
	// NUMA topology.
	Numa7 *string `json:"numa7,omitempty"`
	// NUMA topology.
	Numa8 *string `json:"numa8,omitempty"`
	// NUMA topology.
	Numa9 *string `json:"numa9,omitempty"`
	// NUMA topology.
	Numa10 *string `json:"numa10,omitempty"`
	// NUMA topology.
	Numa11 *string `json:"numa11,omitempty"`
	// NUMA topology.
	Numa12 *string `json:"numa12,omitempty"`
	// NUMA topology.
	Numa13 *string `json:"numa13,omitempty"`
	// NUMA topology.
	Numa14 *string `json:"numa14,omitempty"`
	// NUMA topology.
	Numa15 *string `json:"numa15,omitempty"`
	// NUMA topology.
	Numa16 *string `json:"numa16,omitempty"`
	// NUMA topology.
	Numa17 *string `json:"numa17,omitempty"`
	// NUMA topology.
	Numa18 *string `json:"numa18,omitempty"`
	// NUMA topology.
	Numa19 *string `json:"numa19,omitempty"`
	// NUMA topology.
	Numa20 *string `json:"numa20,omitempty"`
	// NUMA topology.
	Numa21 *string `json:"numa21,omitempty"`
	// NUMA topology.
	Numa22 *string `json:"numa22,omitempty"`
	// NUMA topology.
	Numa23 *string `json:"numa23,omitempty"`
	// NUMA topology.
	Numa24 *string `json:"numa24,omitempty"`
	// NUMA topology.
	Numa25 *string `json:"numa25,omitempty"`
	// NUMA topology.
	Numa26 *string `json:"numa26,omitempty"`
	// NUMA topology.
	Numa27 *string `json:"numa27,omitempty"`
	// NUMA topology.
	Numa28 *string `json:"numa28,omitempty"`
	// NUMA topology.
	Numa29 *string `json:"numa29,omitempty"`
	// Specifies whether a VM will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// Specify guest operating system.
	Ostype *string `json:"ostype,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel0 *string `json:"parallel0,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel1 *string `json:"parallel1,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel2 *string `json:"parallel2,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel3 *string `json:"parallel3,omitempty"`
	// Add the VM to the specified pool.
	Pool *string `json:"pool,omitempty"`
	// Sets the protection flag of the VM. This will disable the remove VM and remove disk operations.
	Protection *int32 `json:"protection,omitempty"`
	// Allow reboot. If set to '0' the VM exit on reboot.
	Reboot *int32 `json:"reboot,omitempty"`
	// Configure a VirtIO-based Random Number Generator.
	Rng0 *string `json:"rng0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata0 *string `json:"sata0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata1 *string `json:"sata1,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata2 *string `json:"sata2,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata3 *string `json:"sata3,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata4 *string `json:"sata4,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata5 *string `json:"sata5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi0 *string `json:"scsi0,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi1 *string `json:"scsi1,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi2 *string `json:"scsi2,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi3 *string `json:"scsi3,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi4 *string `json:"scsi4,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi5 *string `json:"scsi5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi6 *string `json:"scsi6,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi7 *string `json:"scsi7,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi8 *string `json:"scsi8,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi9 *string `json:"scsi9,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi10 *string `json:"scsi10,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi11 *string `json:"scsi11,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi12 *string `json:"scsi12,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi13 *string `json:"scsi13,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi14 *string `json:"scsi14,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi15 *string `json:"scsi15,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi16 *string `json:"scsi16,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi17 *string `json:"scsi17,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi18 *string `json:"scsi18,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi19 *string `json:"scsi19,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi20 *string `json:"scsi20,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi21 *string `json:"scsi21,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi22 *string `json:"scsi22,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi23 *string `json:"scsi23,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi24 *string `json:"scsi24,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi25 *string `json:"scsi25,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi26 *string `json:"scsi26,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi27 *string `json:"scsi27,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi28 *string `json:"scsi28,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi29 *string `json:"scsi29,omitempty"`
	// SCSI controller model
	Scsihw *string `json:"scsihw,omitempty"`
	// cloud-init: Sets DNS search domains for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial0 *string `json:"serial0,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial1 *string `json:"serial1,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial2 *string `json:"serial2,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial3 *string `json:"serial3,omitempty"`
	// Amount of memory shares for auto-ballooning. The larger the number is, the more memory this VM gets. Number is relative to weights of all other running VMs. Using zero disables auto-ballooning. Auto-ballooning is done by pvestatd.
	Shares *int64 `json:"shares,omitempty"`
	// Specify SMBIOS type 1 fields.
	Smbios1 *string `json:"smbios1,omitempty"`
	// The number of CPUs. Please use option -sockets instead.
	Smp *int64 `json:"smp,omitempty"`
	// The number of CPU sockets.
	Sockets *int64 `json:"sockets,omitempty"`
	// Configure additional enhancements for SPICE.
	SpiceEnhancements *string `json:"spice_enhancements,omitempty"`
	// cloud-init: Setup public SSH keys (one key per line, OpenSSH format).
	Sshkeys *string `json:"sshkeys,omitempty"`
	// Start VM after it was created successfully.
	Start *int32 `json:"start,omitempty"`
	// Set the initial date of the real time clock. Valid format for date are:'now' or '2006-06-17T16:01:21' or '2006-06-17'.
	Startdate *string `json:"startdate,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Default storage.
	Storage *string `json:"storage,omitempty"`
	// Enable/disable the USB tablet device.
	Tablet *int32 `json:"tablet,omitempty"`
	// Tags of the VM. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable time drift fix.
	Tdf *int32 `json:"tdf,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Configure a Disk for storing TPM state. The format is fixed to 'raw'. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Note that SIZE_IN_GiB is ignored here and 4 MiB will be used instead. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Tpmstate0 *string `json:"tpmstate0,omitempty"`
	// Assign a unique random ethernet address.
	Unique *int32 `json:"unique,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb0 *string `json:"usb0,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb1 *string `json:"usb1,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb2 *string `json:"usb2,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb3 *string `json:"usb3,omitempty"`
	// Number of hotplugged vcpus.
	Vcpus *int64 `json:"vcpus,omitempty"`
	// Configure the VGA hardware.
	Vga *string `json:"vga,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio0 *string `json:"virtio0,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio1 *string `json:"virtio1,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio2 *string `json:"virtio2,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio3 *string `json:"virtio3,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio4 *string `json:"virtio4,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio5 *string `json:"virtio5,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio6 *string `json:"virtio6,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio7 *string `json:"virtio7,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio8 *string `json:"virtio8,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio9 *string `json:"virtio9,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio10 *string `json:"virtio10,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio11 *string `json:"virtio11,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio12 *string `json:"virtio12,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio13 *string `json:"virtio13,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio14 *string `json:"virtio14,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio15 *string `json:"virtio15,omitempty"`
	// Set VM Generation ID. Use '1' to autogenerate on create or update, pass '0' to disable explicitly.
	Vmgenid *string `json:"vmgenid,omitempty"`
	// The (unique) ID of the VM.
	Vmid int64 `json:"vmid"`
	// Default storage for VM state volumes/files.
	Vmstatestorage *string `json:"vmstatestorage,omitempty"`
	// Create a virtual hardware watchdog device.
	Watchdog *string `json:"watchdog,omitempty"`
}

CreateVMRequest struct for CreateVMRequest

func NewCreateVMRequest

func NewCreateVMRequest(vmid int64) *CreateVMRequest

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

func NewCreateVMRequestWithDefaults

func NewCreateVMRequestWithDefaults() *CreateVMRequest

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

func (*CreateVMRequest) GetAcpi

func (o *CreateVMRequest) GetAcpi() int32

GetAcpi returns the Acpi field value if set, zero value otherwise.

func (*CreateVMRequest) GetAcpiOk

func (o *CreateVMRequest) GetAcpiOk() (*int32, bool)

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

func (*CreateVMRequest) GetAffinity

func (o *CreateVMRequest) GetAffinity() string

GetAffinity returns the Affinity field value if set, zero value otherwise.

func (*CreateVMRequest) GetAffinityOk

func (o *CreateVMRequest) GetAffinityOk() (*string, bool)

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

func (*CreateVMRequest) GetAgent

func (o *CreateVMRequest) GetAgent() string

GetAgent returns the Agent field value if set, zero value otherwise.

func (*CreateVMRequest) GetAgentOk

func (o *CreateVMRequest) GetAgentOk() (*string, bool)

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

func (*CreateVMRequest) GetArch

func (o *CreateVMRequest) GetArch() string

GetArch returns the Arch field value if set, zero value otherwise.

func (*CreateVMRequest) GetArchOk

func (o *CreateVMRequest) GetArchOk() (*string, bool)

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

func (*CreateVMRequest) GetArchive

func (o *CreateVMRequest) GetArchive() string

GetArchive returns the Archive field value if set, zero value otherwise.

func (*CreateVMRequest) GetArchiveOk

func (o *CreateVMRequest) GetArchiveOk() (*string, bool)

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

func (*CreateVMRequest) GetArgs

func (o *CreateVMRequest) GetArgs() string

GetArgs returns the Args field value if set, zero value otherwise.

func (*CreateVMRequest) GetArgsOk

func (o *CreateVMRequest) GetArgsOk() (*string, bool)

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

func (*CreateVMRequest) GetAudio0

func (o *CreateVMRequest) GetAudio0() string

GetAudio0 returns the Audio0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetAudio0Ok

func (o *CreateVMRequest) GetAudio0Ok() (*string, bool)

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

func (*CreateVMRequest) GetAutostart

func (o *CreateVMRequest) GetAutostart() int32

GetAutostart returns the Autostart field value if set, zero value otherwise.

func (*CreateVMRequest) GetAutostartOk

func (o *CreateVMRequest) GetAutostartOk() (*int32, bool)

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

func (*CreateVMRequest) GetBalloon

func (o *CreateVMRequest) GetBalloon() int64

GetBalloon returns the Balloon field value if set, zero value otherwise.

func (*CreateVMRequest) GetBalloonOk

func (o *CreateVMRequest) GetBalloonOk() (*int64, bool)

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

func (*CreateVMRequest) GetBios

func (o *CreateVMRequest) GetBios() string

GetBios returns the Bios field value if set, zero value otherwise.

func (*CreateVMRequest) GetBiosOk

func (o *CreateVMRequest) GetBiosOk() (*string, bool)

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

func (*CreateVMRequest) GetBoot

func (o *CreateVMRequest) GetBoot() string

GetBoot returns the Boot field value if set, zero value otherwise.

func (*CreateVMRequest) GetBootOk

func (o *CreateVMRequest) GetBootOk() (*string, bool)

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

func (*CreateVMRequest) GetBootdisk

func (o *CreateVMRequest) GetBootdisk() string

GetBootdisk returns the Bootdisk field value if set, zero value otherwise.

func (*CreateVMRequest) GetBootdiskOk

func (o *CreateVMRequest) GetBootdiskOk() (*string, bool)

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

func (*CreateVMRequest) GetBwlimit

func (o *CreateVMRequest) GetBwlimit() int64

GetBwlimit returns the Bwlimit field value if set, zero value otherwise.

func (*CreateVMRequest) GetBwlimitOk

func (o *CreateVMRequest) GetBwlimitOk() (*int64, bool)

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

func (*CreateVMRequest) GetCdrom

func (o *CreateVMRequest) GetCdrom() string

GetCdrom returns the Cdrom field value if set, zero value otherwise.

func (*CreateVMRequest) GetCdromOk

func (o *CreateVMRequest) GetCdromOk() (*string, bool)

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

func (*CreateVMRequest) GetCicustom

func (o *CreateVMRequest) GetCicustom() string

GetCicustom returns the Cicustom field value if set, zero value otherwise.

func (*CreateVMRequest) GetCicustomOk

func (o *CreateVMRequest) GetCicustomOk() (*string, bool)

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

func (*CreateVMRequest) GetCipassword

func (o *CreateVMRequest) GetCipassword() string

GetCipassword returns the Cipassword field value if set, zero value otherwise.

func (*CreateVMRequest) GetCipasswordOk

func (o *CreateVMRequest) GetCipasswordOk() (*string, bool)

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

func (*CreateVMRequest) GetCitype

func (o *CreateVMRequest) GetCitype() string

GetCitype returns the Citype field value if set, zero value otherwise.

func (*CreateVMRequest) GetCitypeOk

func (o *CreateVMRequest) GetCitypeOk() (*string, bool)

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

func (*CreateVMRequest) GetCiupgrade

func (o *CreateVMRequest) GetCiupgrade() int32

GetCiupgrade returns the Ciupgrade field value if set, zero value otherwise.

func (*CreateVMRequest) GetCiupgradeOk

func (o *CreateVMRequest) GetCiupgradeOk() (*int32, bool)

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

func (*CreateVMRequest) GetCiuser

func (o *CreateVMRequest) GetCiuser() string

GetCiuser returns the Ciuser field value if set, zero value otherwise.

func (*CreateVMRequest) GetCiuserOk

func (o *CreateVMRequest) GetCiuserOk() (*string, bool)

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

func (*CreateVMRequest) GetCores

func (o *CreateVMRequest) GetCores() int64

GetCores returns the Cores field value if set, zero value otherwise.

func (*CreateVMRequest) GetCoresOk

func (o *CreateVMRequest) GetCoresOk() (*int64, bool)

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

func (*CreateVMRequest) GetCpu

func (o *CreateVMRequest) GetCpu() string

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*CreateVMRequest) GetCpuOk

func (o *CreateVMRequest) GetCpuOk() (*string, bool)

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

func (*CreateVMRequest) GetCpulimit

func (o *CreateVMRequest) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*CreateVMRequest) GetCpulimitOk

func (o *CreateVMRequest) GetCpulimitOk() (*float32, bool)

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

func (*CreateVMRequest) GetCpuunits

func (o *CreateVMRequest) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*CreateVMRequest) GetCpuunitsOk

func (o *CreateVMRequest) GetCpuunitsOk() (*int64, bool)

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

func (*CreateVMRequest) GetDescription

func (o *CreateVMRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateVMRequest) GetDescriptionOk

func (o *CreateVMRequest) GetDescriptionOk() (*string, bool)

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

func (*CreateVMRequest) GetEfidisk0

func (o *CreateVMRequest) GetEfidisk0() string

GetEfidisk0 returns the Efidisk0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetEfidisk0Ok

func (o *CreateVMRequest) GetEfidisk0Ok() (*string, bool)

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

func (*CreateVMRequest) GetForce

func (o *CreateVMRequest) GetForce() int32

GetForce returns the Force field value if set, zero value otherwise.

func (*CreateVMRequest) GetForceOk

func (o *CreateVMRequest) GetForceOk() (*int32, bool)

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

func (*CreateVMRequest) GetFreeze

func (o *CreateVMRequest) GetFreeze() int32

GetFreeze returns the Freeze field value if set, zero value otherwise.

func (*CreateVMRequest) GetFreezeOk

func (o *CreateVMRequest) GetFreezeOk() (*int32, bool)

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

func (*CreateVMRequest) GetHookscript

func (o *CreateVMRequest) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*CreateVMRequest) GetHookscriptOk

func (o *CreateVMRequest) GetHookscriptOk() (*string, bool)

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

func (*CreateVMRequest) GetHostpci0

func (o *CreateVMRequest) GetHostpci0() string

GetHostpci0 returns the Hostpci0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci0Ok

func (o *CreateVMRequest) GetHostpci0Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci1

func (o *CreateVMRequest) GetHostpci1() string

GetHostpci1 returns the Hostpci1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci10

func (o *CreateVMRequest) GetHostpci10() string

GetHostpci10 returns the Hostpci10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci10Ok

func (o *CreateVMRequest) GetHostpci10Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci11

func (o *CreateVMRequest) GetHostpci11() string

GetHostpci11 returns the Hostpci11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci11Ok

func (o *CreateVMRequest) GetHostpci11Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci12

func (o *CreateVMRequest) GetHostpci12() string

GetHostpci12 returns the Hostpci12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci12Ok

func (o *CreateVMRequest) GetHostpci12Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci13

func (o *CreateVMRequest) GetHostpci13() string

GetHostpci13 returns the Hostpci13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci13Ok

func (o *CreateVMRequest) GetHostpci13Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci14

func (o *CreateVMRequest) GetHostpci14() string

GetHostpci14 returns the Hostpci14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci14Ok

func (o *CreateVMRequest) GetHostpci14Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci15

func (o *CreateVMRequest) GetHostpci15() string

GetHostpci15 returns the Hostpci15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci15Ok

func (o *CreateVMRequest) GetHostpci15Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci16

func (o *CreateVMRequest) GetHostpci16() string

GetHostpci16 returns the Hostpci16 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci16Ok

func (o *CreateVMRequest) GetHostpci16Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci17

func (o *CreateVMRequest) GetHostpci17() string

GetHostpci17 returns the Hostpci17 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci17Ok

func (o *CreateVMRequest) GetHostpci17Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci18

func (o *CreateVMRequest) GetHostpci18() string

GetHostpci18 returns the Hostpci18 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci18Ok

func (o *CreateVMRequest) GetHostpci18Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci19

func (o *CreateVMRequest) GetHostpci19() string

GetHostpci19 returns the Hostpci19 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci19Ok

func (o *CreateVMRequest) GetHostpci19Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci1Ok

func (o *CreateVMRequest) GetHostpci1Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci2

func (o *CreateVMRequest) GetHostpci2() string

GetHostpci2 returns the Hostpci2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci20

func (o *CreateVMRequest) GetHostpci20() string

GetHostpci20 returns the Hostpci20 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci20Ok

func (o *CreateVMRequest) GetHostpci20Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci21

func (o *CreateVMRequest) GetHostpci21() string

GetHostpci21 returns the Hostpci21 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci21Ok

func (o *CreateVMRequest) GetHostpci21Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci22

func (o *CreateVMRequest) GetHostpci22() string

GetHostpci22 returns the Hostpci22 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci22Ok

func (o *CreateVMRequest) GetHostpci22Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci23

func (o *CreateVMRequest) GetHostpci23() string

GetHostpci23 returns the Hostpci23 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci23Ok

func (o *CreateVMRequest) GetHostpci23Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci24

func (o *CreateVMRequest) GetHostpci24() string

GetHostpci24 returns the Hostpci24 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci24Ok

func (o *CreateVMRequest) GetHostpci24Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci25

func (o *CreateVMRequest) GetHostpci25() string

GetHostpci25 returns the Hostpci25 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci25Ok

func (o *CreateVMRequest) GetHostpci25Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci26

func (o *CreateVMRequest) GetHostpci26() string

GetHostpci26 returns the Hostpci26 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci26Ok

func (o *CreateVMRequest) GetHostpci26Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci27

func (o *CreateVMRequest) GetHostpci27() string

GetHostpci27 returns the Hostpci27 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci27Ok

func (o *CreateVMRequest) GetHostpci27Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci28

func (o *CreateVMRequest) GetHostpci28() string

GetHostpci28 returns the Hostpci28 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci28Ok

func (o *CreateVMRequest) GetHostpci28Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci29

func (o *CreateVMRequest) GetHostpci29() string

GetHostpci29 returns the Hostpci29 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci29Ok

func (o *CreateVMRequest) GetHostpci29Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci2Ok

func (o *CreateVMRequest) GetHostpci2Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci3

func (o *CreateVMRequest) GetHostpci3() string

GetHostpci3 returns the Hostpci3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci3Ok

func (o *CreateVMRequest) GetHostpci3Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci4

func (o *CreateVMRequest) GetHostpci4() string

GetHostpci4 returns the Hostpci4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci4Ok

func (o *CreateVMRequest) GetHostpci4Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci5

func (o *CreateVMRequest) GetHostpci5() string

GetHostpci5 returns the Hostpci5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci5Ok

func (o *CreateVMRequest) GetHostpci5Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci6

func (o *CreateVMRequest) GetHostpci6() string

GetHostpci6 returns the Hostpci6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci6Ok

func (o *CreateVMRequest) GetHostpci6Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci7

func (o *CreateVMRequest) GetHostpci7() string

GetHostpci7 returns the Hostpci7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci7Ok

func (o *CreateVMRequest) GetHostpci7Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci8

func (o *CreateVMRequest) GetHostpci8() string

GetHostpci8 returns the Hostpci8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci8Ok

func (o *CreateVMRequest) GetHostpci8Ok() (*string, bool)

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

func (*CreateVMRequest) GetHostpci9

func (o *CreateVMRequest) GetHostpci9() string

GetHostpci9 returns the Hostpci9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetHostpci9Ok

func (o *CreateVMRequest) GetHostpci9Ok() (*string, bool)

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

func (*CreateVMRequest) GetHotplug

func (o *CreateVMRequest) GetHotplug() string

GetHotplug returns the Hotplug field value if set, zero value otherwise.

func (*CreateVMRequest) GetHotplugOk

func (o *CreateVMRequest) GetHotplugOk() (*string, bool)

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

func (*CreateVMRequest) GetHugepages

func (o *CreateVMRequest) GetHugepages() string

GetHugepages returns the Hugepages field value if set, zero value otherwise.

func (*CreateVMRequest) GetHugepagesOk

func (o *CreateVMRequest) GetHugepagesOk() (*string, bool)

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

func (*CreateVMRequest) GetIde0

func (o *CreateVMRequest) GetIde0() string

GetIde0 returns the Ide0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIde0Ok

func (o *CreateVMRequest) GetIde0Ok() (*string, bool)

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

func (*CreateVMRequest) GetIde1

func (o *CreateVMRequest) GetIde1() string

GetIde1 returns the Ide1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIde1Ok

func (o *CreateVMRequest) GetIde1Ok() (*string, bool)

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

func (*CreateVMRequest) GetIde2

func (o *CreateVMRequest) GetIde2() string

GetIde2 returns the Ide2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIde2Ok

func (o *CreateVMRequest) GetIde2Ok() (*string, bool)

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

func (*CreateVMRequest) GetIde3

func (o *CreateVMRequest) GetIde3() string

GetIde3 returns the Ide3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIde3Ok

func (o *CreateVMRequest) GetIde3Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig0

func (o *CreateVMRequest) GetIpconfig0() string

GetIpconfig0 returns the Ipconfig0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig0Ok

func (o *CreateVMRequest) GetIpconfig0Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig1

func (o *CreateVMRequest) GetIpconfig1() string

GetIpconfig1 returns the Ipconfig1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig10

func (o *CreateVMRequest) GetIpconfig10() string

GetIpconfig10 returns the Ipconfig10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig10Ok

func (o *CreateVMRequest) GetIpconfig10Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig11

func (o *CreateVMRequest) GetIpconfig11() string

GetIpconfig11 returns the Ipconfig11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig11Ok

func (o *CreateVMRequest) GetIpconfig11Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig12

func (o *CreateVMRequest) GetIpconfig12() string

GetIpconfig12 returns the Ipconfig12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig12Ok

func (o *CreateVMRequest) GetIpconfig12Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig13

func (o *CreateVMRequest) GetIpconfig13() string

GetIpconfig13 returns the Ipconfig13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig13Ok

func (o *CreateVMRequest) GetIpconfig13Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig14

func (o *CreateVMRequest) GetIpconfig14() string

GetIpconfig14 returns the Ipconfig14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig14Ok

func (o *CreateVMRequest) GetIpconfig14Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig15

func (o *CreateVMRequest) GetIpconfig15() string

GetIpconfig15 returns the Ipconfig15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig15Ok

func (o *CreateVMRequest) GetIpconfig15Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig16

func (o *CreateVMRequest) GetIpconfig16() string

GetIpconfig16 returns the Ipconfig16 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig16Ok

func (o *CreateVMRequest) GetIpconfig16Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig17

func (o *CreateVMRequest) GetIpconfig17() string

GetIpconfig17 returns the Ipconfig17 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig17Ok

func (o *CreateVMRequest) GetIpconfig17Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig18

func (o *CreateVMRequest) GetIpconfig18() string

GetIpconfig18 returns the Ipconfig18 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig18Ok

func (o *CreateVMRequest) GetIpconfig18Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig19

func (o *CreateVMRequest) GetIpconfig19() string

GetIpconfig19 returns the Ipconfig19 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig19Ok

func (o *CreateVMRequest) GetIpconfig19Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig1Ok

func (o *CreateVMRequest) GetIpconfig1Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig2

func (o *CreateVMRequest) GetIpconfig2() string

GetIpconfig2 returns the Ipconfig2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig20

func (o *CreateVMRequest) GetIpconfig20() string

GetIpconfig20 returns the Ipconfig20 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig20Ok

func (o *CreateVMRequest) GetIpconfig20Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig21

func (o *CreateVMRequest) GetIpconfig21() string

GetIpconfig21 returns the Ipconfig21 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig21Ok

func (o *CreateVMRequest) GetIpconfig21Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig22

func (o *CreateVMRequest) GetIpconfig22() string

GetIpconfig22 returns the Ipconfig22 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig22Ok

func (o *CreateVMRequest) GetIpconfig22Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig23

func (o *CreateVMRequest) GetIpconfig23() string

GetIpconfig23 returns the Ipconfig23 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig23Ok

func (o *CreateVMRequest) GetIpconfig23Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig24

func (o *CreateVMRequest) GetIpconfig24() string

GetIpconfig24 returns the Ipconfig24 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig24Ok

func (o *CreateVMRequest) GetIpconfig24Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig25

func (o *CreateVMRequest) GetIpconfig25() string

GetIpconfig25 returns the Ipconfig25 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig25Ok

func (o *CreateVMRequest) GetIpconfig25Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig26

func (o *CreateVMRequest) GetIpconfig26() string

GetIpconfig26 returns the Ipconfig26 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig26Ok

func (o *CreateVMRequest) GetIpconfig26Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig27

func (o *CreateVMRequest) GetIpconfig27() string

GetIpconfig27 returns the Ipconfig27 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig27Ok

func (o *CreateVMRequest) GetIpconfig27Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig28

func (o *CreateVMRequest) GetIpconfig28() string

GetIpconfig28 returns the Ipconfig28 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig28Ok

func (o *CreateVMRequest) GetIpconfig28Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig29

func (o *CreateVMRequest) GetIpconfig29() string

GetIpconfig29 returns the Ipconfig29 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig29Ok

func (o *CreateVMRequest) GetIpconfig29Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig2Ok

func (o *CreateVMRequest) GetIpconfig2Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig3

func (o *CreateVMRequest) GetIpconfig3() string

GetIpconfig3 returns the Ipconfig3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig3Ok

func (o *CreateVMRequest) GetIpconfig3Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig4

func (o *CreateVMRequest) GetIpconfig4() string

GetIpconfig4 returns the Ipconfig4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig4Ok

func (o *CreateVMRequest) GetIpconfig4Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig5

func (o *CreateVMRequest) GetIpconfig5() string

GetIpconfig5 returns the Ipconfig5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig5Ok

func (o *CreateVMRequest) GetIpconfig5Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig6

func (o *CreateVMRequest) GetIpconfig6() string

GetIpconfig6 returns the Ipconfig6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig6Ok

func (o *CreateVMRequest) GetIpconfig6Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig7

func (o *CreateVMRequest) GetIpconfig7() string

GetIpconfig7 returns the Ipconfig7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig7Ok

func (o *CreateVMRequest) GetIpconfig7Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig8

func (o *CreateVMRequest) GetIpconfig8() string

GetIpconfig8 returns the Ipconfig8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig8Ok

func (o *CreateVMRequest) GetIpconfig8Ok() (*string, bool)

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

func (*CreateVMRequest) GetIpconfig9

func (o *CreateVMRequest) GetIpconfig9() string

GetIpconfig9 returns the Ipconfig9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetIpconfig9Ok

func (o *CreateVMRequest) GetIpconfig9Ok() (*string, bool)

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

func (*CreateVMRequest) GetIvshmem

func (o *CreateVMRequest) GetIvshmem() string

GetIvshmem returns the Ivshmem field value if set, zero value otherwise.

func (*CreateVMRequest) GetIvshmemOk

func (o *CreateVMRequest) GetIvshmemOk() (*string, bool)

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

func (*CreateVMRequest) GetKeephugepages

func (o *CreateVMRequest) GetKeephugepages() int32

GetKeephugepages returns the Keephugepages field value if set, zero value otherwise.

func (*CreateVMRequest) GetKeephugepagesOk

func (o *CreateVMRequest) GetKeephugepagesOk() (*int32, bool)

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

func (*CreateVMRequest) GetKeyboard

func (o *CreateVMRequest) GetKeyboard() string

GetKeyboard returns the Keyboard field value if set, zero value otherwise.

func (*CreateVMRequest) GetKeyboardOk

func (o *CreateVMRequest) GetKeyboardOk() (*string, bool)

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

func (*CreateVMRequest) GetKvm

func (o *CreateVMRequest) GetKvm() int32

GetKvm returns the Kvm field value if set, zero value otherwise.

func (*CreateVMRequest) GetKvmOk

func (o *CreateVMRequest) GetKvmOk() (*int32, bool)

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

func (*CreateVMRequest) GetLiveRestore

func (o *CreateVMRequest) GetLiveRestore() int32

GetLiveRestore returns the LiveRestore field value if set, zero value otherwise.

func (*CreateVMRequest) GetLiveRestoreOk

func (o *CreateVMRequest) GetLiveRestoreOk() (*int32, bool)

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

func (*CreateVMRequest) GetLocaltime

func (o *CreateVMRequest) GetLocaltime() int32

GetLocaltime returns the Localtime field value if set, zero value otherwise.

func (*CreateVMRequest) GetLocaltimeOk

func (o *CreateVMRequest) GetLocaltimeOk() (*int32, bool)

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

func (*CreateVMRequest) GetLock

func (o *CreateVMRequest) GetLock() string

GetLock returns the Lock field value if set, zero value otherwise.

func (*CreateVMRequest) GetLockOk

func (o *CreateVMRequest) GetLockOk() (*string, bool)

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

func (*CreateVMRequest) GetMachine

func (o *CreateVMRequest) GetMachine() string

GetMachine returns the Machine field value if set, zero value otherwise.

func (*CreateVMRequest) GetMachineOk

func (o *CreateVMRequest) GetMachineOk() (*string, bool)

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

func (*CreateVMRequest) GetMemory

func (o *CreateVMRequest) GetMemory() int64

GetMemory returns the Memory field value if set, zero value otherwise.

func (*CreateVMRequest) GetMemoryOk

func (o *CreateVMRequest) GetMemoryOk() (*int64, bool)

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

func (*CreateVMRequest) GetMigrateDowntime

func (o *CreateVMRequest) GetMigrateDowntime() float32

GetMigrateDowntime returns the MigrateDowntime field value if set, zero value otherwise.

func (*CreateVMRequest) GetMigrateDowntimeOk

func (o *CreateVMRequest) GetMigrateDowntimeOk() (*float32, bool)

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

func (*CreateVMRequest) GetMigrateSpeed

func (o *CreateVMRequest) GetMigrateSpeed() int64

GetMigrateSpeed returns the MigrateSpeed field value if set, zero value otherwise.

func (*CreateVMRequest) GetMigrateSpeedOk

func (o *CreateVMRequest) GetMigrateSpeedOk() (*int64, bool)

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

func (*CreateVMRequest) GetName

func (o *CreateVMRequest) GetName() string

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

func (*CreateVMRequest) GetNameOk

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

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

func (*CreateVMRequest) GetNameserver

func (o *CreateVMRequest) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*CreateVMRequest) GetNameserverOk

func (o *CreateVMRequest) GetNameserverOk() (*string, bool)

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

func (*CreateVMRequest) GetNet0

func (o *CreateVMRequest) GetNet0() string

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet0Ok

func (o *CreateVMRequest) GetNet0Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet1

func (o *CreateVMRequest) GetNet1() string

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet10

func (o *CreateVMRequest) GetNet10() string

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet10Ok

func (o *CreateVMRequest) GetNet10Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet11

func (o *CreateVMRequest) GetNet11() string

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet11Ok

func (o *CreateVMRequest) GetNet11Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet12

func (o *CreateVMRequest) GetNet12() string

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet12Ok

func (o *CreateVMRequest) GetNet12Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet13

func (o *CreateVMRequest) GetNet13() string

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet13Ok

func (o *CreateVMRequest) GetNet13Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet14

func (o *CreateVMRequest) GetNet14() string

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet14Ok

func (o *CreateVMRequest) GetNet14Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet15

func (o *CreateVMRequest) GetNet15() string

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet15Ok

func (o *CreateVMRequest) GetNet15Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet16

func (o *CreateVMRequest) GetNet16() string

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet16Ok

func (o *CreateVMRequest) GetNet16Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet17

func (o *CreateVMRequest) GetNet17() string

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet17Ok

func (o *CreateVMRequest) GetNet17Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet18

func (o *CreateVMRequest) GetNet18() string

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet18Ok

func (o *CreateVMRequest) GetNet18Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet19

func (o *CreateVMRequest) GetNet19() string

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet19Ok

func (o *CreateVMRequest) GetNet19Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet1Ok

func (o *CreateVMRequest) GetNet1Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet2

func (o *CreateVMRequest) GetNet2() string

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet20

func (o *CreateVMRequest) GetNet20() string

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet20Ok

func (o *CreateVMRequest) GetNet20Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet21

func (o *CreateVMRequest) GetNet21() string

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet21Ok

func (o *CreateVMRequest) GetNet21Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet22

func (o *CreateVMRequest) GetNet22() string

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet22Ok

func (o *CreateVMRequest) GetNet22Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet23

func (o *CreateVMRequest) GetNet23() string

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet23Ok

func (o *CreateVMRequest) GetNet23Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet24

func (o *CreateVMRequest) GetNet24() string

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet24Ok

func (o *CreateVMRequest) GetNet24Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet25

func (o *CreateVMRequest) GetNet25() string

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet25Ok

func (o *CreateVMRequest) GetNet25Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet26

func (o *CreateVMRequest) GetNet26() string

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet26Ok

func (o *CreateVMRequest) GetNet26Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet27

func (o *CreateVMRequest) GetNet27() string

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet27Ok

func (o *CreateVMRequest) GetNet27Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet28

func (o *CreateVMRequest) GetNet28() string

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet28Ok

func (o *CreateVMRequest) GetNet28Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet29

func (o *CreateVMRequest) GetNet29() string

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet29Ok

func (o *CreateVMRequest) GetNet29Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet2Ok

func (o *CreateVMRequest) GetNet2Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet3

func (o *CreateVMRequest) GetNet3() string

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet30

func (o *CreateVMRequest) GetNet30() string

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet30Ok

func (o *CreateVMRequest) GetNet30Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet31

func (o *CreateVMRequest) GetNet31() string

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet31Ok

func (o *CreateVMRequest) GetNet31Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet3Ok

func (o *CreateVMRequest) GetNet3Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet4

func (o *CreateVMRequest) GetNet4() string

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet4Ok

func (o *CreateVMRequest) GetNet4Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet5

func (o *CreateVMRequest) GetNet5() string

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet5Ok

func (o *CreateVMRequest) GetNet5Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet6

func (o *CreateVMRequest) GetNet6() string

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet6Ok

func (o *CreateVMRequest) GetNet6Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet7

func (o *CreateVMRequest) GetNet7() string

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet7Ok

func (o *CreateVMRequest) GetNet7Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet8

func (o *CreateVMRequest) GetNet8() string

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet8Ok

func (o *CreateVMRequest) GetNet8Ok() (*string, bool)

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

func (*CreateVMRequest) GetNet9

func (o *CreateVMRequest) GetNet9() string

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNet9Ok

func (o *CreateVMRequest) GetNet9Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma

func (o *CreateVMRequest) GetNuma() int32

GetNuma returns the Numa field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma0

func (o *CreateVMRequest) GetNuma0() string

GetNuma0 returns the Numa0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma0Ok

func (o *CreateVMRequest) GetNuma0Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma1

func (o *CreateVMRequest) GetNuma1() string

GetNuma1 returns the Numa1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma10

func (o *CreateVMRequest) GetNuma10() string

GetNuma10 returns the Numa10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma10Ok

func (o *CreateVMRequest) GetNuma10Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma11

func (o *CreateVMRequest) GetNuma11() string

GetNuma11 returns the Numa11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma11Ok

func (o *CreateVMRequest) GetNuma11Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma12

func (o *CreateVMRequest) GetNuma12() string

GetNuma12 returns the Numa12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma12Ok

func (o *CreateVMRequest) GetNuma12Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma13

func (o *CreateVMRequest) GetNuma13() string

GetNuma13 returns the Numa13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma13Ok

func (o *CreateVMRequest) GetNuma13Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma14

func (o *CreateVMRequest) GetNuma14() string

GetNuma14 returns the Numa14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma14Ok

func (o *CreateVMRequest) GetNuma14Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma15

func (o *CreateVMRequest) GetNuma15() string

GetNuma15 returns the Numa15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma15Ok

func (o *CreateVMRequest) GetNuma15Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma16

func (o *CreateVMRequest) GetNuma16() string

GetNuma16 returns the Numa16 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma16Ok

func (o *CreateVMRequest) GetNuma16Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma17

func (o *CreateVMRequest) GetNuma17() string

GetNuma17 returns the Numa17 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma17Ok

func (o *CreateVMRequest) GetNuma17Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma18

func (o *CreateVMRequest) GetNuma18() string

GetNuma18 returns the Numa18 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma18Ok

func (o *CreateVMRequest) GetNuma18Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma19

func (o *CreateVMRequest) GetNuma19() string

GetNuma19 returns the Numa19 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma19Ok

func (o *CreateVMRequest) GetNuma19Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma1Ok

func (o *CreateVMRequest) GetNuma1Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma2

func (o *CreateVMRequest) GetNuma2() string

GetNuma2 returns the Numa2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma20

func (o *CreateVMRequest) GetNuma20() string

GetNuma20 returns the Numa20 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma20Ok

func (o *CreateVMRequest) GetNuma20Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma21

func (o *CreateVMRequest) GetNuma21() string

GetNuma21 returns the Numa21 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma21Ok

func (o *CreateVMRequest) GetNuma21Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma22

func (o *CreateVMRequest) GetNuma22() string

GetNuma22 returns the Numa22 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma22Ok

func (o *CreateVMRequest) GetNuma22Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma23

func (o *CreateVMRequest) GetNuma23() string

GetNuma23 returns the Numa23 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma23Ok

func (o *CreateVMRequest) GetNuma23Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma24

func (o *CreateVMRequest) GetNuma24() string

GetNuma24 returns the Numa24 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma24Ok

func (o *CreateVMRequest) GetNuma24Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma25

func (o *CreateVMRequest) GetNuma25() string

GetNuma25 returns the Numa25 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma25Ok

func (o *CreateVMRequest) GetNuma25Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma26

func (o *CreateVMRequest) GetNuma26() string

GetNuma26 returns the Numa26 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma26Ok

func (o *CreateVMRequest) GetNuma26Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma27

func (o *CreateVMRequest) GetNuma27() string

GetNuma27 returns the Numa27 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma27Ok

func (o *CreateVMRequest) GetNuma27Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma28

func (o *CreateVMRequest) GetNuma28() string

GetNuma28 returns the Numa28 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma28Ok

func (o *CreateVMRequest) GetNuma28Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma29

func (o *CreateVMRequest) GetNuma29() string

GetNuma29 returns the Numa29 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma29Ok

func (o *CreateVMRequest) GetNuma29Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma2Ok

func (o *CreateVMRequest) GetNuma2Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma3

func (o *CreateVMRequest) GetNuma3() string

GetNuma3 returns the Numa3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma3Ok

func (o *CreateVMRequest) GetNuma3Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma4

func (o *CreateVMRequest) GetNuma4() string

GetNuma4 returns the Numa4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma4Ok

func (o *CreateVMRequest) GetNuma4Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma5

func (o *CreateVMRequest) GetNuma5() string

GetNuma5 returns the Numa5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma5Ok

func (o *CreateVMRequest) GetNuma5Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma6

func (o *CreateVMRequest) GetNuma6() string

GetNuma6 returns the Numa6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma6Ok

func (o *CreateVMRequest) GetNuma6Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma7

func (o *CreateVMRequest) GetNuma7() string

GetNuma7 returns the Numa7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma7Ok

func (o *CreateVMRequest) GetNuma7Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma8

func (o *CreateVMRequest) GetNuma8() string

GetNuma8 returns the Numa8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma8Ok

func (o *CreateVMRequest) GetNuma8Ok() (*string, bool)

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

func (*CreateVMRequest) GetNuma9

func (o *CreateVMRequest) GetNuma9() string

GetNuma9 returns the Numa9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetNuma9Ok

func (o *CreateVMRequest) GetNuma9Ok() (*string, bool)

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

func (*CreateVMRequest) GetNumaOk

func (o *CreateVMRequest) GetNumaOk() (*int32, bool)

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

func (*CreateVMRequest) GetOnboot

func (o *CreateVMRequest) GetOnboot() int32

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*CreateVMRequest) GetOnbootOk

func (o *CreateVMRequest) GetOnbootOk() (*int32, bool)

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

func (*CreateVMRequest) GetOstype

func (o *CreateVMRequest) GetOstype() string

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*CreateVMRequest) GetOstypeOk

func (o *CreateVMRequest) GetOstypeOk() (*string, bool)

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

func (*CreateVMRequest) GetParallel0

func (o *CreateVMRequest) GetParallel0() string

GetParallel0 returns the Parallel0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetParallel0Ok

func (o *CreateVMRequest) GetParallel0Ok() (*string, bool)

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

func (*CreateVMRequest) GetParallel1

func (o *CreateVMRequest) GetParallel1() string

GetParallel1 returns the Parallel1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetParallel1Ok

func (o *CreateVMRequest) GetParallel1Ok() (*string, bool)

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

func (*CreateVMRequest) GetParallel2

func (o *CreateVMRequest) GetParallel2() string

GetParallel2 returns the Parallel2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetParallel2Ok

func (o *CreateVMRequest) GetParallel2Ok() (*string, bool)

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

func (*CreateVMRequest) GetParallel3

func (o *CreateVMRequest) GetParallel3() string

GetParallel3 returns the Parallel3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetParallel3Ok

func (o *CreateVMRequest) GetParallel3Ok() (*string, bool)

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

func (*CreateVMRequest) GetPool

func (o *CreateVMRequest) GetPool() string

GetPool returns the Pool field value if set, zero value otherwise.

func (*CreateVMRequest) GetPoolOk

func (o *CreateVMRequest) GetPoolOk() (*string, bool)

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

func (*CreateVMRequest) GetProtection

func (o *CreateVMRequest) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*CreateVMRequest) GetProtectionOk

func (o *CreateVMRequest) GetProtectionOk() (*int32, bool)

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

func (*CreateVMRequest) GetReboot

func (o *CreateVMRequest) GetReboot() int32

GetReboot returns the Reboot field value if set, zero value otherwise.

func (*CreateVMRequest) GetRebootOk

func (o *CreateVMRequest) GetRebootOk() (*int32, bool)

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

func (*CreateVMRequest) GetRng0

func (o *CreateVMRequest) GetRng0() string

GetRng0 returns the Rng0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetRng0Ok

func (o *CreateVMRequest) GetRng0Ok() (*string, bool)

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

func (*CreateVMRequest) GetSata0

func (o *CreateVMRequest) GetSata0() string

GetSata0 returns the Sata0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSata0Ok

func (o *CreateVMRequest) GetSata0Ok() (*string, bool)

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

func (*CreateVMRequest) GetSata1

func (o *CreateVMRequest) GetSata1() string

GetSata1 returns the Sata1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSata1Ok

func (o *CreateVMRequest) GetSata1Ok() (*string, bool)

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

func (*CreateVMRequest) GetSata2

func (o *CreateVMRequest) GetSata2() string

GetSata2 returns the Sata2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSata2Ok

func (o *CreateVMRequest) GetSata2Ok() (*string, bool)

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

func (*CreateVMRequest) GetSata3

func (o *CreateVMRequest) GetSata3() string

GetSata3 returns the Sata3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSata3Ok

func (o *CreateVMRequest) GetSata3Ok() (*string, bool)

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

func (*CreateVMRequest) GetSata4

func (o *CreateVMRequest) GetSata4() string

GetSata4 returns the Sata4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSata4Ok

func (o *CreateVMRequest) GetSata4Ok() (*string, bool)

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

func (*CreateVMRequest) GetSata5

func (o *CreateVMRequest) GetSata5() string

GetSata5 returns the Sata5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSata5Ok

func (o *CreateVMRequest) GetSata5Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi0

func (o *CreateVMRequest) GetScsi0() string

GetScsi0 returns the Scsi0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi0Ok

func (o *CreateVMRequest) GetScsi0Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi1

func (o *CreateVMRequest) GetScsi1() string

GetScsi1 returns the Scsi1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi10

func (o *CreateVMRequest) GetScsi10() string

GetScsi10 returns the Scsi10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi10Ok

func (o *CreateVMRequest) GetScsi10Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi11

func (o *CreateVMRequest) GetScsi11() string

GetScsi11 returns the Scsi11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi11Ok

func (o *CreateVMRequest) GetScsi11Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi12

func (o *CreateVMRequest) GetScsi12() string

GetScsi12 returns the Scsi12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi12Ok

func (o *CreateVMRequest) GetScsi12Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi13

func (o *CreateVMRequest) GetScsi13() string

GetScsi13 returns the Scsi13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi13Ok

func (o *CreateVMRequest) GetScsi13Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi14

func (o *CreateVMRequest) GetScsi14() string

GetScsi14 returns the Scsi14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi14Ok

func (o *CreateVMRequest) GetScsi14Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi15

func (o *CreateVMRequest) GetScsi15() string

GetScsi15 returns the Scsi15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi15Ok

func (o *CreateVMRequest) GetScsi15Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi16

func (o *CreateVMRequest) GetScsi16() string

GetScsi16 returns the Scsi16 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi16Ok

func (o *CreateVMRequest) GetScsi16Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi17

func (o *CreateVMRequest) GetScsi17() string

GetScsi17 returns the Scsi17 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi17Ok

func (o *CreateVMRequest) GetScsi17Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi18

func (o *CreateVMRequest) GetScsi18() string

GetScsi18 returns the Scsi18 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi18Ok

func (o *CreateVMRequest) GetScsi18Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi19

func (o *CreateVMRequest) GetScsi19() string

GetScsi19 returns the Scsi19 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi19Ok

func (o *CreateVMRequest) GetScsi19Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi1Ok

func (o *CreateVMRequest) GetScsi1Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi2

func (o *CreateVMRequest) GetScsi2() string

GetScsi2 returns the Scsi2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi20

func (o *CreateVMRequest) GetScsi20() string

GetScsi20 returns the Scsi20 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi20Ok

func (o *CreateVMRequest) GetScsi20Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi21

func (o *CreateVMRequest) GetScsi21() string

GetScsi21 returns the Scsi21 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi21Ok

func (o *CreateVMRequest) GetScsi21Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi22

func (o *CreateVMRequest) GetScsi22() string

GetScsi22 returns the Scsi22 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi22Ok

func (o *CreateVMRequest) GetScsi22Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi23

func (o *CreateVMRequest) GetScsi23() string

GetScsi23 returns the Scsi23 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi23Ok

func (o *CreateVMRequest) GetScsi23Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi24

func (o *CreateVMRequest) GetScsi24() string

GetScsi24 returns the Scsi24 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi24Ok

func (o *CreateVMRequest) GetScsi24Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi25

func (o *CreateVMRequest) GetScsi25() string

GetScsi25 returns the Scsi25 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi25Ok

func (o *CreateVMRequest) GetScsi25Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi26

func (o *CreateVMRequest) GetScsi26() string

GetScsi26 returns the Scsi26 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi26Ok

func (o *CreateVMRequest) GetScsi26Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi27

func (o *CreateVMRequest) GetScsi27() string

GetScsi27 returns the Scsi27 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi27Ok

func (o *CreateVMRequest) GetScsi27Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi28

func (o *CreateVMRequest) GetScsi28() string

GetScsi28 returns the Scsi28 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi28Ok

func (o *CreateVMRequest) GetScsi28Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi29

func (o *CreateVMRequest) GetScsi29() string

GetScsi29 returns the Scsi29 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi29Ok

func (o *CreateVMRequest) GetScsi29Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi2Ok

func (o *CreateVMRequest) GetScsi2Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi3

func (o *CreateVMRequest) GetScsi3() string

GetScsi3 returns the Scsi3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi3Ok

func (o *CreateVMRequest) GetScsi3Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi4

func (o *CreateVMRequest) GetScsi4() string

GetScsi4 returns the Scsi4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi4Ok

func (o *CreateVMRequest) GetScsi4Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi5

func (o *CreateVMRequest) GetScsi5() string

GetScsi5 returns the Scsi5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi5Ok

func (o *CreateVMRequest) GetScsi5Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi6

func (o *CreateVMRequest) GetScsi6() string

GetScsi6 returns the Scsi6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi6Ok

func (o *CreateVMRequest) GetScsi6Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi7

func (o *CreateVMRequest) GetScsi7() string

GetScsi7 returns the Scsi7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi7Ok

func (o *CreateVMRequest) GetScsi7Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi8

func (o *CreateVMRequest) GetScsi8() string

GetScsi8 returns the Scsi8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi8Ok

func (o *CreateVMRequest) GetScsi8Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsi9

func (o *CreateVMRequest) GetScsi9() string

GetScsi9 returns the Scsi9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsi9Ok

func (o *CreateVMRequest) GetScsi9Ok() (*string, bool)

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

func (*CreateVMRequest) GetScsihw

func (o *CreateVMRequest) GetScsihw() string

GetScsihw returns the Scsihw field value if set, zero value otherwise.

func (*CreateVMRequest) GetScsihwOk

func (o *CreateVMRequest) GetScsihwOk() (*string, bool)

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

func (*CreateVMRequest) GetSearchdomain

func (o *CreateVMRequest) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*CreateVMRequest) GetSearchdomainOk

func (o *CreateVMRequest) GetSearchdomainOk() (*string, bool)

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

func (*CreateVMRequest) GetSerial0

func (o *CreateVMRequest) GetSerial0() string

GetSerial0 returns the Serial0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSerial0Ok

func (o *CreateVMRequest) GetSerial0Ok() (*string, bool)

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

func (*CreateVMRequest) GetSerial1

func (o *CreateVMRequest) GetSerial1() string

GetSerial1 returns the Serial1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSerial1Ok

func (o *CreateVMRequest) GetSerial1Ok() (*string, bool)

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

func (*CreateVMRequest) GetSerial2

func (o *CreateVMRequest) GetSerial2() string

GetSerial2 returns the Serial2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSerial2Ok

func (o *CreateVMRequest) GetSerial2Ok() (*string, bool)

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

func (*CreateVMRequest) GetSerial3

func (o *CreateVMRequest) GetSerial3() string

GetSerial3 returns the Serial3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSerial3Ok

func (o *CreateVMRequest) GetSerial3Ok() (*string, bool)

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

func (*CreateVMRequest) GetShares

func (o *CreateVMRequest) GetShares() int64

GetShares returns the Shares field value if set, zero value otherwise.

func (*CreateVMRequest) GetSharesOk

func (o *CreateVMRequest) GetSharesOk() (*int64, bool)

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

func (*CreateVMRequest) GetSmbios1

func (o *CreateVMRequest) GetSmbios1() string

GetSmbios1 returns the Smbios1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetSmbios1Ok

func (o *CreateVMRequest) GetSmbios1Ok() (*string, bool)

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

func (*CreateVMRequest) GetSmp

func (o *CreateVMRequest) GetSmp() int64

GetSmp returns the Smp field value if set, zero value otherwise.

func (*CreateVMRequest) GetSmpOk

func (o *CreateVMRequest) GetSmpOk() (*int64, bool)

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

func (*CreateVMRequest) GetSockets

func (o *CreateVMRequest) GetSockets() int64

GetSockets returns the Sockets field value if set, zero value otherwise.

func (*CreateVMRequest) GetSocketsOk

func (o *CreateVMRequest) GetSocketsOk() (*int64, bool)

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

func (*CreateVMRequest) GetSpiceEnhancements

func (o *CreateVMRequest) GetSpiceEnhancements() string

GetSpiceEnhancements returns the SpiceEnhancements field value if set, zero value otherwise.

func (*CreateVMRequest) GetSpiceEnhancementsOk

func (o *CreateVMRequest) GetSpiceEnhancementsOk() (*string, bool)

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

func (*CreateVMRequest) GetSshkeys

func (o *CreateVMRequest) GetSshkeys() string

GetSshkeys returns the Sshkeys field value if set, zero value otherwise.

func (*CreateVMRequest) GetSshkeysOk

func (o *CreateVMRequest) GetSshkeysOk() (*string, bool)

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

func (*CreateVMRequest) GetStart

func (o *CreateVMRequest) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*CreateVMRequest) GetStartOk

func (o *CreateVMRequest) GetStartOk() (*int32, bool)

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

func (*CreateVMRequest) GetStartdate

func (o *CreateVMRequest) GetStartdate() string

GetStartdate returns the Startdate field value if set, zero value otherwise.

func (*CreateVMRequest) GetStartdateOk

func (o *CreateVMRequest) GetStartdateOk() (*string, bool)

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

func (*CreateVMRequest) GetStartup

func (o *CreateVMRequest) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*CreateVMRequest) GetStartupOk

func (o *CreateVMRequest) GetStartupOk() (*string, bool)

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

func (*CreateVMRequest) GetStorage

func (o *CreateVMRequest) GetStorage() string

GetStorage returns the Storage field value if set, zero value otherwise.

func (*CreateVMRequest) GetStorageOk

func (o *CreateVMRequest) GetStorageOk() (*string, bool)

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

func (*CreateVMRequest) GetTablet

func (o *CreateVMRequest) GetTablet() int32

GetTablet returns the Tablet field value if set, zero value otherwise.

func (*CreateVMRequest) GetTabletOk

func (o *CreateVMRequest) GetTabletOk() (*int32, bool)

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

func (*CreateVMRequest) GetTags

func (o *CreateVMRequest) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*CreateVMRequest) GetTagsOk

func (o *CreateVMRequest) GetTagsOk() (*string, bool)

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

func (*CreateVMRequest) GetTdf

func (o *CreateVMRequest) GetTdf() int32

GetTdf returns the Tdf field value if set, zero value otherwise.

func (*CreateVMRequest) GetTdfOk

func (o *CreateVMRequest) GetTdfOk() (*int32, bool)

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

func (*CreateVMRequest) GetTemplate

func (o *CreateVMRequest) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*CreateVMRequest) GetTemplateOk

func (o *CreateVMRequest) GetTemplateOk() (*int32, bool)

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

func (*CreateVMRequest) GetTpmstate0

func (o *CreateVMRequest) GetTpmstate0() string

GetTpmstate0 returns the Tpmstate0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetTpmstate0Ok

func (o *CreateVMRequest) GetTpmstate0Ok() (*string, bool)

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

func (*CreateVMRequest) GetUnique

func (o *CreateVMRequest) GetUnique() int32

GetUnique returns the Unique field value if set, zero value otherwise.

func (*CreateVMRequest) GetUniqueOk

func (o *CreateVMRequest) GetUniqueOk() (*int32, bool)

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

func (*CreateVMRequest) GetUnused0

func (o *CreateVMRequest) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused0Ok

func (o *CreateVMRequest) GetUnused0Ok() (*string, bool)

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

func (*CreateVMRequest) GetUnused1

func (o *CreateVMRequest) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused10

func (o *CreateVMRequest) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused10Ok

func (o *CreateVMRequest) GetUnused10Ok() (*string, bool)

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

func (*CreateVMRequest) GetUnused11

func (o *CreateVMRequest) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused11Ok

func (o *CreateVMRequest) GetUnused11Ok() (*string, bool)

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

func (*CreateVMRequest) GetUnused12

func (o *CreateVMRequest) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused12Ok

func (o *CreateVMRequest) GetUnused12Ok() (*string, bool)

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

func (*CreateVMRequest) GetUnused13

func (o *CreateVMRequest) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused13Ok

func (o *CreateVMRequest) GetUnused13Ok() (*string, bool)

GetUnused13Ok returns a tuple with the Unused13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused14

func (o *CreateVMRequest) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused14Ok

func (o *CreateVMRequest) GetUnused14Ok() (*string, bool)

GetUnused14Ok returns a tuple with the Unused14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused15

func (o *CreateVMRequest) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused15Ok

func (o *CreateVMRequest) GetUnused15Ok() (*string, bool)

GetUnused15Ok returns a tuple with the Unused15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused16

func (o *CreateVMRequest) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused16Ok

func (o *CreateVMRequest) GetUnused16Ok() (*string, bool)

GetUnused16Ok returns a tuple with the Unused16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused17

func (o *CreateVMRequest) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused17Ok

func (o *CreateVMRequest) GetUnused17Ok() (*string, bool)

GetUnused17Ok returns a tuple with the Unused17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused18

func (o *CreateVMRequest) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused18Ok

func (o *CreateVMRequest) GetUnused18Ok() (*string, bool)

GetUnused18Ok returns a tuple with the Unused18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused19

func (o *CreateVMRequest) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused19Ok

func (o *CreateVMRequest) GetUnused19Ok() (*string, bool)

GetUnused19Ok returns a tuple with the Unused19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused1Ok

func (o *CreateVMRequest) GetUnused1Ok() (*string, bool)

GetUnused1Ok returns a tuple with the Unused1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused2

func (o *CreateVMRequest) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused20

func (o *CreateVMRequest) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused20Ok

func (o *CreateVMRequest) GetUnused20Ok() (*string, bool)

GetUnused20Ok returns a tuple with the Unused20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused21

func (o *CreateVMRequest) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused21Ok

func (o *CreateVMRequest) GetUnused21Ok() (*string, bool)

GetUnused21Ok returns a tuple with the Unused21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused22

func (o *CreateVMRequest) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused22Ok

func (o *CreateVMRequest) GetUnused22Ok() (*string, bool)

GetUnused22Ok returns a tuple with the Unused22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused23

func (o *CreateVMRequest) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused23Ok

func (o *CreateVMRequest) GetUnused23Ok() (*string, bool)

GetUnused23Ok returns a tuple with the Unused23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused24

func (o *CreateVMRequest) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused24Ok

func (o *CreateVMRequest) GetUnused24Ok() (*string, bool)

GetUnused24Ok returns a tuple with the Unused24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused25

func (o *CreateVMRequest) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused25Ok

func (o *CreateVMRequest) GetUnused25Ok() (*string, bool)

GetUnused25Ok returns a tuple with the Unused25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused26

func (o *CreateVMRequest) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused26Ok

func (o *CreateVMRequest) GetUnused26Ok() (*string, bool)

GetUnused26Ok returns a tuple with the Unused26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused27

func (o *CreateVMRequest) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused27Ok

func (o *CreateVMRequest) GetUnused27Ok() (*string, bool)

GetUnused27Ok returns a tuple with the Unused27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused28

func (o *CreateVMRequest) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused28Ok

func (o *CreateVMRequest) GetUnused28Ok() (*string, bool)

GetUnused28Ok returns a tuple with the Unused28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused29

func (o *CreateVMRequest) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused29Ok

func (o *CreateVMRequest) GetUnused29Ok() (*string, bool)

GetUnused29Ok returns a tuple with the Unused29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused2Ok

func (o *CreateVMRequest) GetUnused2Ok() (*string, bool)

GetUnused2Ok returns a tuple with the Unused2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused3

func (o *CreateVMRequest) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused3Ok

func (o *CreateVMRequest) GetUnused3Ok() (*string, bool)

GetUnused3Ok returns a tuple with the Unused3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused4

func (o *CreateVMRequest) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused4Ok

func (o *CreateVMRequest) GetUnused4Ok() (*string, bool)

GetUnused4Ok returns a tuple with the Unused4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused5

func (o *CreateVMRequest) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused5Ok

func (o *CreateVMRequest) GetUnused5Ok() (*string, bool)

GetUnused5Ok returns a tuple with the Unused5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused6

func (o *CreateVMRequest) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused6Ok

func (o *CreateVMRequest) GetUnused6Ok() (*string, bool)

GetUnused6Ok returns a tuple with the Unused6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused7

func (o *CreateVMRequest) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused7Ok

func (o *CreateVMRequest) GetUnused7Ok() (*string, bool)

GetUnused7Ok returns a tuple with the Unused7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused8

func (o *CreateVMRequest) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused8Ok

func (o *CreateVMRequest) GetUnused8Ok() (*string, bool)

GetUnused8Ok returns a tuple with the Unused8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUnused9

func (o *CreateVMRequest) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUnused9Ok

func (o *CreateVMRequest) GetUnused9Ok() (*string, bool)

GetUnused9Ok returns a tuple with the Unused9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUsb0

func (o *CreateVMRequest) GetUsb0() string

GetUsb0 returns the Usb0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUsb0Ok

func (o *CreateVMRequest) GetUsb0Ok() (*string, bool)

GetUsb0Ok returns a tuple with the Usb0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUsb1

func (o *CreateVMRequest) GetUsb1() string

GetUsb1 returns the Usb1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUsb1Ok

func (o *CreateVMRequest) GetUsb1Ok() (*string, bool)

GetUsb1Ok returns a tuple with the Usb1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUsb2

func (o *CreateVMRequest) GetUsb2() string

GetUsb2 returns the Usb2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUsb2Ok

func (o *CreateVMRequest) GetUsb2Ok() (*string, bool)

GetUsb2Ok returns a tuple with the Usb2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetUsb3

func (o *CreateVMRequest) GetUsb3() string

GetUsb3 returns the Usb3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetUsb3Ok

func (o *CreateVMRequest) GetUsb3Ok() (*string, bool)

GetUsb3Ok returns a tuple with the Usb3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVcpus

func (o *CreateVMRequest) GetVcpus() int64

GetVcpus returns the Vcpus field value if set, zero value otherwise.

func (*CreateVMRequest) GetVcpusOk

func (o *CreateVMRequest) GetVcpusOk() (*int64, bool)

GetVcpusOk returns a tuple with the Vcpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVga

func (o *CreateVMRequest) GetVga() string

GetVga returns the Vga field value if set, zero value otherwise.

func (*CreateVMRequest) GetVgaOk

func (o *CreateVMRequest) GetVgaOk() (*string, bool)

GetVgaOk returns a tuple with the Vga field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio0

func (o *CreateVMRequest) GetVirtio0() string

GetVirtio0 returns the Virtio0 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio0Ok

func (o *CreateVMRequest) GetVirtio0Ok() (*string, bool)

GetVirtio0Ok returns a tuple with the Virtio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio1

func (o *CreateVMRequest) GetVirtio1() string

GetVirtio1 returns the Virtio1 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio10

func (o *CreateVMRequest) GetVirtio10() string

GetVirtio10 returns the Virtio10 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio10Ok

func (o *CreateVMRequest) GetVirtio10Ok() (*string, bool)

GetVirtio10Ok returns a tuple with the Virtio10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio11

func (o *CreateVMRequest) GetVirtio11() string

GetVirtio11 returns the Virtio11 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio11Ok

func (o *CreateVMRequest) GetVirtio11Ok() (*string, bool)

GetVirtio11Ok returns a tuple with the Virtio11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio12

func (o *CreateVMRequest) GetVirtio12() string

GetVirtio12 returns the Virtio12 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio12Ok

func (o *CreateVMRequest) GetVirtio12Ok() (*string, bool)

GetVirtio12Ok returns a tuple with the Virtio12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio13

func (o *CreateVMRequest) GetVirtio13() string

GetVirtio13 returns the Virtio13 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio13Ok

func (o *CreateVMRequest) GetVirtio13Ok() (*string, bool)

GetVirtio13Ok returns a tuple with the Virtio13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio14

func (o *CreateVMRequest) GetVirtio14() string

GetVirtio14 returns the Virtio14 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio14Ok

func (o *CreateVMRequest) GetVirtio14Ok() (*string, bool)

GetVirtio14Ok returns a tuple with the Virtio14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio15

func (o *CreateVMRequest) GetVirtio15() string

GetVirtio15 returns the Virtio15 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio15Ok

func (o *CreateVMRequest) GetVirtio15Ok() (*string, bool)

GetVirtio15Ok returns a tuple with the Virtio15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio1Ok

func (o *CreateVMRequest) GetVirtio1Ok() (*string, bool)

GetVirtio1Ok returns a tuple with the Virtio1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio2

func (o *CreateVMRequest) GetVirtio2() string

GetVirtio2 returns the Virtio2 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio2Ok

func (o *CreateVMRequest) GetVirtio2Ok() (*string, bool)

GetVirtio2Ok returns a tuple with the Virtio2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio3

func (o *CreateVMRequest) GetVirtio3() string

GetVirtio3 returns the Virtio3 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio3Ok

func (o *CreateVMRequest) GetVirtio3Ok() (*string, bool)

GetVirtio3Ok returns a tuple with the Virtio3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio4

func (o *CreateVMRequest) GetVirtio4() string

GetVirtio4 returns the Virtio4 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio4Ok

func (o *CreateVMRequest) GetVirtio4Ok() (*string, bool)

GetVirtio4Ok returns a tuple with the Virtio4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio5

func (o *CreateVMRequest) GetVirtio5() string

GetVirtio5 returns the Virtio5 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio5Ok

func (o *CreateVMRequest) GetVirtio5Ok() (*string, bool)

GetVirtio5Ok returns a tuple with the Virtio5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio6

func (o *CreateVMRequest) GetVirtio6() string

GetVirtio6 returns the Virtio6 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio6Ok

func (o *CreateVMRequest) GetVirtio6Ok() (*string, bool)

GetVirtio6Ok returns a tuple with the Virtio6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio7

func (o *CreateVMRequest) GetVirtio7() string

GetVirtio7 returns the Virtio7 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio7Ok

func (o *CreateVMRequest) GetVirtio7Ok() (*string, bool)

GetVirtio7Ok returns a tuple with the Virtio7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio8

func (o *CreateVMRequest) GetVirtio8() string

GetVirtio8 returns the Virtio8 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio8Ok

func (o *CreateVMRequest) GetVirtio8Ok() (*string, bool)

GetVirtio8Ok returns a tuple with the Virtio8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVirtio9

func (o *CreateVMRequest) GetVirtio9() string

GetVirtio9 returns the Virtio9 field value if set, zero value otherwise.

func (*CreateVMRequest) GetVirtio9Ok

func (o *CreateVMRequest) GetVirtio9Ok() (*string, bool)

GetVirtio9Ok returns a tuple with the Virtio9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVmgenid

func (o *CreateVMRequest) GetVmgenid() string

GetVmgenid returns the Vmgenid field value if set, zero value otherwise.

func (*CreateVMRequest) GetVmgenidOk

func (o *CreateVMRequest) GetVmgenidOk() (*string, bool)

GetVmgenidOk returns a tuple with the Vmgenid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVmid

func (o *CreateVMRequest) GetVmid() int64

GetVmid returns the Vmid field value

func (*CreateVMRequest) GetVmidOk

func (o *CreateVMRequest) GetVmidOk() (*int64, bool)

GetVmidOk returns a tuple with the Vmid field value and a boolean to check if the value has been set.

func (*CreateVMRequest) GetVmstatestorage

func (o *CreateVMRequest) GetVmstatestorage() string

GetVmstatestorage returns the Vmstatestorage field value if set, zero value otherwise.

func (*CreateVMRequest) GetVmstatestorageOk

func (o *CreateVMRequest) GetVmstatestorageOk() (*string, bool)

GetVmstatestorageOk returns a tuple with the Vmstatestorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) GetWatchdog

func (o *CreateVMRequest) GetWatchdog() string

GetWatchdog returns the Watchdog field value if set, zero value otherwise.

func (*CreateVMRequest) GetWatchdogOk

func (o *CreateVMRequest) GetWatchdogOk() (*string, bool)

GetWatchdogOk returns a tuple with the Watchdog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMRequest) HasAcpi

func (o *CreateVMRequest) HasAcpi() bool

HasAcpi returns a boolean if a field has been set.

func (*CreateVMRequest) HasAffinity

func (o *CreateVMRequest) HasAffinity() bool

HasAffinity returns a boolean if a field has been set.

func (*CreateVMRequest) HasAgent

func (o *CreateVMRequest) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*CreateVMRequest) HasArch

func (o *CreateVMRequest) HasArch() bool

HasArch returns a boolean if a field has been set.

func (*CreateVMRequest) HasArchive

func (o *CreateVMRequest) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*CreateVMRequest) HasArgs

func (o *CreateVMRequest) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*CreateVMRequest) HasAudio0

func (o *CreateVMRequest) HasAudio0() bool

HasAudio0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasAutostart

func (o *CreateVMRequest) HasAutostart() bool

HasAutostart returns a boolean if a field has been set.

func (*CreateVMRequest) HasBalloon

func (o *CreateVMRequest) HasBalloon() bool

HasBalloon returns a boolean if a field has been set.

func (*CreateVMRequest) HasBios

func (o *CreateVMRequest) HasBios() bool

HasBios returns a boolean if a field has been set.

func (*CreateVMRequest) HasBoot

func (o *CreateVMRequest) HasBoot() bool

HasBoot returns a boolean if a field has been set.

func (*CreateVMRequest) HasBootdisk

func (o *CreateVMRequest) HasBootdisk() bool

HasBootdisk returns a boolean if a field has been set.

func (*CreateVMRequest) HasBwlimit

func (o *CreateVMRequest) HasBwlimit() bool

HasBwlimit returns a boolean if a field has been set.

func (*CreateVMRequest) HasCdrom

func (o *CreateVMRequest) HasCdrom() bool

HasCdrom returns a boolean if a field has been set.

func (*CreateVMRequest) HasCicustom

func (o *CreateVMRequest) HasCicustom() bool

HasCicustom returns a boolean if a field has been set.

func (*CreateVMRequest) HasCipassword

func (o *CreateVMRequest) HasCipassword() bool

HasCipassword returns a boolean if a field has been set.

func (*CreateVMRequest) HasCitype

func (o *CreateVMRequest) HasCitype() bool

HasCitype returns a boolean if a field has been set.

func (*CreateVMRequest) HasCiupgrade

func (o *CreateVMRequest) HasCiupgrade() bool

HasCiupgrade returns a boolean if a field has been set.

func (*CreateVMRequest) HasCiuser

func (o *CreateVMRequest) HasCiuser() bool

HasCiuser returns a boolean if a field has been set.

func (*CreateVMRequest) HasCores

func (o *CreateVMRequest) HasCores() bool

HasCores returns a boolean if a field has been set.

func (*CreateVMRequest) HasCpu

func (o *CreateVMRequest) HasCpu() bool

HasCpu returns a boolean if a field has been set.

func (*CreateVMRequest) HasCpulimit

func (o *CreateVMRequest) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*CreateVMRequest) HasCpuunits

func (o *CreateVMRequest) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*CreateVMRequest) HasDescription

func (o *CreateVMRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateVMRequest) HasEfidisk0

func (o *CreateVMRequest) HasEfidisk0() bool

HasEfidisk0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasForce

func (o *CreateVMRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*CreateVMRequest) HasFreeze

func (o *CreateVMRequest) HasFreeze() bool

HasFreeze returns a boolean if a field has been set.

func (*CreateVMRequest) HasHookscript

func (o *CreateVMRequest) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci0

func (o *CreateVMRequest) HasHostpci0() bool

HasHostpci0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci1

func (o *CreateVMRequest) HasHostpci1() bool

HasHostpci1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci10

func (o *CreateVMRequest) HasHostpci10() bool

HasHostpci10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci11

func (o *CreateVMRequest) HasHostpci11() bool

HasHostpci11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci12

func (o *CreateVMRequest) HasHostpci12() bool

HasHostpci12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci13

func (o *CreateVMRequest) HasHostpci13() bool

HasHostpci13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci14

func (o *CreateVMRequest) HasHostpci14() bool

HasHostpci14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci15

func (o *CreateVMRequest) HasHostpci15() bool

HasHostpci15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci16

func (o *CreateVMRequest) HasHostpci16() bool

HasHostpci16 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci17

func (o *CreateVMRequest) HasHostpci17() bool

HasHostpci17 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci18

func (o *CreateVMRequest) HasHostpci18() bool

HasHostpci18 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci19

func (o *CreateVMRequest) HasHostpci19() bool

HasHostpci19 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci2

func (o *CreateVMRequest) HasHostpci2() bool

HasHostpci2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci20

func (o *CreateVMRequest) HasHostpci20() bool

HasHostpci20 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci21

func (o *CreateVMRequest) HasHostpci21() bool

HasHostpci21 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci22

func (o *CreateVMRequest) HasHostpci22() bool

HasHostpci22 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci23

func (o *CreateVMRequest) HasHostpci23() bool

HasHostpci23 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci24

func (o *CreateVMRequest) HasHostpci24() bool

HasHostpci24 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci25

func (o *CreateVMRequest) HasHostpci25() bool

HasHostpci25 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci26

func (o *CreateVMRequest) HasHostpci26() bool

HasHostpci26 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci27

func (o *CreateVMRequest) HasHostpci27() bool

HasHostpci27 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci28

func (o *CreateVMRequest) HasHostpci28() bool

HasHostpci28 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci29

func (o *CreateVMRequest) HasHostpci29() bool

HasHostpci29 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci3

func (o *CreateVMRequest) HasHostpci3() bool

HasHostpci3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci4

func (o *CreateVMRequest) HasHostpci4() bool

HasHostpci4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci5

func (o *CreateVMRequest) HasHostpci5() bool

HasHostpci5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci6

func (o *CreateVMRequest) HasHostpci6() bool

HasHostpci6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci7

func (o *CreateVMRequest) HasHostpci7() bool

HasHostpci7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci8

func (o *CreateVMRequest) HasHostpci8() bool

HasHostpci8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHostpci9

func (o *CreateVMRequest) HasHostpci9() bool

HasHostpci9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasHotplug

func (o *CreateVMRequest) HasHotplug() bool

HasHotplug returns a boolean if a field has been set.

func (*CreateVMRequest) HasHugepages

func (o *CreateVMRequest) HasHugepages() bool

HasHugepages returns a boolean if a field has been set.

func (*CreateVMRequest) HasIde0

func (o *CreateVMRequest) HasIde0() bool

HasIde0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIde1

func (o *CreateVMRequest) HasIde1() bool

HasIde1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIde2

func (o *CreateVMRequest) HasIde2() bool

HasIde2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIde3

func (o *CreateVMRequest) HasIde3() bool

HasIde3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig0

func (o *CreateVMRequest) HasIpconfig0() bool

HasIpconfig0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig1

func (o *CreateVMRequest) HasIpconfig1() bool

HasIpconfig1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig10

func (o *CreateVMRequest) HasIpconfig10() bool

HasIpconfig10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig11

func (o *CreateVMRequest) HasIpconfig11() bool

HasIpconfig11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig12

func (o *CreateVMRequest) HasIpconfig12() bool

HasIpconfig12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig13

func (o *CreateVMRequest) HasIpconfig13() bool

HasIpconfig13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig14

func (o *CreateVMRequest) HasIpconfig14() bool

HasIpconfig14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig15

func (o *CreateVMRequest) HasIpconfig15() bool

HasIpconfig15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig16

func (o *CreateVMRequest) HasIpconfig16() bool

HasIpconfig16 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig17

func (o *CreateVMRequest) HasIpconfig17() bool

HasIpconfig17 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig18

func (o *CreateVMRequest) HasIpconfig18() bool

HasIpconfig18 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig19

func (o *CreateVMRequest) HasIpconfig19() bool

HasIpconfig19 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig2

func (o *CreateVMRequest) HasIpconfig2() bool

HasIpconfig2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig20

func (o *CreateVMRequest) HasIpconfig20() bool

HasIpconfig20 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig21

func (o *CreateVMRequest) HasIpconfig21() bool

HasIpconfig21 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig22

func (o *CreateVMRequest) HasIpconfig22() bool

HasIpconfig22 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig23

func (o *CreateVMRequest) HasIpconfig23() bool

HasIpconfig23 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig24

func (o *CreateVMRequest) HasIpconfig24() bool

HasIpconfig24 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig25

func (o *CreateVMRequest) HasIpconfig25() bool

HasIpconfig25 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig26

func (o *CreateVMRequest) HasIpconfig26() bool

HasIpconfig26 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig27

func (o *CreateVMRequest) HasIpconfig27() bool

HasIpconfig27 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig28

func (o *CreateVMRequest) HasIpconfig28() bool

HasIpconfig28 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig29

func (o *CreateVMRequest) HasIpconfig29() bool

HasIpconfig29 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig3

func (o *CreateVMRequest) HasIpconfig3() bool

HasIpconfig3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig4

func (o *CreateVMRequest) HasIpconfig4() bool

HasIpconfig4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig5

func (o *CreateVMRequest) HasIpconfig5() bool

HasIpconfig5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig6

func (o *CreateVMRequest) HasIpconfig6() bool

HasIpconfig6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig7

func (o *CreateVMRequest) HasIpconfig7() bool

HasIpconfig7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig8

func (o *CreateVMRequest) HasIpconfig8() bool

HasIpconfig8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIpconfig9

func (o *CreateVMRequest) HasIpconfig9() bool

HasIpconfig9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasIvshmem

func (o *CreateVMRequest) HasIvshmem() bool

HasIvshmem returns a boolean if a field has been set.

func (*CreateVMRequest) HasKeephugepages

func (o *CreateVMRequest) HasKeephugepages() bool

HasKeephugepages returns a boolean if a field has been set.

func (*CreateVMRequest) HasKeyboard

func (o *CreateVMRequest) HasKeyboard() bool

HasKeyboard returns a boolean if a field has been set.

func (*CreateVMRequest) HasKvm

func (o *CreateVMRequest) HasKvm() bool

HasKvm returns a boolean if a field has been set.

func (*CreateVMRequest) HasLiveRestore

func (o *CreateVMRequest) HasLiveRestore() bool

HasLiveRestore returns a boolean if a field has been set.

func (*CreateVMRequest) HasLocaltime

func (o *CreateVMRequest) HasLocaltime() bool

HasLocaltime returns a boolean if a field has been set.

func (*CreateVMRequest) HasLock

func (o *CreateVMRequest) HasLock() bool

HasLock returns a boolean if a field has been set.

func (*CreateVMRequest) HasMachine

func (o *CreateVMRequest) HasMachine() bool

HasMachine returns a boolean if a field has been set.

func (*CreateVMRequest) HasMemory

func (o *CreateVMRequest) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*CreateVMRequest) HasMigrateDowntime

func (o *CreateVMRequest) HasMigrateDowntime() bool

HasMigrateDowntime returns a boolean if a field has been set.

func (*CreateVMRequest) HasMigrateSpeed

func (o *CreateVMRequest) HasMigrateSpeed() bool

HasMigrateSpeed returns a boolean if a field has been set.

func (*CreateVMRequest) HasName

func (o *CreateVMRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateVMRequest) HasNameserver

func (o *CreateVMRequest) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet0

func (o *CreateVMRequest) HasNet0() bool

HasNet0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet1

func (o *CreateVMRequest) HasNet1() bool

HasNet1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet10

func (o *CreateVMRequest) HasNet10() bool

HasNet10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet11

func (o *CreateVMRequest) HasNet11() bool

HasNet11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet12

func (o *CreateVMRequest) HasNet12() bool

HasNet12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet13

func (o *CreateVMRequest) HasNet13() bool

HasNet13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet14

func (o *CreateVMRequest) HasNet14() bool

HasNet14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet15

func (o *CreateVMRequest) HasNet15() bool

HasNet15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet16

func (o *CreateVMRequest) HasNet16() bool

HasNet16 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet17

func (o *CreateVMRequest) HasNet17() bool

HasNet17 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet18

func (o *CreateVMRequest) HasNet18() bool

HasNet18 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet19

func (o *CreateVMRequest) HasNet19() bool

HasNet19 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet2

func (o *CreateVMRequest) HasNet2() bool

HasNet2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet20

func (o *CreateVMRequest) HasNet20() bool

HasNet20 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet21

func (o *CreateVMRequest) HasNet21() bool

HasNet21 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet22

func (o *CreateVMRequest) HasNet22() bool

HasNet22 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet23

func (o *CreateVMRequest) HasNet23() bool

HasNet23 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet24

func (o *CreateVMRequest) HasNet24() bool

HasNet24 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet25

func (o *CreateVMRequest) HasNet25() bool

HasNet25 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet26

func (o *CreateVMRequest) HasNet26() bool

HasNet26 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet27

func (o *CreateVMRequest) HasNet27() bool

HasNet27 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet28

func (o *CreateVMRequest) HasNet28() bool

HasNet28 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet29

func (o *CreateVMRequest) HasNet29() bool

HasNet29 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet3

func (o *CreateVMRequest) HasNet3() bool

HasNet3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet30

func (o *CreateVMRequest) HasNet30() bool

HasNet30 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet31

func (o *CreateVMRequest) HasNet31() bool

HasNet31 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet4

func (o *CreateVMRequest) HasNet4() bool

HasNet4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet5

func (o *CreateVMRequest) HasNet5() bool

HasNet5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet6

func (o *CreateVMRequest) HasNet6() bool

HasNet6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet7

func (o *CreateVMRequest) HasNet7() bool

HasNet7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet8

func (o *CreateVMRequest) HasNet8() bool

HasNet8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNet9

func (o *CreateVMRequest) HasNet9() bool

HasNet9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma

func (o *CreateVMRequest) HasNuma() bool

HasNuma returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma0

func (o *CreateVMRequest) HasNuma0() bool

HasNuma0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma1

func (o *CreateVMRequest) HasNuma1() bool

HasNuma1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma10

func (o *CreateVMRequest) HasNuma10() bool

HasNuma10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma11

func (o *CreateVMRequest) HasNuma11() bool

HasNuma11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma12

func (o *CreateVMRequest) HasNuma12() bool

HasNuma12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma13

func (o *CreateVMRequest) HasNuma13() bool

HasNuma13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma14

func (o *CreateVMRequest) HasNuma14() bool

HasNuma14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma15

func (o *CreateVMRequest) HasNuma15() bool

HasNuma15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma16

func (o *CreateVMRequest) HasNuma16() bool

HasNuma16 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma17

func (o *CreateVMRequest) HasNuma17() bool

HasNuma17 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma18

func (o *CreateVMRequest) HasNuma18() bool

HasNuma18 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma19

func (o *CreateVMRequest) HasNuma19() bool

HasNuma19 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma2

func (o *CreateVMRequest) HasNuma2() bool

HasNuma2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma20

func (o *CreateVMRequest) HasNuma20() bool

HasNuma20 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma21

func (o *CreateVMRequest) HasNuma21() bool

HasNuma21 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma22

func (o *CreateVMRequest) HasNuma22() bool

HasNuma22 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma23

func (o *CreateVMRequest) HasNuma23() bool

HasNuma23 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma24

func (o *CreateVMRequest) HasNuma24() bool

HasNuma24 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma25

func (o *CreateVMRequest) HasNuma25() bool

HasNuma25 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma26

func (o *CreateVMRequest) HasNuma26() bool

HasNuma26 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma27

func (o *CreateVMRequest) HasNuma27() bool

HasNuma27 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma28

func (o *CreateVMRequest) HasNuma28() bool

HasNuma28 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma29

func (o *CreateVMRequest) HasNuma29() bool

HasNuma29 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma3

func (o *CreateVMRequest) HasNuma3() bool

HasNuma3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma4

func (o *CreateVMRequest) HasNuma4() bool

HasNuma4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma5

func (o *CreateVMRequest) HasNuma5() bool

HasNuma5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma6

func (o *CreateVMRequest) HasNuma6() bool

HasNuma6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma7

func (o *CreateVMRequest) HasNuma7() bool

HasNuma7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma8

func (o *CreateVMRequest) HasNuma8() bool

HasNuma8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasNuma9

func (o *CreateVMRequest) HasNuma9() bool

HasNuma9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasOnboot

func (o *CreateVMRequest) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*CreateVMRequest) HasOstype

func (o *CreateVMRequest) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*CreateVMRequest) HasParallel0

func (o *CreateVMRequest) HasParallel0() bool

HasParallel0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasParallel1

func (o *CreateVMRequest) HasParallel1() bool

HasParallel1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasParallel2

func (o *CreateVMRequest) HasParallel2() bool

HasParallel2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasParallel3

func (o *CreateVMRequest) HasParallel3() bool

HasParallel3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasPool

func (o *CreateVMRequest) HasPool() bool

HasPool returns a boolean if a field has been set.

func (*CreateVMRequest) HasProtection

func (o *CreateVMRequest) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*CreateVMRequest) HasReboot

func (o *CreateVMRequest) HasReboot() bool

HasReboot returns a boolean if a field has been set.

func (*CreateVMRequest) HasRng0

func (o *CreateVMRequest) HasRng0() bool

HasRng0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSata0

func (o *CreateVMRequest) HasSata0() bool

HasSata0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSata1

func (o *CreateVMRequest) HasSata1() bool

HasSata1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSata2

func (o *CreateVMRequest) HasSata2() bool

HasSata2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSata3

func (o *CreateVMRequest) HasSata3() bool

HasSata3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSata4

func (o *CreateVMRequest) HasSata4() bool

HasSata4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSata5

func (o *CreateVMRequest) HasSata5() bool

HasSata5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi0

func (o *CreateVMRequest) HasScsi0() bool

HasScsi0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi1

func (o *CreateVMRequest) HasScsi1() bool

HasScsi1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi10

func (o *CreateVMRequest) HasScsi10() bool

HasScsi10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi11

func (o *CreateVMRequest) HasScsi11() bool

HasScsi11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi12

func (o *CreateVMRequest) HasScsi12() bool

HasScsi12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi13

func (o *CreateVMRequest) HasScsi13() bool

HasScsi13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi14

func (o *CreateVMRequest) HasScsi14() bool

HasScsi14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi15

func (o *CreateVMRequest) HasScsi15() bool

HasScsi15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi16

func (o *CreateVMRequest) HasScsi16() bool

HasScsi16 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi17

func (o *CreateVMRequest) HasScsi17() bool

HasScsi17 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi18

func (o *CreateVMRequest) HasScsi18() bool

HasScsi18 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi19

func (o *CreateVMRequest) HasScsi19() bool

HasScsi19 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi2

func (o *CreateVMRequest) HasScsi2() bool

HasScsi2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi20

func (o *CreateVMRequest) HasScsi20() bool

HasScsi20 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi21

func (o *CreateVMRequest) HasScsi21() bool

HasScsi21 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi22

func (o *CreateVMRequest) HasScsi22() bool

HasScsi22 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi23

func (o *CreateVMRequest) HasScsi23() bool

HasScsi23 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi24

func (o *CreateVMRequest) HasScsi24() bool

HasScsi24 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi25

func (o *CreateVMRequest) HasScsi25() bool

HasScsi25 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi26

func (o *CreateVMRequest) HasScsi26() bool

HasScsi26 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi27

func (o *CreateVMRequest) HasScsi27() bool

HasScsi27 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi28

func (o *CreateVMRequest) HasScsi28() bool

HasScsi28 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi29

func (o *CreateVMRequest) HasScsi29() bool

HasScsi29 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi3

func (o *CreateVMRequest) HasScsi3() bool

HasScsi3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi4

func (o *CreateVMRequest) HasScsi4() bool

HasScsi4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi5

func (o *CreateVMRequest) HasScsi5() bool

HasScsi5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi6

func (o *CreateVMRequest) HasScsi6() bool

HasScsi6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi7

func (o *CreateVMRequest) HasScsi7() bool

HasScsi7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi8

func (o *CreateVMRequest) HasScsi8() bool

HasScsi8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsi9

func (o *CreateVMRequest) HasScsi9() bool

HasScsi9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasScsihw

func (o *CreateVMRequest) HasScsihw() bool

HasScsihw returns a boolean if a field has been set.

func (*CreateVMRequest) HasSearchdomain

func (o *CreateVMRequest) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*CreateVMRequest) HasSerial0

func (o *CreateVMRequest) HasSerial0() bool

HasSerial0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSerial1

func (o *CreateVMRequest) HasSerial1() bool

HasSerial1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSerial2

func (o *CreateVMRequest) HasSerial2() bool

HasSerial2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSerial3

func (o *CreateVMRequest) HasSerial3() bool

HasSerial3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasShares

func (o *CreateVMRequest) HasShares() bool

HasShares returns a boolean if a field has been set.

func (*CreateVMRequest) HasSmbios1

func (o *CreateVMRequest) HasSmbios1() bool

HasSmbios1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasSmp

func (o *CreateVMRequest) HasSmp() bool

HasSmp returns a boolean if a field has been set.

func (*CreateVMRequest) HasSockets

func (o *CreateVMRequest) HasSockets() bool

HasSockets returns a boolean if a field has been set.

func (*CreateVMRequest) HasSpiceEnhancements

func (o *CreateVMRequest) HasSpiceEnhancements() bool

HasSpiceEnhancements returns a boolean if a field has been set.

func (*CreateVMRequest) HasSshkeys

func (o *CreateVMRequest) HasSshkeys() bool

HasSshkeys returns a boolean if a field has been set.

func (*CreateVMRequest) HasStart

func (o *CreateVMRequest) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*CreateVMRequest) HasStartdate

func (o *CreateVMRequest) HasStartdate() bool

HasStartdate returns a boolean if a field has been set.

func (*CreateVMRequest) HasStartup

func (o *CreateVMRequest) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*CreateVMRequest) HasStorage

func (o *CreateVMRequest) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*CreateVMRequest) HasTablet

func (o *CreateVMRequest) HasTablet() bool

HasTablet returns a boolean if a field has been set.

func (*CreateVMRequest) HasTags

func (o *CreateVMRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*CreateVMRequest) HasTdf

func (o *CreateVMRequest) HasTdf() bool

HasTdf returns a boolean if a field has been set.

func (*CreateVMRequest) HasTemplate

func (o *CreateVMRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*CreateVMRequest) HasTpmstate0

func (o *CreateVMRequest) HasTpmstate0() bool

HasTpmstate0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnique

func (o *CreateVMRequest) HasUnique() bool

HasUnique returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused0

func (o *CreateVMRequest) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused1

func (o *CreateVMRequest) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused10

func (o *CreateVMRequest) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused11

func (o *CreateVMRequest) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused12

func (o *CreateVMRequest) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused13

func (o *CreateVMRequest) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused14

func (o *CreateVMRequest) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused15

func (o *CreateVMRequest) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused16

func (o *CreateVMRequest) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused17

func (o *CreateVMRequest) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused18

func (o *CreateVMRequest) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused19

func (o *CreateVMRequest) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused2

func (o *CreateVMRequest) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused20

func (o *CreateVMRequest) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused21

func (o *CreateVMRequest) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused22

func (o *CreateVMRequest) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused23

func (o *CreateVMRequest) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused24

func (o *CreateVMRequest) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused25

func (o *CreateVMRequest) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused26

func (o *CreateVMRequest) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused27

func (o *CreateVMRequest) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused28

func (o *CreateVMRequest) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused29

func (o *CreateVMRequest) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused3

func (o *CreateVMRequest) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused4

func (o *CreateVMRequest) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused5

func (o *CreateVMRequest) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused6

func (o *CreateVMRequest) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused7

func (o *CreateVMRequest) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused8

func (o *CreateVMRequest) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUnused9

func (o *CreateVMRequest) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUsb0

func (o *CreateVMRequest) HasUsb0() bool

HasUsb0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUsb1

func (o *CreateVMRequest) HasUsb1() bool

HasUsb1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUsb2

func (o *CreateVMRequest) HasUsb2() bool

HasUsb2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasUsb3

func (o *CreateVMRequest) HasUsb3() bool

HasUsb3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVcpus

func (o *CreateVMRequest) HasVcpus() bool

HasVcpus returns a boolean if a field has been set.

func (*CreateVMRequest) HasVga

func (o *CreateVMRequest) HasVga() bool

HasVga returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio0

func (o *CreateVMRequest) HasVirtio0() bool

HasVirtio0 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio1

func (o *CreateVMRequest) HasVirtio1() bool

HasVirtio1 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio10

func (o *CreateVMRequest) HasVirtio10() bool

HasVirtio10 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio11

func (o *CreateVMRequest) HasVirtio11() bool

HasVirtio11 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio12

func (o *CreateVMRequest) HasVirtio12() bool

HasVirtio12 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio13

func (o *CreateVMRequest) HasVirtio13() bool

HasVirtio13 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio14

func (o *CreateVMRequest) HasVirtio14() bool

HasVirtio14 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio15

func (o *CreateVMRequest) HasVirtio15() bool

HasVirtio15 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio2

func (o *CreateVMRequest) HasVirtio2() bool

HasVirtio2 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio3

func (o *CreateVMRequest) HasVirtio3() bool

HasVirtio3 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio4

func (o *CreateVMRequest) HasVirtio4() bool

HasVirtio4 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio5

func (o *CreateVMRequest) HasVirtio5() bool

HasVirtio5 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio6

func (o *CreateVMRequest) HasVirtio6() bool

HasVirtio6 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio7

func (o *CreateVMRequest) HasVirtio7() bool

HasVirtio7 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio8

func (o *CreateVMRequest) HasVirtio8() bool

HasVirtio8 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVirtio9

func (o *CreateVMRequest) HasVirtio9() bool

HasVirtio9 returns a boolean if a field has been set.

func (*CreateVMRequest) HasVmgenid

func (o *CreateVMRequest) HasVmgenid() bool

HasVmgenid returns a boolean if a field has been set.

func (*CreateVMRequest) HasVmstatestorage

func (o *CreateVMRequest) HasVmstatestorage() bool

HasVmstatestorage returns a boolean if a field has been set.

func (*CreateVMRequest) HasWatchdog

func (o *CreateVMRequest) HasWatchdog() bool

HasWatchdog returns a boolean if a field has been set.

func (CreateVMRequest) MarshalJSON

func (o CreateVMRequest) MarshalJSON() ([]byte, error)

func (*CreateVMRequest) SetAcpi

func (o *CreateVMRequest) SetAcpi(v int32)

SetAcpi gets a reference to the given int32 and assigns it to the Acpi field.

func (*CreateVMRequest) SetAffinity

func (o *CreateVMRequest) SetAffinity(v string)

SetAffinity gets a reference to the given string and assigns it to the Affinity field.

func (*CreateVMRequest) SetAgent

func (o *CreateVMRequest) SetAgent(v string)

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*CreateVMRequest) SetArch

func (o *CreateVMRequest) SetArch(v string)

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*CreateVMRequest) SetArchive

func (o *CreateVMRequest) SetArchive(v string)

SetArchive gets a reference to the given string and assigns it to the Archive field.

func (*CreateVMRequest) SetArgs

func (o *CreateVMRequest) SetArgs(v string)

SetArgs gets a reference to the given string and assigns it to the Args field.

func (*CreateVMRequest) SetAudio0

func (o *CreateVMRequest) SetAudio0(v string)

SetAudio0 gets a reference to the given string and assigns it to the Audio0 field.

func (*CreateVMRequest) SetAutostart

func (o *CreateVMRequest) SetAutostart(v int32)

SetAutostart gets a reference to the given int32 and assigns it to the Autostart field.

func (*CreateVMRequest) SetBalloon

func (o *CreateVMRequest) SetBalloon(v int64)

SetBalloon gets a reference to the given int64 and assigns it to the Balloon field.

func (*CreateVMRequest) SetBios

func (o *CreateVMRequest) SetBios(v string)

SetBios gets a reference to the given string and assigns it to the Bios field.

func (*CreateVMRequest) SetBoot

func (o *CreateVMRequest) SetBoot(v string)

SetBoot gets a reference to the given string and assigns it to the Boot field.

func (*CreateVMRequest) SetBootdisk

func (o *CreateVMRequest) SetBootdisk(v string)

SetBootdisk gets a reference to the given string and assigns it to the Bootdisk field.

func (*CreateVMRequest) SetBwlimit

func (o *CreateVMRequest) SetBwlimit(v int64)

SetBwlimit gets a reference to the given int64 and assigns it to the Bwlimit field.

func (*CreateVMRequest) SetCdrom

func (o *CreateVMRequest) SetCdrom(v string)

SetCdrom gets a reference to the given string and assigns it to the Cdrom field.

func (*CreateVMRequest) SetCicustom

func (o *CreateVMRequest) SetCicustom(v string)

SetCicustom gets a reference to the given string and assigns it to the Cicustom field.

func (*CreateVMRequest) SetCipassword

func (o *CreateVMRequest) SetCipassword(v string)

SetCipassword gets a reference to the given string and assigns it to the Cipassword field.

func (*CreateVMRequest) SetCitype

func (o *CreateVMRequest) SetCitype(v string)

SetCitype gets a reference to the given string and assigns it to the Citype field.

func (*CreateVMRequest) SetCiupgrade

func (o *CreateVMRequest) SetCiupgrade(v int32)

SetCiupgrade gets a reference to the given int32 and assigns it to the Ciupgrade field.

func (*CreateVMRequest) SetCiuser

func (o *CreateVMRequest) SetCiuser(v string)

SetCiuser gets a reference to the given string and assigns it to the Ciuser field.

func (*CreateVMRequest) SetCores

func (o *CreateVMRequest) SetCores(v int64)

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*CreateVMRequest) SetCpu

func (o *CreateVMRequest) SetCpu(v string)

SetCpu gets a reference to the given string and assigns it to the Cpu field.

func (*CreateVMRequest) SetCpulimit

func (o *CreateVMRequest) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*CreateVMRequest) SetCpuunits

func (o *CreateVMRequest) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*CreateVMRequest) SetDescription

func (o *CreateVMRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateVMRequest) SetEfidisk0

func (o *CreateVMRequest) SetEfidisk0(v string)

SetEfidisk0 gets a reference to the given string and assigns it to the Efidisk0 field.

func (*CreateVMRequest) SetForce

func (o *CreateVMRequest) SetForce(v int32)

SetForce gets a reference to the given int32 and assigns it to the Force field.

func (*CreateVMRequest) SetFreeze

func (o *CreateVMRequest) SetFreeze(v int32)

SetFreeze gets a reference to the given int32 and assigns it to the Freeze field.

func (*CreateVMRequest) SetHookscript

func (o *CreateVMRequest) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*CreateVMRequest) SetHostpci0

func (o *CreateVMRequest) SetHostpci0(v string)

SetHostpci0 gets a reference to the given string and assigns it to the Hostpci0 field.

func (*CreateVMRequest) SetHostpci1

func (o *CreateVMRequest) SetHostpci1(v string)

SetHostpci1 gets a reference to the given string and assigns it to the Hostpci1 field.

func (*CreateVMRequest) SetHostpci10

func (o *CreateVMRequest) SetHostpci10(v string)

SetHostpci10 gets a reference to the given string and assigns it to the Hostpci10 field.

func (*CreateVMRequest) SetHostpci11

func (o *CreateVMRequest) SetHostpci11(v string)

SetHostpci11 gets a reference to the given string and assigns it to the Hostpci11 field.

func (*CreateVMRequest) SetHostpci12

func (o *CreateVMRequest) SetHostpci12(v string)

SetHostpci12 gets a reference to the given string and assigns it to the Hostpci12 field.

func (*CreateVMRequest) SetHostpci13

func (o *CreateVMRequest) SetHostpci13(v string)

SetHostpci13 gets a reference to the given string and assigns it to the Hostpci13 field.

func (*CreateVMRequest) SetHostpci14

func (o *CreateVMRequest) SetHostpci14(v string)

SetHostpci14 gets a reference to the given string and assigns it to the Hostpci14 field.

func (*CreateVMRequest) SetHostpci15

func (o *CreateVMRequest) SetHostpci15(v string)

SetHostpci15 gets a reference to the given string and assigns it to the Hostpci15 field.

func (*CreateVMRequest) SetHostpci16

func (o *CreateVMRequest) SetHostpci16(v string)

SetHostpci16 gets a reference to the given string and assigns it to the Hostpci16 field.

func (*CreateVMRequest) SetHostpci17

func (o *CreateVMRequest) SetHostpci17(v string)

SetHostpci17 gets a reference to the given string and assigns it to the Hostpci17 field.

func (*CreateVMRequest) SetHostpci18

func (o *CreateVMRequest) SetHostpci18(v string)

SetHostpci18 gets a reference to the given string and assigns it to the Hostpci18 field.

func (*CreateVMRequest) SetHostpci19

func (o *CreateVMRequest) SetHostpci19(v string)

SetHostpci19 gets a reference to the given string and assigns it to the Hostpci19 field.

func (*CreateVMRequest) SetHostpci2

func (o *CreateVMRequest) SetHostpci2(v string)

SetHostpci2 gets a reference to the given string and assigns it to the Hostpci2 field.

func (*CreateVMRequest) SetHostpci20

func (o *CreateVMRequest) SetHostpci20(v string)

SetHostpci20 gets a reference to the given string and assigns it to the Hostpci20 field.

func (*CreateVMRequest) SetHostpci21

func (o *CreateVMRequest) SetHostpci21(v string)

SetHostpci21 gets a reference to the given string and assigns it to the Hostpci21 field.

func (*CreateVMRequest) SetHostpci22

func (o *CreateVMRequest) SetHostpci22(v string)

SetHostpci22 gets a reference to the given string and assigns it to the Hostpci22 field.

func (*CreateVMRequest) SetHostpci23

func (o *CreateVMRequest) SetHostpci23(v string)

SetHostpci23 gets a reference to the given string and assigns it to the Hostpci23 field.

func (*CreateVMRequest) SetHostpci24

func (o *CreateVMRequest) SetHostpci24(v string)

SetHostpci24 gets a reference to the given string and assigns it to the Hostpci24 field.

func (*CreateVMRequest) SetHostpci25

func (o *CreateVMRequest) SetHostpci25(v string)

SetHostpci25 gets a reference to the given string and assigns it to the Hostpci25 field.

func (*CreateVMRequest) SetHostpci26

func (o *CreateVMRequest) SetHostpci26(v string)

SetHostpci26 gets a reference to the given string and assigns it to the Hostpci26 field.

func (*CreateVMRequest) SetHostpci27

func (o *CreateVMRequest) SetHostpci27(v string)

SetHostpci27 gets a reference to the given string and assigns it to the Hostpci27 field.

func (*CreateVMRequest) SetHostpci28

func (o *CreateVMRequest) SetHostpci28(v string)

SetHostpci28 gets a reference to the given string and assigns it to the Hostpci28 field.

func (*CreateVMRequest) SetHostpci29

func (o *CreateVMRequest) SetHostpci29(v string)

SetHostpci29 gets a reference to the given string and assigns it to the Hostpci29 field.

func (*CreateVMRequest) SetHostpci3

func (o *CreateVMRequest) SetHostpci3(v string)

SetHostpci3 gets a reference to the given string and assigns it to the Hostpci3 field.

func (*CreateVMRequest) SetHostpci4

func (o *CreateVMRequest) SetHostpci4(v string)

SetHostpci4 gets a reference to the given string and assigns it to the Hostpci4 field.

func (*CreateVMRequest) SetHostpci5

func (o *CreateVMRequest) SetHostpci5(v string)

SetHostpci5 gets a reference to the given string and assigns it to the Hostpci5 field.

func (*CreateVMRequest) SetHostpci6

func (o *CreateVMRequest) SetHostpci6(v string)

SetHostpci6 gets a reference to the given string and assigns it to the Hostpci6 field.

func (*CreateVMRequest) SetHostpci7

func (o *CreateVMRequest) SetHostpci7(v string)

SetHostpci7 gets a reference to the given string and assigns it to the Hostpci7 field.

func (*CreateVMRequest) SetHostpci8

func (o *CreateVMRequest) SetHostpci8(v string)

SetHostpci8 gets a reference to the given string and assigns it to the Hostpci8 field.

func (*CreateVMRequest) SetHostpci9

func (o *CreateVMRequest) SetHostpci9(v string)

SetHostpci9 gets a reference to the given string and assigns it to the Hostpci9 field.

func (*CreateVMRequest) SetHotplug

func (o *CreateVMRequest) SetHotplug(v string)

SetHotplug gets a reference to the given string and assigns it to the Hotplug field.

func (*CreateVMRequest) SetHugepages

func (o *CreateVMRequest) SetHugepages(v string)

SetHugepages gets a reference to the given string and assigns it to the Hugepages field.

func (*CreateVMRequest) SetIde0

func (o *CreateVMRequest) SetIde0(v string)

SetIde0 gets a reference to the given string and assigns it to the Ide0 field.

func (*CreateVMRequest) SetIde1

func (o *CreateVMRequest) SetIde1(v string)

SetIde1 gets a reference to the given string and assigns it to the Ide1 field.

func (*CreateVMRequest) SetIde2

func (o *CreateVMRequest) SetIde2(v string)

SetIde2 gets a reference to the given string and assigns it to the Ide2 field.

func (*CreateVMRequest) SetIde3

func (o *CreateVMRequest) SetIde3(v string)

SetIde3 gets a reference to the given string and assigns it to the Ide3 field.

func (*CreateVMRequest) SetIpconfig0

func (o *CreateVMRequest) SetIpconfig0(v string)

SetIpconfig0 gets a reference to the given string and assigns it to the Ipconfig0 field.

func (*CreateVMRequest) SetIpconfig1

func (o *CreateVMRequest) SetIpconfig1(v string)

SetIpconfig1 gets a reference to the given string and assigns it to the Ipconfig1 field.

func (*CreateVMRequest) SetIpconfig10

func (o *CreateVMRequest) SetIpconfig10(v string)

SetIpconfig10 gets a reference to the given string and assigns it to the Ipconfig10 field.

func (*CreateVMRequest) SetIpconfig11

func (o *CreateVMRequest) SetIpconfig11(v string)

SetIpconfig11 gets a reference to the given string and assigns it to the Ipconfig11 field.

func (*CreateVMRequest) SetIpconfig12

func (o *CreateVMRequest) SetIpconfig12(v string)

SetIpconfig12 gets a reference to the given string and assigns it to the Ipconfig12 field.

func (*CreateVMRequest) SetIpconfig13

func (o *CreateVMRequest) SetIpconfig13(v string)

SetIpconfig13 gets a reference to the given string and assigns it to the Ipconfig13 field.

func (*CreateVMRequest) SetIpconfig14

func (o *CreateVMRequest) SetIpconfig14(v string)

SetIpconfig14 gets a reference to the given string and assigns it to the Ipconfig14 field.

func (*CreateVMRequest) SetIpconfig15

func (o *CreateVMRequest) SetIpconfig15(v string)

SetIpconfig15 gets a reference to the given string and assigns it to the Ipconfig15 field.

func (*CreateVMRequest) SetIpconfig16

func (o *CreateVMRequest) SetIpconfig16(v string)

SetIpconfig16 gets a reference to the given string and assigns it to the Ipconfig16 field.

func (*CreateVMRequest) SetIpconfig17

func (o *CreateVMRequest) SetIpconfig17(v string)

SetIpconfig17 gets a reference to the given string and assigns it to the Ipconfig17 field.

func (*CreateVMRequest) SetIpconfig18

func (o *CreateVMRequest) SetIpconfig18(v string)

SetIpconfig18 gets a reference to the given string and assigns it to the Ipconfig18 field.

func (*CreateVMRequest) SetIpconfig19

func (o *CreateVMRequest) SetIpconfig19(v string)

SetIpconfig19 gets a reference to the given string and assigns it to the Ipconfig19 field.

func (*CreateVMRequest) SetIpconfig2

func (o *CreateVMRequest) SetIpconfig2(v string)

SetIpconfig2 gets a reference to the given string and assigns it to the Ipconfig2 field.

func (*CreateVMRequest) SetIpconfig20

func (o *CreateVMRequest) SetIpconfig20(v string)

SetIpconfig20 gets a reference to the given string and assigns it to the Ipconfig20 field.

func (*CreateVMRequest) SetIpconfig21

func (o *CreateVMRequest) SetIpconfig21(v string)

SetIpconfig21 gets a reference to the given string and assigns it to the Ipconfig21 field.

func (*CreateVMRequest) SetIpconfig22

func (o *CreateVMRequest) SetIpconfig22(v string)

SetIpconfig22 gets a reference to the given string and assigns it to the Ipconfig22 field.

func (*CreateVMRequest) SetIpconfig23

func (o *CreateVMRequest) SetIpconfig23(v string)

SetIpconfig23 gets a reference to the given string and assigns it to the Ipconfig23 field.

func (*CreateVMRequest) SetIpconfig24

func (o *CreateVMRequest) SetIpconfig24(v string)

SetIpconfig24 gets a reference to the given string and assigns it to the Ipconfig24 field.

func (*CreateVMRequest) SetIpconfig25

func (o *CreateVMRequest) SetIpconfig25(v string)

SetIpconfig25 gets a reference to the given string and assigns it to the Ipconfig25 field.

func (*CreateVMRequest) SetIpconfig26

func (o *CreateVMRequest) SetIpconfig26(v string)

SetIpconfig26 gets a reference to the given string and assigns it to the Ipconfig26 field.

func (*CreateVMRequest) SetIpconfig27

func (o *CreateVMRequest) SetIpconfig27(v string)

SetIpconfig27 gets a reference to the given string and assigns it to the Ipconfig27 field.

func (*CreateVMRequest) SetIpconfig28

func (o *CreateVMRequest) SetIpconfig28(v string)

SetIpconfig28 gets a reference to the given string and assigns it to the Ipconfig28 field.

func (*CreateVMRequest) SetIpconfig29

func (o *CreateVMRequest) SetIpconfig29(v string)

SetIpconfig29 gets a reference to the given string and assigns it to the Ipconfig29 field.

func (*CreateVMRequest) SetIpconfig3

func (o *CreateVMRequest) SetIpconfig3(v string)

SetIpconfig3 gets a reference to the given string and assigns it to the Ipconfig3 field.

func (*CreateVMRequest) SetIpconfig4

func (o *CreateVMRequest) SetIpconfig4(v string)

SetIpconfig4 gets a reference to the given string and assigns it to the Ipconfig4 field.

func (*CreateVMRequest) SetIpconfig5

func (o *CreateVMRequest) SetIpconfig5(v string)

SetIpconfig5 gets a reference to the given string and assigns it to the Ipconfig5 field.

func (*CreateVMRequest) SetIpconfig6

func (o *CreateVMRequest) SetIpconfig6(v string)

SetIpconfig6 gets a reference to the given string and assigns it to the Ipconfig6 field.

func (*CreateVMRequest) SetIpconfig7

func (o *CreateVMRequest) SetIpconfig7(v string)

SetIpconfig7 gets a reference to the given string and assigns it to the Ipconfig7 field.

func (*CreateVMRequest) SetIpconfig8

func (o *CreateVMRequest) SetIpconfig8(v string)

SetIpconfig8 gets a reference to the given string and assigns it to the Ipconfig8 field.

func (*CreateVMRequest) SetIpconfig9

func (o *CreateVMRequest) SetIpconfig9(v string)

SetIpconfig9 gets a reference to the given string and assigns it to the Ipconfig9 field.

func (*CreateVMRequest) SetIvshmem

func (o *CreateVMRequest) SetIvshmem(v string)

SetIvshmem gets a reference to the given string and assigns it to the Ivshmem field.

func (*CreateVMRequest) SetKeephugepages

func (o *CreateVMRequest) SetKeephugepages(v int32)

SetKeephugepages gets a reference to the given int32 and assigns it to the Keephugepages field.

func (*CreateVMRequest) SetKeyboard

func (o *CreateVMRequest) SetKeyboard(v string)

SetKeyboard gets a reference to the given string and assigns it to the Keyboard field.

func (*CreateVMRequest) SetKvm

func (o *CreateVMRequest) SetKvm(v int32)

SetKvm gets a reference to the given int32 and assigns it to the Kvm field.

func (*CreateVMRequest) SetLiveRestore

func (o *CreateVMRequest) SetLiveRestore(v int32)

SetLiveRestore gets a reference to the given int32 and assigns it to the LiveRestore field.

func (*CreateVMRequest) SetLocaltime

func (o *CreateVMRequest) SetLocaltime(v int32)

SetLocaltime gets a reference to the given int32 and assigns it to the Localtime field.

func (*CreateVMRequest) SetLock

func (o *CreateVMRequest) SetLock(v string)

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*CreateVMRequest) SetMachine

func (o *CreateVMRequest) SetMachine(v string)

SetMachine gets a reference to the given string and assigns it to the Machine field.

func (*CreateVMRequest) SetMemory

func (o *CreateVMRequest) SetMemory(v int64)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (*CreateVMRequest) SetMigrateDowntime

func (o *CreateVMRequest) SetMigrateDowntime(v float32)

SetMigrateDowntime gets a reference to the given float32 and assigns it to the MigrateDowntime field.

func (*CreateVMRequest) SetMigrateSpeed

func (o *CreateVMRequest) SetMigrateSpeed(v int64)

SetMigrateSpeed gets a reference to the given int64 and assigns it to the MigrateSpeed field.

func (*CreateVMRequest) SetName

func (o *CreateVMRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*CreateVMRequest) SetNameserver

func (o *CreateVMRequest) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*CreateVMRequest) SetNet0

func (o *CreateVMRequest) SetNet0(v string)

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*CreateVMRequest) SetNet1

func (o *CreateVMRequest) SetNet1(v string)

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*CreateVMRequest) SetNet10

func (o *CreateVMRequest) SetNet10(v string)

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*CreateVMRequest) SetNet11

func (o *CreateVMRequest) SetNet11(v string)

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*CreateVMRequest) SetNet12

func (o *CreateVMRequest) SetNet12(v string)

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*CreateVMRequest) SetNet13

func (o *CreateVMRequest) SetNet13(v string)

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*CreateVMRequest) SetNet14

func (o *CreateVMRequest) SetNet14(v string)

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*CreateVMRequest) SetNet15

func (o *CreateVMRequest) SetNet15(v string)

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*CreateVMRequest) SetNet16

func (o *CreateVMRequest) SetNet16(v string)

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*CreateVMRequest) SetNet17

func (o *CreateVMRequest) SetNet17(v string)

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*CreateVMRequest) SetNet18

func (o *CreateVMRequest) SetNet18(v string)

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*CreateVMRequest) SetNet19

func (o *CreateVMRequest) SetNet19(v string)

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*CreateVMRequest) SetNet2

func (o *CreateVMRequest) SetNet2(v string)

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*CreateVMRequest) SetNet20

func (o *CreateVMRequest) SetNet20(v string)

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*CreateVMRequest) SetNet21

func (o *CreateVMRequest) SetNet21(v string)

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*CreateVMRequest) SetNet22

func (o *CreateVMRequest) SetNet22(v string)

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*CreateVMRequest) SetNet23

func (o *CreateVMRequest) SetNet23(v string)

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*CreateVMRequest) SetNet24

func (o *CreateVMRequest) SetNet24(v string)

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*CreateVMRequest) SetNet25

func (o *CreateVMRequest) SetNet25(v string)

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*CreateVMRequest) SetNet26

func (o *CreateVMRequest) SetNet26(v string)

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*CreateVMRequest) SetNet27

func (o *CreateVMRequest) SetNet27(v string)

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*CreateVMRequest) SetNet28

func (o *CreateVMRequest) SetNet28(v string)

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*CreateVMRequest) SetNet29

func (o *CreateVMRequest) SetNet29(v string)

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*CreateVMRequest) SetNet3

func (o *CreateVMRequest) SetNet3(v string)

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*CreateVMRequest) SetNet30

func (o *CreateVMRequest) SetNet30(v string)

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*CreateVMRequest) SetNet31

func (o *CreateVMRequest) SetNet31(v string)

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*CreateVMRequest) SetNet4

func (o *CreateVMRequest) SetNet4(v string)

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*CreateVMRequest) SetNet5

func (o *CreateVMRequest) SetNet5(v string)

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*CreateVMRequest) SetNet6

func (o *CreateVMRequest) SetNet6(v string)

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*CreateVMRequest) SetNet7

func (o *CreateVMRequest) SetNet7(v string)

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*CreateVMRequest) SetNet8

func (o *CreateVMRequest) SetNet8(v string)

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*CreateVMRequest) SetNet9

func (o *CreateVMRequest) SetNet9(v string)

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*CreateVMRequest) SetNuma

func (o *CreateVMRequest) SetNuma(v int32)

SetNuma gets a reference to the given int32 and assigns it to the Numa field.

func (*CreateVMRequest) SetNuma0

func (o *CreateVMRequest) SetNuma0(v string)

SetNuma0 gets a reference to the given string and assigns it to the Numa0 field.

func (*CreateVMRequest) SetNuma1

func (o *CreateVMRequest) SetNuma1(v string)

SetNuma1 gets a reference to the given string and assigns it to the Numa1 field.

func (*CreateVMRequest) SetNuma10

func (o *CreateVMRequest) SetNuma10(v string)

SetNuma10 gets a reference to the given string and assigns it to the Numa10 field.

func (*CreateVMRequest) SetNuma11

func (o *CreateVMRequest) SetNuma11(v string)

SetNuma11 gets a reference to the given string and assigns it to the Numa11 field.

func (*CreateVMRequest) SetNuma12

func (o *CreateVMRequest) SetNuma12(v string)

SetNuma12 gets a reference to the given string and assigns it to the Numa12 field.

func (*CreateVMRequest) SetNuma13

func (o *CreateVMRequest) SetNuma13(v string)

SetNuma13 gets a reference to the given string and assigns it to the Numa13 field.

func (*CreateVMRequest) SetNuma14

func (o *CreateVMRequest) SetNuma14(v string)

SetNuma14 gets a reference to the given string and assigns it to the Numa14 field.

func (*CreateVMRequest) SetNuma15

func (o *CreateVMRequest) SetNuma15(v string)

SetNuma15 gets a reference to the given string and assigns it to the Numa15 field.

func (*CreateVMRequest) SetNuma16

func (o *CreateVMRequest) SetNuma16(v string)

SetNuma16 gets a reference to the given string and assigns it to the Numa16 field.

func (*CreateVMRequest) SetNuma17

func (o *CreateVMRequest) SetNuma17(v string)

SetNuma17 gets a reference to the given string and assigns it to the Numa17 field.

func (*CreateVMRequest) SetNuma18

func (o *CreateVMRequest) SetNuma18(v string)

SetNuma18 gets a reference to the given string and assigns it to the Numa18 field.

func (*CreateVMRequest) SetNuma19

func (o *CreateVMRequest) SetNuma19(v string)

SetNuma19 gets a reference to the given string and assigns it to the Numa19 field.

func (*CreateVMRequest) SetNuma2

func (o *CreateVMRequest) SetNuma2(v string)

SetNuma2 gets a reference to the given string and assigns it to the Numa2 field.

func (*CreateVMRequest) SetNuma20

func (o *CreateVMRequest) SetNuma20(v string)

SetNuma20 gets a reference to the given string and assigns it to the Numa20 field.

func (*CreateVMRequest) SetNuma21

func (o *CreateVMRequest) SetNuma21(v string)

SetNuma21 gets a reference to the given string and assigns it to the Numa21 field.

func (*CreateVMRequest) SetNuma22

func (o *CreateVMRequest) SetNuma22(v string)

SetNuma22 gets a reference to the given string and assigns it to the Numa22 field.

func (*CreateVMRequest) SetNuma23

func (o *CreateVMRequest) SetNuma23(v string)

SetNuma23 gets a reference to the given string and assigns it to the Numa23 field.

func (*CreateVMRequest) SetNuma24

func (o *CreateVMRequest) SetNuma24(v string)

SetNuma24 gets a reference to the given string and assigns it to the Numa24 field.

func (*CreateVMRequest) SetNuma25

func (o *CreateVMRequest) SetNuma25(v string)

SetNuma25 gets a reference to the given string and assigns it to the Numa25 field.

func (*CreateVMRequest) SetNuma26

func (o *CreateVMRequest) SetNuma26(v string)

SetNuma26 gets a reference to the given string and assigns it to the Numa26 field.

func (*CreateVMRequest) SetNuma27

func (o *CreateVMRequest) SetNuma27(v string)

SetNuma27 gets a reference to the given string and assigns it to the Numa27 field.

func (*CreateVMRequest) SetNuma28

func (o *CreateVMRequest) SetNuma28(v string)

SetNuma28 gets a reference to the given string and assigns it to the Numa28 field.

func (*CreateVMRequest) SetNuma29

func (o *CreateVMRequest) SetNuma29(v string)

SetNuma29 gets a reference to the given string and assigns it to the Numa29 field.

func (*CreateVMRequest) SetNuma3

func (o *CreateVMRequest) SetNuma3(v string)

SetNuma3 gets a reference to the given string and assigns it to the Numa3 field.

func (*CreateVMRequest) SetNuma4

func (o *CreateVMRequest) SetNuma4(v string)

SetNuma4 gets a reference to the given string and assigns it to the Numa4 field.

func (*CreateVMRequest) SetNuma5

func (o *CreateVMRequest) SetNuma5(v string)

SetNuma5 gets a reference to the given string and assigns it to the Numa5 field.

func (*CreateVMRequest) SetNuma6

func (o *CreateVMRequest) SetNuma6(v string)

SetNuma6 gets a reference to the given string and assigns it to the Numa6 field.

func (*CreateVMRequest) SetNuma7

func (o *CreateVMRequest) SetNuma7(v string)

SetNuma7 gets a reference to the given string and assigns it to the Numa7 field.

func (*CreateVMRequest) SetNuma8

func (o *CreateVMRequest) SetNuma8(v string)

SetNuma8 gets a reference to the given string and assigns it to the Numa8 field.

func (*CreateVMRequest) SetNuma9

func (o *CreateVMRequest) SetNuma9(v string)

SetNuma9 gets a reference to the given string and assigns it to the Numa9 field.

func (*CreateVMRequest) SetOnboot

func (o *CreateVMRequest) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*CreateVMRequest) SetOstype

func (o *CreateVMRequest) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*CreateVMRequest) SetParallel0

func (o *CreateVMRequest) SetParallel0(v string)

SetParallel0 gets a reference to the given string and assigns it to the Parallel0 field.

func (*CreateVMRequest) SetParallel1

func (o *CreateVMRequest) SetParallel1(v string)

SetParallel1 gets a reference to the given string and assigns it to the Parallel1 field.

func (*CreateVMRequest) SetParallel2

func (o *CreateVMRequest) SetParallel2(v string)

SetParallel2 gets a reference to the given string and assigns it to the Parallel2 field.

func (*CreateVMRequest) SetParallel3

func (o *CreateVMRequest) SetParallel3(v string)

SetParallel3 gets a reference to the given string and assigns it to the Parallel3 field.

func (*CreateVMRequest) SetPool

func (o *CreateVMRequest) SetPool(v string)

SetPool gets a reference to the given string and assigns it to the Pool field.

func (*CreateVMRequest) SetProtection

func (o *CreateVMRequest) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*CreateVMRequest) SetReboot

func (o *CreateVMRequest) SetReboot(v int32)

SetReboot gets a reference to the given int32 and assigns it to the Reboot field.

func (*CreateVMRequest) SetRng0

func (o *CreateVMRequest) SetRng0(v string)

SetRng0 gets a reference to the given string and assigns it to the Rng0 field.

func (*CreateVMRequest) SetSata0

func (o *CreateVMRequest) SetSata0(v string)

SetSata0 gets a reference to the given string and assigns it to the Sata0 field.

func (*CreateVMRequest) SetSata1

func (o *CreateVMRequest) SetSata1(v string)

SetSata1 gets a reference to the given string and assigns it to the Sata1 field.

func (*CreateVMRequest) SetSata2

func (o *CreateVMRequest) SetSata2(v string)

SetSata2 gets a reference to the given string and assigns it to the Sata2 field.

func (*CreateVMRequest) SetSata3

func (o *CreateVMRequest) SetSata3(v string)

SetSata3 gets a reference to the given string and assigns it to the Sata3 field.

func (*CreateVMRequest) SetSata4

func (o *CreateVMRequest) SetSata4(v string)

SetSata4 gets a reference to the given string and assigns it to the Sata4 field.

func (*CreateVMRequest) SetSata5

func (o *CreateVMRequest) SetSata5(v string)

SetSata5 gets a reference to the given string and assigns it to the Sata5 field.

func (*CreateVMRequest) SetScsi0

func (o *CreateVMRequest) SetScsi0(v string)

SetScsi0 gets a reference to the given string and assigns it to the Scsi0 field.

func (*CreateVMRequest) SetScsi1

func (o *CreateVMRequest) SetScsi1(v string)

SetScsi1 gets a reference to the given string and assigns it to the Scsi1 field.

func (*CreateVMRequest) SetScsi10

func (o *CreateVMRequest) SetScsi10(v string)

SetScsi10 gets a reference to the given string and assigns it to the Scsi10 field.

func (*CreateVMRequest) SetScsi11

func (o *CreateVMRequest) SetScsi11(v string)

SetScsi11 gets a reference to the given string and assigns it to the Scsi11 field.

func (*CreateVMRequest) SetScsi12

func (o *CreateVMRequest) SetScsi12(v string)

SetScsi12 gets a reference to the given string and assigns it to the Scsi12 field.

func (*CreateVMRequest) SetScsi13

func (o *CreateVMRequest) SetScsi13(v string)

SetScsi13 gets a reference to the given string and assigns it to the Scsi13 field.

func (*CreateVMRequest) SetScsi14

func (o *CreateVMRequest) SetScsi14(v string)

SetScsi14 gets a reference to the given string and assigns it to the Scsi14 field.

func (*CreateVMRequest) SetScsi15

func (o *CreateVMRequest) SetScsi15(v string)

SetScsi15 gets a reference to the given string and assigns it to the Scsi15 field.

func (*CreateVMRequest) SetScsi16

func (o *CreateVMRequest) SetScsi16(v string)

SetScsi16 gets a reference to the given string and assigns it to the Scsi16 field.

func (*CreateVMRequest) SetScsi17

func (o *CreateVMRequest) SetScsi17(v string)

SetScsi17 gets a reference to the given string and assigns it to the Scsi17 field.

func (*CreateVMRequest) SetScsi18

func (o *CreateVMRequest) SetScsi18(v string)

SetScsi18 gets a reference to the given string and assigns it to the Scsi18 field.

func (*CreateVMRequest) SetScsi19

func (o *CreateVMRequest) SetScsi19(v string)

SetScsi19 gets a reference to the given string and assigns it to the Scsi19 field.

func (*CreateVMRequest) SetScsi2

func (o *CreateVMRequest) SetScsi2(v string)

SetScsi2 gets a reference to the given string and assigns it to the Scsi2 field.

func (*CreateVMRequest) SetScsi20

func (o *CreateVMRequest) SetScsi20(v string)

SetScsi20 gets a reference to the given string and assigns it to the Scsi20 field.

func (*CreateVMRequest) SetScsi21

func (o *CreateVMRequest) SetScsi21(v string)

SetScsi21 gets a reference to the given string and assigns it to the Scsi21 field.

func (*CreateVMRequest) SetScsi22

func (o *CreateVMRequest) SetScsi22(v string)

SetScsi22 gets a reference to the given string and assigns it to the Scsi22 field.

func (*CreateVMRequest) SetScsi23

func (o *CreateVMRequest) SetScsi23(v string)

SetScsi23 gets a reference to the given string and assigns it to the Scsi23 field.

func (*CreateVMRequest) SetScsi24

func (o *CreateVMRequest) SetScsi24(v string)

SetScsi24 gets a reference to the given string and assigns it to the Scsi24 field.

func (*CreateVMRequest) SetScsi25

func (o *CreateVMRequest) SetScsi25(v string)

SetScsi25 gets a reference to the given string and assigns it to the Scsi25 field.

func (*CreateVMRequest) SetScsi26

func (o *CreateVMRequest) SetScsi26(v string)

SetScsi26 gets a reference to the given string and assigns it to the Scsi26 field.

func (*CreateVMRequest) SetScsi27

func (o *CreateVMRequest) SetScsi27(v string)

SetScsi27 gets a reference to the given string and assigns it to the Scsi27 field.

func (*CreateVMRequest) SetScsi28

func (o *CreateVMRequest) SetScsi28(v string)

SetScsi28 gets a reference to the given string and assigns it to the Scsi28 field.

func (*CreateVMRequest) SetScsi29

func (o *CreateVMRequest) SetScsi29(v string)

SetScsi29 gets a reference to the given string and assigns it to the Scsi29 field.

func (*CreateVMRequest) SetScsi3

func (o *CreateVMRequest) SetScsi3(v string)

SetScsi3 gets a reference to the given string and assigns it to the Scsi3 field.

func (*CreateVMRequest) SetScsi4

func (o *CreateVMRequest) SetScsi4(v string)

SetScsi4 gets a reference to the given string and assigns it to the Scsi4 field.

func (*CreateVMRequest) SetScsi5

func (o *CreateVMRequest) SetScsi5(v string)

SetScsi5 gets a reference to the given string and assigns it to the Scsi5 field.

func (*CreateVMRequest) SetScsi6

func (o *CreateVMRequest) SetScsi6(v string)

SetScsi6 gets a reference to the given string and assigns it to the Scsi6 field.

func (*CreateVMRequest) SetScsi7

func (o *CreateVMRequest) SetScsi7(v string)

SetScsi7 gets a reference to the given string and assigns it to the Scsi7 field.

func (*CreateVMRequest) SetScsi8

func (o *CreateVMRequest) SetScsi8(v string)

SetScsi8 gets a reference to the given string and assigns it to the Scsi8 field.

func (*CreateVMRequest) SetScsi9

func (o *CreateVMRequest) SetScsi9(v string)

SetScsi9 gets a reference to the given string and assigns it to the Scsi9 field.

func (*CreateVMRequest) SetScsihw

func (o *CreateVMRequest) SetScsihw(v string)

SetScsihw gets a reference to the given string and assigns it to the Scsihw field.

func (*CreateVMRequest) SetSearchdomain

func (o *CreateVMRequest) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*CreateVMRequest) SetSerial0

func (o *CreateVMRequest) SetSerial0(v string)

SetSerial0 gets a reference to the given string and assigns it to the Serial0 field.

func (*CreateVMRequest) SetSerial1

func (o *CreateVMRequest) SetSerial1(v string)

SetSerial1 gets a reference to the given string and assigns it to the Serial1 field.

func (*CreateVMRequest) SetSerial2

func (o *CreateVMRequest) SetSerial2(v string)

SetSerial2 gets a reference to the given string and assigns it to the Serial2 field.

func (*CreateVMRequest) SetSerial3

func (o *CreateVMRequest) SetSerial3(v string)

SetSerial3 gets a reference to the given string and assigns it to the Serial3 field.

func (*CreateVMRequest) SetShares

func (o *CreateVMRequest) SetShares(v int64)

SetShares gets a reference to the given int64 and assigns it to the Shares field.

func (*CreateVMRequest) SetSmbios1

func (o *CreateVMRequest) SetSmbios1(v string)

SetSmbios1 gets a reference to the given string and assigns it to the Smbios1 field.

func (*CreateVMRequest) SetSmp

func (o *CreateVMRequest) SetSmp(v int64)

SetSmp gets a reference to the given int64 and assigns it to the Smp field.

func (*CreateVMRequest) SetSockets

func (o *CreateVMRequest) SetSockets(v int64)

SetSockets gets a reference to the given int64 and assigns it to the Sockets field.

func (*CreateVMRequest) SetSpiceEnhancements

func (o *CreateVMRequest) SetSpiceEnhancements(v string)

SetSpiceEnhancements gets a reference to the given string and assigns it to the SpiceEnhancements field.

func (*CreateVMRequest) SetSshkeys

func (o *CreateVMRequest) SetSshkeys(v string)

SetSshkeys gets a reference to the given string and assigns it to the Sshkeys field.

func (*CreateVMRequest) SetStart

func (o *CreateVMRequest) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*CreateVMRequest) SetStartdate

func (o *CreateVMRequest) SetStartdate(v string)

SetStartdate gets a reference to the given string and assigns it to the Startdate field.

func (*CreateVMRequest) SetStartup

func (o *CreateVMRequest) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*CreateVMRequest) SetStorage

func (o *CreateVMRequest) SetStorage(v string)

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (*CreateVMRequest) SetTablet

func (o *CreateVMRequest) SetTablet(v int32)

SetTablet gets a reference to the given int32 and assigns it to the Tablet field.

func (*CreateVMRequest) SetTags

func (o *CreateVMRequest) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*CreateVMRequest) SetTdf

func (o *CreateVMRequest) SetTdf(v int32)

SetTdf gets a reference to the given int32 and assigns it to the Tdf field.

func (*CreateVMRequest) SetTemplate

func (o *CreateVMRequest) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*CreateVMRequest) SetTpmstate0

func (o *CreateVMRequest) SetTpmstate0(v string)

SetTpmstate0 gets a reference to the given string and assigns it to the Tpmstate0 field.

func (*CreateVMRequest) SetUnique

func (o *CreateVMRequest) SetUnique(v int32)

SetUnique gets a reference to the given int32 and assigns it to the Unique field.

func (*CreateVMRequest) SetUnused0

func (o *CreateVMRequest) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*CreateVMRequest) SetUnused1

func (o *CreateVMRequest) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*CreateVMRequest) SetUnused10

func (o *CreateVMRequest) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*CreateVMRequest) SetUnused11

func (o *CreateVMRequest) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*CreateVMRequest) SetUnused12

func (o *CreateVMRequest) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*CreateVMRequest) SetUnused13

func (o *CreateVMRequest) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*CreateVMRequest) SetUnused14

func (o *CreateVMRequest) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*CreateVMRequest) SetUnused15

func (o *CreateVMRequest) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*CreateVMRequest) SetUnused16

func (o *CreateVMRequest) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*CreateVMRequest) SetUnused17

func (o *CreateVMRequest) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*CreateVMRequest) SetUnused18

func (o *CreateVMRequest) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*CreateVMRequest) SetUnused19

func (o *CreateVMRequest) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*CreateVMRequest) SetUnused2

func (o *CreateVMRequest) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*CreateVMRequest) SetUnused20

func (o *CreateVMRequest) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*CreateVMRequest) SetUnused21

func (o *CreateVMRequest) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*CreateVMRequest) SetUnused22

func (o *CreateVMRequest) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*CreateVMRequest) SetUnused23

func (o *CreateVMRequest) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*CreateVMRequest) SetUnused24

func (o *CreateVMRequest) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*CreateVMRequest) SetUnused25

func (o *CreateVMRequest) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*CreateVMRequest) SetUnused26

func (o *CreateVMRequest) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*CreateVMRequest) SetUnused27

func (o *CreateVMRequest) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*CreateVMRequest) SetUnused28

func (o *CreateVMRequest) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*CreateVMRequest) SetUnused29

func (o *CreateVMRequest) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*CreateVMRequest) SetUnused3

func (o *CreateVMRequest) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*CreateVMRequest) SetUnused4

func (o *CreateVMRequest) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*CreateVMRequest) SetUnused5

func (o *CreateVMRequest) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*CreateVMRequest) SetUnused6

func (o *CreateVMRequest) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*CreateVMRequest) SetUnused7

func (o *CreateVMRequest) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*CreateVMRequest) SetUnused8

func (o *CreateVMRequest) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*CreateVMRequest) SetUnused9

func (o *CreateVMRequest) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (*CreateVMRequest) SetUsb0

func (o *CreateVMRequest) SetUsb0(v string)

SetUsb0 gets a reference to the given string and assigns it to the Usb0 field.

func (*CreateVMRequest) SetUsb1

func (o *CreateVMRequest) SetUsb1(v string)

SetUsb1 gets a reference to the given string and assigns it to the Usb1 field.

func (*CreateVMRequest) SetUsb2

func (o *CreateVMRequest) SetUsb2(v string)

SetUsb2 gets a reference to the given string and assigns it to the Usb2 field.

func (*CreateVMRequest) SetUsb3

func (o *CreateVMRequest) SetUsb3(v string)

SetUsb3 gets a reference to the given string and assigns it to the Usb3 field.

func (*CreateVMRequest) SetVcpus

func (o *CreateVMRequest) SetVcpus(v int64)

SetVcpus gets a reference to the given int64 and assigns it to the Vcpus field.

func (*CreateVMRequest) SetVga

func (o *CreateVMRequest) SetVga(v string)

SetVga gets a reference to the given string and assigns it to the Vga field.

func (*CreateVMRequest) SetVirtio0

func (o *CreateVMRequest) SetVirtio0(v string)

SetVirtio0 gets a reference to the given string and assigns it to the Virtio0 field.

func (*CreateVMRequest) SetVirtio1

func (o *CreateVMRequest) SetVirtio1(v string)

SetVirtio1 gets a reference to the given string and assigns it to the Virtio1 field.

func (*CreateVMRequest) SetVirtio10

func (o *CreateVMRequest) SetVirtio10(v string)

SetVirtio10 gets a reference to the given string and assigns it to the Virtio10 field.

func (*CreateVMRequest) SetVirtio11

func (o *CreateVMRequest) SetVirtio11(v string)

SetVirtio11 gets a reference to the given string and assigns it to the Virtio11 field.

func (*CreateVMRequest) SetVirtio12

func (o *CreateVMRequest) SetVirtio12(v string)

SetVirtio12 gets a reference to the given string and assigns it to the Virtio12 field.

func (*CreateVMRequest) SetVirtio13

func (o *CreateVMRequest) SetVirtio13(v string)

SetVirtio13 gets a reference to the given string and assigns it to the Virtio13 field.

func (*CreateVMRequest) SetVirtio14

func (o *CreateVMRequest) SetVirtio14(v string)

SetVirtio14 gets a reference to the given string and assigns it to the Virtio14 field.

func (*CreateVMRequest) SetVirtio15

func (o *CreateVMRequest) SetVirtio15(v string)

SetVirtio15 gets a reference to the given string and assigns it to the Virtio15 field.

func (*CreateVMRequest) SetVirtio2

func (o *CreateVMRequest) SetVirtio2(v string)

SetVirtio2 gets a reference to the given string and assigns it to the Virtio2 field.

func (*CreateVMRequest) SetVirtio3

func (o *CreateVMRequest) SetVirtio3(v string)

SetVirtio3 gets a reference to the given string and assigns it to the Virtio3 field.

func (*CreateVMRequest) SetVirtio4

func (o *CreateVMRequest) SetVirtio4(v string)

SetVirtio4 gets a reference to the given string and assigns it to the Virtio4 field.

func (*CreateVMRequest) SetVirtio5

func (o *CreateVMRequest) SetVirtio5(v string)

SetVirtio5 gets a reference to the given string and assigns it to the Virtio5 field.

func (*CreateVMRequest) SetVirtio6

func (o *CreateVMRequest) SetVirtio6(v string)

SetVirtio6 gets a reference to the given string and assigns it to the Virtio6 field.

func (*CreateVMRequest) SetVirtio7

func (o *CreateVMRequest) SetVirtio7(v string)

SetVirtio7 gets a reference to the given string and assigns it to the Virtio7 field.

func (*CreateVMRequest) SetVirtio8

func (o *CreateVMRequest) SetVirtio8(v string)

SetVirtio8 gets a reference to the given string and assigns it to the Virtio8 field.

func (*CreateVMRequest) SetVirtio9

func (o *CreateVMRequest) SetVirtio9(v string)

SetVirtio9 gets a reference to the given string and assigns it to the Virtio9 field.

func (*CreateVMRequest) SetVmgenid

func (o *CreateVMRequest) SetVmgenid(v string)

SetVmgenid gets a reference to the given string and assigns it to the Vmgenid field.

func (*CreateVMRequest) SetVmid

func (o *CreateVMRequest) SetVmid(v int64)

SetVmid sets field value

func (*CreateVMRequest) SetVmstatestorage

func (o *CreateVMRequest) SetVmstatestorage(v string)

SetVmstatestorage gets a reference to the given string and assigns it to the Vmstatestorage field.

func (*CreateVMRequest) SetWatchdog

func (o *CreateVMRequest) SetWatchdog(v string)

SetWatchdog gets a reference to the given string and assigns it to the Watchdog field.

func (CreateVMRequest) ToMap

func (o CreateVMRequest) ToMap() (map[string]interface{}, error)

func (*CreateVMRequest) UnmarshalJSON added in v1.0.9

func (o *CreateVMRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateVMSnapshotRequest

type CreateVMSnapshotRequest struct {
	// A textual description or comment.
	Description *string `json:"description,omitempty"`
	// The name of the snapshot.
	Snapname string `json:"snapname"`
	// Save the vmstate
	Vmstate *int32 `json:"vmstate,omitempty"`
}

CreateVMSnapshotRequest struct for CreateVMSnapshotRequest

func NewCreateVMSnapshotRequest

func NewCreateVMSnapshotRequest(snapname string) *CreateVMSnapshotRequest

NewCreateVMSnapshotRequest instantiates a new CreateVMSnapshotRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateVMSnapshotRequestWithDefaults

func NewCreateVMSnapshotRequestWithDefaults() *CreateVMSnapshotRequest

NewCreateVMSnapshotRequestWithDefaults instantiates a new CreateVMSnapshotRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateVMSnapshotRequest) GetDescription

func (o *CreateVMSnapshotRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateVMSnapshotRequest) GetDescriptionOk

func (o *CreateVMSnapshotRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMSnapshotRequest) GetSnapname

func (o *CreateVMSnapshotRequest) GetSnapname() string

GetSnapname returns the Snapname field value

func (*CreateVMSnapshotRequest) GetSnapnameOk

func (o *CreateVMSnapshotRequest) GetSnapnameOk() (*string, bool)

GetSnapnameOk returns a tuple with the Snapname field value and a boolean to check if the value has been set.

func (*CreateVMSnapshotRequest) GetVmstate

func (o *CreateVMSnapshotRequest) GetVmstate() int32

GetVmstate returns the Vmstate field value if set, zero value otherwise.

func (*CreateVMSnapshotRequest) GetVmstateOk

func (o *CreateVMSnapshotRequest) GetVmstateOk() (*int32, bool)

GetVmstateOk returns a tuple with the Vmstate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVMSnapshotRequest) HasDescription

func (o *CreateVMSnapshotRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateVMSnapshotRequest) HasVmstate

func (o *CreateVMSnapshotRequest) HasVmstate() bool

HasVmstate returns a boolean if a field has been set.

func (CreateVMSnapshotRequest) MarshalJSON

func (o CreateVMSnapshotRequest) MarshalJSON() ([]byte, error)

func (*CreateVMSnapshotRequest) SetDescription

func (o *CreateVMSnapshotRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateVMSnapshotRequest) SetSnapname

func (o *CreateVMSnapshotRequest) SetSnapname(v string)

SetSnapname sets field value

func (*CreateVMSnapshotRequest) SetVmstate

func (o *CreateVMSnapshotRequest) SetVmstate(v int32)

SetVmstate gets a reference to the given int32 and assigns it to the Vmstate field.

func (CreateVMSnapshotRequest) ToMap

func (o CreateVMSnapshotRequest) ToMap() (map[string]interface{}, error)

func (*CreateVMSnapshotRequest) UnmarshalJSON added in v1.0.9

func (o *CreateVMSnapshotRequest) UnmarshalJSON(bytes []byte) (err error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetClusterConfigNodes200Response

type GetClusterConfigNodes200Response struct {
	Data   []GetClusterConfigNodes200ResponseDataInner `json:"data,omitempty"`
	Errors []string                                    `json:"errors,omitempty"`
}

GetClusterConfigNodes200Response struct for GetClusterConfigNodes200Response

func NewGetClusterConfigNodes200Response

func NewGetClusterConfigNodes200Response() *GetClusterConfigNodes200Response

NewGetClusterConfigNodes200Response instantiates a new GetClusterConfigNodes200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetClusterConfigNodes200ResponseWithDefaults

func NewGetClusterConfigNodes200ResponseWithDefaults() *GetClusterConfigNodes200Response

NewGetClusterConfigNodes200ResponseWithDefaults instantiates a new GetClusterConfigNodes200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetClusterConfigNodes200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetClusterConfigNodes200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterConfigNodes200Response) GetErrors

func (o *GetClusterConfigNodes200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetClusterConfigNodes200Response) GetErrorsOk

func (o *GetClusterConfigNodes200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterConfigNodes200Response) HasData

HasData returns a boolean if a field has been set.

func (*GetClusterConfigNodes200Response) HasErrors

func (o *GetClusterConfigNodes200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetClusterConfigNodes200Response) MarshalJSON

func (o GetClusterConfigNodes200Response) MarshalJSON() ([]byte, error)

func (*GetClusterConfigNodes200Response) SetData

SetData gets a reference to the given []GetClusterConfigNodes200ResponseDataInner and assigns it to the Data field.

func (*GetClusterConfigNodes200Response) SetErrors

func (o *GetClusterConfigNodes200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetClusterConfigNodes200Response) ToMap

func (o GetClusterConfigNodes200Response) ToMap() (map[string]interface{}, error)

type GetClusterConfigNodes200ResponseDataInner

type GetClusterConfigNodes200ResponseDataInner struct {
	Node *string `json:"node,omitempty"`
}

GetClusterConfigNodes200ResponseDataInner struct for GetClusterConfigNodes200ResponseDataInner

func NewGetClusterConfigNodes200ResponseDataInner

func NewGetClusterConfigNodes200ResponseDataInner() *GetClusterConfigNodes200ResponseDataInner

NewGetClusterConfigNodes200ResponseDataInner instantiates a new GetClusterConfigNodes200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetClusterConfigNodes200ResponseDataInnerWithDefaults

func NewGetClusterConfigNodes200ResponseDataInnerWithDefaults() *GetClusterConfigNodes200ResponseDataInner

NewGetClusterConfigNodes200ResponseDataInnerWithDefaults instantiates a new GetClusterConfigNodes200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetClusterConfigNodes200ResponseDataInner) GetNode

GetNode returns the Node field value if set, zero value otherwise.

func (*GetClusterConfigNodes200ResponseDataInner) GetNodeOk

GetNodeOk returns a tuple with the Node field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterConfigNodes200ResponseDataInner) HasNode

HasNode returns a boolean if a field has been set.

func (GetClusterConfigNodes200ResponseDataInner) MarshalJSON

func (*GetClusterConfigNodes200ResponseDataInner) SetNode

SetNode gets a reference to the given string and assigns it to the Node field.

func (GetClusterConfigNodes200ResponseDataInner) ToMap

func (o GetClusterConfigNodes200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetClusterNextid200Response

type GetClusterNextid200Response struct {
	// The next free VMID.
	Data   *string  `json:"data,omitempty"`
	Errors []string `json:"errors,omitempty"`
}

GetClusterNextid200Response struct for GetClusterNextid200Response

func NewGetClusterNextid200Response

func NewGetClusterNextid200Response() *GetClusterNextid200Response

NewGetClusterNextid200Response instantiates a new GetClusterNextid200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetClusterNextid200ResponseWithDefaults

func NewGetClusterNextid200ResponseWithDefaults() *GetClusterNextid200Response

NewGetClusterNextid200ResponseWithDefaults instantiates a new GetClusterNextid200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetClusterNextid200Response) GetData

func (o *GetClusterNextid200Response) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*GetClusterNextid200Response) GetDataOk

func (o *GetClusterNextid200Response) GetDataOk() (*string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterNextid200Response) GetErrors

func (o *GetClusterNextid200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetClusterNextid200Response) GetErrorsOk

func (o *GetClusterNextid200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterNextid200Response) HasData

func (o *GetClusterNextid200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetClusterNextid200Response) HasErrors

func (o *GetClusterNextid200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetClusterNextid200Response) MarshalJSON

func (o GetClusterNextid200Response) MarshalJSON() ([]byte, error)

func (*GetClusterNextid200Response) SetData

func (o *GetClusterNextid200Response) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*GetClusterNextid200Response) SetErrors

func (o *GetClusterNextid200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetClusterNextid200Response) ToMap

func (o GetClusterNextid200Response) ToMap() (map[string]interface{}, error)

type GetClusterResources200Response

type GetClusterResources200Response struct {
	Data   []GetClusterResources200ResponseDataInner `json:"data,omitempty"`
	Errors []string                                  `json:"errors,omitempty"`
}

GetClusterResources200Response struct for GetClusterResources200Response

func NewGetClusterResources200Response

func NewGetClusterResources200Response() *GetClusterResources200Response

NewGetClusterResources200Response instantiates a new GetClusterResources200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetClusterResources200ResponseWithDefaults

func NewGetClusterResources200ResponseWithDefaults() *GetClusterResources200Response

NewGetClusterResources200ResponseWithDefaults instantiates a new GetClusterResources200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetClusterResources200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetClusterResources200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200Response) GetErrors

func (o *GetClusterResources200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetClusterResources200Response) GetErrorsOk

func (o *GetClusterResources200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200Response) HasData

func (o *GetClusterResources200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetClusterResources200Response) HasErrors

func (o *GetClusterResources200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetClusterResources200Response) MarshalJSON

func (o GetClusterResources200Response) MarshalJSON() ([]byte, error)

func (*GetClusterResources200Response) SetData

SetData gets a reference to the given []GetClusterResources200ResponseDataInner and assigns it to the Data field.

func (*GetClusterResources200Response) SetErrors

func (o *GetClusterResources200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetClusterResources200Response) ToMap

func (o GetClusterResources200Response) ToMap() (map[string]interface{}, error)

type GetClusterResources200ResponseDataInner

type GetClusterResources200ResponseDataInner struct {
	// The cgroup mode the node operates under (when type == node).
	CgroupMode *int64 `json:"cgroup-mode,omitempty"`
	// Allowed storage content types (when type == storage).
	Content *string `json:"content,omitempty"`
	// CPU utilization (when type in node,qemu,lxc).
	Cpu *float32 `json:"cpu,omitempty"`
	// Used disk space in bytes (when type in storage), used root image spave for VMs (type in qemu,lxc).
	Disk *int64 `json:"disk,omitempty"`
	// HA service status (for HA managed VMs).
	Hastate *string `json:"hastate,omitempty"`
	// Resource id.
	Id *string `json:"id,omitempty"`
	// Support level (when type == node).
	Level *string `json:"level,omitempty"`
	// Number of available CPUs (when type in node,qemu,lxc).
	Maxcpu *float32 `json:"maxcpu,omitempty"`
	// Storage size in bytes (when type in storage), root image size for VMs (type in qemu,lxc).
	Maxdisk *int64 `json:"maxdisk,omitempty"`
	// Number of available memory in bytes (when type in node,qemu,lxc).
	Maxmem *int64 `json:"maxmem,omitempty"`
	// Used memory in bytes (when type in node,qemu,lxc).
	Mem *int64 `json:"mem,omitempty"`
	// Name of the resource.
	Name *string `json:"name,omitempty"`
	// The cluster node name (when type in node,storage,qemu,lxc).
	Node *string `json:"node,omitempty"`
	// More specific type, if available.
	Plugintype *string `json:"plugintype,omitempty"`
	// The pool name (when type in pool,qemu,lxc).
	Pool *string `json:"pool,omitempty"`
	// Resource type dependent status.
	Status *string `json:"status,omitempty"`
	// The storage identifier (when type == storage).
	Storage *string `json:"storage,omitempty"`
	// Resource type.
	Type *string `json:"type,omitempty"`
	// Node uptime in seconds (when type in node,qemu,lxc).
	Uptime *int64 `json:"uptime,omitempty"`
	// The numerical vmid (when type in qemu,lxc).
	Vmid *int64 `json:"vmid,omitempty"`
	// tbd.
	Diskread *int64 `json:"diskread,omitempty"`
	// tbd.
	Diskwrite *int64 `json:"diskwrite,omitempty"`
	// locked or notexisting
	Lock *string `json:"lock,omitempty"`
	// tbd.
	Netin *int64 `json:"netin,omitempty"`
	// tbd.
	Netout *int64 `json:"netout,omitempty"`
	// tbd.
	Template *int64 `json:"template,omitempty"`
}

GetClusterResources200ResponseDataInner struct for GetClusterResources200ResponseDataInner

func NewGetClusterResources200ResponseDataInner

func NewGetClusterResources200ResponseDataInner() *GetClusterResources200ResponseDataInner

NewGetClusterResources200ResponseDataInner instantiates a new GetClusterResources200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetClusterResources200ResponseDataInnerWithDefaults

func NewGetClusterResources200ResponseDataInnerWithDefaults() *GetClusterResources200ResponseDataInner

NewGetClusterResources200ResponseDataInnerWithDefaults instantiates a new GetClusterResources200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetClusterResources200ResponseDataInner) GetCgroupMode

GetCgroupMode returns the CgroupMode field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetCgroupModeOk

func (o *GetClusterResources200ResponseDataInner) GetCgroupModeOk() (*int64, bool)

GetCgroupModeOk returns a tuple with the CgroupMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetContent

GetContent returns the Content field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetContentOk

func (o *GetClusterResources200ResponseDataInner) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetCpu

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetCpuOk

GetCpuOk returns a tuple with the Cpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetDisk

GetDisk returns the Disk field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetDiskOk

GetDiskOk returns a tuple with the Disk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetDiskread

GetDiskread returns the Diskread field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetDiskreadOk

func (o *GetClusterResources200ResponseDataInner) GetDiskreadOk() (*int64, bool)

GetDiskreadOk returns a tuple with the Diskread field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetDiskwrite

GetDiskwrite returns the Diskwrite field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetDiskwriteOk

func (o *GetClusterResources200ResponseDataInner) GetDiskwriteOk() (*int64, bool)

GetDiskwriteOk returns a tuple with the Diskwrite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetHastate

GetHastate returns the Hastate field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetHastateOk

func (o *GetClusterResources200ResponseDataInner) GetHastateOk() (*string, bool)

GetHastateOk returns a tuple with the Hastate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetLevel

GetLevel returns the Level field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetLevelOk

GetLevelOk returns a tuple with the Level field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetLock

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetLockOk

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetMaxcpu

GetMaxcpu returns the Maxcpu field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetMaxcpuOk

GetMaxcpuOk returns a tuple with the Maxcpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetMaxdisk

GetMaxdisk returns the Maxdisk field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetMaxdiskOk

func (o *GetClusterResources200ResponseDataInner) GetMaxdiskOk() (*int64, bool)

GetMaxdiskOk returns a tuple with the Maxdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetMaxmem

GetMaxmem returns the Maxmem field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetMaxmemOk

func (o *GetClusterResources200ResponseDataInner) GetMaxmemOk() (*int64, bool)

GetMaxmemOk returns a tuple with the Maxmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetMem

GetMem returns the Mem field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetMemOk

GetMemOk returns a tuple with the Mem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetNetin

GetNetin returns the Netin field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetNetinOk

GetNetinOk returns a tuple with the Netin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetNetout

GetNetout returns the Netout field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetNetoutOk

func (o *GetClusterResources200ResponseDataInner) GetNetoutOk() (*int64, bool)

GetNetoutOk returns a tuple with the Netout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetNode

GetNode returns the Node field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetNodeOk

GetNodeOk returns a tuple with the Node field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetPlugintype

GetPlugintype returns the Plugintype field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetPlugintypeOk

func (o *GetClusterResources200ResponseDataInner) GetPlugintypeOk() (*string, bool)

GetPlugintypeOk returns a tuple with the Plugintype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetPool

GetPool returns the Pool field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetPoolOk

GetPoolOk returns a tuple with the Pool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetStorage

GetStorage returns the Storage field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetStorageOk

func (o *GetClusterResources200ResponseDataInner) GetStorageOk() (*string, bool)

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetTemplate

GetTemplate returns the Template field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetTemplateOk

func (o *GetClusterResources200ResponseDataInner) GetTemplateOk() (*int64, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetTypeOk

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetUptime

GetUptime returns the Uptime field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetUptimeOk

func (o *GetClusterResources200ResponseDataInner) GetUptimeOk() (*int64, bool)

GetUptimeOk returns a tuple with the Uptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) GetVmid

GetVmid returns the Vmid field value if set, zero value otherwise.

func (*GetClusterResources200ResponseDataInner) GetVmidOk

GetVmidOk returns a tuple with the Vmid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetClusterResources200ResponseDataInner) HasCgroupMode

func (o *GetClusterResources200ResponseDataInner) HasCgroupMode() bool

HasCgroupMode returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasContent

HasContent returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasCpu

HasCpu returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasDisk

HasDisk returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasDiskread

HasDiskread returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasDiskwrite

HasDiskwrite returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasHastate

HasHastate returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasId

HasId returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasLevel

HasLevel returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasLock

HasLock returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasMaxcpu

HasMaxcpu returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasMaxdisk

HasMaxdisk returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasMaxmem

HasMaxmem returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasMem

HasMem returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasNetin

HasNetin returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasNetout

HasNetout returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasNode

HasNode returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasPlugintype

func (o *GetClusterResources200ResponseDataInner) HasPlugintype() bool

HasPlugintype returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasPool

HasPool returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasStorage

HasStorage returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasTemplate

HasTemplate returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasType

HasType returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasUptime

HasUptime returns a boolean if a field has been set.

func (*GetClusterResources200ResponseDataInner) HasVmid

HasVmid returns a boolean if a field has been set.

func (GetClusterResources200ResponseDataInner) MarshalJSON

func (o GetClusterResources200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetClusterResources200ResponseDataInner) SetCgroupMode

func (o *GetClusterResources200ResponseDataInner) SetCgroupMode(v int64)

SetCgroupMode gets a reference to the given int64 and assigns it to the CgroupMode field.

func (*GetClusterResources200ResponseDataInner) SetContent

SetContent gets a reference to the given string and assigns it to the Content field.

func (*GetClusterResources200ResponseDataInner) SetCpu

SetCpu gets a reference to the given float32 and assigns it to the Cpu field.

func (*GetClusterResources200ResponseDataInner) SetDisk

SetDisk gets a reference to the given int64 and assigns it to the Disk field.

func (*GetClusterResources200ResponseDataInner) SetDiskread

SetDiskread gets a reference to the given int64 and assigns it to the Diskread field.

func (*GetClusterResources200ResponseDataInner) SetDiskwrite

SetDiskwrite gets a reference to the given int64 and assigns it to the Diskwrite field.

func (*GetClusterResources200ResponseDataInner) SetHastate

SetHastate gets a reference to the given string and assigns it to the Hastate field.

func (*GetClusterResources200ResponseDataInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*GetClusterResources200ResponseDataInner) SetLevel

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*GetClusterResources200ResponseDataInner) SetLock

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetClusterResources200ResponseDataInner) SetMaxcpu

SetMaxcpu gets a reference to the given float32 and assigns it to the Maxcpu field.

func (*GetClusterResources200ResponseDataInner) SetMaxdisk

SetMaxdisk gets a reference to the given int64 and assigns it to the Maxdisk field.

func (*GetClusterResources200ResponseDataInner) SetMaxmem

SetMaxmem gets a reference to the given int64 and assigns it to the Maxmem field.

func (*GetClusterResources200ResponseDataInner) SetMem

SetMem gets a reference to the given int64 and assigns it to the Mem field.

func (*GetClusterResources200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetClusterResources200ResponseDataInner) SetNetin

SetNetin gets a reference to the given int64 and assigns it to the Netin field.

func (*GetClusterResources200ResponseDataInner) SetNetout

SetNetout gets a reference to the given int64 and assigns it to the Netout field.

func (*GetClusterResources200ResponseDataInner) SetNode

SetNode gets a reference to the given string and assigns it to the Node field.

func (*GetClusterResources200ResponseDataInner) SetPlugintype

func (o *GetClusterResources200ResponseDataInner) SetPlugintype(v string)

SetPlugintype gets a reference to the given string and assigns it to the Plugintype field.

func (*GetClusterResources200ResponseDataInner) SetPool

SetPool gets a reference to the given string and assigns it to the Pool field.

func (*GetClusterResources200ResponseDataInner) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetClusterResources200ResponseDataInner) SetStorage

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (*GetClusterResources200ResponseDataInner) SetTemplate

SetTemplate gets a reference to the given int64 and assigns it to the Template field.

func (*GetClusterResources200ResponseDataInner) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetClusterResources200ResponseDataInner) SetUptime

SetUptime gets a reference to the given int64 and assigns it to the Uptime field.

func (*GetClusterResources200ResponseDataInner) SetVmid

SetVmid gets a reference to the given int64 and assigns it to the Vmid field.

func (GetClusterResources200ResponseDataInner) ToMap

func (o GetClusterResources200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetContainerConfig200Response

type GetContainerConfig200Response struct {
	Data   *GetContainerConfig200ResponseData `json:"data,omitempty"`
	Errors []string                           `json:"errors,omitempty"`
}

GetContainerConfig200Response struct for GetContainerConfig200Response

func NewGetContainerConfig200Response

func NewGetContainerConfig200Response() *GetContainerConfig200Response

NewGetContainerConfig200Response instantiates a new GetContainerConfig200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainerConfig200ResponseWithDefaults

func NewGetContainerConfig200ResponseWithDefaults() *GetContainerConfig200Response

NewGetContainerConfig200ResponseWithDefaults instantiates a new GetContainerConfig200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainerConfig200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetContainerConfig200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200Response) GetErrors

func (o *GetContainerConfig200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetContainerConfig200Response) GetErrorsOk

func (o *GetContainerConfig200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200Response) HasData

func (o *GetContainerConfig200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetContainerConfig200Response) HasErrors

func (o *GetContainerConfig200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetContainerConfig200Response) MarshalJSON

func (o GetContainerConfig200Response) MarshalJSON() ([]byte, error)

func (*GetContainerConfig200Response) SetData

SetData gets a reference to the given GetContainerConfig200ResponseData and assigns it to the Data field.

func (*GetContainerConfig200Response) SetErrors

func (o *GetContainerConfig200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetContainerConfig200Response) ToMap

func (o GetContainerConfig200Response) ToMap() (map[string]interface{}, error)

type GetContainerConfig200ResponseData

type GetContainerConfig200ResponseData struct {
	// OS architecture type.
	Arch *string `json:"arch,omitempty"`
	// Console mode. By default, the console command tries to open a connection to one of the available tty devices. By setting cmode to 'console' it tries to attach to /dev/console instead. If you set cmode to 'shell', it simply invokes a shell inside the container (no login).
	Cmode *string `json:"cmode,omitempty"`
	// Attach a console device (/dev/console) to the container.
	Console *int32 `json:"console,omitempty"`
	// The number of cores assigned to the container. A container can use all available cores by default.
	Cores *int64 `json:"cores,omitempty"`
	// Limit of CPU usage.  NOTE: If the computer has 2 CPUs, it has a total of '2' CPU time. Value '0' indicates no CPU limit.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a container, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// Try to be more verbose. For now this only enables debug log-level on start.
	Debug *int32 `json:"debug,omitempty"`
	// Description for the Container. Shown in the web-interface CT's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// Device to pass through to the container
	Dev0 *string `json:"dev0,omitempty"`
	// Device to pass through to the container
	Dev1 *string `json:"dev1,omitempty"`
	// Device to pass through to the container
	Dev2 *string `json:"dev2,omitempty"`
	// Device to pass through to the container
	Dev3 *string `json:"dev3,omitempty"`
	// Device to pass through to the container
	Dev4 *string `json:"dev4,omitempty"`
	// Device to pass through to the container
	Dev5 *string `json:"dev5,omitempty"`
	// Device to pass through to the container
	Dev6 *string `json:"dev6,omitempty"`
	// Device to pass through to the container
	Dev7 *string `json:"dev7,omitempty"`
	// Device to pass through to the container
	Dev8 *string `json:"dev8,omitempty"`
	// Device to pass through to the container
	Dev9 *string `json:"dev9,omitempty"`
	// Device to pass through to the container
	Dev10 *string `json:"dev10,omitempty"`
	// Device to pass through to the container
	Dev11 *string `json:"dev11,omitempty"`
	// Device to pass through to the container
	Dev12 *string `json:"dev12,omitempty"`
	// Device to pass through to the container
	Dev13 *string `json:"dev13,omitempty"`
	// Device to pass through to the container
	Dev14 *string `json:"dev14,omitempty"`
	// Device to pass through to the container
	Dev15 *string `json:"dev15,omitempty"`
	// Device to pass through to the container
	Dev16 *string `json:"dev16,omitempty"`
	// Device to pass through to the container
	Dev17 *string `json:"dev17,omitempty"`
	// Device to pass through to the container
	Dev18 *string `json:"dev18,omitempty"`
	// Device to pass through to the container
	Dev19 *string `json:"dev19,omitempty"`
	// Device to pass through to the container
	Dev20 *string `json:"dev20,omitempty"`
	// Device to pass through to the container
	Dev21 *string `json:"dev21,omitempty"`
	// Device to pass through to the container
	Dev22 *string `json:"dev22,omitempty"`
	// Device to pass through to the container
	Dev23 *string `json:"dev23,omitempty"`
	// Device to pass through to the container
	Dev24 *string `json:"dev24,omitempty"`
	// Device to pass through to the container
	Dev25 *string `json:"dev25,omitempty"`
	// Device to pass through to the container
	Dev26 *string `json:"dev26,omitempty"`
	// Device to pass through to the container
	Dev27 *string `json:"dev27,omitempty"`
	// Device to pass through to the container
	Dev28 *string `json:"dev28,omitempty"`
	// Device to pass through to the container
	Dev29 *string `json:"dev29,omitempty"`
	// SHA1 digest of configuration file. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// Allow containers access to advanced features.
	Features *string `json:"features,omitempty"`
	// Script that will be exectued during various steps in the containers lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Set a host name for the container.
	Hostname *string `json:"hostname,omitempty"`
	// Lock/unlock the container.
	Lock *string `json:"lock,omitempty"`
	// Array of lxc low-level configurations ([[key1, value1], [key2, value2] ...]).
	Lxc [][]string `json:"lxc,omitempty"`
	// Amount of RAM for the container in MB.
	Memory *int64 `json:"memory,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp0 *string `json:"mp0,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp1 *string `json:"mp1,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp2 *string `json:"mp2,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp3 *string `json:"mp3,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp4 *string `json:"mp4,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp5 *string `json:"mp5,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp6 *string `json:"mp6,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp7 *string `json:"mp7,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp8 *string `json:"mp8,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp9 *string `json:"mp9,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp10 *string `json:"mp10,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp11 *string `json:"mp11,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp12 *string `json:"mp12,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp13 *string `json:"mp13,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp14 *string `json:"mp14,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp15 *string `json:"mp15,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp16 *string `json:"mp16,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp17 *string `json:"mp17,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp18 *string `json:"mp18,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp19 *string `json:"mp19,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp20 *string `json:"mp20,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp21 *string `json:"mp21,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp22 *string `json:"mp22,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp23 *string `json:"mp23,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp24 *string `json:"mp24,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp25 *string `json:"mp25,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp26 *string `json:"mp26,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp27 *string `json:"mp27,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp28 *string `json:"mp28,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp29 *string `json:"mp29,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp30 *string `json:"mp30,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp31 *string `json:"mp31,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp32 *string `json:"mp32,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp33 *string `json:"mp33,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp34 *string `json:"mp34,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp35 *string `json:"mp35,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp36 *string `json:"mp36,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp37 *string `json:"mp37,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp38 *string `json:"mp38,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp39 *string `json:"mp39,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp40 *string `json:"mp40,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp41 *string `json:"mp41,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp42 *string `json:"mp42,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp43 *string `json:"mp43,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp44 *string `json:"mp44,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp45 *string `json:"mp45,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp46 *string `json:"mp46,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp47 *string `json:"mp47,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp48 *string `json:"mp48,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp49 *string `json:"mp49,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp50 *string `json:"mp50,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp51 *string `json:"mp51,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp52 *string `json:"mp52,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp53 *string `json:"mp53,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp54 *string `json:"mp54,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp55 *string `json:"mp55,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp56 *string `json:"mp56,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp57 *string `json:"mp57,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp58 *string `json:"mp58,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp59 *string `json:"mp59,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp60 *string `json:"mp60,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp61 *string `json:"mp61,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp62 *string `json:"mp62,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp63 *string `json:"mp63,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp64 *string `json:"mp64,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp65 *string `json:"mp65,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp66 *string `json:"mp66,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp67 *string `json:"mp67,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp68 *string `json:"mp68,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp69 *string `json:"mp69,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp70 *string `json:"mp70,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp71 *string `json:"mp71,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp72 *string `json:"mp72,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp73 *string `json:"mp73,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp74 *string `json:"mp74,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp75 *string `json:"mp75,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp76 *string `json:"mp76,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp77 *string `json:"mp77,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp78 *string `json:"mp78,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp79 *string `json:"mp79,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp80 *string `json:"mp80,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp81 *string `json:"mp81,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp82 *string `json:"mp82,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp83 *string `json:"mp83,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp84 *string `json:"mp84,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp85 *string `json:"mp85,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp86 *string `json:"mp86,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp87 *string `json:"mp87,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp88 *string `json:"mp88,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp89 *string `json:"mp89,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp90 *string `json:"mp90,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp91 *string `json:"mp91,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp92 *string `json:"mp92,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp93 *string `json:"mp93,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp94 *string `json:"mp94,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp95 *string `json:"mp95,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp96 *string `json:"mp96,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp97 *string `json:"mp97,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp98 *string `json:"mp98,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp99 *string `json:"mp99,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp100 *string `json:"mp100,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp101 *string `json:"mp101,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp102 *string `json:"mp102,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp103 *string `json:"mp103,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp104 *string `json:"mp104,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp105 *string `json:"mp105,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp106 *string `json:"mp106,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp107 *string `json:"mp107,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp108 *string `json:"mp108,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp109 *string `json:"mp109,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp110 *string `json:"mp110,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp111 *string `json:"mp111,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp112 *string `json:"mp112,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp113 *string `json:"mp113,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp114 *string `json:"mp114,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp115 *string `json:"mp115,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp116 *string `json:"mp116,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp117 *string `json:"mp117,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp118 *string `json:"mp118,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp119 *string `json:"mp119,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp120 *string `json:"mp120,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp121 *string `json:"mp121,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp122 *string `json:"mp122,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp123 *string `json:"mp123,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp124 *string `json:"mp124,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp125 *string `json:"mp125,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp126 *string `json:"mp126,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp127 *string `json:"mp127,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp128 *string `json:"mp128,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp129 *string `json:"mp129,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp130 *string `json:"mp130,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp131 *string `json:"mp131,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp132 *string `json:"mp132,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp133 *string `json:"mp133,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp134 *string `json:"mp134,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp135 *string `json:"mp135,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp136 *string `json:"mp136,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp137 *string `json:"mp137,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp138 *string `json:"mp138,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp139 *string `json:"mp139,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp140 *string `json:"mp140,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp141 *string `json:"mp141,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp142 *string `json:"mp142,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp143 *string `json:"mp143,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp144 *string `json:"mp144,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp145 *string `json:"mp145,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp146 *string `json:"mp146,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp147 *string `json:"mp147,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp148 *string `json:"mp148,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp149 *string `json:"mp149,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp150 *string `json:"mp150,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp151 *string `json:"mp151,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp152 *string `json:"mp152,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp153 *string `json:"mp153,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp154 *string `json:"mp154,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp155 *string `json:"mp155,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp156 *string `json:"mp156,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp157 *string `json:"mp157,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp158 *string `json:"mp158,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp159 *string `json:"mp159,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp160 *string `json:"mp160,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp161 *string `json:"mp161,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp162 *string `json:"mp162,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp163 *string `json:"mp163,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp164 *string `json:"mp164,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp165 *string `json:"mp165,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp166 *string `json:"mp166,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp167 *string `json:"mp167,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp168 *string `json:"mp168,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp169 *string `json:"mp169,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp170 *string `json:"mp170,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp171 *string `json:"mp171,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp172 *string `json:"mp172,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp173 *string `json:"mp173,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp174 *string `json:"mp174,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp175 *string `json:"mp175,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp176 *string `json:"mp176,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp177 *string `json:"mp177,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp178 *string `json:"mp178,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp179 *string `json:"mp179,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp180 *string `json:"mp180,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp181 *string `json:"mp181,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp182 *string `json:"mp182,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp183 *string `json:"mp183,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp184 *string `json:"mp184,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp185 *string `json:"mp185,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp186 *string `json:"mp186,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp187 *string `json:"mp187,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp188 *string `json:"mp188,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp189 *string `json:"mp189,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp190 *string `json:"mp190,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp191 *string `json:"mp191,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp192 *string `json:"mp192,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp193 *string `json:"mp193,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp194 *string `json:"mp194,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp195 *string `json:"mp195,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp196 *string `json:"mp196,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp197 *string `json:"mp197,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp198 *string `json:"mp198,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp199 *string `json:"mp199,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp200 *string `json:"mp200,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp201 *string `json:"mp201,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp202 *string `json:"mp202,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp203 *string `json:"mp203,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp204 *string `json:"mp204,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp205 *string `json:"mp205,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp206 *string `json:"mp206,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp207 *string `json:"mp207,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp208 *string `json:"mp208,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp209 *string `json:"mp209,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp210 *string `json:"mp210,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp211 *string `json:"mp211,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp212 *string `json:"mp212,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp213 *string `json:"mp213,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp214 *string `json:"mp214,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp215 *string `json:"mp215,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp216 *string `json:"mp216,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp217 *string `json:"mp217,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp218 *string `json:"mp218,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp219 *string `json:"mp219,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp220 *string `json:"mp220,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp221 *string `json:"mp221,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp222 *string `json:"mp222,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp223 *string `json:"mp223,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp224 *string `json:"mp224,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp225 *string `json:"mp225,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp226 *string `json:"mp226,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp227 *string `json:"mp227,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp228 *string `json:"mp228,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp229 *string `json:"mp229,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp230 *string `json:"mp230,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp231 *string `json:"mp231,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp232 *string `json:"mp232,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp233 *string `json:"mp233,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp234 *string `json:"mp234,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp235 *string `json:"mp235,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp236 *string `json:"mp236,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp237 *string `json:"mp237,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp238 *string `json:"mp238,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp239 *string `json:"mp239,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp240 *string `json:"mp240,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp241 *string `json:"mp241,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp242 *string `json:"mp242,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp243 *string `json:"mp243,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp244 *string `json:"mp244,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp245 *string `json:"mp245,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp246 *string `json:"mp246,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp247 *string `json:"mp247,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp248 *string `json:"mp248,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp249 *string `json:"mp249,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp250 *string `json:"mp250,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp251 *string `json:"mp251,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp252 *string `json:"mp252,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp253 *string `json:"mp253,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp254 *string `json:"mp254,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp255 *string `json:"mp255,omitempty"`
	// Sets DNS server IP address for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specifies network interfaces for the container.
	Net0 *string `json:"net0,omitempty"`
	// Specifies network interfaces for the container.
	Net1 *string `json:"net1,omitempty"`
	// Specifies network interfaces for the container.
	Net2 *string `json:"net2,omitempty"`
	// Specifies network interfaces for the container.
	Net3 *string `json:"net3,omitempty"`
	// Specifies network interfaces for the container.
	Net4 *string `json:"net4,omitempty"`
	// Specifies network interfaces for the container.
	Net5 *string `json:"net5,omitempty"`
	// Specifies network interfaces for the container.
	Net6 *string `json:"net6,omitempty"`
	// Specifies network interfaces for the container.
	Net7 *string `json:"net7,omitempty"`
	// Specifies network interfaces for the container.
	Net8 *string `json:"net8,omitempty"`
	// Specifies network interfaces for the container.
	Net9 *string `json:"net9,omitempty"`
	// Specifies network interfaces for the container.
	Net10 *string `json:"net10,omitempty"`
	// Specifies network interfaces for the container.
	Net11 *string `json:"net11,omitempty"`
	// Specifies network interfaces for the container.
	Net12 *string `json:"net12,omitempty"`
	// Specifies network interfaces for the container.
	Net13 *string `json:"net13,omitempty"`
	// Specifies network interfaces for the container.
	Net14 *string `json:"net14,omitempty"`
	// Specifies network interfaces for the container.
	Net15 *string `json:"net15,omitempty"`
	// Specifies network interfaces for the container.
	Net16 *string `json:"net16,omitempty"`
	// Specifies network interfaces for the container.
	Net17 *string `json:"net17,omitempty"`
	// Specifies network interfaces for the container.
	Net18 *string `json:"net18,omitempty"`
	// Specifies network interfaces for the container.
	Net19 *string `json:"net19,omitempty"`
	// Specifies network interfaces for the container.
	Net20 *string `json:"net20,omitempty"`
	// Specifies network interfaces for the container.
	Net21 *string `json:"net21,omitempty"`
	// Specifies network interfaces for the container.
	Net22 *string `json:"net22,omitempty"`
	// Specifies network interfaces for the container.
	Net23 *string `json:"net23,omitempty"`
	// Specifies network interfaces for the container.
	Net24 *string `json:"net24,omitempty"`
	// Specifies network interfaces for the container.
	Net25 *string `json:"net25,omitempty"`
	// Specifies network interfaces for the container.
	Net26 *string `json:"net26,omitempty"`
	// Specifies network interfaces for the container.
	Net27 *string `json:"net27,omitempty"`
	// Specifies network interfaces for the container.
	Net28 *string `json:"net28,omitempty"`
	// Specifies network interfaces for the container.
	Net29 *string `json:"net29,omitempty"`
	// Specifies network interfaces for the container.
	Net30 *string `json:"net30,omitempty"`
	// Specifies network interfaces for the container.
	Net31 *string `json:"net31,omitempty"`
	// Specifies whether a container will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// OS type. This is used to setup configuration inside the container, and corresponds to lxc setup scripts in /usr/share/lxc/config/<ostype>.common.conf. Value 'unmanaged' can be used to skip and OS specific setup.
	Ostype *string `json:"ostype,omitempty"`
	// Sets the protection flag of the container. This will prevent the CT or CT's disk remove/update operation.
	Protection *int32 `json:"protection,omitempty"`
	// Use volume as container root.
	Rootfs *string `json:"rootfs,omitempty"`
	// Sets DNS search domains for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Amount of SWAP for the container in MB.
	Swap *int64 `json:"swap,omitempty"`
	// Tags of the Container. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Time zone to use in the container. If option isn't set, then nothing will be done. Can be set to 'host' to match the host time zone, or an arbitrary time zone option from /usr/share/zoneinfo/zone.tab
	Timezone *string `json:"timezone,omitempty"`
	// Specify the number of tty available to the container
	Tty *int64 `json:"tty,omitempty"`
	// Makes the container run as unprivileged user. (Should not be modified manually.)
	Unprivileged *int32 `json:"unprivileged,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
}

GetContainerConfig200ResponseData struct for GetContainerConfig200ResponseData

func NewGetContainerConfig200ResponseData

func NewGetContainerConfig200ResponseData() *GetContainerConfig200ResponseData

NewGetContainerConfig200ResponseData instantiates a new GetContainerConfig200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainerConfig200ResponseDataWithDefaults

func NewGetContainerConfig200ResponseDataWithDefaults() *GetContainerConfig200ResponseData

NewGetContainerConfig200ResponseDataWithDefaults instantiates a new GetContainerConfig200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainerConfig200ResponseData) GetArch

GetArch returns the Arch field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetArchOk

func (o *GetContainerConfig200ResponseData) GetArchOk() (*string, bool)

GetArchOk returns a tuple with the Arch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetCmode

GetCmode returns the Cmode field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetCmodeOk

func (o *GetContainerConfig200ResponseData) GetCmodeOk() (*string, bool)

GetCmodeOk returns a tuple with the Cmode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetConsole

func (o *GetContainerConfig200ResponseData) GetConsole() int32

GetConsole returns the Console field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetConsoleOk

func (o *GetContainerConfig200ResponseData) GetConsoleOk() (*int32, bool)

GetConsoleOk returns a tuple with the Console field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetCores

GetCores returns the Cores field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetCoresOk

func (o *GetContainerConfig200ResponseData) GetCoresOk() (*int64, bool)

GetCoresOk returns a tuple with the Cores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetCpulimit

func (o *GetContainerConfig200ResponseData) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetCpulimitOk

func (o *GetContainerConfig200ResponseData) GetCpulimitOk() (*float32, bool)

GetCpulimitOk returns a tuple with the Cpulimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetCpuunits

func (o *GetContainerConfig200ResponseData) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetCpuunitsOk

func (o *GetContainerConfig200ResponseData) GetCpuunitsOk() (*int64, bool)

GetCpuunitsOk returns a tuple with the Cpuunits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDebug

GetDebug returns the Debug field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDebugOk

func (o *GetContainerConfig200ResponseData) GetDebugOk() (*int32, bool)

GetDebugOk returns a tuple with the Debug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDescription

func (o *GetContainerConfig200ResponseData) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDescriptionOk

func (o *GetContainerConfig200ResponseData) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev0 added in v1.0.4

GetDev0 returns the Dev0 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev0Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev0Ok() (*string, bool)

GetDev0Ok returns a tuple with the Dev0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev1 added in v1.0.4

GetDev1 returns the Dev1 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev10 added in v1.0.4

GetDev10 returns the Dev10 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev10Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev10Ok() (*string, bool)

GetDev10Ok returns a tuple with the Dev10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev11 added in v1.0.4

GetDev11 returns the Dev11 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev11Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev11Ok() (*string, bool)

GetDev11Ok returns a tuple with the Dev11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev12 added in v1.0.4

GetDev12 returns the Dev12 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev12Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev12Ok() (*string, bool)

GetDev12Ok returns a tuple with the Dev12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev13 added in v1.0.4

GetDev13 returns the Dev13 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev13Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev13Ok() (*string, bool)

GetDev13Ok returns a tuple with the Dev13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev14 added in v1.0.4

GetDev14 returns the Dev14 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev14Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev14Ok() (*string, bool)

GetDev14Ok returns a tuple with the Dev14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev15 added in v1.0.4

GetDev15 returns the Dev15 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev15Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev15Ok() (*string, bool)

GetDev15Ok returns a tuple with the Dev15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev16 added in v1.0.4

GetDev16 returns the Dev16 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev16Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev16Ok() (*string, bool)

GetDev16Ok returns a tuple with the Dev16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev17 added in v1.0.4

GetDev17 returns the Dev17 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev17Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev17Ok() (*string, bool)

GetDev17Ok returns a tuple with the Dev17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev18 added in v1.0.4

GetDev18 returns the Dev18 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev18Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev18Ok() (*string, bool)

GetDev18Ok returns a tuple with the Dev18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev19 added in v1.0.4

GetDev19 returns the Dev19 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev19Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev19Ok() (*string, bool)

GetDev19Ok returns a tuple with the Dev19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev1Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev1Ok() (*string, bool)

GetDev1Ok returns a tuple with the Dev1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev2 added in v1.0.4

GetDev2 returns the Dev2 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev20 added in v1.0.4

GetDev20 returns the Dev20 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev20Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev20Ok() (*string, bool)

GetDev20Ok returns a tuple with the Dev20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev21 added in v1.0.4

GetDev21 returns the Dev21 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev21Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev21Ok() (*string, bool)

GetDev21Ok returns a tuple with the Dev21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev22 added in v1.0.4

GetDev22 returns the Dev22 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev22Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev22Ok() (*string, bool)

GetDev22Ok returns a tuple with the Dev22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev23 added in v1.0.4

GetDev23 returns the Dev23 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev23Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev23Ok() (*string, bool)

GetDev23Ok returns a tuple with the Dev23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev24 added in v1.0.4

GetDev24 returns the Dev24 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev24Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev24Ok() (*string, bool)

GetDev24Ok returns a tuple with the Dev24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev25 added in v1.0.4

GetDev25 returns the Dev25 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev25Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev25Ok() (*string, bool)

GetDev25Ok returns a tuple with the Dev25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev26 added in v1.0.4

GetDev26 returns the Dev26 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev26Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev26Ok() (*string, bool)

GetDev26Ok returns a tuple with the Dev26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev27 added in v1.0.4

GetDev27 returns the Dev27 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev27Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev27Ok() (*string, bool)

GetDev27Ok returns a tuple with the Dev27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev28 added in v1.0.4

GetDev28 returns the Dev28 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev28Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev28Ok() (*string, bool)

GetDev28Ok returns a tuple with the Dev28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev29 added in v1.0.4

GetDev29 returns the Dev29 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev29Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev29Ok() (*string, bool)

GetDev29Ok returns a tuple with the Dev29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev2Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev2Ok() (*string, bool)

GetDev2Ok returns a tuple with the Dev2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev3 added in v1.0.4

GetDev3 returns the Dev3 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev3Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev3Ok() (*string, bool)

GetDev3Ok returns a tuple with the Dev3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev4 added in v1.0.4

GetDev4 returns the Dev4 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev4Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev4Ok() (*string, bool)

GetDev4Ok returns a tuple with the Dev4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev5 added in v1.0.4

GetDev5 returns the Dev5 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev5Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev5Ok() (*string, bool)

GetDev5Ok returns a tuple with the Dev5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev6 added in v1.0.4

GetDev6 returns the Dev6 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev6Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev6Ok() (*string, bool)

GetDev6Ok returns a tuple with the Dev6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev7 added in v1.0.4

GetDev7 returns the Dev7 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev7Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev7Ok() (*string, bool)

GetDev7Ok returns a tuple with the Dev7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev8 added in v1.0.4

GetDev8 returns the Dev8 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev8Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev8Ok() (*string, bool)

GetDev8Ok returns a tuple with the Dev8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDev9 added in v1.0.4

GetDev9 returns the Dev9 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDev9Ok added in v1.0.4

func (o *GetContainerConfig200ResponseData) GetDev9Ok() (*string, bool)

GetDev9Ok returns a tuple with the Dev9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetDigest

GetDigest returns the Digest field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetDigestOk

func (o *GetContainerConfig200ResponseData) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetFeatures

func (o *GetContainerConfig200ResponseData) GetFeatures() string

GetFeatures returns the Features field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetFeaturesOk

func (o *GetContainerConfig200ResponseData) GetFeaturesOk() (*string, bool)

GetFeaturesOk returns a tuple with the Features field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetHookscript

func (o *GetContainerConfig200ResponseData) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetHookscriptOk

func (o *GetContainerConfig200ResponseData) GetHookscriptOk() (*string, bool)

GetHookscriptOk returns a tuple with the Hookscript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetHostname

func (o *GetContainerConfig200ResponseData) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetHostnameOk

func (o *GetContainerConfig200ResponseData) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetLock

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetLockOk

func (o *GetContainerConfig200ResponseData) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetLxc

func (o *GetContainerConfig200ResponseData) GetLxc() [][]string

GetLxc returns the Lxc field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetLxcOk

func (o *GetContainerConfig200ResponseData) GetLxcOk() ([][]string, bool)

GetLxcOk returns a tuple with the Lxc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMemory

GetMemory returns the Memory field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMemoryOk

func (o *GetContainerConfig200ResponseData) GetMemoryOk() (*int64, bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp0

GetMp0 returns the Mp0 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp0Ok

func (o *GetContainerConfig200ResponseData) GetMp0Ok() (*string, bool)

GetMp0Ok returns a tuple with the Mp0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp1

GetMp1 returns the Mp1 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp10

GetMp10 returns the Mp10 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp100

GetMp100 returns the Mp100 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp100Ok

func (o *GetContainerConfig200ResponseData) GetMp100Ok() (*string, bool)

GetMp100Ok returns a tuple with the Mp100 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp101

GetMp101 returns the Mp101 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp101Ok

func (o *GetContainerConfig200ResponseData) GetMp101Ok() (*string, bool)

GetMp101Ok returns a tuple with the Mp101 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp102

GetMp102 returns the Mp102 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp102Ok

func (o *GetContainerConfig200ResponseData) GetMp102Ok() (*string, bool)

GetMp102Ok returns a tuple with the Mp102 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp103

GetMp103 returns the Mp103 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp103Ok

func (o *GetContainerConfig200ResponseData) GetMp103Ok() (*string, bool)

GetMp103Ok returns a tuple with the Mp103 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp104

GetMp104 returns the Mp104 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp104Ok

func (o *GetContainerConfig200ResponseData) GetMp104Ok() (*string, bool)

GetMp104Ok returns a tuple with the Mp104 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp105

GetMp105 returns the Mp105 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp105Ok

func (o *GetContainerConfig200ResponseData) GetMp105Ok() (*string, bool)

GetMp105Ok returns a tuple with the Mp105 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp106

GetMp106 returns the Mp106 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp106Ok

func (o *GetContainerConfig200ResponseData) GetMp106Ok() (*string, bool)

GetMp106Ok returns a tuple with the Mp106 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp107

GetMp107 returns the Mp107 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp107Ok

func (o *GetContainerConfig200ResponseData) GetMp107Ok() (*string, bool)

GetMp107Ok returns a tuple with the Mp107 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp108

GetMp108 returns the Mp108 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp108Ok

func (o *GetContainerConfig200ResponseData) GetMp108Ok() (*string, bool)

GetMp108Ok returns a tuple with the Mp108 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp109

GetMp109 returns the Mp109 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp109Ok

func (o *GetContainerConfig200ResponseData) GetMp109Ok() (*string, bool)

GetMp109Ok returns a tuple with the Mp109 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp10Ok

func (o *GetContainerConfig200ResponseData) GetMp10Ok() (*string, bool)

GetMp10Ok returns a tuple with the Mp10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp11

GetMp11 returns the Mp11 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp110

GetMp110 returns the Mp110 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp110Ok

func (o *GetContainerConfig200ResponseData) GetMp110Ok() (*string, bool)

GetMp110Ok returns a tuple with the Mp110 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp111

GetMp111 returns the Mp111 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp111Ok

func (o *GetContainerConfig200ResponseData) GetMp111Ok() (*string, bool)

GetMp111Ok returns a tuple with the Mp111 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp112

GetMp112 returns the Mp112 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp112Ok

func (o *GetContainerConfig200ResponseData) GetMp112Ok() (*string, bool)

GetMp112Ok returns a tuple with the Mp112 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp113

GetMp113 returns the Mp113 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp113Ok

func (o *GetContainerConfig200ResponseData) GetMp113Ok() (*string, bool)

GetMp113Ok returns a tuple with the Mp113 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp114

GetMp114 returns the Mp114 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp114Ok

func (o *GetContainerConfig200ResponseData) GetMp114Ok() (*string, bool)

GetMp114Ok returns a tuple with the Mp114 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp115

GetMp115 returns the Mp115 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp115Ok

func (o *GetContainerConfig200ResponseData) GetMp115Ok() (*string, bool)

GetMp115Ok returns a tuple with the Mp115 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp116

GetMp116 returns the Mp116 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp116Ok

func (o *GetContainerConfig200ResponseData) GetMp116Ok() (*string, bool)

GetMp116Ok returns a tuple with the Mp116 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp117

GetMp117 returns the Mp117 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp117Ok

func (o *GetContainerConfig200ResponseData) GetMp117Ok() (*string, bool)

GetMp117Ok returns a tuple with the Mp117 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp118

GetMp118 returns the Mp118 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp118Ok

func (o *GetContainerConfig200ResponseData) GetMp118Ok() (*string, bool)

GetMp118Ok returns a tuple with the Mp118 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp119

GetMp119 returns the Mp119 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp119Ok

func (o *GetContainerConfig200ResponseData) GetMp119Ok() (*string, bool)

GetMp119Ok returns a tuple with the Mp119 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp11Ok

func (o *GetContainerConfig200ResponseData) GetMp11Ok() (*string, bool)

GetMp11Ok returns a tuple with the Mp11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp12

GetMp12 returns the Mp12 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp120

GetMp120 returns the Mp120 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp120Ok

func (o *GetContainerConfig200ResponseData) GetMp120Ok() (*string, bool)

GetMp120Ok returns a tuple with the Mp120 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp121

GetMp121 returns the Mp121 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp121Ok

func (o *GetContainerConfig200ResponseData) GetMp121Ok() (*string, bool)

GetMp121Ok returns a tuple with the Mp121 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp122

GetMp122 returns the Mp122 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp122Ok

func (o *GetContainerConfig200ResponseData) GetMp122Ok() (*string, bool)

GetMp122Ok returns a tuple with the Mp122 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp123

GetMp123 returns the Mp123 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp123Ok

func (o *GetContainerConfig200ResponseData) GetMp123Ok() (*string, bool)

GetMp123Ok returns a tuple with the Mp123 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp124

GetMp124 returns the Mp124 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp124Ok

func (o *GetContainerConfig200ResponseData) GetMp124Ok() (*string, bool)

GetMp124Ok returns a tuple with the Mp124 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp125

GetMp125 returns the Mp125 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp125Ok

func (o *GetContainerConfig200ResponseData) GetMp125Ok() (*string, bool)

GetMp125Ok returns a tuple with the Mp125 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp126

GetMp126 returns the Mp126 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp126Ok

func (o *GetContainerConfig200ResponseData) GetMp126Ok() (*string, bool)

GetMp126Ok returns a tuple with the Mp126 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp127

GetMp127 returns the Mp127 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp127Ok

func (o *GetContainerConfig200ResponseData) GetMp127Ok() (*string, bool)

GetMp127Ok returns a tuple with the Mp127 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp128

GetMp128 returns the Mp128 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp128Ok

func (o *GetContainerConfig200ResponseData) GetMp128Ok() (*string, bool)

GetMp128Ok returns a tuple with the Mp128 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp129

GetMp129 returns the Mp129 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp129Ok

func (o *GetContainerConfig200ResponseData) GetMp129Ok() (*string, bool)

GetMp129Ok returns a tuple with the Mp129 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp12Ok

func (o *GetContainerConfig200ResponseData) GetMp12Ok() (*string, bool)

GetMp12Ok returns a tuple with the Mp12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp13

GetMp13 returns the Mp13 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp130

GetMp130 returns the Mp130 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp130Ok

func (o *GetContainerConfig200ResponseData) GetMp130Ok() (*string, bool)

GetMp130Ok returns a tuple with the Mp130 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp131

GetMp131 returns the Mp131 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp131Ok

func (o *GetContainerConfig200ResponseData) GetMp131Ok() (*string, bool)

GetMp131Ok returns a tuple with the Mp131 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp132

GetMp132 returns the Mp132 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp132Ok

func (o *GetContainerConfig200ResponseData) GetMp132Ok() (*string, bool)

GetMp132Ok returns a tuple with the Mp132 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp133

GetMp133 returns the Mp133 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp133Ok

func (o *GetContainerConfig200ResponseData) GetMp133Ok() (*string, bool)

GetMp133Ok returns a tuple with the Mp133 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp134

GetMp134 returns the Mp134 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp134Ok

func (o *GetContainerConfig200ResponseData) GetMp134Ok() (*string, bool)

GetMp134Ok returns a tuple with the Mp134 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp135

GetMp135 returns the Mp135 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp135Ok

func (o *GetContainerConfig200ResponseData) GetMp135Ok() (*string, bool)

GetMp135Ok returns a tuple with the Mp135 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp136

GetMp136 returns the Mp136 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp136Ok

func (o *GetContainerConfig200ResponseData) GetMp136Ok() (*string, bool)

GetMp136Ok returns a tuple with the Mp136 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp137

GetMp137 returns the Mp137 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp137Ok

func (o *GetContainerConfig200ResponseData) GetMp137Ok() (*string, bool)

GetMp137Ok returns a tuple with the Mp137 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp138

GetMp138 returns the Mp138 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp138Ok

func (o *GetContainerConfig200ResponseData) GetMp138Ok() (*string, bool)

GetMp138Ok returns a tuple with the Mp138 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp139

GetMp139 returns the Mp139 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp139Ok

func (o *GetContainerConfig200ResponseData) GetMp139Ok() (*string, bool)

GetMp139Ok returns a tuple with the Mp139 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp13Ok

func (o *GetContainerConfig200ResponseData) GetMp13Ok() (*string, bool)

GetMp13Ok returns a tuple with the Mp13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp14

GetMp14 returns the Mp14 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp140

GetMp140 returns the Mp140 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp140Ok

func (o *GetContainerConfig200ResponseData) GetMp140Ok() (*string, bool)

GetMp140Ok returns a tuple with the Mp140 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp141

GetMp141 returns the Mp141 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp141Ok

func (o *GetContainerConfig200ResponseData) GetMp141Ok() (*string, bool)

GetMp141Ok returns a tuple with the Mp141 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp142

GetMp142 returns the Mp142 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp142Ok

func (o *GetContainerConfig200ResponseData) GetMp142Ok() (*string, bool)

GetMp142Ok returns a tuple with the Mp142 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp143

GetMp143 returns the Mp143 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp143Ok

func (o *GetContainerConfig200ResponseData) GetMp143Ok() (*string, bool)

GetMp143Ok returns a tuple with the Mp143 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp144

GetMp144 returns the Mp144 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp144Ok

func (o *GetContainerConfig200ResponseData) GetMp144Ok() (*string, bool)

GetMp144Ok returns a tuple with the Mp144 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp145

GetMp145 returns the Mp145 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp145Ok

func (o *GetContainerConfig200ResponseData) GetMp145Ok() (*string, bool)

GetMp145Ok returns a tuple with the Mp145 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp146

GetMp146 returns the Mp146 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp146Ok

func (o *GetContainerConfig200ResponseData) GetMp146Ok() (*string, bool)

GetMp146Ok returns a tuple with the Mp146 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp147

GetMp147 returns the Mp147 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp147Ok

func (o *GetContainerConfig200ResponseData) GetMp147Ok() (*string, bool)

GetMp147Ok returns a tuple with the Mp147 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp148

GetMp148 returns the Mp148 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp148Ok

func (o *GetContainerConfig200ResponseData) GetMp148Ok() (*string, bool)

GetMp148Ok returns a tuple with the Mp148 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp149

GetMp149 returns the Mp149 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp149Ok

func (o *GetContainerConfig200ResponseData) GetMp149Ok() (*string, bool)

GetMp149Ok returns a tuple with the Mp149 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp14Ok

func (o *GetContainerConfig200ResponseData) GetMp14Ok() (*string, bool)

GetMp14Ok returns a tuple with the Mp14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp15

GetMp15 returns the Mp15 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp150

GetMp150 returns the Mp150 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp150Ok

func (o *GetContainerConfig200ResponseData) GetMp150Ok() (*string, bool)

GetMp150Ok returns a tuple with the Mp150 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp151

GetMp151 returns the Mp151 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp151Ok

func (o *GetContainerConfig200ResponseData) GetMp151Ok() (*string, bool)

GetMp151Ok returns a tuple with the Mp151 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp152

GetMp152 returns the Mp152 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp152Ok

func (o *GetContainerConfig200ResponseData) GetMp152Ok() (*string, bool)

GetMp152Ok returns a tuple with the Mp152 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp153

GetMp153 returns the Mp153 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp153Ok

func (o *GetContainerConfig200ResponseData) GetMp153Ok() (*string, bool)

GetMp153Ok returns a tuple with the Mp153 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp154

GetMp154 returns the Mp154 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp154Ok

func (o *GetContainerConfig200ResponseData) GetMp154Ok() (*string, bool)

GetMp154Ok returns a tuple with the Mp154 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp155

GetMp155 returns the Mp155 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp155Ok

func (o *GetContainerConfig200ResponseData) GetMp155Ok() (*string, bool)

GetMp155Ok returns a tuple with the Mp155 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp156

GetMp156 returns the Mp156 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp156Ok

func (o *GetContainerConfig200ResponseData) GetMp156Ok() (*string, bool)

GetMp156Ok returns a tuple with the Mp156 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp157

GetMp157 returns the Mp157 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp157Ok

func (o *GetContainerConfig200ResponseData) GetMp157Ok() (*string, bool)

GetMp157Ok returns a tuple with the Mp157 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp158

GetMp158 returns the Mp158 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp158Ok

func (o *GetContainerConfig200ResponseData) GetMp158Ok() (*string, bool)

GetMp158Ok returns a tuple with the Mp158 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp159

GetMp159 returns the Mp159 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp159Ok

func (o *GetContainerConfig200ResponseData) GetMp159Ok() (*string, bool)

GetMp159Ok returns a tuple with the Mp159 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp15Ok

func (o *GetContainerConfig200ResponseData) GetMp15Ok() (*string, bool)

GetMp15Ok returns a tuple with the Mp15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp16

GetMp16 returns the Mp16 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp160

GetMp160 returns the Mp160 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp160Ok

func (o *GetContainerConfig200ResponseData) GetMp160Ok() (*string, bool)

GetMp160Ok returns a tuple with the Mp160 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp161

GetMp161 returns the Mp161 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp161Ok

func (o *GetContainerConfig200ResponseData) GetMp161Ok() (*string, bool)

GetMp161Ok returns a tuple with the Mp161 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp162

GetMp162 returns the Mp162 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp162Ok

func (o *GetContainerConfig200ResponseData) GetMp162Ok() (*string, bool)

GetMp162Ok returns a tuple with the Mp162 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp163

GetMp163 returns the Mp163 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp163Ok

func (o *GetContainerConfig200ResponseData) GetMp163Ok() (*string, bool)

GetMp163Ok returns a tuple with the Mp163 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp164

GetMp164 returns the Mp164 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp164Ok

func (o *GetContainerConfig200ResponseData) GetMp164Ok() (*string, bool)

GetMp164Ok returns a tuple with the Mp164 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp165

GetMp165 returns the Mp165 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp165Ok

func (o *GetContainerConfig200ResponseData) GetMp165Ok() (*string, bool)

GetMp165Ok returns a tuple with the Mp165 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp166

GetMp166 returns the Mp166 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp166Ok

func (o *GetContainerConfig200ResponseData) GetMp166Ok() (*string, bool)

GetMp166Ok returns a tuple with the Mp166 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp167

GetMp167 returns the Mp167 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp167Ok

func (o *GetContainerConfig200ResponseData) GetMp167Ok() (*string, bool)

GetMp167Ok returns a tuple with the Mp167 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp168

GetMp168 returns the Mp168 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp168Ok

func (o *GetContainerConfig200ResponseData) GetMp168Ok() (*string, bool)

GetMp168Ok returns a tuple with the Mp168 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp169

GetMp169 returns the Mp169 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp169Ok

func (o *GetContainerConfig200ResponseData) GetMp169Ok() (*string, bool)

GetMp169Ok returns a tuple with the Mp169 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp16Ok

func (o *GetContainerConfig200ResponseData) GetMp16Ok() (*string, bool)

GetMp16Ok returns a tuple with the Mp16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp17

GetMp17 returns the Mp17 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp170

GetMp170 returns the Mp170 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp170Ok

func (o *GetContainerConfig200ResponseData) GetMp170Ok() (*string, bool)

GetMp170Ok returns a tuple with the Mp170 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp171

GetMp171 returns the Mp171 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp171Ok

func (o *GetContainerConfig200ResponseData) GetMp171Ok() (*string, bool)

GetMp171Ok returns a tuple with the Mp171 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp172

GetMp172 returns the Mp172 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp172Ok

func (o *GetContainerConfig200ResponseData) GetMp172Ok() (*string, bool)

GetMp172Ok returns a tuple with the Mp172 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp173

GetMp173 returns the Mp173 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp173Ok

func (o *GetContainerConfig200ResponseData) GetMp173Ok() (*string, bool)

GetMp173Ok returns a tuple with the Mp173 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp174

GetMp174 returns the Mp174 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp174Ok

func (o *GetContainerConfig200ResponseData) GetMp174Ok() (*string, bool)

GetMp174Ok returns a tuple with the Mp174 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp175

GetMp175 returns the Mp175 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp175Ok

func (o *GetContainerConfig200ResponseData) GetMp175Ok() (*string, bool)

GetMp175Ok returns a tuple with the Mp175 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp176

GetMp176 returns the Mp176 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp176Ok

func (o *GetContainerConfig200ResponseData) GetMp176Ok() (*string, bool)

GetMp176Ok returns a tuple with the Mp176 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp177

GetMp177 returns the Mp177 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp177Ok

func (o *GetContainerConfig200ResponseData) GetMp177Ok() (*string, bool)

GetMp177Ok returns a tuple with the Mp177 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp178

GetMp178 returns the Mp178 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp178Ok

func (o *GetContainerConfig200ResponseData) GetMp178Ok() (*string, bool)

GetMp178Ok returns a tuple with the Mp178 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp179

GetMp179 returns the Mp179 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp179Ok

func (o *GetContainerConfig200ResponseData) GetMp179Ok() (*string, bool)

GetMp179Ok returns a tuple with the Mp179 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp17Ok

func (o *GetContainerConfig200ResponseData) GetMp17Ok() (*string, bool)

GetMp17Ok returns a tuple with the Mp17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp18

GetMp18 returns the Mp18 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp180

GetMp180 returns the Mp180 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp180Ok

func (o *GetContainerConfig200ResponseData) GetMp180Ok() (*string, bool)

GetMp180Ok returns a tuple with the Mp180 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp181

GetMp181 returns the Mp181 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp181Ok

func (o *GetContainerConfig200ResponseData) GetMp181Ok() (*string, bool)

GetMp181Ok returns a tuple with the Mp181 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp182

GetMp182 returns the Mp182 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp182Ok

func (o *GetContainerConfig200ResponseData) GetMp182Ok() (*string, bool)

GetMp182Ok returns a tuple with the Mp182 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp183

GetMp183 returns the Mp183 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp183Ok

func (o *GetContainerConfig200ResponseData) GetMp183Ok() (*string, bool)

GetMp183Ok returns a tuple with the Mp183 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp184

GetMp184 returns the Mp184 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp184Ok

func (o *GetContainerConfig200ResponseData) GetMp184Ok() (*string, bool)

GetMp184Ok returns a tuple with the Mp184 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp185

GetMp185 returns the Mp185 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp185Ok

func (o *GetContainerConfig200ResponseData) GetMp185Ok() (*string, bool)

GetMp185Ok returns a tuple with the Mp185 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp186

GetMp186 returns the Mp186 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp186Ok

func (o *GetContainerConfig200ResponseData) GetMp186Ok() (*string, bool)

GetMp186Ok returns a tuple with the Mp186 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp187

GetMp187 returns the Mp187 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp187Ok

func (o *GetContainerConfig200ResponseData) GetMp187Ok() (*string, bool)

GetMp187Ok returns a tuple with the Mp187 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp188

GetMp188 returns the Mp188 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp188Ok

func (o *GetContainerConfig200ResponseData) GetMp188Ok() (*string, bool)

GetMp188Ok returns a tuple with the Mp188 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp189

GetMp189 returns the Mp189 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp189Ok

func (o *GetContainerConfig200ResponseData) GetMp189Ok() (*string, bool)

GetMp189Ok returns a tuple with the Mp189 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp18Ok

func (o *GetContainerConfig200ResponseData) GetMp18Ok() (*string, bool)

GetMp18Ok returns a tuple with the Mp18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp19

GetMp19 returns the Mp19 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp190

GetMp190 returns the Mp190 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp190Ok

func (o *GetContainerConfig200ResponseData) GetMp190Ok() (*string, bool)

GetMp190Ok returns a tuple with the Mp190 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp191

GetMp191 returns the Mp191 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp191Ok

func (o *GetContainerConfig200ResponseData) GetMp191Ok() (*string, bool)

GetMp191Ok returns a tuple with the Mp191 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp192

GetMp192 returns the Mp192 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp192Ok

func (o *GetContainerConfig200ResponseData) GetMp192Ok() (*string, bool)

GetMp192Ok returns a tuple with the Mp192 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp193

GetMp193 returns the Mp193 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp193Ok

func (o *GetContainerConfig200ResponseData) GetMp193Ok() (*string, bool)

GetMp193Ok returns a tuple with the Mp193 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp194

GetMp194 returns the Mp194 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp194Ok

func (o *GetContainerConfig200ResponseData) GetMp194Ok() (*string, bool)

GetMp194Ok returns a tuple with the Mp194 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp195

GetMp195 returns the Mp195 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp195Ok

func (o *GetContainerConfig200ResponseData) GetMp195Ok() (*string, bool)

GetMp195Ok returns a tuple with the Mp195 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp196

GetMp196 returns the Mp196 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp196Ok

func (o *GetContainerConfig200ResponseData) GetMp196Ok() (*string, bool)

GetMp196Ok returns a tuple with the Mp196 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp197

GetMp197 returns the Mp197 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp197Ok

func (o *GetContainerConfig200ResponseData) GetMp197Ok() (*string, bool)

GetMp197Ok returns a tuple with the Mp197 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp198

GetMp198 returns the Mp198 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp198Ok

func (o *GetContainerConfig200ResponseData) GetMp198Ok() (*string, bool)

GetMp198Ok returns a tuple with the Mp198 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp199

GetMp199 returns the Mp199 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp199Ok

func (o *GetContainerConfig200ResponseData) GetMp199Ok() (*string, bool)

GetMp199Ok returns a tuple with the Mp199 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp19Ok

func (o *GetContainerConfig200ResponseData) GetMp19Ok() (*string, bool)

GetMp19Ok returns a tuple with the Mp19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp1Ok

func (o *GetContainerConfig200ResponseData) GetMp1Ok() (*string, bool)

GetMp1Ok returns a tuple with the Mp1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp2

GetMp2 returns the Mp2 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp20

GetMp20 returns the Mp20 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp200

GetMp200 returns the Mp200 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp200Ok

func (o *GetContainerConfig200ResponseData) GetMp200Ok() (*string, bool)

GetMp200Ok returns a tuple with the Mp200 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp201

GetMp201 returns the Mp201 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp201Ok

func (o *GetContainerConfig200ResponseData) GetMp201Ok() (*string, bool)

GetMp201Ok returns a tuple with the Mp201 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp202

GetMp202 returns the Mp202 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp202Ok

func (o *GetContainerConfig200ResponseData) GetMp202Ok() (*string, bool)

GetMp202Ok returns a tuple with the Mp202 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp203

GetMp203 returns the Mp203 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp203Ok

func (o *GetContainerConfig200ResponseData) GetMp203Ok() (*string, bool)

GetMp203Ok returns a tuple with the Mp203 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp204

GetMp204 returns the Mp204 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp204Ok

func (o *GetContainerConfig200ResponseData) GetMp204Ok() (*string, bool)

GetMp204Ok returns a tuple with the Mp204 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp205

GetMp205 returns the Mp205 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp205Ok

func (o *GetContainerConfig200ResponseData) GetMp205Ok() (*string, bool)

GetMp205Ok returns a tuple with the Mp205 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp206

GetMp206 returns the Mp206 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp206Ok

func (o *GetContainerConfig200ResponseData) GetMp206Ok() (*string, bool)

GetMp206Ok returns a tuple with the Mp206 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp207

GetMp207 returns the Mp207 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp207Ok

func (o *GetContainerConfig200ResponseData) GetMp207Ok() (*string, bool)

GetMp207Ok returns a tuple with the Mp207 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp208

GetMp208 returns the Mp208 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp208Ok

func (o *GetContainerConfig200ResponseData) GetMp208Ok() (*string, bool)

GetMp208Ok returns a tuple with the Mp208 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp209

GetMp209 returns the Mp209 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp209Ok

func (o *GetContainerConfig200ResponseData) GetMp209Ok() (*string, bool)

GetMp209Ok returns a tuple with the Mp209 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp20Ok

func (o *GetContainerConfig200ResponseData) GetMp20Ok() (*string, bool)

GetMp20Ok returns a tuple with the Mp20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp21

GetMp21 returns the Mp21 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp210

GetMp210 returns the Mp210 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp210Ok

func (o *GetContainerConfig200ResponseData) GetMp210Ok() (*string, bool)

GetMp210Ok returns a tuple with the Mp210 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp211

GetMp211 returns the Mp211 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp211Ok

func (o *GetContainerConfig200ResponseData) GetMp211Ok() (*string, bool)

GetMp211Ok returns a tuple with the Mp211 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp212

GetMp212 returns the Mp212 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp212Ok

func (o *GetContainerConfig200ResponseData) GetMp212Ok() (*string, bool)

GetMp212Ok returns a tuple with the Mp212 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp213

GetMp213 returns the Mp213 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp213Ok

func (o *GetContainerConfig200ResponseData) GetMp213Ok() (*string, bool)

GetMp213Ok returns a tuple with the Mp213 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp214

GetMp214 returns the Mp214 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp214Ok

func (o *GetContainerConfig200ResponseData) GetMp214Ok() (*string, bool)

GetMp214Ok returns a tuple with the Mp214 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp215

GetMp215 returns the Mp215 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp215Ok

func (o *GetContainerConfig200ResponseData) GetMp215Ok() (*string, bool)

GetMp215Ok returns a tuple with the Mp215 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp216

GetMp216 returns the Mp216 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp216Ok

func (o *GetContainerConfig200ResponseData) GetMp216Ok() (*string, bool)

GetMp216Ok returns a tuple with the Mp216 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp217

GetMp217 returns the Mp217 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp217Ok

func (o *GetContainerConfig200ResponseData) GetMp217Ok() (*string, bool)

GetMp217Ok returns a tuple with the Mp217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp218

GetMp218 returns the Mp218 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp218Ok

func (o *GetContainerConfig200ResponseData) GetMp218Ok() (*string, bool)

GetMp218Ok returns a tuple with the Mp218 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp219

GetMp219 returns the Mp219 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp219Ok

func (o *GetContainerConfig200ResponseData) GetMp219Ok() (*string, bool)

GetMp219Ok returns a tuple with the Mp219 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp21Ok

func (o *GetContainerConfig200ResponseData) GetMp21Ok() (*string, bool)

GetMp21Ok returns a tuple with the Mp21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp22

GetMp22 returns the Mp22 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp220

GetMp220 returns the Mp220 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp220Ok

func (o *GetContainerConfig200ResponseData) GetMp220Ok() (*string, bool)

GetMp220Ok returns a tuple with the Mp220 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp221

GetMp221 returns the Mp221 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp221Ok

func (o *GetContainerConfig200ResponseData) GetMp221Ok() (*string, bool)

GetMp221Ok returns a tuple with the Mp221 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp222

GetMp222 returns the Mp222 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp222Ok

func (o *GetContainerConfig200ResponseData) GetMp222Ok() (*string, bool)

GetMp222Ok returns a tuple with the Mp222 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp223

GetMp223 returns the Mp223 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp223Ok

func (o *GetContainerConfig200ResponseData) GetMp223Ok() (*string, bool)

GetMp223Ok returns a tuple with the Mp223 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp224

GetMp224 returns the Mp224 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp224Ok

func (o *GetContainerConfig200ResponseData) GetMp224Ok() (*string, bool)

GetMp224Ok returns a tuple with the Mp224 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp225

GetMp225 returns the Mp225 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp225Ok

func (o *GetContainerConfig200ResponseData) GetMp225Ok() (*string, bool)

GetMp225Ok returns a tuple with the Mp225 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp226

GetMp226 returns the Mp226 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp226Ok

func (o *GetContainerConfig200ResponseData) GetMp226Ok() (*string, bool)

GetMp226Ok returns a tuple with the Mp226 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp227

GetMp227 returns the Mp227 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp227Ok

func (o *GetContainerConfig200ResponseData) GetMp227Ok() (*string, bool)

GetMp227Ok returns a tuple with the Mp227 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp228

GetMp228 returns the Mp228 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp228Ok

func (o *GetContainerConfig200ResponseData) GetMp228Ok() (*string, bool)

GetMp228Ok returns a tuple with the Mp228 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp229

GetMp229 returns the Mp229 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp229Ok

func (o *GetContainerConfig200ResponseData) GetMp229Ok() (*string, bool)

GetMp229Ok returns a tuple with the Mp229 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp22Ok

func (o *GetContainerConfig200ResponseData) GetMp22Ok() (*string, bool)

GetMp22Ok returns a tuple with the Mp22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp23

GetMp23 returns the Mp23 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp230

GetMp230 returns the Mp230 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp230Ok

func (o *GetContainerConfig200ResponseData) GetMp230Ok() (*string, bool)

GetMp230Ok returns a tuple with the Mp230 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp231

GetMp231 returns the Mp231 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp231Ok

func (o *GetContainerConfig200ResponseData) GetMp231Ok() (*string, bool)

GetMp231Ok returns a tuple with the Mp231 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp232

GetMp232 returns the Mp232 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp232Ok

func (o *GetContainerConfig200ResponseData) GetMp232Ok() (*string, bool)

GetMp232Ok returns a tuple with the Mp232 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp233

GetMp233 returns the Mp233 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp233Ok

func (o *GetContainerConfig200ResponseData) GetMp233Ok() (*string, bool)

GetMp233Ok returns a tuple with the Mp233 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp234

GetMp234 returns the Mp234 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp234Ok

func (o *GetContainerConfig200ResponseData) GetMp234Ok() (*string, bool)

GetMp234Ok returns a tuple with the Mp234 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp235

GetMp235 returns the Mp235 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp235Ok

func (o *GetContainerConfig200ResponseData) GetMp235Ok() (*string, bool)

GetMp235Ok returns a tuple with the Mp235 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp236

GetMp236 returns the Mp236 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp236Ok

func (o *GetContainerConfig200ResponseData) GetMp236Ok() (*string, bool)

GetMp236Ok returns a tuple with the Mp236 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp237

GetMp237 returns the Mp237 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp237Ok

func (o *GetContainerConfig200ResponseData) GetMp237Ok() (*string, bool)

GetMp237Ok returns a tuple with the Mp237 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp238

GetMp238 returns the Mp238 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp238Ok

func (o *GetContainerConfig200ResponseData) GetMp238Ok() (*string, bool)

GetMp238Ok returns a tuple with the Mp238 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp239

GetMp239 returns the Mp239 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp239Ok

func (o *GetContainerConfig200ResponseData) GetMp239Ok() (*string, bool)

GetMp239Ok returns a tuple with the Mp239 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp23Ok

func (o *GetContainerConfig200ResponseData) GetMp23Ok() (*string, bool)

GetMp23Ok returns a tuple with the Mp23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp24

GetMp24 returns the Mp24 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp240

GetMp240 returns the Mp240 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp240Ok

func (o *GetContainerConfig200ResponseData) GetMp240Ok() (*string, bool)

GetMp240Ok returns a tuple with the Mp240 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp241

GetMp241 returns the Mp241 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp241Ok

func (o *GetContainerConfig200ResponseData) GetMp241Ok() (*string, bool)

GetMp241Ok returns a tuple with the Mp241 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp242

GetMp242 returns the Mp242 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp242Ok

func (o *GetContainerConfig200ResponseData) GetMp242Ok() (*string, bool)

GetMp242Ok returns a tuple with the Mp242 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp243

GetMp243 returns the Mp243 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp243Ok

func (o *GetContainerConfig200ResponseData) GetMp243Ok() (*string, bool)

GetMp243Ok returns a tuple with the Mp243 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp244

GetMp244 returns the Mp244 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp244Ok

func (o *GetContainerConfig200ResponseData) GetMp244Ok() (*string, bool)

GetMp244Ok returns a tuple with the Mp244 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp245

GetMp245 returns the Mp245 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp245Ok

func (o *GetContainerConfig200ResponseData) GetMp245Ok() (*string, bool)

GetMp245Ok returns a tuple with the Mp245 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp246

GetMp246 returns the Mp246 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp246Ok

func (o *GetContainerConfig200ResponseData) GetMp246Ok() (*string, bool)

GetMp246Ok returns a tuple with the Mp246 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp247

GetMp247 returns the Mp247 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp247Ok

func (o *GetContainerConfig200ResponseData) GetMp247Ok() (*string, bool)

GetMp247Ok returns a tuple with the Mp247 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp248

GetMp248 returns the Mp248 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp248Ok

func (o *GetContainerConfig200ResponseData) GetMp248Ok() (*string, bool)

GetMp248Ok returns a tuple with the Mp248 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp249

GetMp249 returns the Mp249 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp249Ok

func (o *GetContainerConfig200ResponseData) GetMp249Ok() (*string, bool)

GetMp249Ok returns a tuple with the Mp249 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp24Ok

func (o *GetContainerConfig200ResponseData) GetMp24Ok() (*string, bool)

GetMp24Ok returns a tuple with the Mp24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp25

GetMp25 returns the Mp25 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp250

GetMp250 returns the Mp250 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp250Ok

func (o *GetContainerConfig200ResponseData) GetMp250Ok() (*string, bool)

GetMp250Ok returns a tuple with the Mp250 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp251

GetMp251 returns the Mp251 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp251Ok

func (o *GetContainerConfig200ResponseData) GetMp251Ok() (*string, bool)

GetMp251Ok returns a tuple with the Mp251 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp252

GetMp252 returns the Mp252 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp252Ok

func (o *GetContainerConfig200ResponseData) GetMp252Ok() (*string, bool)

GetMp252Ok returns a tuple with the Mp252 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp253

GetMp253 returns the Mp253 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp253Ok

func (o *GetContainerConfig200ResponseData) GetMp253Ok() (*string, bool)

GetMp253Ok returns a tuple with the Mp253 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp254

GetMp254 returns the Mp254 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp254Ok

func (o *GetContainerConfig200ResponseData) GetMp254Ok() (*string, bool)

GetMp254Ok returns a tuple with the Mp254 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp255

GetMp255 returns the Mp255 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp255Ok

func (o *GetContainerConfig200ResponseData) GetMp255Ok() (*string, bool)

GetMp255Ok returns a tuple with the Mp255 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp25Ok

func (o *GetContainerConfig200ResponseData) GetMp25Ok() (*string, bool)

GetMp25Ok returns a tuple with the Mp25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp26

GetMp26 returns the Mp26 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp26Ok

func (o *GetContainerConfig200ResponseData) GetMp26Ok() (*string, bool)

GetMp26Ok returns a tuple with the Mp26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp27

GetMp27 returns the Mp27 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp27Ok

func (o *GetContainerConfig200ResponseData) GetMp27Ok() (*string, bool)

GetMp27Ok returns a tuple with the Mp27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp28

GetMp28 returns the Mp28 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp28Ok

func (o *GetContainerConfig200ResponseData) GetMp28Ok() (*string, bool)

GetMp28Ok returns a tuple with the Mp28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp29

GetMp29 returns the Mp29 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp29Ok

func (o *GetContainerConfig200ResponseData) GetMp29Ok() (*string, bool)

GetMp29Ok returns a tuple with the Mp29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp2Ok

func (o *GetContainerConfig200ResponseData) GetMp2Ok() (*string, bool)

GetMp2Ok returns a tuple with the Mp2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp3

GetMp3 returns the Mp3 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp30

GetMp30 returns the Mp30 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp30Ok

func (o *GetContainerConfig200ResponseData) GetMp30Ok() (*string, bool)

GetMp30Ok returns a tuple with the Mp30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp31

GetMp31 returns the Mp31 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp31Ok

func (o *GetContainerConfig200ResponseData) GetMp31Ok() (*string, bool)

GetMp31Ok returns a tuple with the Mp31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp32

GetMp32 returns the Mp32 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp32Ok

func (o *GetContainerConfig200ResponseData) GetMp32Ok() (*string, bool)

GetMp32Ok returns a tuple with the Mp32 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp33

GetMp33 returns the Mp33 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp33Ok

func (o *GetContainerConfig200ResponseData) GetMp33Ok() (*string, bool)

GetMp33Ok returns a tuple with the Mp33 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp34

GetMp34 returns the Mp34 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp34Ok

func (o *GetContainerConfig200ResponseData) GetMp34Ok() (*string, bool)

GetMp34Ok returns a tuple with the Mp34 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp35

GetMp35 returns the Mp35 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp35Ok

func (o *GetContainerConfig200ResponseData) GetMp35Ok() (*string, bool)

GetMp35Ok returns a tuple with the Mp35 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp36

GetMp36 returns the Mp36 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp36Ok

func (o *GetContainerConfig200ResponseData) GetMp36Ok() (*string, bool)

GetMp36Ok returns a tuple with the Mp36 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp37

GetMp37 returns the Mp37 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp37Ok

func (o *GetContainerConfig200ResponseData) GetMp37Ok() (*string, bool)

GetMp37Ok returns a tuple with the Mp37 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp38

GetMp38 returns the Mp38 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp38Ok

func (o *GetContainerConfig200ResponseData) GetMp38Ok() (*string, bool)

GetMp38Ok returns a tuple with the Mp38 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp39

GetMp39 returns the Mp39 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp39Ok

func (o *GetContainerConfig200ResponseData) GetMp39Ok() (*string, bool)

GetMp39Ok returns a tuple with the Mp39 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp3Ok

func (o *GetContainerConfig200ResponseData) GetMp3Ok() (*string, bool)

GetMp3Ok returns a tuple with the Mp3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp4

GetMp4 returns the Mp4 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp40

GetMp40 returns the Mp40 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp40Ok

func (o *GetContainerConfig200ResponseData) GetMp40Ok() (*string, bool)

GetMp40Ok returns a tuple with the Mp40 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp41

GetMp41 returns the Mp41 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp41Ok

func (o *GetContainerConfig200ResponseData) GetMp41Ok() (*string, bool)

GetMp41Ok returns a tuple with the Mp41 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp42

GetMp42 returns the Mp42 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp42Ok

func (o *GetContainerConfig200ResponseData) GetMp42Ok() (*string, bool)

GetMp42Ok returns a tuple with the Mp42 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp43

GetMp43 returns the Mp43 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp43Ok

func (o *GetContainerConfig200ResponseData) GetMp43Ok() (*string, bool)

GetMp43Ok returns a tuple with the Mp43 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp44

GetMp44 returns the Mp44 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp44Ok

func (o *GetContainerConfig200ResponseData) GetMp44Ok() (*string, bool)

GetMp44Ok returns a tuple with the Mp44 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp45

GetMp45 returns the Mp45 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp45Ok

func (o *GetContainerConfig200ResponseData) GetMp45Ok() (*string, bool)

GetMp45Ok returns a tuple with the Mp45 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp46

GetMp46 returns the Mp46 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp46Ok

func (o *GetContainerConfig200ResponseData) GetMp46Ok() (*string, bool)

GetMp46Ok returns a tuple with the Mp46 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp47

GetMp47 returns the Mp47 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp47Ok

func (o *GetContainerConfig200ResponseData) GetMp47Ok() (*string, bool)

GetMp47Ok returns a tuple with the Mp47 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp48

GetMp48 returns the Mp48 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp48Ok

func (o *GetContainerConfig200ResponseData) GetMp48Ok() (*string, bool)

GetMp48Ok returns a tuple with the Mp48 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp49

GetMp49 returns the Mp49 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp49Ok

func (o *GetContainerConfig200ResponseData) GetMp49Ok() (*string, bool)

GetMp49Ok returns a tuple with the Mp49 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp4Ok

func (o *GetContainerConfig200ResponseData) GetMp4Ok() (*string, bool)

GetMp4Ok returns a tuple with the Mp4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp5

GetMp5 returns the Mp5 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp50

GetMp50 returns the Mp50 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp50Ok

func (o *GetContainerConfig200ResponseData) GetMp50Ok() (*string, bool)

GetMp50Ok returns a tuple with the Mp50 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp51

GetMp51 returns the Mp51 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp51Ok

func (o *GetContainerConfig200ResponseData) GetMp51Ok() (*string, bool)

GetMp51Ok returns a tuple with the Mp51 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp52

GetMp52 returns the Mp52 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp52Ok

func (o *GetContainerConfig200ResponseData) GetMp52Ok() (*string, bool)

GetMp52Ok returns a tuple with the Mp52 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp53

GetMp53 returns the Mp53 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp53Ok

func (o *GetContainerConfig200ResponseData) GetMp53Ok() (*string, bool)

GetMp53Ok returns a tuple with the Mp53 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp54

GetMp54 returns the Mp54 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp54Ok

func (o *GetContainerConfig200ResponseData) GetMp54Ok() (*string, bool)

GetMp54Ok returns a tuple with the Mp54 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp55

GetMp55 returns the Mp55 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp55Ok

func (o *GetContainerConfig200ResponseData) GetMp55Ok() (*string, bool)

GetMp55Ok returns a tuple with the Mp55 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp56

GetMp56 returns the Mp56 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp56Ok

func (o *GetContainerConfig200ResponseData) GetMp56Ok() (*string, bool)

GetMp56Ok returns a tuple with the Mp56 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp57

GetMp57 returns the Mp57 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp57Ok

func (o *GetContainerConfig200ResponseData) GetMp57Ok() (*string, bool)

GetMp57Ok returns a tuple with the Mp57 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp58

GetMp58 returns the Mp58 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp58Ok

func (o *GetContainerConfig200ResponseData) GetMp58Ok() (*string, bool)

GetMp58Ok returns a tuple with the Mp58 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp59

GetMp59 returns the Mp59 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp59Ok

func (o *GetContainerConfig200ResponseData) GetMp59Ok() (*string, bool)

GetMp59Ok returns a tuple with the Mp59 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp5Ok

func (o *GetContainerConfig200ResponseData) GetMp5Ok() (*string, bool)

GetMp5Ok returns a tuple with the Mp5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp6

GetMp6 returns the Mp6 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp60

GetMp60 returns the Mp60 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp60Ok

func (o *GetContainerConfig200ResponseData) GetMp60Ok() (*string, bool)

GetMp60Ok returns a tuple with the Mp60 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp61

GetMp61 returns the Mp61 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp61Ok

func (o *GetContainerConfig200ResponseData) GetMp61Ok() (*string, bool)

GetMp61Ok returns a tuple with the Mp61 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp62

GetMp62 returns the Mp62 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp62Ok

func (o *GetContainerConfig200ResponseData) GetMp62Ok() (*string, bool)

GetMp62Ok returns a tuple with the Mp62 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp63

GetMp63 returns the Mp63 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp63Ok

func (o *GetContainerConfig200ResponseData) GetMp63Ok() (*string, bool)

GetMp63Ok returns a tuple with the Mp63 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp64

GetMp64 returns the Mp64 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp64Ok

func (o *GetContainerConfig200ResponseData) GetMp64Ok() (*string, bool)

GetMp64Ok returns a tuple with the Mp64 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp65

GetMp65 returns the Mp65 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp65Ok

func (o *GetContainerConfig200ResponseData) GetMp65Ok() (*string, bool)

GetMp65Ok returns a tuple with the Mp65 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp66

GetMp66 returns the Mp66 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp66Ok

func (o *GetContainerConfig200ResponseData) GetMp66Ok() (*string, bool)

GetMp66Ok returns a tuple with the Mp66 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp67

GetMp67 returns the Mp67 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp67Ok

func (o *GetContainerConfig200ResponseData) GetMp67Ok() (*string, bool)

GetMp67Ok returns a tuple with the Mp67 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp68

GetMp68 returns the Mp68 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp68Ok

func (o *GetContainerConfig200ResponseData) GetMp68Ok() (*string, bool)

GetMp68Ok returns a tuple with the Mp68 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp69

GetMp69 returns the Mp69 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp69Ok

func (o *GetContainerConfig200ResponseData) GetMp69Ok() (*string, bool)

GetMp69Ok returns a tuple with the Mp69 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp6Ok

func (o *GetContainerConfig200ResponseData) GetMp6Ok() (*string, bool)

GetMp6Ok returns a tuple with the Mp6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp7

GetMp7 returns the Mp7 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp70

GetMp70 returns the Mp70 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp70Ok

func (o *GetContainerConfig200ResponseData) GetMp70Ok() (*string, bool)

GetMp70Ok returns a tuple with the Mp70 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp71

GetMp71 returns the Mp71 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp71Ok

func (o *GetContainerConfig200ResponseData) GetMp71Ok() (*string, bool)

GetMp71Ok returns a tuple with the Mp71 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp72

GetMp72 returns the Mp72 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp72Ok

func (o *GetContainerConfig200ResponseData) GetMp72Ok() (*string, bool)

GetMp72Ok returns a tuple with the Mp72 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp73

GetMp73 returns the Mp73 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp73Ok

func (o *GetContainerConfig200ResponseData) GetMp73Ok() (*string, bool)

GetMp73Ok returns a tuple with the Mp73 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp74

GetMp74 returns the Mp74 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp74Ok

func (o *GetContainerConfig200ResponseData) GetMp74Ok() (*string, bool)

GetMp74Ok returns a tuple with the Mp74 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp75

GetMp75 returns the Mp75 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp75Ok

func (o *GetContainerConfig200ResponseData) GetMp75Ok() (*string, bool)

GetMp75Ok returns a tuple with the Mp75 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp76

GetMp76 returns the Mp76 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp76Ok

func (o *GetContainerConfig200ResponseData) GetMp76Ok() (*string, bool)

GetMp76Ok returns a tuple with the Mp76 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp77

GetMp77 returns the Mp77 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp77Ok

func (o *GetContainerConfig200ResponseData) GetMp77Ok() (*string, bool)

GetMp77Ok returns a tuple with the Mp77 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp78

GetMp78 returns the Mp78 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp78Ok

func (o *GetContainerConfig200ResponseData) GetMp78Ok() (*string, bool)

GetMp78Ok returns a tuple with the Mp78 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp79

GetMp79 returns the Mp79 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp79Ok

func (o *GetContainerConfig200ResponseData) GetMp79Ok() (*string, bool)

GetMp79Ok returns a tuple with the Mp79 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp7Ok

func (o *GetContainerConfig200ResponseData) GetMp7Ok() (*string, bool)

GetMp7Ok returns a tuple with the Mp7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp8

GetMp8 returns the Mp8 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp80

GetMp80 returns the Mp80 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp80Ok

func (o *GetContainerConfig200ResponseData) GetMp80Ok() (*string, bool)

GetMp80Ok returns a tuple with the Mp80 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp81

GetMp81 returns the Mp81 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp81Ok

func (o *GetContainerConfig200ResponseData) GetMp81Ok() (*string, bool)

GetMp81Ok returns a tuple with the Mp81 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp82

GetMp82 returns the Mp82 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp82Ok

func (o *GetContainerConfig200ResponseData) GetMp82Ok() (*string, bool)

GetMp82Ok returns a tuple with the Mp82 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp83

GetMp83 returns the Mp83 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp83Ok

func (o *GetContainerConfig200ResponseData) GetMp83Ok() (*string, bool)

GetMp83Ok returns a tuple with the Mp83 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp84

GetMp84 returns the Mp84 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp84Ok

func (o *GetContainerConfig200ResponseData) GetMp84Ok() (*string, bool)

GetMp84Ok returns a tuple with the Mp84 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp85

GetMp85 returns the Mp85 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp85Ok

func (o *GetContainerConfig200ResponseData) GetMp85Ok() (*string, bool)

GetMp85Ok returns a tuple with the Mp85 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp86

GetMp86 returns the Mp86 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp86Ok

func (o *GetContainerConfig200ResponseData) GetMp86Ok() (*string, bool)

GetMp86Ok returns a tuple with the Mp86 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp87

GetMp87 returns the Mp87 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp87Ok

func (o *GetContainerConfig200ResponseData) GetMp87Ok() (*string, bool)

GetMp87Ok returns a tuple with the Mp87 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp88

GetMp88 returns the Mp88 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp88Ok

func (o *GetContainerConfig200ResponseData) GetMp88Ok() (*string, bool)

GetMp88Ok returns a tuple with the Mp88 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp89

GetMp89 returns the Mp89 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp89Ok

func (o *GetContainerConfig200ResponseData) GetMp89Ok() (*string, bool)

GetMp89Ok returns a tuple with the Mp89 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp8Ok

func (o *GetContainerConfig200ResponseData) GetMp8Ok() (*string, bool)

GetMp8Ok returns a tuple with the Mp8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp9

GetMp9 returns the Mp9 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp90

GetMp90 returns the Mp90 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp90Ok

func (o *GetContainerConfig200ResponseData) GetMp90Ok() (*string, bool)

GetMp90Ok returns a tuple with the Mp90 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp91

GetMp91 returns the Mp91 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp91Ok

func (o *GetContainerConfig200ResponseData) GetMp91Ok() (*string, bool)

GetMp91Ok returns a tuple with the Mp91 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp92

GetMp92 returns the Mp92 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp92Ok

func (o *GetContainerConfig200ResponseData) GetMp92Ok() (*string, bool)

GetMp92Ok returns a tuple with the Mp92 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp93

GetMp93 returns the Mp93 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp93Ok

func (o *GetContainerConfig200ResponseData) GetMp93Ok() (*string, bool)

GetMp93Ok returns a tuple with the Mp93 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp94

GetMp94 returns the Mp94 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp94Ok

func (o *GetContainerConfig200ResponseData) GetMp94Ok() (*string, bool)

GetMp94Ok returns a tuple with the Mp94 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp95

GetMp95 returns the Mp95 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp95Ok

func (o *GetContainerConfig200ResponseData) GetMp95Ok() (*string, bool)

GetMp95Ok returns a tuple with the Mp95 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp96

GetMp96 returns the Mp96 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp96Ok

func (o *GetContainerConfig200ResponseData) GetMp96Ok() (*string, bool)

GetMp96Ok returns a tuple with the Mp96 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp97

GetMp97 returns the Mp97 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp97Ok

func (o *GetContainerConfig200ResponseData) GetMp97Ok() (*string, bool)

GetMp97Ok returns a tuple with the Mp97 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp98

GetMp98 returns the Mp98 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp98Ok

func (o *GetContainerConfig200ResponseData) GetMp98Ok() (*string, bool)

GetMp98Ok returns a tuple with the Mp98 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp99

GetMp99 returns the Mp99 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetMp99Ok

func (o *GetContainerConfig200ResponseData) GetMp99Ok() (*string, bool)

GetMp99Ok returns a tuple with the Mp99 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetMp9Ok

func (o *GetContainerConfig200ResponseData) GetMp9Ok() (*string, bool)

GetMp9Ok returns a tuple with the Mp9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNameserver

func (o *GetContainerConfig200ResponseData) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNameserverOk

func (o *GetContainerConfig200ResponseData) GetNameserverOk() (*string, bool)

GetNameserverOk returns a tuple with the Nameserver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet0

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet0Ok

func (o *GetContainerConfig200ResponseData) GetNet0Ok() (*string, bool)

GetNet0Ok returns a tuple with the Net0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet1

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet10

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet10Ok

func (o *GetContainerConfig200ResponseData) GetNet10Ok() (*string, bool)

GetNet10Ok returns a tuple with the Net10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet11

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet11Ok

func (o *GetContainerConfig200ResponseData) GetNet11Ok() (*string, bool)

GetNet11Ok returns a tuple with the Net11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet12

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet12Ok

func (o *GetContainerConfig200ResponseData) GetNet12Ok() (*string, bool)

GetNet12Ok returns a tuple with the Net12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet13

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet13Ok

func (o *GetContainerConfig200ResponseData) GetNet13Ok() (*string, bool)

GetNet13Ok returns a tuple with the Net13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet14

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet14Ok

func (o *GetContainerConfig200ResponseData) GetNet14Ok() (*string, bool)

GetNet14Ok returns a tuple with the Net14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet15

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet15Ok

func (o *GetContainerConfig200ResponseData) GetNet15Ok() (*string, bool)

GetNet15Ok returns a tuple with the Net15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet16

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet16Ok

func (o *GetContainerConfig200ResponseData) GetNet16Ok() (*string, bool)

GetNet16Ok returns a tuple with the Net16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet17

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet17Ok

func (o *GetContainerConfig200ResponseData) GetNet17Ok() (*string, bool)

GetNet17Ok returns a tuple with the Net17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet18

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet18Ok

func (o *GetContainerConfig200ResponseData) GetNet18Ok() (*string, bool)

GetNet18Ok returns a tuple with the Net18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet19

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet19Ok

func (o *GetContainerConfig200ResponseData) GetNet19Ok() (*string, bool)

GetNet19Ok returns a tuple with the Net19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet1Ok

func (o *GetContainerConfig200ResponseData) GetNet1Ok() (*string, bool)

GetNet1Ok returns a tuple with the Net1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet2

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet20

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet20Ok

func (o *GetContainerConfig200ResponseData) GetNet20Ok() (*string, bool)

GetNet20Ok returns a tuple with the Net20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet21

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet21Ok

func (o *GetContainerConfig200ResponseData) GetNet21Ok() (*string, bool)

GetNet21Ok returns a tuple with the Net21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet22

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet22Ok

func (o *GetContainerConfig200ResponseData) GetNet22Ok() (*string, bool)

GetNet22Ok returns a tuple with the Net22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet23

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet23Ok

func (o *GetContainerConfig200ResponseData) GetNet23Ok() (*string, bool)

GetNet23Ok returns a tuple with the Net23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet24

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet24Ok

func (o *GetContainerConfig200ResponseData) GetNet24Ok() (*string, bool)

GetNet24Ok returns a tuple with the Net24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet25

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet25Ok

func (o *GetContainerConfig200ResponseData) GetNet25Ok() (*string, bool)

GetNet25Ok returns a tuple with the Net25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet26

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet26Ok

func (o *GetContainerConfig200ResponseData) GetNet26Ok() (*string, bool)

GetNet26Ok returns a tuple with the Net26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet27

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet27Ok

func (o *GetContainerConfig200ResponseData) GetNet27Ok() (*string, bool)

GetNet27Ok returns a tuple with the Net27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet28

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet28Ok

func (o *GetContainerConfig200ResponseData) GetNet28Ok() (*string, bool)

GetNet28Ok returns a tuple with the Net28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet29

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet29Ok

func (o *GetContainerConfig200ResponseData) GetNet29Ok() (*string, bool)

GetNet29Ok returns a tuple with the Net29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet2Ok

func (o *GetContainerConfig200ResponseData) GetNet2Ok() (*string, bool)

GetNet2Ok returns a tuple with the Net2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet3

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet30

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet30Ok

func (o *GetContainerConfig200ResponseData) GetNet30Ok() (*string, bool)

GetNet30Ok returns a tuple with the Net30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet31

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet31Ok

func (o *GetContainerConfig200ResponseData) GetNet31Ok() (*string, bool)

GetNet31Ok returns a tuple with the Net31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet3Ok

func (o *GetContainerConfig200ResponseData) GetNet3Ok() (*string, bool)

GetNet3Ok returns a tuple with the Net3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet4

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet4Ok

func (o *GetContainerConfig200ResponseData) GetNet4Ok() (*string, bool)

GetNet4Ok returns a tuple with the Net4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet5

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet5Ok

func (o *GetContainerConfig200ResponseData) GetNet5Ok() (*string, bool)

GetNet5Ok returns a tuple with the Net5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet6

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet6Ok

func (o *GetContainerConfig200ResponseData) GetNet6Ok() (*string, bool)

GetNet6Ok returns a tuple with the Net6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet7

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet7Ok

func (o *GetContainerConfig200ResponseData) GetNet7Ok() (*string, bool)

GetNet7Ok returns a tuple with the Net7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet8

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet8Ok

func (o *GetContainerConfig200ResponseData) GetNet8Ok() (*string, bool)

GetNet8Ok returns a tuple with the Net8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetNet9

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetNet9Ok

func (o *GetContainerConfig200ResponseData) GetNet9Ok() (*string, bool)

GetNet9Ok returns a tuple with the Net9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetOnboot

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetOnbootOk

func (o *GetContainerConfig200ResponseData) GetOnbootOk() (*int32, bool)

GetOnbootOk returns a tuple with the Onboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetOstype

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetOstypeOk

func (o *GetContainerConfig200ResponseData) GetOstypeOk() (*string, bool)

GetOstypeOk returns a tuple with the Ostype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetProtection

func (o *GetContainerConfig200ResponseData) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetProtectionOk

func (o *GetContainerConfig200ResponseData) GetProtectionOk() (*int32, bool)

GetProtectionOk returns a tuple with the Protection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetRootfs

GetRootfs returns the Rootfs field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetRootfsOk

func (o *GetContainerConfig200ResponseData) GetRootfsOk() (*string, bool)

GetRootfsOk returns a tuple with the Rootfs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetSearchdomain

func (o *GetContainerConfig200ResponseData) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetSearchdomainOk

func (o *GetContainerConfig200ResponseData) GetSearchdomainOk() (*string, bool)

GetSearchdomainOk returns a tuple with the Searchdomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetStartup

func (o *GetContainerConfig200ResponseData) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetStartupOk

func (o *GetContainerConfig200ResponseData) GetStartupOk() (*string, bool)

GetStartupOk returns a tuple with the Startup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetSwap

GetSwap returns the Swap field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetSwapOk

func (o *GetContainerConfig200ResponseData) GetSwapOk() (*int64, bool)

GetSwapOk returns a tuple with the Swap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetTagsOk

func (o *GetContainerConfig200ResponseData) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetTemplate

func (o *GetContainerConfig200ResponseData) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetTemplateOk

func (o *GetContainerConfig200ResponseData) GetTemplateOk() (*int32, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetTimezone

func (o *GetContainerConfig200ResponseData) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetTimezoneOk

func (o *GetContainerConfig200ResponseData) GetTimezoneOk() (*string, bool)

GetTimezoneOk returns a tuple with the Timezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetTty

GetTty returns the Tty field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetTtyOk

func (o *GetContainerConfig200ResponseData) GetTtyOk() (*int64, bool)

GetTtyOk returns a tuple with the Tty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnprivileged

func (o *GetContainerConfig200ResponseData) GetUnprivileged() int32

GetUnprivileged returns the Unprivileged field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnprivilegedOk

func (o *GetContainerConfig200ResponseData) GetUnprivilegedOk() (*int32, bool)

GetUnprivilegedOk returns a tuple with the Unprivileged field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused0

func (o *GetContainerConfig200ResponseData) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused0Ok

func (o *GetContainerConfig200ResponseData) GetUnused0Ok() (*string, bool)

GetUnused0Ok returns a tuple with the Unused0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused1

func (o *GetContainerConfig200ResponseData) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused10

func (o *GetContainerConfig200ResponseData) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused10Ok

func (o *GetContainerConfig200ResponseData) GetUnused10Ok() (*string, bool)

GetUnused10Ok returns a tuple with the Unused10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused11

func (o *GetContainerConfig200ResponseData) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused11Ok

func (o *GetContainerConfig200ResponseData) GetUnused11Ok() (*string, bool)

GetUnused11Ok returns a tuple with the Unused11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused12

func (o *GetContainerConfig200ResponseData) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused12Ok

func (o *GetContainerConfig200ResponseData) GetUnused12Ok() (*string, bool)

GetUnused12Ok returns a tuple with the Unused12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused13

func (o *GetContainerConfig200ResponseData) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused13Ok

func (o *GetContainerConfig200ResponseData) GetUnused13Ok() (*string, bool)

GetUnused13Ok returns a tuple with the Unused13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused14

func (o *GetContainerConfig200ResponseData) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused14Ok

func (o *GetContainerConfig200ResponseData) GetUnused14Ok() (*string, bool)

GetUnused14Ok returns a tuple with the Unused14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused15

func (o *GetContainerConfig200ResponseData) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused15Ok

func (o *GetContainerConfig200ResponseData) GetUnused15Ok() (*string, bool)

GetUnused15Ok returns a tuple with the Unused15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused16

func (o *GetContainerConfig200ResponseData) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused16Ok

func (o *GetContainerConfig200ResponseData) GetUnused16Ok() (*string, bool)

GetUnused16Ok returns a tuple with the Unused16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused17

func (o *GetContainerConfig200ResponseData) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused17Ok

func (o *GetContainerConfig200ResponseData) GetUnused17Ok() (*string, bool)

GetUnused17Ok returns a tuple with the Unused17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused18

func (o *GetContainerConfig200ResponseData) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused18Ok

func (o *GetContainerConfig200ResponseData) GetUnused18Ok() (*string, bool)

GetUnused18Ok returns a tuple with the Unused18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused19

func (o *GetContainerConfig200ResponseData) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused19Ok

func (o *GetContainerConfig200ResponseData) GetUnused19Ok() (*string, bool)

GetUnused19Ok returns a tuple with the Unused19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused1Ok

func (o *GetContainerConfig200ResponseData) GetUnused1Ok() (*string, bool)

GetUnused1Ok returns a tuple with the Unused1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused2

func (o *GetContainerConfig200ResponseData) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused20

func (o *GetContainerConfig200ResponseData) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused20Ok

func (o *GetContainerConfig200ResponseData) GetUnused20Ok() (*string, bool)

GetUnused20Ok returns a tuple with the Unused20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused21

func (o *GetContainerConfig200ResponseData) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused21Ok

func (o *GetContainerConfig200ResponseData) GetUnused21Ok() (*string, bool)

GetUnused21Ok returns a tuple with the Unused21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused22

func (o *GetContainerConfig200ResponseData) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused22Ok

func (o *GetContainerConfig200ResponseData) GetUnused22Ok() (*string, bool)

GetUnused22Ok returns a tuple with the Unused22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused23

func (o *GetContainerConfig200ResponseData) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused23Ok

func (o *GetContainerConfig200ResponseData) GetUnused23Ok() (*string, bool)

GetUnused23Ok returns a tuple with the Unused23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused24

func (o *GetContainerConfig200ResponseData) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused24Ok

func (o *GetContainerConfig200ResponseData) GetUnused24Ok() (*string, bool)

GetUnused24Ok returns a tuple with the Unused24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused25

func (o *GetContainerConfig200ResponseData) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused25Ok

func (o *GetContainerConfig200ResponseData) GetUnused25Ok() (*string, bool)

GetUnused25Ok returns a tuple with the Unused25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused26

func (o *GetContainerConfig200ResponseData) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused26Ok

func (o *GetContainerConfig200ResponseData) GetUnused26Ok() (*string, bool)

GetUnused26Ok returns a tuple with the Unused26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused27

func (o *GetContainerConfig200ResponseData) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused27Ok

func (o *GetContainerConfig200ResponseData) GetUnused27Ok() (*string, bool)

GetUnused27Ok returns a tuple with the Unused27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused28

func (o *GetContainerConfig200ResponseData) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused28Ok

func (o *GetContainerConfig200ResponseData) GetUnused28Ok() (*string, bool)

GetUnused28Ok returns a tuple with the Unused28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused29

func (o *GetContainerConfig200ResponseData) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused29Ok

func (o *GetContainerConfig200ResponseData) GetUnused29Ok() (*string, bool)

GetUnused29Ok returns a tuple with the Unused29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused2Ok

func (o *GetContainerConfig200ResponseData) GetUnused2Ok() (*string, bool)

GetUnused2Ok returns a tuple with the Unused2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused3

func (o *GetContainerConfig200ResponseData) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused3Ok

func (o *GetContainerConfig200ResponseData) GetUnused3Ok() (*string, bool)

GetUnused3Ok returns a tuple with the Unused3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused4

func (o *GetContainerConfig200ResponseData) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused4Ok

func (o *GetContainerConfig200ResponseData) GetUnused4Ok() (*string, bool)

GetUnused4Ok returns a tuple with the Unused4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused5

func (o *GetContainerConfig200ResponseData) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused5Ok

func (o *GetContainerConfig200ResponseData) GetUnused5Ok() (*string, bool)

GetUnused5Ok returns a tuple with the Unused5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused6

func (o *GetContainerConfig200ResponseData) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused6Ok

func (o *GetContainerConfig200ResponseData) GetUnused6Ok() (*string, bool)

GetUnused6Ok returns a tuple with the Unused6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused7

func (o *GetContainerConfig200ResponseData) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused7Ok

func (o *GetContainerConfig200ResponseData) GetUnused7Ok() (*string, bool)

GetUnused7Ok returns a tuple with the Unused7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused8

func (o *GetContainerConfig200ResponseData) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused8Ok

func (o *GetContainerConfig200ResponseData) GetUnused8Ok() (*string, bool)

GetUnused8Ok returns a tuple with the Unused8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) GetUnused9

func (o *GetContainerConfig200ResponseData) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*GetContainerConfig200ResponseData) GetUnused9Ok

func (o *GetContainerConfig200ResponseData) GetUnused9Ok() (*string, bool)

GetUnused9Ok returns a tuple with the Unused9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfig200ResponseData) HasArch

HasArch returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasCmode

HasCmode returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasConsole

func (o *GetContainerConfig200ResponseData) HasConsole() bool

HasConsole returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasCores

HasCores returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasCpulimit

func (o *GetContainerConfig200ResponseData) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasCpuunits

func (o *GetContainerConfig200ResponseData) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDebug

HasDebug returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDescription

func (o *GetContainerConfig200ResponseData) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev0 added in v1.0.4

HasDev0 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev1 added in v1.0.4

HasDev1 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev10 added in v1.0.4

HasDev10 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev11 added in v1.0.4

HasDev11 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev12 added in v1.0.4

HasDev12 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev13 added in v1.0.4

HasDev13 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev14 added in v1.0.4

HasDev14 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev15 added in v1.0.4

HasDev15 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev16 added in v1.0.4

HasDev16 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev17 added in v1.0.4

HasDev17 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev18 added in v1.0.4

HasDev18 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev19 added in v1.0.4

HasDev19 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev2 added in v1.0.4

HasDev2 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev20 added in v1.0.4

HasDev20 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev21 added in v1.0.4

HasDev21 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev22 added in v1.0.4

HasDev22 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev23 added in v1.0.4

HasDev23 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev24 added in v1.0.4

HasDev24 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev25 added in v1.0.4

HasDev25 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev26 added in v1.0.4

HasDev26 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev27 added in v1.0.4

HasDev27 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev28 added in v1.0.4

HasDev28 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev29 added in v1.0.4

HasDev29 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev3 added in v1.0.4

HasDev3 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev4 added in v1.0.4

HasDev4 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev5 added in v1.0.4

HasDev5 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev6 added in v1.0.4

HasDev6 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev7 added in v1.0.4

HasDev7 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev8 added in v1.0.4

HasDev8 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDev9 added in v1.0.4

HasDev9 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasDigest

func (o *GetContainerConfig200ResponseData) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasFeatures

func (o *GetContainerConfig200ResponseData) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasHookscript

func (o *GetContainerConfig200ResponseData) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasHostname

func (o *GetContainerConfig200ResponseData) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasLock

HasLock returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasLxc

HasLxc returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMemory

func (o *GetContainerConfig200ResponseData) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp0

HasMp0 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp1

HasMp1 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp10

HasMp10 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp100

HasMp100 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp101

HasMp101 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp102

HasMp102 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp103

HasMp103 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp104

HasMp104 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp105

HasMp105 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp106

HasMp106 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp107

HasMp107 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp108

HasMp108 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp109

HasMp109 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp11

HasMp11 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp110

HasMp110 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp111

HasMp111 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp112

HasMp112 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp113

HasMp113 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp114

HasMp114 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp115

HasMp115 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp116

HasMp116 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp117

HasMp117 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp118

HasMp118 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp119

HasMp119 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp12

HasMp12 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp120

HasMp120 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp121

HasMp121 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp122

HasMp122 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp123

HasMp123 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp124

HasMp124 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp125

HasMp125 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp126

HasMp126 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp127

HasMp127 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp128

HasMp128 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp129

HasMp129 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp13

HasMp13 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp130

HasMp130 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp131

HasMp131 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp132

HasMp132 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp133

HasMp133 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp134

HasMp134 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp135

HasMp135 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp136

HasMp136 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp137

HasMp137 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp138

HasMp138 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp139

HasMp139 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp14

HasMp14 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp140

HasMp140 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp141

HasMp141 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp142

HasMp142 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp143

HasMp143 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp144

HasMp144 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp145

HasMp145 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp146

HasMp146 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp147

HasMp147 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp148

HasMp148 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp149

HasMp149 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp15

HasMp15 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp150

HasMp150 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp151

HasMp151 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp152

HasMp152 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp153

HasMp153 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp154

HasMp154 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp155

HasMp155 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp156

HasMp156 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp157

HasMp157 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp158

HasMp158 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp159

HasMp159 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp16

HasMp16 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp160

HasMp160 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp161

HasMp161 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp162

HasMp162 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp163

HasMp163 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp164

HasMp164 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp165

HasMp165 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp166

HasMp166 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp167

HasMp167 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp168

HasMp168 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp169

HasMp169 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp17

HasMp17 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp170

HasMp170 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp171

HasMp171 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp172

HasMp172 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp173

HasMp173 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp174

HasMp174 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp175

HasMp175 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp176

HasMp176 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp177

HasMp177 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp178

HasMp178 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp179

HasMp179 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp18

HasMp18 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp180

HasMp180 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp181

HasMp181 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp182

HasMp182 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp183

HasMp183 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp184

HasMp184 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp185

HasMp185 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp186

HasMp186 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp187

HasMp187 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp188

HasMp188 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp189

HasMp189 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp19

HasMp19 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp190

HasMp190 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp191

HasMp191 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp192

HasMp192 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp193

HasMp193 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp194

HasMp194 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp195

HasMp195 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp196

HasMp196 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp197

HasMp197 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp198

HasMp198 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp199

HasMp199 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp2

HasMp2 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp20

HasMp20 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp200

HasMp200 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp201

HasMp201 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp202

HasMp202 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp203

HasMp203 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp204

HasMp204 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp205

HasMp205 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp206

HasMp206 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp207

HasMp207 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp208

HasMp208 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp209

HasMp209 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp21

HasMp21 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp210

HasMp210 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp211

HasMp211 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp212

HasMp212 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp213

HasMp213 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp214

HasMp214 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp215

HasMp215 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp216

HasMp216 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp217

HasMp217 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp218

HasMp218 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp219

HasMp219 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp22

HasMp22 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp220

HasMp220 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp221

HasMp221 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp222

HasMp222 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp223

HasMp223 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp224

HasMp224 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp225

HasMp225 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp226

HasMp226 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp227

HasMp227 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp228

HasMp228 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp229

HasMp229 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp23

HasMp23 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp230

HasMp230 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp231

HasMp231 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp232

HasMp232 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp233

HasMp233 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp234

HasMp234 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp235

HasMp235 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp236

HasMp236 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp237

HasMp237 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp238

HasMp238 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp239

HasMp239 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp24

HasMp24 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp240

HasMp240 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp241

HasMp241 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp242

HasMp242 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp243

HasMp243 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp244

HasMp244 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp245

HasMp245 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp246

HasMp246 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp247

HasMp247 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp248

HasMp248 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp249

HasMp249 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp25

HasMp25 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp250

HasMp250 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp251

HasMp251 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp252

HasMp252 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp253

HasMp253 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp254

HasMp254 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp255

HasMp255 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp26

HasMp26 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp27

HasMp27 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp28

HasMp28 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp29

HasMp29 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp3

HasMp3 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp30

HasMp30 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp31

HasMp31 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp32

HasMp32 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp33

HasMp33 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp34

HasMp34 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp35

HasMp35 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp36

HasMp36 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp37

HasMp37 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp38

HasMp38 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp39

HasMp39 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp4

HasMp4 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp40

HasMp40 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp41

HasMp41 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp42

HasMp42 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp43

HasMp43 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp44

HasMp44 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp45

HasMp45 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp46

HasMp46 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp47

HasMp47 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp48

HasMp48 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp49

HasMp49 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp5

HasMp5 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp50

HasMp50 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp51

HasMp51 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp52

HasMp52 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp53

HasMp53 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp54

HasMp54 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp55

HasMp55 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp56

HasMp56 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp57

HasMp57 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp58

HasMp58 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp59

HasMp59 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp6

HasMp6 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp60

HasMp60 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp61

HasMp61 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp62

HasMp62 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp63

HasMp63 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp64

HasMp64 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp65

HasMp65 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp66

HasMp66 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp67

HasMp67 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp68

HasMp68 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp69

HasMp69 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp7

HasMp7 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp70

HasMp70 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp71

HasMp71 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp72

HasMp72 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp73

HasMp73 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp74

HasMp74 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp75

HasMp75 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp76

HasMp76 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp77

HasMp77 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp78

HasMp78 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp79

HasMp79 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp8

HasMp8 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp80

HasMp80 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp81

HasMp81 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp82

HasMp82 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp83

HasMp83 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp84

HasMp84 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp85

HasMp85 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp86

HasMp86 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp87

HasMp87 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp88

HasMp88 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp89

HasMp89 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp9

HasMp9 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp90

HasMp90 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp91

HasMp91 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp92

HasMp92 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp93

HasMp93 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp94

HasMp94 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp95

HasMp95 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp96

HasMp96 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp97

HasMp97 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp98

HasMp98 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasMp99

HasMp99 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNameserver

func (o *GetContainerConfig200ResponseData) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet0

HasNet0 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet1

HasNet1 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet10

HasNet10 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet11

HasNet11 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet12

HasNet12 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet13

HasNet13 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet14

HasNet14 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet15

HasNet15 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet16

HasNet16 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet17

HasNet17 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet18

HasNet18 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet19

HasNet19 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet2

HasNet2 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet20

HasNet20 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet21

HasNet21 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet22

HasNet22 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet23

HasNet23 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet24

HasNet24 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet25

HasNet25 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet26

HasNet26 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet27

HasNet27 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet28

HasNet28 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet29

HasNet29 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet3

HasNet3 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet30

HasNet30 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet31

HasNet31 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet4

HasNet4 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet5

HasNet5 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet6

HasNet6 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet7

HasNet7 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet8

HasNet8 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasNet9

HasNet9 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasOnboot

func (o *GetContainerConfig200ResponseData) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasOstype

func (o *GetContainerConfig200ResponseData) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasProtection

func (o *GetContainerConfig200ResponseData) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasRootfs

func (o *GetContainerConfig200ResponseData) HasRootfs() bool

HasRootfs returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasSearchdomain

func (o *GetContainerConfig200ResponseData) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasStartup

func (o *GetContainerConfig200ResponseData) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasSwap

HasSwap returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasTags

HasTags returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasTemplate

func (o *GetContainerConfig200ResponseData) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasTimezone

func (o *GetContainerConfig200ResponseData) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasTty

HasTty returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnprivileged

func (o *GetContainerConfig200ResponseData) HasUnprivileged() bool

HasUnprivileged returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused0

func (o *GetContainerConfig200ResponseData) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused1

func (o *GetContainerConfig200ResponseData) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused10

func (o *GetContainerConfig200ResponseData) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused11

func (o *GetContainerConfig200ResponseData) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused12

func (o *GetContainerConfig200ResponseData) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused13

func (o *GetContainerConfig200ResponseData) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused14

func (o *GetContainerConfig200ResponseData) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused15

func (o *GetContainerConfig200ResponseData) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused16

func (o *GetContainerConfig200ResponseData) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused17

func (o *GetContainerConfig200ResponseData) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused18

func (o *GetContainerConfig200ResponseData) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused19

func (o *GetContainerConfig200ResponseData) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused2

func (o *GetContainerConfig200ResponseData) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused20

func (o *GetContainerConfig200ResponseData) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused21

func (o *GetContainerConfig200ResponseData) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused22

func (o *GetContainerConfig200ResponseData) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused23

func (o *GetContainerConfig200ResponseData) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused24

func (o *GetContainerConfig200ResponseData) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused25

func (o *GetContainerConfig200ResponseData) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused26

func (o *GetContainerConfig200ResponseData) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused27

func (o *GetContainerConfig200ResponseData) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused28

func (o *GetContainerConfig200ResponseData) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused29

func (o *GetContainerConfig200ResponseData) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused3

func (o *GetContainerConfig200ResponseData) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused4

func (o *GetContainerConfig200ResponseData) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused5

func (o *GetContainerConfig200ResponseData) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused6

func (o *GetContainerConfig200ResponseData) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused7

func (o *GetContainerConfig200ResponseData) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused8

func (o *GetContainerConfig200ResponseData) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*GetContainerConfig200ResponseData) HasUnused9

func (o *GetContainerConfig200ResponseData) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (GetContainerConfig200ResponseData) MarshalJSON

func (o GetContainerConfig200ResponseData) MarshalJSON() ([]byte, error)

func (*GetContainerConfig200ResponseData) SetArch

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*GetContainerConfig200ResponseData) SetCmode

SetCmode gets a reference to the given string and assigns it to the Cmode field.

func (*GetContainerConfig200ResponseData) SetConsole

func (o *GetContainerConfig200ResponseData) SetConsole(v int32)

SetConsole gets a reference to the given int32 and assigns it to the Console field.

func (*GetContainerConfig200ResponseData) SetCores

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*GetContainerConfig200ResponseData) SetCpulimit

func (o *GetContainerConfig200ResponseData) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*GetContainerConfig200ResponseData) SetCpuunits

func (o *GetContainerConfig200ResponseData) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*GetContainerConfig200ResponseData) SetDebug

SetDebug gets a reference to the given int32 and assigns it to the Debug field.

func (*GetContainerConfig200ResponseData) SetDescription

func (o *GetContainerConfig200ResponseData) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GetContainerConfig200ResponseData) SetDev0 added in v1.0.4

SetDev0 gets a reference to the given string and assigns it to the Dev0 field.

func (*GetContainerConfig200ResponseData) SetDev1 added in v1.0.4

SetDev1 gets a reference to the given string and assigns it to the Dev1 field.

func (*GetContainerConfig200ResponseData) SetDev10 added in v1.0.4

SetDev10 gets a reference to the given string and assigns it to the Dev10 field.

func (*GetContainerConfig200ResponseData) SetDev11 added in v1.0.4

SetDev11 gets a reference to the given string and assigns it to the Dev11 field.

func (*GetContainerConfig200ResponseData) SetDev12 added in v1.0.4

SetDev12 gets a reference to the given string and assigns it to the Dev12 field.

func (*GetContainerConfig200ResponseData) SetDev13 added in v1.0.4

SetDev13 gets a reference to the given string and assigns it to the Dev13 field.

func (*GetContainerConfig200ResponseData) SetDev14 added in v1.0.4

SetDev14 gets a reference to the given string and assigns it to the Dev14 field.

func (*GetContainerConfig200ResponseData) SetDev15 added in v1.0.4

SetDev15 gets a reference to the given string and assigns it to the Dev15 field.

func (*GetContainerConfig200ResponseData) SetDev16 added in v1.0.4

SetDev16 gets a reference to the given string and assigns it to the Dev16 field.

func (*GetContainerConfig200ResponseData) SetDev17 added in v1.0.4

SetDev17 gets a reference to the given string and assigns it to the Dev17 field.

func (*GetContainerConfig200ResponseData) SetDev18 added in v1.0.4

SetDev18 gets a reference to the given string and assigns it to the Dev18 field.

func (*GetContainerConfig200ResponseData) SetDev19 added in v1.0.4

SetDev19 gets a reference to the given string and assigns it to the Dev19 field.

func (*GetContainerConfig200ResponseData) SetDev2 added in v1.0.4

SetDev2 gets a reference to the given string and assigns it to the Dev2 field.

func (*GetContainerConfig200ResponseData) SetDev20 added in v1.0.4

SetDev20 gets a reference to the given string and assigns it to the Dev20 field.

func (*GetContainerConfig200ResponseData) SetDev21 added in v1.0.4

SetDev21 gets a reference to the given string and assigns it to the Dev21 field.

func (*GetContainerConfig200ResponseData) SetDev22 added in v1.0.4

SetDev22 gets a reference to the given string and assigns it to the Dev22 field.

func (*GetContainerConfig200ResponseData) SetDev23 added in v1.0.4

SetDev23 gets a reference to the given string and assigns it to the Dev23 field.

func (*GetContainerConfig200ResponseData) SetDev24 added in v1.0.4

SetDev24 gets a reference to the given string and assigns it to the Dev24 field.

func (*GetContainerConfig200ResponseData) SetDev25 added in v1.0.4

SetDev25 gets a reference to the given string and assigns it to the Dev25 field.

func (*GetContainerConfig200ResponseData) SetDev26 added in v1.0.4

SetDev26 gets a reference to the given string and assigns it to the Dev26 field.

func (*GetContainerConfig200ResponseData) SetDev27 added in v1.0.4

SetDev27 gets a reference to the given string and assigns it to the Dev27 field.

func (*GetContainerConfig200ResponseData) SetDev28 added in v1.0.4

SetDev28 gets a reference to the given string and assigns it to the Dev28 field.

func (*GetContainerConfig200ResponseData) SetDev29 added in v1.0.4

SetDev29 gets a reference to the given string and assigns it to the Dev29 field.

func (*GetContainerConfig200ResponseData) SetDev3 added in v1.0.4

SetDev3 gets a reference to the given string and assigns it to the Dev3 field.

func (*GetContainerConfig200ResponseData) SetDev4 added in v1.0.4

SetDev4 gets a reference to the given string and assigns it to the Dev4 field.

func (*GetContainerConfig200ResponseData) SetDev5 added in v1.0.4

SetDev5 gets a reference to the given string and assigns it to the Dev5 field.

func (*GetContainerConfig200ResponseData) SetDev6 added in v1.0.4

SetDev6 gets a reference to the given string and assigns it to the Dev6 field.

func (*GetContainerConfig200ResponseData) SetDev7 added in v1.0.4

SetDev7 gets a reference to the given string and assigns it to the Dev7 field.

func (*GetContainerConfig200ResponseData) SetDev8 added in v1.0.4

SetDev8 gets a reference to the given string and assigns it to the Dev8 field.

func (*GetContainerConfig200ResponseData) SetDev9 added in v1.0.4

SetDev9 gets a reference to the given string and assigns it to the Dev9 field.

func (*GetContainerConfig200ResponseData) SetDigest

func (o *GetContainerConfig200ResponseData) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*GetContainerConfig200ResponseData) SetFeatures

func (o *GetContainerConfig200ResponseData) SetFeatures(v string)

SetFeatures gets a reference to the given string and assigns it to the Features field.

func (*GetContainerConfig200ResponseData) SetHookscript

func (o *GetContainerConfig200ResponseData) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*GetContainerConfig200ResponseData) SetHostname

func (o *GetContainerConfig200ResponseData) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*GetContainerConfig200ResponseData) SetLock

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetContainerConfig200ResponseData) SetLxc

func (o *GetContainerConfig200ResponseData) SetLxc(v [][]string)

SetLxc gets a reference to the given [][]string and assigns it to the Lxc field.

func (*GetContainerConfig200ResponseData) SetMemory

func (o *GetContainerConfig200ResponseData) SetMemory(v int64)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (*GetContainerConfig200ResponseData) SetMp0

SetMp0 gets a reference to the given string and assigns it to the Mp0 field.

func (*GetContainerConfig200ResponseData) SetMp1

SetMp1 gets a reference to the given string and assigns it to the Mp1 field.

func (*GetContainerConfig200ResponseData) SetMp10

SetMp10 gets a reference to the given string and assigns it to the Mp10 field.

func (*GetContainerConfig200ResponseData) SetMp100

SetMp100 gets a reference to the given string and assigns it to the Mp100 field.

func (*GetContainerConfig200ResponseData) SetMp101

SetMp101 gets a reference to the given string and assigns it to the Mp101 field.

func (*GetContainerConfig200ResponseData) SetMp102

SetMp102 gets a reference to the given string and assigns it to the Mp102 field.

func (*GetContainerConfig200ResponseData) SetMp103

SetMp103 gets a reference to the given string and assigns it to the Mp103 field.

func (*GetContainerConfig200ResponseData) SetMp104

SetMp104 gets a reference to the given string and assigns it to the Mp104 field.

func (*GetContainerConfig200ResponseData) SetMp105

SetMp105 gets a reference to the given string and assigns it to the Mp105 field.

func (*GetContainerConfig200ResponseData) SetMp106

SetMp106 gets a reference to the given string and assigns it to the Mp106 field.

func (*GetContainerConfig200ResponseData) SetMp107

SetMp107 gets a reference to the given string and assigns it to the Mp107 field.

func (*GetContainerConfig200ResponseData) SetMp108

SetMp108 gets a reference to the given string and assigns it to the Mp108 field.

func (*GetContainerConfig200ResponseData) SetMp109

SetMp109 gets a reference to the given string and assigns it to the Mp109 field.

func (*GetContainerConfig200ResponseData) SetMp11

SetMp11 gets a reference to the given string and assigns it to the Mp11 field.

func (*GetContainerConfig200ResponseData) SetMp110

SetMp110 gets a reference to the given string and assigns it to the Mp110 field.

func (*GetContainerConfig200ResponseData) SetMp111

SetMp111 gets a reference to the given string and assigns it to the Mp111 field.

func (*GetContainerConfig200ResponseData) SetMp112

SetMp112 gets a reference to the given string and assigns it to the Mp112 field.

func (*GetContainerConfig200ResponseData) SetMp113

SetMp113 gets a reference to the given string and assigns it to the Mp113 field.

func (*GetContainerConfig200ResponseData) SetMp114

SetMp114 gets a reference to the given string and assigns it to the Mp114 field.

func (*GetContainerConfig200ResponseData) SetMp115

SetMp115 gets a reference to the given string and assigns it to the Mp115 field.

func (*GetContainerConfig200ResponseData) SetMp116

SetMp116 gets a reference to the given string and assigns it to the Mp116 field.

func (*GetContainerConfig200ResponseData) SetMp117

SetMp117 gets a reference to the given string and assigns it to the Mp117 field.

func (*GetContainerConfig200ResponseData) SetMp118

SetMp118 gets a reference to the given string and assigns it to the Mp118 field.

func (*GetContainerConfig200ResponseData) SetMp119

SetMp119 gets a reference to the given string and assigns it to the Mp119 field.

func (*GetContainerConfig200ResponseData) SetMp12

SetMp12 gets a reference to the given string and assigns it to the Mp12 field.

func (*GetContainerConfig200ResponseData) SetMp120

SetMp120 gets a reference to the given string and assigns it to the Mp120 field.

func (*GetContainerConfig200ResponseData) SetMp121

SetMp121 gets a reference to the given string and assigns it to the Mp121 field.

func (*GetContainerConfig200ResponseData) SetMp122

SetMp122 gets a reference to the given string and assigns it to the Mp122 field.

func (*GetContainerConfig200ResponseData) SetMp123

SetMp123 gets a reference to the given string and assigns it to the Mp123 field.

func (*GetContainerConfig200ResponseData) SetMp124

SetMp124 gets a reference to the given string and assigns it to the Mp124 field.

func (*GetContainerConfig200ResponseData) SetMp125

SetMp125 gets a reference to the given string and assigns it to the Mp125 field.

func (*GetContainerConfig200ResponseData) SetMp126

SetMp126 gets a reference to the given string and assigns it to the Mp126 field.

func (*GetContainerConfig200ResponseData) SetMp127

SetMp127 gets a reference to the given string and assigns it to the Mp127 field.

func (*GetContainerConfig200ResponseData) SetMp128

SetMp128 gets a reference to the given string and assigns it to the Mp128 field.

func (*GetContainerConfig200ResponseData) SetMp129

SetMp129 gets a reference to the given string and assigns it to the Mp129 field.

func (*GetContainerConfig200ResponseData) SetMp13

SetMp13 gets a reference to the given string and assigns it to the Mp13 field.

func (*GetContainerConfig200ResponseData) SetMp130

SetMp130 gets a reference to the given string and assigns it to the Mp130 field.

func (*GetContainerConfig200ResponseData) SetMp131

SetMp131 gets a reference to the given string and assigns it to the Mp131 field.

func (*GetContainerConfig200ResponseData) SetMp132

SetMp132 gets a reference to the given string and assigns it to the Mp132 field.

func (*GetContainerConfig200ResponseData) SetMp133

SetMp133 gets a reference to the given string and assigns it to the Mp133 field.

func (*GetContainerConfig200ResponseData) SetMp134

SetMp134 gets a reference to the given string and assigns it to the Mp134 field.

func (*GetContainerConfig200ResponseData) SetMp135

SetMp135 gets a reference to the given string and assigns it to the Mp135 field.

func (*GetContainerConfig200ResponseData) SetMp136

SetMp136 gets a reference to the given string and assigns it to the Mp136 field.

func (*GetContainerConfig200ResponseData) SetMp137

SetMp137 gets a reference to the given string and assigns it to the Mp137 field.

func (*GetContainerConfig200ResponseData) SetMp138

SetMp138 gets a reference to the given string and assigns it to the Mp138 field.

func (*GetContainerConfig200ResponseData) SetMp139

SetMp139 gets a reference to the given string and assigns it to the Mp139 field.

func (*GetContainerConfig200ResponseData) SetMp14

SetMp14 gets a reference to the given string and assigns it to the Mp14 field.

func (*GetContainerConfig200ResponseData) SetMp140

SetMp140 gets a reference to the given string and assigns it to the Mp140 field.

func (*GetContainerConfig200ResponseData) SetMp141

SetMp141 gets a reference to the given string and assigns it to the Mp141 field.

func (*GetContainerConfig200ResponseData) SetMp142

SetMp142 gets a reference to the given string and assigns it to the Mp142 field.

func (*GetContainerConfig200ResponseData) SetMp143

SetMp143 gets a reference to the given string and assigns it to the Mp143 field.

func (*GetContainerConfig200ResponseData) SetMp144

SetMp144 gets a reference to the given string and assigns it to the Mp144 field.

func (*GetContainerConfig200ResponseData) SetMp145

SetMp145 gets a reference to the given string and assigns it to the Mp145 field.

func (*GetContainerConfig200ResponseData) SetMp146

SetMp146 gets a reference to the given string and assigns it to the Mp146 field.

func (*GetContainerConfig200ResponseData) SetMp147

SetMp147 gets a reference to the given string and assigns it to the Mp147 field.

func (*GetContainerConfig200ResponseData) SetMp148

SetMp148 gets a reference to the given string and assigns it to the Mp148 field.

func (*GetContainerConfig200ResponseData) SetMp149

SetMp149 gets a reference to the given string and assigns it to the Mp149 field.

func (*GetContainerConfig200ResponseData) SetMp15

SetMp15 gets a reference to the given string and assigns it to the Mp15 field.

func (*GetContainerConfig200ResponseData) SetMp150

SetMp150 gets a reference to the given string and assigns it to the Mp150 field.

func (*GetContainerConfig200ResponseData) SetMp151

SetMp151 gets a reference to the given string and assigns it to the Mp151 field.

func (*GetContainerConfig200ResponseData) SetMp152

SetMp152 gets a reference to the given string and assigns it to the Mp152 field.

func (*GetContainerConfig200ResponseData) SetMp153

SetMp153 gets a reference to the given string and assigns it to the Mp153 field.

func (*GetContainerConfig200ResponseData) SetMp154

SetMp154 gets a reference to the given string and assigns it to the Mp154 field.

func (*GetContainerConfig200ResponseData) SetMp155

SetMp155 gets a reference to the given string and assigns it to the Mp155 field.

func (*GetContainerConfig200ResponseData) SetMp156

SetMp156 gets a reference to the given string and assigns it to the Mp156 field.

func (*GetContainerConfig200ResponseData) SetMp157

SetMp157 gets a reference to the given string and assigns it to the Mp157 field.

func (*GetContainerConfig200ResponseData) SetMp158

SetMp158 gets a reference to the given string and assigns it to the Mp158 field.

func (*GetContainerConfig200ResponseData) SetMp159

SetMp159 gets a reference to the given string and assigns it to the Mp159 field.

func (*GetContainerConfig200ResponseData) SetMp16

SetMp16 gets a reference to the given string and assigns it to the Mp16 field.

func (*GetContainerConfig200ResponseData) SetMp160

SetMp160 gets a reference to the given string and assigns it to the Mp160 field.

func (*GetContainerConfig200ResponseData) SetMp161

SetMp161 gets a reference to the given string and assigns it to the Mp161 field.

func (*GetContainerConfig200ResponseData) SetMp162

SetMp162 gets a reference to the given string and assigns it to the Mp162 field.

func (*GetContainerConfig200ResponseData) SetMp163

SetMp163 gets a reference to the given string and assigns it to the Mp163 field.

func (*GetContainerConfig200ResponseData) SetMp164

SetMp164 gets a reference to the given string and assigns it to the Mp164 field.

func (*GetContainerConfig200ResponseData) SetMp165

SetMp165 gets a reference to the given string and assigns it to the Mp165 field.

func (*GetContainerConfig200ResponseData) SetMp166

SetMp166 gets a reference to the given string and assigns it to the Mp166 field.

func (*GetContainerConfig200ResponseData) SetMp167

SetMp167 gets a reference to the given string and assigns it to the Mp167 field.

func (*GetContainerConfig200ResponseData) SetMp168

SetMp168 gets a reference to the given string and assigns it to the Mp168 field.

func (*GetContainerConfig200ResponseData) SetMp169

SetMp169 gets a reference to the given string and assigns it to the Mp169 field.

func (*GetContainerConfig200ResponseData) SetMp17

SetMp17 gets a reference to the given string and assigns it to the Mp17 field.

func (*GetContainerConfig200ResponseData) SetMp170

SetMp170 gets a reference to the given string and assigns it to the Mp170 field.

func (*GetContainerConfig200ResponseData) SetMp171

SetMp171 gets a reference to the given string and assigns it to the Mp171 field.

func (*GetContainerConfig200ResponseData) SetMp172

SetMp172 gets a reference to the given string and assigns it to the Mp172 field.

func (*GetContainerConfig200ResponseData) SetMp173

SetMp173 gets a reference to the given string and assigns it to the Mp173 field.

func (*GetContainerConfig200ResponseData) SetMp174

SetMp174 gets a reference to the given string and assigns it to the Mp174 field.

func (*GetContainerConfig200ResponseData) SetMp175

SetMp175 gets a reference to the given string and assigns it to the Mp175 field.

func (*GetContainerConfig200ResponseData) SetMp176

SetMp176 gets a reference to the given string and assigns it to the Mp176 field.

func (*GetContainerConfig200ResponseData) SetMp177

SetMp177 gets a reference to the given string and assigns it to the Mp177 field.

func (*GetContainerConfig200ResponseData) SetMp178

SetMp178 gets a reference to the given string and assigns it to the Mp178 field.

func (*GetContainerConfig200ResponseData) SetMp179

SetMp179 gets a reference to the given string and assigns it to the Mp179 field.

func (*GetContainerConfig200ResponseData) SetMp18

SetMp18 gets a reference to the given string and assigns it to the Mp18 field.

func (*GetContainerConfig200ResponseData) SetMp180

SetMp180 gets a reference to the given string and assigns it to the Mp180 field.

func (*GetContainerConfig200ResponseData) SetMp181

SetMp181 gets a reference to the given string and assigns it to the Mp181 field.

func (*GetContainerConfig200ResponseData) SetMp182

SetMp182 gets a reference to the given string and assigns it to the Mp182 field.

func (*GetContainerConfig200ResponseData) SetMp183

SetMp183 gets a reference to the given string and assigns it to the Mp183 field.

func (*GetContainerConfig200ResponseData) SetMp184

SetMp184 gets a reference to the given string and assigns it to the Mp184 field.

func (*GetContainerConfig200ResponseData) SetMp185

SetMp185 gets a reference to the given string and assigns it to the Mp185 field.

func (*GetContainerConfig200ResponseData) SetMp186

SetMp186 gets a reference to the given string and assigns it to the Mp186 field.

func (*GetContainerConfig200ResponseData) SetMp187

SetMp187 gets a reference to the given string and assigns it to the Mp187 field.

func (*GetContainerConfig200ResponseData) SetMp188

SetMp188 gets a reference to the given string and assigns it to the Mp188 field.

func (*GetContainerConfig200ResponseData) SetMp189

SetMp189 gets a reference to the given string and assigns it to the Mp189 field.

func (*GetContainerConfig200ResponseData) SetMp19

SetMp19 gets a reference to the given string and assigns it to the Mp19 field.

func (*GetContainerConfig200ResponseData) SetMp190

SetMp190 gets a reference to the given string and assigns it to the Mp190 field.

func (*GetContainerConfig200ResponseData) SetMp191

SetMp191 gets a reference to the given string and assigns it to the Mp191 field.

func (*GetContainerConfig200ResponseData) SetMp192

SetMp192 gets a reference to the given string and assigns it to the Mp192 field.

func (*GetContainerConfig200ResponseData) SetMp193

SetMp193 gets a reference to the given string and assigns it to the Mp193 field.

func (*GetContainerConfig200ResponseData) SetMp194

SetMp194 gets a reference to the given string and assigns it to the Mp194 field.

func (*GetContainerConfig200ResponseData) SetMp195

SetMp195 gets a reference to the given string and assigns it to the Mp195 field.

func (*GetContainerConfig200ResponseData) SetMp196

SetMp196 gets a reference to the given string and assigns it to the Mp196 field.

func (*GetContainerConfig200ResponseData) SetMp197

SetMp197 gets a reference to the given string and assigns it to the Mp197 field.

func (*GetContainerConfig200ResponseData) SetMp198

SetMp198 gets a reference to the given string and assigns it to the Mp198 field.

func (*GetContainerConfig200ResponseData) SetMp199

SetMp199 gets a reference to the given string and assigns it to the Mp199 field.

func (*GetContainerConfig200ResponseData) SetMp2

SetMp2 gets a reference to the given string and assigns it to the Mp2 field.

func (*GetContainerConfig200ResponseData) SetMp20

SetMp20 gets a reference to the given string and assigns it to the Mp20 field.

func (*GetContainerConfig200ResponseData) SetMp200

SetMp200 gets a reference to the given string and assigns it to the Mp200 field.

func (*GetContainerConfig200ResponseData) SetMp201

SetMp201 gets a reference to the given string and assigns it to the Mp201 field.

func (*GetContainerConfig200ResponseData) SetMp202

SetMp202 gets a reference to the given string and assigns it to the Mp202 field.

func (*GetContainerConfig200ResponseData) SetMp203

SetMp203 gets a reference to the given string and assigns it to the Mp203 field.

func (*GetContainerConfig200ResponseData) SetMp204

SetMp204 gets a reference to the given string and assigns it to the Mp204 field.

func (*GetContainerConfig200ResponseData) SetMp205

SetMp205 gets a reference to the given string and assigns it to the Mp205 field.

func (*GetContainerConfig200ResponseData) SetMp206

SetMp206 gets a reference to the given string and assigns it to the Mp206 field.

func (*GetContainerConfig200ResponseData) SetMp207

SetMp207 gets a reference to the given string and assigns it to the Mp207 field.

func (*GetContainerConfig200ResponseData) SetMp208

SetMp208 gets a reference to the given string and assigns it to the Mp208 field.

func (*GetContainerConfig200ResponseData) SetMp209

SetMp209 gets a reference to the given string and assigns it to the Mp209 field.

func (*GetContainerConfig200ResponseData) SetMp21

SetMp21 gets a reference to the given string and assigns it to the Mp21 field.

func (*GetContainerConfig200ResponseData) SetMp210

SetMp210 gets a reference to the given string and assigns it to the Mp210 field.

func (*GetContainerConfig200ResponseData) SetMp211

SetMp211 gets a reference to the given string and assigns it to the Mp211 field.

func (*GetContainerConfig200ResponseData) SetMp212

SetMp212 gets a reference to the given string and assigns it to the Mp212 field.

func (*GetContainerConfig200ResponseData) SetMp213

SetMp213 gets a reference to the given string and assigns it to the Mp213 field.

func (*GetContainerConfig200ResponseData) SetMp214

SetMp214 gets a reference to the given string and assigns it to the Mp214 field.

func (*GetContainerConfig200ResponseData) SetMp215

SetMp215 gets a reference to the given string and assigns it to the Mp215 field.

func (*GetContainerConfig200ResponseData) SetMp216

SetMp216 gets a reference to the given string and assigns it to the Mp216 field.

func (*GetContainerConfig200ResponseData) SetMp217

SetMp217 gets a reference to the given string and assigns it to the Mp217 field.

func (*GetContainerConfig200ResponseData) SetMp218

SetMp218 gets a reference to the given string and assigns it to the Mp218 field.

func (*GetContainerConfig200ResponseData) SetMp219

SetMp219 gets a reference to the given string and assigns it to the Mp219 field.

func (*GetContainerConfig200ResponseData) SetMp22

SetMp22 gets a reference to the given string and assigns it to the Mp22 field.

func (*GetContainerConfig200ResponseData) SetMp220

SetMp220 gets a reference to the given string and assigns it to the Mp220 field.

func (*GetContainerConfig200ResponseData) SetMp221

SetMp221 gets a reference to the given string and assigns it to the Mp221 field.

func (*GetContainerConfig200ResponseData) SetMp222

SetMp222 gets a reference to the given string and assigns it to the Mp222 field.

func (*GetContainerConfig200ResponseData) SetMp223

SetMp223 gets a reference to the given string and assigns it to the Mp223 field.

func (*GetContainerConfig200ResponseData) SetMp224

SetMp224 gets a reference to the given string and assigns it to the Mp224 field.

func (*GetContainerConfig200ResponseData) SetMp225

SetMp225 gets a reference to the given string and assigns it to the Mp225 field.

func (*GetContainerConfig200ResponseData) SetMp226

SetMp226 gets a reference to the given string and assigns it to the Mp226 field.

func (*GetContainerConfig200ResponseData) SetMp227

SetMp227 gets a reference to the given string and assigns it to the Mp227 field.

func (*GetContainerConfig200ResponseData) SetMp228

SetMp228 gets a reference to the given string and assigns it to the Mp228 field.

func (*GetContainerConfig200ResponseData) SetMp229

SetMp229 gets a reference to the given string and assigns it to the Mp229 field.

func (*GetContainerConfig200ResponseData) SetMp23

SetMp23 gets a reference to the given string and assigns it to the Mp23 field.

func (*GetContainerConfig200ResponseData) SetMp230

SetMp230 gets a reference to the given string and assigns it to the Mp230 field.

func (*GetContainerConfig200ResponseData) SetMp231

SetMp231 gets a reference to the given string and assigns it to the Mp231 field.

func (*GetContainerConfig200ResponseData) SetMp232

SetMp232 gets a reference to the given string and assigns it to the Mp232 field.

func (*GetContainerConfig200ResponseData) SetMp233

SetMp233 gets a reference to the given string and assigns it to the Mp233 field.

func (*GetContainerConfig200ResponseData) SetMp234

SetMp234 gets a reference to the given string and assigns it to the Mp234 field.

func (*GetContainerConfig200ResponseData) SetMp235

SetMp235 gets a reference to the given string and assigns it to the Mp235 field.

func (*GetContainerConfig200ResponseData) SetMp236

SetMp236 gets a reference to the given string and assigns it to the Mp236 field.

func (*GetContainerConfig200ResponseData) SetMp237

SetMp237 gets a reference to the given string and assigns it to the Mp237 field.

func (*GetContainerConfig200ResponseData) SetMp238

SetMp238 gets a reference to the given string and assigns it to the Mp238 field.

func (*GetContainerConfig200ResponseData) SetMp239

SetMp239 gets a reference to the given string and assigns it to the Mp239 field.

func (*GetContainerConfig200ResponseData) SetMp24

SetMp24 gets a reference to the given string and assigns it to the Mp24 field.

func (*GetContainerConfig200ResponseData) SetMp240

SetMp240 gets a reference to the given string and assigns it to the Mp240 field.

func (*GetContainerConfig200ResponseData) SetMp241

SetMp241 gets a reference to the given string and assigns it to the Mp241 field.

func (*GetContainerConfig200ResponseData) SetMp242

SetMp242 gets a reference to the given string and assigns it to the Mp242 field.

func (*GetContainerConfig200ResponseData) SetMp243

SetMp243 gets a reference to the given string and assigns it to the Mp243 field.

func (*GetContainerConfig200ResponseData) SetMp244

SetMp244 gets a reference to the given string and assigns it to the Mp244 field.

func (*GetContainerConfig200ResponseData) SetMp245

SetMp245 gets a reference to the given string and assigns it to the Mp245 field.

func (*GetContainerConfig200ResponseData) SetMp246

SetMp246 gets a reference to the given string and assigns it to the Mp246 field.

func (*GetContainerConfig200ResponseData) SetMp247

SetMp247 gets a reference to the given string and assigns it to the Mp247 field.

func (*GetContainerConfig200ResponseData) SetMp248

SetMp248 gets a reference to the given string and assigns it to the Mp248 field.

func (*GetContainerConfig200ResponseData) SetMp249

SetMp249 gets a reference to the given string and assigns it to the Mp249 field.

func (*GetContainerConfig200ResponseData) SetMp25

SetMp25 gets a reference to the given string and assigns it to the Mp25 field.

func (*GetContainerConfig200ResponseData) SetMp250

SetMp250 gets a reference to the given string and assigns it to the Mp250 field.

func (*GetContainerConfig200ResponseData) SetMp251

SetMp251 gets a reference to the given string and assigns it to the Mp251 field.

func (*GetContainerConfig200ResponseData) SetMp252

SetMp252 gets a reference to the given string and assigns it to the Mp252 field.

func (*GetContainerConfig200ResponseData) SetMp253

SetMp253 gets a reference to the given string and assigns it to the Mp253 field.

func (*GetContainerConfig200ResponseData) SetMp254

SetMp254 gets a reference to the given string and assigns it to the Mp254 field.

func (*GetContainerConfig200ResponseData) SetMp255

SetMp255 gets a reference to the given string and assigns it to the Mp255 field.

func (*GetContainerConfig200ResponseData) SetMp26

SetMp26 gets a reference to the given string and assigns it to the Mp26 field.

func (*GetContainerConfig200ResponseData) SetMp27

SetMp27 gets a reference to the given string and assigns it to the Mp27 field.

func (*GetContainerConfig200ResponseData) SetMp28

SetMp28 gets a reference to the given string and assigns it to the Mp28 field.

func (*GetContainerConfig200ResponseData) SetMp29

SetMp29 gets a reference to the given string and assigns it to the Mp29 field.

func (*GetContainerConfig200ResponseData) SetMp3

SetMp3 gets a reference to the given string and assigns it to the Mp3 field.

func (*GetContainerConfig200ResponseData) SetMp30

SetMp30 gets a reference to the given string and assigns it to the Mp30 field.

func (*GetContainerConfig200ResponseData) SetMp31

SetMp31 gets a reference to the given string and assigns it to the Mp31 field.

func (*GetContainerConfig200ResponseData) SetMp32

SetMp32 gets a reference to the given string and assigns it to the Mp32 field.

func (*GetContainerConfig200ResponseData) SetMp33

SetMp33 gets a reference to the given string and assigns it to the Mp33 field.

func (*GetContainerConfig200ResponseData) SetMp34

SetMp34 gets a reference to the given string and assigns it to the Mp34 field.

func (*GetContainerConfig200ResponseData) SetMp35

SetMp35 gets a reference to the given string and assigns it to the Mp35 field.

func (*GetContainerConfig200ResponseData) SetMp36

SetMp36 gets a reference to the given string and assigns it to the Mp36 field.

func (*GetContainerConfig200ResponseData) SetMp37

SetMp37 gets a reference to the given string and assigns it to the Mp37 field.

func (*GetContainerConfig200ResponseData) SetMp38

SetMp38 gets a reference to the given string and assigns it to the Mp38 field.

func (*GetContainerConfig200ResponseData) SetMp39

SetMp39 gets a reference to the given string and assigns it to the Mp39 field.

func (*GetContainerConfig200ResponseData) SetMp4

SetMp4 gets a reference to the given string and assigns it to the Mp4 field.

func (*GetContainerConfig200ResponseData) SetMp40

SetMp40 gets a reference to the given string and assigns it to the Mp40 field.

func (*GetContainerConfig200ResponseData) SetMp41

SetMp41 gets a reference to the given string and assigns it to the Mp41 field.

func (*GetContainerConfig200ResponseData) SetMp42

SetMp42 gets a reference to the given string and assigns it to the Mp42 field.

func (*GetContainerConfig200ResponseData) SetMp43

SetMp43 gets a reference to the given string and assigns it to the Mp43 field.

func (*GetContainerConfig200ResponseData) SetMp44

SetMp44 gets a reference to the given string and assigns it to the Mp44 field.

func (*GetContainerConfig200ResponseData) SetMp45

SetMp45 gets a reference to the given string and assigns it to the Mp45 field.

func (*GetContainerConfig200ResponseData) SetMp46

SetMp46 gets a reference to the given string and assigns it to the Mp46 field.

func (*GetContainerConfig200ResponseData) SetMp47

SetMp47 gets a reference to the given string and assigns it to the Mp47 field.

func (*GetContainerConfig200ResponseData) SetMp48

SetMp48 gets a reference to the given string and assigns it to the Mp48 field.

func (*GetContainerConfig200ResponseData) SetMp49

SetMp49 gets a reference to the given string and assigns it to the Mp49 field.

func (*GetContainerConfig200ResponseData) SetMp5

SetMp5 gets a reference to the given string and assigns it to the Mp5 field.

func (*GetContainerConfig200ResponseData) SetMp50

SetMp50 gets a reference to the given string and assigns it to the Mp50 field.

func (*GetContainerConfig200ResponseData) SetMp51

SetMp51 gets a reference to the given string and assigns it to the Mp51 field.

func (*GetContainerConfig200ResponseData) SetMp52

SetMp52 gets a reference to the given string and assigns it to the Mp52 field.

func (*GetContainerConfig200ResponseData) SetMp53

SetMp53 gets a reference to the given string and assigns it to the Mp53 field.

func (*GetContainerConfig200ResponseData) SetMp54

SetMp54 gets a reference to the given string and assigns it to the Mp54 field.

func (*GetContainerConfig200ResponseData) SetMp55

SetMp55 gets a reference to the given string and assigns it to the Mp55 field.

func (*GetContainerConfig200ResponseData) SetMp56

SetMp56 gets a reference to the given string and assigns it to the Mp56 field.

func (*GetContainerConfig200ResponseData) SetMp57

SetMp57 gets a reference to the given string and assigns it to the Mp57 field.

func (*GetContainerConfig200ResponseData) SetMp58

SetMp58 gets a reference to the given string and assigns it to the Mp58 field.

func (*GetContainerConfig200ResponseData) SetMp59

SetMp59 gets a reference to the given string and assigns it to the Mp59 field.

func (*GetContainerConfig200ResponseData) SetMp6

SetMp6 gets a reference to the given string and assigns it to the Mp6 field.

func (*GetContainerConfig200ResponseData) SetMp60

SetMp60 gets a reference to the given string and assigns it to the Mp60 field.

func (*GetContainerConfig200ResponseData) SetMp61

SetMp61 gets a reference to the given string and assigns it to the Mp61 field.

func (*GetContainerConfig200ResponseData) SetMp62

SetMp62 gets a reference to the given string and assigns it to the Mp62 field.

func (*GetContainerConfig200ResponseData) SetMp63

SetMp63 gets a reference to the given string and assigns it to the Mp63 field.

func (*GetContainerConfig200ResponseData) SetMp64

SetMp64 gets a reference to the given string and assigns it to the Mp64 field.

func (*GetContainerConfig200ResponseData) SetMp65

SetMp65 gets a reference to the given string and assigns it to the Mp65 field.

func (*GetContainerConfig200ResponseData) SetMp66

SetMp66 gets a reference to the given string and assigns it to the Mp66 field.

func (*GetContainerConfig200ResponseData) SetMp67

SetMp67 gets a reference to the given string and assigns it to the Mp67 field.

func (*GetContainerConfig200ResponseData) SetMp68

SetMp68 gets a reference to the given string and assigns it to the Mp68 field.

func (*GetContainerConfig200ResponseData) SetMp69

SetMp69 gets a reference to the given string and assigns it to the Mp69 field.

func (*GetContainerConfig200ResponseData) SetMp7

SetMp7 gets a reference to the given string and assigns it to the Mp7 field.

func (*GetContainerConfig200ResponseData) SetMp70

SetMp70 gets a reference to the given string and assigns it to the Mp70 field.

func (*GetContainerConfig200ResponseData) SetMp71

SetMp71 gets a reference to the given string and assigns it to the Mp71 field.

func (*GetContainerConfig200ResponseData) SetMp72

SetMp72 gets a reference to the given string and assigns it to the Mp72 field.

func (*GetContainerConfig200ResponseData) SetMp73

SetMp73 gets a reference to the given string and assigns it to the Mp73 field.

func (*GetContainerConfig200ResponseData) SetMp74

SetMp74 gets a reference to the given string and assigns it to the Mp74 field.

func (*GetContainerConfig200ResponseData) SetMp75

SetMp75 gets a reference to the given string and assigns it to the Mp75 field.

func (*GetContainerConfig200ResponseData) SetMp76

SetMp76 gets a reference to the given string and assigns it to the Mp76 field.

func (*GetContainerConfig200ResponseData) SetMp77

SetMp77 gets a reference to the given string and assigns it to the Mp77 field.

func (*GetContainerConfig200ResponseData) SetMp78

SetMp78 gets a reference to the given string and assigns it to the Mp78 field.

func (*GetContainerConfig200ResponseData) SetMp79

SetMp79 gets a reference to the given string and assigns it to the Mp79 field.

func (*GetContainerConfig200ResponseData) SetMp8

SetMp8 gets a reference to the given string and assigns it to the Mp8 field.

func (*GetContainerConfig200ResponseData) SetMp80

SetMp80 gets a reference to the given string and assigns it to the Mp80 field.

func (*GetContainerConfig200ResponseData) SetMp81

SetMp81 gets a reference to the given string and assigns it to the Mp81 field.

func (*GetContainerConfig200ResponseData) SetMp82

SetMp82 gets a reference to the given string and assigns it to the Mp82 field.

func (*GetContainerConfig200ResponseData) SetMp83

SetMp83 gets a reference to the given string and assigns it to the Mp83 field.

func (*GetContainerConfig200ResponseData) SetMp84

SetMp84 gets a reference to the given string and assigns it to the Mp84 field.

func (*GetContainerConfig200ResponseData) SetMp85

SetMp85 gets a reference to the given string and assigns it to the Mp85 field.

func (*GetContainerConfig200ResponseData) SetMp86

SetMp86 gets a reference to the given string and assigns it to the Mp86 field.

func (*GetContainerConfig200ResponseData) SetMp87

SetMp87 gets a reference to the given string and assigns it to the Mp87 field.

func (*GetContainerConfig200ResponseData) SetMp88

SetMp88 gets a reference to the given string and assigns it to the Mp88 field.

func (*GetContainerConfig200ResponseData) SetMp89

SetMp89 gets a reference to the given string and assigns it to the Mp89 field.

func (*GetContainerConfig200ResponseData) SetMp9

SetMp9 gets a reference to the given string and assigns it to the Mp9 field.

func (*GetContainerConfig200ResponseData) SetMp90

SetMp90 gets a reference to the given string and assigns it to the Mp90 field.

func (*GetContainerConfig200ResponseData) SetMp91

SetMp91 gets a reference to the given string and assigns it to the Mp91 field.

func (*GetContainerConfig200ResponseData) SetMp92

SetMp92 gets a reference to the given string and assigns it to the Mp92 field.

func (*GetContainerConfig200ResponseData) SetMp93

SetMp93 gets a reference to the given string and assigns it to the Mp93 field.

func (*GetContainerConfig200ResponseData) SetMp94

SetMp94 gets a reference to the given string and assigns it to the Mp94 field.

func (*GetContainerConfig200ResponseData) SetMp95

SetMp95 gets a reference to the given string and assigns it to the Mp95 field.

func (*GetContainerConfig200ResponseData) SetMp96

SetMp96 gets a reference to the given string and assigns it to the Mp96 field.

func (*GetContainerConfig200ResponseData) SetMp97

SetMp97 gets a reference to the given string and assigns it to the Mp97 field.

func (*GetContainerConfig200ResponseData) SetMp98

SetMp98 gets a reference to the given string and assigns it to the Mp98 field.

func (*GetContainerConfig200ResponseData) SetMp99

SetMp99 gets a reference to the given string and assigns it to the Mp99 field.

func (*GetContainerConfig200ResponseData) SetNameserver

func (o *GetContainerConfig200ResponseData) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*GetContainerConfig200ResponseData) SetNet0

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*GetContainerConfig200ResponseData) SetNet1

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*GetContainerConfig200ResponseData) SetNet10

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*GetContainerConfig200ResponseData) SetNet11

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*GetContainerConfig200ResponseData) SetNet12

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*GetContainerConfig200ResponseData) SetNet13

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*GetContainerConfig200ResponseData) SetNet14

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*GetContainerConfig200ResponseData) SetNet15

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*GetContainerConfig200ResponseData) SetNet16

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*GetContainerConfig200ResponseData) SetNet17

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*GetContainerConfig200ResponseData) SetNet18

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*GetContainerConfig200ResponseData) SetNet19

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*GetContainerConfig200ResponseData) SetNet2

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*GetContainerConfig200ResponseData) SetNet20

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*GetContainerConfig200ResponseData) SetNet21

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*GetContainerConfig200ResponseData) SetNet22

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*GetContainerConfig200ResponseData) SetNet23

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*GetContainerConfig200ResponseData) SetNet24

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*GetContainerConfig200ResponseData) SetNet25

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*GetContainerConfig200ResponseData) SetNet26

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*GetContainerConfig200ResponseData) SetNet27

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*GetContainerConfig200ResponseData) SetNet28

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*GetContainerConfig200ResponseData) SetNet29

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*GetContainerConfig200ResponseData) SetNet3

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*GetContainerConfig200ResponseData) SetNet30

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*GetContainerConfig200ResponseData) SetNet31

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*GetContainerConfig200ResponseData) SetNet4

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*GetContainerConfig200ResponseData) SetNet5

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*GetContainerConfig200ResponseData) SetNet6

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*GetContainerConfig200ResponseData) SetNet7

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*GetContainerConfig200ResponseData) SetNet8

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*GetContainerConfig200ResponseData) SetNet9

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*GetContainerConfig200ResponseData) SetOnboot

func (o *GetContainerConfig200ResponseData) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*GetContainerConfig200ResponseData) SetOstype

func (o *GetContainerConfig200ResponseData) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*GetContainerConfig200ResponseData) SetProtection

func (o *GetContainerConfig200ResponseData) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*GetContainerConfig200ResponseData) SetRootfs

func (o *GetContainerConfig200ResponseData) SetRootfs(v string)

SetRootfs gets a reference to the given string and assigns it to the Rootfs field.

func (*GetContainerConfig200ResponseData) SetSearchdomain

func (o *GetContainerConfig200ResponseData) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*GetContainerConfig200ResponseData) SetStartup

func (o *GetContainerConfig200ResponseData) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*GetContainerConfig200ResponseData) SetSwap

SetSwap gets a reference to the given int64 and assigns it to the Swap field.

func (*GetContainerConfig200ResponseData) SetTags

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*GetContainerConfig200ResponseData) SetTemplate

func (o *GetContainerConfig200ResponseData) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*GetContainerConfig200ResponseData) SetTimezone

func (o *GetContainerConfig200ResponseData) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*GetContainerConfig200ResponseData) SetTty

SetTty gets a reference to the given int64 and assigns it to the Tty field.

func (*GetContainerConfig200ResponseData) SetUnprivileged

func (o *GetContainerConfig200ResponseData) SetUnprivileged(v int32)

SetUnprivileged gets a reference to the given int32 and assigns it to the Unprivileged field.

func (*GetContainerConfig200ResponseData) SetUnused0

func (o *GetContainerConfig200ResponseData) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*GetContainerConfig200ResponseData) SetUnused1

func (o *GetContainerConfig200ResponseData) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*GetContainerConfig200ResponseData) SetUnused10

func (o *GetContainerConfig200ResponseData) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*GetContainerConfig200ResponseData) SetUnused11

func (o *GetContainerConfig200ResponseData) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*GetContainerConfig200ResponseData) SetUnused12

func (o *GetContainerConfig200ResponseData) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*GetContainerConfig200ResponseData) SetUnused13

func (o *GetContainerConfig200ResponseData) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*GetContainerConfig200ResponseData) SetUnused14

func (o *GetContainerConfig200ResponseData) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*GetContainerConfig200ResponseData) SetUnused15

func (o *GetContainerConfig200ResponseData) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*GetContainerConfig200ResponseData) SetUnused16

func (o *GetContainerConfig200ResponseData) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*GetContainerConfig200ResponseData) SetUnused17

func (o *GetContainerConfig200ResponseData) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*GetContainerConfig200ResponseData) SetUnused18

func (o *GetContainerConfig200ResponseData) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*GetContainerConfig200ResponseData) SetUnused19

func (o *GetContainerConfig200ResponseData) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*GetContainerConfig200ResponseData) SetUnused2

func (o *GetContainerConfig200ResponseData) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*GetContainerConfig200ResponseData) SetUnused20

func (o *GetContainerConfig200ResponseData) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*GetContainerConfig200ResponseData) SetUnused21

func (o *GetContainerConfig200ResponseData) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*GetContainerConfig200ResponseData) SetUnused22

func (o *GetContainerConfig200ResponseData) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*GetContainerConfig200ResponseData) SetUnused23

func (o *GetContainerConfig200ResponseData) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*GetContainerConfig200ResponseData) SetUnused24

func (o *GetContainerConfig200ResponseData) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*GetContainerConfig200ResponseData) SetUnused25

func (o *GetContainerConfig200ResponseData) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*GetContainerConfig200ResponseData) SetUnused26

func (o *GetContainerConfig200ResponseData) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*GetContainerConfig200ResponseData) SetUnused27

func (o *GetContainerConfig200ResponseData) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*GetContainerConfig200ResponseData) SetUnused28

func (o *GetContainerConfig200ResponseData) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*GetContainerConfig200ResponseData) SetUnused29

func (o *GetContainerConfig200ResponseData) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*GetContainerConfig200ResponseData) SetUnused3

func (o *GetContainerConfig200ResponseData) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*GetContainerConfig200ResponseData) SetUnused4

func (o *GetContainerConfig200ResponseData) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*GetContainerConfig200ResponseData) SetUnused5

func (o *GetContainerConfig200ResponseData) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*GetContainerConfig200ResponseData) SetUnused6

func (o *GetContainerConfig200ResponseData) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*GetContainerConfig200ResponseData) SetUnused7

func (o *GetContainerConfig200ResponseData) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*GetContainerConfig200ResponseData) SetUnused8

func (o *GetContainerConfig200ResponseData) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*GetContainerConfig200ResponseData) SetUnused9

func (o *GetContainerConfig200ResponseData) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (GetContainerConfig200ResponseData) ToMap

func (o GetContainerConfig200ResponseData) ToMap() (map[string]interface{}, error)

type GetContainerConfigPending200Response

type GetContainerConfigPending200Response struct {
	Data   []GetContainerConfigPending200ResponseDataInner `json:"data,omitempty"`
	Errors []string                                        `json:"errors,omitempty"`
}

GetContainerConfigPending200Response struct for GetContainerConfigPending200Response

func NewGetContainerConfigPending200Response

func NewGetContainerConfigPending200Response() *GetContainerConfigPending200Response

NewGetContainerConfigPending200Response instantiates a new GetContainerConfigPending200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainerConfigPending200ResponseWithDefaults

func NewGetContainerConfigPending200ResponseWithDefaults() *GetContainerConfigPending200Response

NewGetContainerConfigPending200ResponseWithDefaults instantiates a new GetContainerConfigPending200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainerConfigPending200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetContainerConfigPending200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfigPending200Response) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetContainerConfigPending200Response) GetErrorsOk

func (o *GetContainerConfigPending200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfigPending200Response) HasData

HasData returns a boolean if a field has been set.

func (*GetContainerConfigPending200Response) HasErrors

HasErrors returns a boolean if a field has been set.

func (GetContainerConfigPending200Response) MarshalJSON

func (o GetContainerConfigPending200Response) MarshalJSON() ([]byte, error)

func (*GetContainerConfigPending200Response) SetData

SetData gets a reference to the given []GetContainerConfigPending200ResponseDataInner and assigns it to the Data field.

func (*GetContainerConfigPending200Response) SetErrors

func (o *GetContainerConfigPending200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetContainerConfigPending200Response) ToMap

func (o GetContainerConfigPending200Response) ToMap() (map[string]interface{}, error)

type GetContainerConfigPending200ResponseDataInner

type GetContainerConfigPending200ResponseDataInner struct {
	// Indicates a pending delete request if present and not 0.
	Delete *int64 `json:"delete,omitempty"`
	// Configuration option name.
	Key *string `json:"key,omitempty"`
	// Pending value.
	Pending *string `json:"pending,omitempty"`
	// Current value.
	Value *string `json:"value,omitempty"`
}

GetContainerConfigPending200ResponseDataInner struct for GetContainerConfigPending200ResponseDataInner

func NewGetContainerConfigPending200ResponseDataInner

func NewGetContainerConfigPending200ResponseDataInner() *GetContainerConfigPending200ResponseDataInner

NewGetContainerConfigPending200ResponseDataInner instantiates a new GetContainerConfigPending200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainerConfigPending200ResponseDataInnerWithDefaults

func NewGetContainerConfigPending200ResponseDataInnerWithDefaults() *GetContainerConfigPending200ResponseDataInner

NewGetContainerConfigPending200ResponseDataInnerWithDefaults instantiates a new GetContainerConfigPending200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainerConfigPending200ResponseDataInner) GetDelete

GetDelete returns the Delete field value if set, zero value otherwise.

func (*GetContainerConfigPending200ResponseDataInner) GetDeleteOk

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfigPending200ResponseDataInner) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*GetContainerConfigPending200ResponseDataInner) GetKeyOk

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfigPending200ResponseDataInner) GetPending

GetPending returns the Pending field value if set, zero value otherwise.

func (*GetContainerConfigPending200ResponseDataInner) GetPendingOk

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfigPending200ResponseDataInner) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*GetContainerConfigPending200ResponseDataInner) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerConfigPending200ResponseDataInner) HasDelete

HasDelete returns a boolean if a field has been set.

func (*GetContainerConfigPending200ResponseDataInner) HasKey

HasKey returns a boolean if a field has been set.

func (*GetContainerConfigPending200ResponseDataInner) HasPending

HasPending returns a boolean if a field has been set.

func (*GetContainerConfigPending200ResponseDataInner) HasValue

HasValue returns a boolean if a field has been set.

func (GetContainerConfigPending200ResponseDataInner) MarshalJSON

func (*GetContainerConfigPending200ResponseDataInner) SetDelete

SetDelete gets a reference to the given int64 and assigns it to the Delete field.

func (*GetContainerConfigPending200ResponseDataInner) SetKey

SetKey gets a reference to the given string and assigns it to the Key field.

func (*GetContainerConfigPending200ResponseDataInner) SetPending

SetPending gets a reference to the given string and assigns it to the Pending field.

func (*GetContainerConfigPending200ResponseDataInner) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (GetContainerConfigPending200ResponseDataInner) ToMap

func (o GetContainerConfigPending200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetContainerSnapshots200Response

type GetContainerSnapshots200Response struct {
	Data   []GetContainerSnapshots200ResponseDataInner `json:"data,omitempty"`
	Errors []string                                    `json:"errors,omitempty"`
}

GetContainerSnapshots200Response struct for GetContainerSnapshots200Response

func NewGetContainerSnapshots200Response

func NewGetContainerSnapshots200Response() *GetContainerSnapshots200Response

NewGetContainerSnapshots200Response instantiates a new GetContainerSnapshots200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainerSnapshots200ResponseWithDefaults

func NewGetContainerSnapshots200ResponseWithDefaults() *GetContainerSnapshots200Response

NewGetContainerSnapshots200ResponseWithDefaults instantiates a new GetContainerSnapshots200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainerSnapshots200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetContainerSnapshots200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerSnapshots200Response) GetErrors

func (o *GetContainerSnapshots200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetContainerSnapshots200Response) GetErrorsOk

func (o *GetContainerSnapshots200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerSnapshots200Response) HasData

HasData returns a boolean if a field has been set.

func (*GetContainerSnapshots200Response) HasErrors

func (o *GetContainerSnapshots200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetContainerSnapshots200Response) MarshalJSON

func (o GetContainerSnapshots200Response) MarshalJSON() ([]byte, error)

func (*GetContainerSnapshots200Response) SetData

SetData gets a reference to the given []GetContainerSnapshots200ResponseDataInner and assigns it to the Data field.

func (*GetContainerSnapshots200Response) SetErrors

func (o *GetContainerSnapshots200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetContainerSnapshots200Response) ToMap

func (o GetContainerSnapshots200Response) ToMap() (map[string]interface{}, error)

type GetContainerSnapshots200ResponseDataInner

type GetContainerSnapshots200ResponseDataInner struct {
	// Snapshot description.
	Description *string `json:"description,omitempty"`
	// Snapshot identifier. Value 'current' identifies the current VM.
	Name *string `json:"name,omitempty"`
	// Parent snapshot identifier.
	Parent *string `json:"parent,omitempty"`
	// Snapshot creation time
	Snaptime *int64 `json:"snaptime,omitempty"`
}

GetContainerSnapshots200ResponseDataInner struct for GetContainerSnapshots200ResponseDataInner

func NewGetContainerSnapshots200ResponseDataInner

func NewGetContainerSnapshots200ResponseDataInner() *GetContainerSnapshots200ResponseDataInner

NewGetContainerSnapshots200ResponseDataInner instantiates a new GetContainerSnapshots200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainerSnapshots200ResponseDataInnerWithDefaults

func NewGetContainerSnapshots200ResponseDataInnerWithDefaults() *GetContainerSnapshots200ResponseDataInner

NewGetContainerSnapshots200ResponseDataInnerWithDefaults instantiates a new GetContainerSnapshots200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainerSnapshots200ResponseDataInner) GetDescription

GetDescription returns the Description field value if set, zero value otherwise.

func (*GetContainerSnapshots200ResponseDataInner) GetDescriptionOk

func (o *GetContainerSnapshots200ResponseDataInner) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerSnapshots200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*GetContainerSnapshots200ResponseDataInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerSnapshots200ResponseDataInner) GetParent

GetParent returns the Parent field value if set, zero value otherwise.

func (*GetContainerSnapshots200ResponseDataInner) GetParentOk

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerSnapshots200ResponseDataInner) GetSnaptime

GetSnaptime returns the Snaptime field value if set, zero value otherwise.

func (*GetContainerSnapshots200ResponseDataInner) GetSnaptimeOk

func (o *GetContainerSnapshots200ResponseDataInner) GetSnaptimeOk() (*int64, bool)

GetSnaptimeOk returns a tuple with the Snaptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainerSnapshots200ResponseDataInner) HasDescription

func (o *GetContainerSnapshots200ResponseDataInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetContainerSnapshots200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (*GetContainerSnapshots200ResponseDataInner) HasParent

HasParent returns a boolean if a field has been set.

func (*GetContainerSnapshots200ResponseDataInner) HasSnaptime

HasSnaptime returns a boolean if a field has been set.

func (GetContainerSnapshots200ResponseDataInner) MarshalJSON

func (*GetContainerSnapshots200ResponseDataInner) SetDescription

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GetContainerSnapshots200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetContainerSnapshots200ResponseDataInner) SetParent

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*GetContainerSnapshots200ResponseDataInner) SetSnaptime

SetSnaptime gets a reference to the given int64 and assigns it to the Snaptime field.

func (GetContainerSnapshots200ResponseDataInner) ToMap

func (o GetContainerSnapshots200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetContainers200Response

type GetContainers200Response struct {
	Data   []GetContainers200ResponseDataInner `json:"data,omitempty"`
	Errors []string                            `json:"errors,omitempty"`
}

GetContainers200Response struct for GetContainers200Response

func NewGetContainers200Response

func NewGetContainers200Response() *GetContainers200Response

NewGetContainers200Response instantiates a new GetContainers200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainers200ResponseWithDefaults

func NewGetContainers200ResponseWithDefaults() *GetContainers200Response

NewGetContainers200ResponseWithDefaults instantiates a new GetContainers200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainers200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetContainers200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200Response) GetErrors

func (o *GetContainers200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetContainers200Response) GetErrorsOk

func (o *GetContainers200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200Response) HasData

func (o *GetContainers200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetContainers200Response) HasErrors

func (o *GetContainers200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetContainers200Response) MarshalJSON

func (o GetContainers200Response) MarshalJSON() ([]byte, error)

func (*GetContainers200Response) SetData

SetData gets a reference to the given []GetContainers200ResponseDataInner and assigns it to the Data field.

func (*GetContainers200Response) SetErrors

func (o *GetContainers200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetContainers200Response) ToMap

func (o GetContainers200Response) ToMap() (map[string]interface{}, error)

type GetContainers200ResponseDataInner

type GetContainers200ResponseDataInner struct {
	// Maximum usable CPUs.
	Cpus *float32 `json:"cpus,omitempty"`
	// The current config lock, if any.
	Lock *string `json:"lock,omitempty"`
	// Root disk size in bytes.
	Maxdisk *int64 `json:"maxdisk,omitempty"`
	// Maximum memory in bytes.
	Maxmem *int64 `json:"maxmem,omitempty"`
	// Maximum SWAP memory in bytes.
	Maxswap *int64 `json:"maxswap,omitempty"`
	// Container name.
	Name *string `json:"name,omitempty"`
	// LXC Container status.
	Status *string `json:"status,omitempty"`
	// The current configured tags, if any.
	Tags *string `json:"tags,omitempty"`
	// Uptime.
	Uptime *int64 `json:"uptime,omitempty"`
	// The (unique) ID of the VM.
	Vmid *int64 `json:"vmid,omitempty"`
}

GetContainers200ResponseDataInner struct for GetContainers200ResponseDataInner

func NewGetContainers200ResponseDataInner

func NewGetContainers200ResponseDataInner() *GetContainers200ResponseDataInner

NewGetContainers200ResponseDataInner instantiates a new GetContainers200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetContainers200ResponseDataInnerWithDefaults

func NewGetContainers200ResponseDataInnerWithDefaults() *GetContainers200ResponseDataInner

NewGetContainers200ResponseDataInnerWithDefaults instantiates a new GetContainers200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetContainers200ResponseDataInner) GetCpus

GetCpus returns the Cpus field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetCpusOk

func (o *GetContainers200ResponseDataInner) GetCpusOk() (*float32, bool)

GetCpusOk returns a tuple with the Cpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetLock

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetLockOk

func (o *GetContainers200ResponseDataInner) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetMaxdisk

func (o *GetContainers200ResponseDataInner) GetMaxdisk() int64

GetMaxdisk returns the Maxdisk field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetMaxdiskOk

func (o *GetContainers200ResponseDataInner) GetMaxdiskOk() (*int64, bool)

GetMaxdiskOk returns a tuple with the Maxdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetMaxmem

GetMaxmem returns the Maxmem field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetMaxmemOk

func (o *GetContainers200ResponseDataInner) GetMaxmemOk() (*int64, bool)

GetMaxmemOk returns a tuple with the Maxmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetMaxswap

func (o *GetContainers200ResponseDataInner) GetMaxswap() int64

GetMaxswap returns the Maxswap field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetMaxswapOk

func (o *GetContainers200ResponseDataInner) GetMaxswapOk() (*int64, bool)

GetMaxswapOk returns a tuple with the Maxswap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetNameOk

func (o *GetContainers200ResponseDataInner) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetStatusOk

func (o *GetContainers200ResponseDataInner) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetTagsOk

func (o *GetContainers200ResponseDataInner) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetUptime

GetUptime returns the Uptime field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetUptimeOk

func (o *GetContainers200ResponseDataInner) GetUptimeOk() (*int64, bool)

GetUptimeOk returns a tuple with the Uptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) GetVmid

GetVmid returns the Vmid field value if set, zero value otherwise.

func (*GetContainers200ResponseDataInner) GetVmidOk

func (o *GetContainers200ResponseDataInner) GetVmidOk() (*int64, bool)

GetVmidOk returns a tuple with the Vmid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetContainers200ResponseDataInner) HasCpus

HasCpus returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasLock

HasLock returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasMaxdisk

func (o *GetContainers200ResponseDataInner) HasMaxdisk() bool

HasMaxdisk returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasMaxmem

func (o *GetContainers200ResponseDataInner) HasMaxmem() bool

HasMaxmem returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasMaxswap

func (o *GetContainers200ResponseDataInner) HasMaxswap() bool

HasMaxswap returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasStatus

func (o *GetContainers200ResponseDataInner) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasTags

HasTags returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasUptime

func (o *GetContainers200ResponseDataInner) HasUptime() bool

HasUptime returns a boolean if a field has been set.

func (*GetContainers200ResponseDataInner) HasVmid

HasVmid returns a boolean if a field has been set.

func (GetContainers200ResponseDataInner) MarshalJSON

func (o GetContainers200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetContainers200ResponseDataInner) SetCpus

SetCpus gets a reference to the given float32 and assigns it to the Cpus field.

func (*GetContainers200ResponseDataInner) SetLock

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetContainers200ResponseDataInner) SetMaxdisk

func (o *GetContainers200ResponseDataInner) SetMaxdisk(v int64)

SetMaxdisk gets a reference to the given int64 and assigns it to the Maxdisk field.

func (*GetContainers200ResponseDataInner) SetMaxmem

func (o *GetContainers200ResponseDataInner) SetMaxmem(v int64)

SetMaxmem gets a reference to the given int64 and assigns it to the Maxmem field.

func (*GetContainers200ResponseDataInner) SetMaxswap

func (o *GetContainers200ResponseDataInner) SetMaxswap(v int64)

SetMaxswap gets a reference to the given int64 and assigns it to the Maxswap field.

func (*GetContainers200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetContainers200ResponseDataInner) SetStatus

func (o *GetContainers200ResponseDataInner) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetContainers200ResponseDataInner) SetTags

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*GetContainers200ResponseDataInner) SetUptime

func (o *GetContainers200ResponseDataInner) SetUptime(v int64)

SetUptime gets a reference to the given int64 and assigns it to the Uptime field.

func (*GetContainers200ResponseDataInner) SetVmid

SetVmid gets a reference to the given int64 and assigns it to the Vmid field.

func (GetContainers200ResponseDataInner) ToMap

func (o GetContainers200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetCurrentContainerStatus200Response

type GetCurrentContainerStatus200Response struct {
	Data   *GetCurrentContainerStatus200ResponseData `json:"data,omitempty"`
	Errors []string                                  `json:"errors,omitempty"`
}

GetCurrentContainerStatus200Response struct for GetCurrentContainerStatus200Response

func NewGetCurrentContainerStatus200Response

func NewGetCurrentContainerStatus200Response() *GetCurrentContainerStatus200Response

NewGetCurrentContainerStatus200Response instantiates a new GetCurrentContainerStatus200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetCurrentContainerStatus200ResponseWithDefaults

func NewGetCurrentContainerStatus200ResponseWithDefaults() *GetCurrentContainerStatus200Response

NewGetCurrentContainerStatus200ResponseWithDefaults instantiates a new GetCurrentContainerStatus200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetCurrentContainerStatus200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200Response) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200Response) GetErrorsOk

func (o *GetCurrentContainerStatus200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200Response) HasData

HasData returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200Response) HasErrors

HasErrors returns a boolean if a field has been set.

func (GetCurrentContainerStatus200Response) MarshalJSON

func (o GetCurrentContainerStatus200Response) MarshalJSON() ([]byte, error)

func (*GetCurrentContainerStatus200Response) SetData

SetData gets a reference to the given GetCurrentContainerStatus200ResponseData and assigns it to the Data field.

func (*GetCurrentContainerStatus200Response) SetErrors

func (o *GetCurrentContainerStatus200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetCurrentContainerStatus200Response) ToMap

func (o GetCurrentContainerStatus200Response) ToMap() (map[string]interface{}, error)

type GetCurrentContainerStatus200ResponseData

type GetCurrentContainerStatus200ResponseData struct {
	// Maximum usable CPUs.
	Cpus *float32 `json:"cpus,omitempty"`
	// HA manager service status.
	Ha map[string]interface{} `json:"ha,omitempty"`
	// The current config lock, if any.
	Lock *string `json:"lock,omitempty"`
	// Root disk size in bytes.
	Maxdisk *int64 `json:"maxdisk,omitempty"`
	// Maximum memory in bytes.
	Maxmem *int64 `json:"maxmem,omitempty"`
	// Maximum SWAP memory in bytes.
	Maxswap *int64 `json:"maxswap,omitempty"`
	// Container name.
	Name *string `json:"name,omitempty"`
	// LXC Container status.
	Status *string `json:"status,omitempty"`
	// The current configured tags, if any.
	Tags *string `json:"tags,omitempty"`
	// Uptime.
	Uptime *int64 `json:"uptime,omitempty"`
	// The (unique) ID of the VM.
	Vmid *int64 `json:"vmid,omitempty"`
}

GetCurrentContainerStatus200ResponseData struct for GetCurrentContainerStatus200ResponseData

func NewGetCurrentContainerStatus200ResponseData

func NewGetCurrentContainerStatus200ResponseData() *GetCurrentContainerStatus200ResponseData

NewGetCurrentContainerStatus200ResponseData instantiates a new GetCurrentContainerStatus200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetCurrentContainerStatus200ResponseDataWithDefaults

func NewGetCurrentContainerStatus200ResponseDataWithDefaults() *GetCurrentContainerStatus200ResponseData

NewGetCurrentContainerStatus200ResponseDataWithDefaults instantiates a new GetCurrentContainerStatus200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetCurrentContainerStatus200ResponseData) GetCpus

GetCpus returns the Cpus field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetCpusOk

GetCpusOk returns a tuple with the Cpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetHa

func (o *GetCurrentContainerStatus200ResponseData) GetHa() map[string]interface{}

GetHa returns the Ha field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetHaOk

func (o *GetCurrentContainerStatus200ResponseData) GetHaOk() (map[string]interface{}, bool)

GetHaOk returns a tuple with the Ha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetLock

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetLockOk

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetMaxdisk

GetMaxdisk returns the Maxdisk field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetMaxdiskOk

func (o *GetCurrentContainerStatus200ResponseData) GetMaxdiskOk() (*int64, bool)

GetMaxdiskOk returns a tuple with the Maxdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetMaxmem

GetMaxmem returns the Maxmem field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetMaxmemOk

GetMaxmemOk returns a tuple with the Maxmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetMaxswap

GetMaxswap returns the Maxswap field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetMaxswapOk

func (o *GetCurrentContainerStatus200ResponseData) GetMaxswapOk() (*int64, bool)

GetMaxswapOk returns a tuple with the Maxswap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetTagsOk

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetUptime

GetUptime returns the Uptime field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetUptimeOk

GetUptimeOk returns a tuple with the Uptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) GetVmid

GetVmid returns the Vmid field value if set, zero value otherwise.

func (*GetCurrentContainerStatus200ResponseData) GetVmidOk

GetVmidOk returns a tuple with the Vmid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentContainerStatus200ResponseData) HasCpus

HasCpus returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasHa

HasHa returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasLock

HasLock returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasMaxdisk

HasMaxdisk returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasMaxmem

HasMaxmem returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasMaxswap

HasMaxswap returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasName

HasName returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasTags

HasTags returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasUptime

HasUptime returns a boolean if a field has been set.

func (*GetCurrentContainerStatus200ResponseData) HasVmid

HasVmid returns a boolean if a field has been set.

func (GetCurrentContainerStatus200ResponseData) MarshalJSON

func (*GetCurrentContainerStatus200ResponseData) SetCpus

SetCpus gets a reference to the given float32 and assigns it to the Cpus field.

func (*GetCurrentContainerStatus200ResponseData) SetHa

func (o *GetCurrentContainerStatus200ResponseData) SetHa(v map[string]interface{})

SetHa gets a reference to the given map[string]interface{} and assigns it to the Ha field.

func (*GetCurrentContainerStatus200ResponseData) SetLock

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetCurrentContainerStatus200ResponseData) SetMaxdisk

SetMaxdisk gets a reference to the given int64 and assigns it to the Maxdisk field.

func (*GetCurrentContainerStatus200ResponseData) SetMaxmem

SetMaxmem gets a reference to the given int64 and assigns it to the Maxmem field.

func (*GetCurrentContainerStatus200ResponseData) SetMaxswap

SetMaxswap gets a reference to the given int64 and assigns it to the Maxswap field.

func (*GetCurrentContainerStatus200ResponseData) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetCurrentContainerStatus200ResponseData) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetCurrentContainerStatus200ResponseData) SetTags

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*GetCurrentContainerStatus200ResponseData) SetUptime

SetUptime gets a reference to the given int64 and assigns it to the Uptime field.

func (*GetCurrentContainerStatus200ResponseData) SetVmid

SetVmid gets a reference to the given int64 and assigns it to the Vmid field.

func (GetCurrentContainerStatus200ResponseData) ToMap

func (o GetCurrentContainerStatus200ResponseData) ToMap() (map[string]interface{}, error)

type GetCurrentVMStatus200Response

type GetCurrentVMStatus200Response struct {
	Data   *GetCurrentVMStatus200ResponseData `json:"data,omitempty"`
	Errors []string                           `json:"errors,omitempty"`
}

GetCurrentVMStatus200Response struct for GetCurrentVMStatus200Response

func NewGetCurrentVMStatus200Response

func NewGetCurrentVMStatus200Response() *GetCurrentVMStatus200Response

NewGetCurrentVMStatus200Response instantiates a new GetCurrentVMStatus200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetCurrentVMStatus200ResponseWithDefaults

func NewGetCurrentVMStatus200ResponseWithDefaults() *GetCurrentVMStatus200Response

NewGetCurrentVMStatus200ResponseWithDefaults instantiates a new GetCurrentVMStatus200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetCurrentVMStatus200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetCurrentVMStatus200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200Response) GetErrors

func (o *GetCurrentVMStatus200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetCurrentVMStatus200Response) GetErrorsOk

func (o *GetCurrentVMStatus200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200Response) HasData

func (o *GetCurrentVMStatus200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetCurrentVMStatus200Response) HasErrors

func (o *GetCurrentVMStatus200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetCurrentVMStatus200Response) MarshalJSON

func (o GetCurrentVMStatus200Response) MarshalJSON() ([]byte, error)

func (*GetCurrentVMStatus200Response) SetData

SetData gets a reference to the given GetCurrentVMStatus200ResponseData and assigns it to the Data field.

func (*GetCurrentVMStatus200Response) SetErrors

func (o *GetCurrentVMStatus200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetCurrentVMStatus200Response) ToMap

func (o GetCurrentVMStatus200Response) ToMap() (map[string]interface{}, error)

type GetCurrentVMStatus200ResponseData

type GetCurrentVMStatus200ResponseData struct {
	// QEMU Guest Agent is enabled in config.
	Agent *int32 `json:"agent,omitempty"`
	// Enable a specific clipboard. If not set, depending on the display type the SPICE one will be added.
	Clipboard *string `json:"clipboard,omitempty"`
	// Maximum usable CPUs.
	Cpus *float32 `json:"cpus,omitempty"`
	// HA manager service status.
	Ha map[string]interface{} `json:"ha,omitempty"`
	// The current config lock, if any.
	Lock *string `json:"lock,omitempty"`
	// Root disk size in bytes.
	Maxdisk *int64 `json:"maxdisk,omitempty"`
	// Maximum memory in bytes.
	Maxmem *int64 `json:"maxmem,omitempty"`
	// VM name.
	Name *string `json:"name,omitempty"`
	// PID of running qemu process.
	Pid *int64 `json:"pid,omitempty"`
	// VM run state from the 'query-status' QMP monitor command.
	Qmpstatus *string `json:"qmpstatus,omitempty"`
	// The currently running machine type (if running).
	RunningMachine *string `json:"running-machine,omitempty"`
	// The currently running QEMU version (if running).
	RunningQemu *string `json:"running-qemu,omitempty"`
	// QEMU VGA configuration supports spice.
	Spice *int32 `json:"spice,omitempty"`
	// QEMU process status.
	Status *string `json:"status,omitempty"`
	// The current configured tags, if any
	Tags *string `json:"tags,omitempty"`
	// Uptime.
	Uptime *int64 `json:"uptime,omitempty"`
	// The (unique) ID of the VM.
	Vmid *int64 `json:"vmid,omitempty"`
}

GetCurrentVMStatus200ResponseData struct for GetCurrentVMStatus200ResponseData

func NewGetCurrentVMStatus200ResponseData

func NewGetCurrentVMStatus200ResponseData() *GetCurrentVMStatus200ResponseData

NewGetCurrentVMStatus200ResponseData instantiates a new GetCurrentVMStatus200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetCurrentVMStatus200ResponseDataWithDefaults

func NewGetCurrentVMStatus200ResponseDataWithDefaults() *GetCurrentVMStatus200ResponseData

NewGetCurrentVMStatus200ResponseDataWithDefaults instantiates a new GetCurrentVMStatus200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetCurrentVMStatus200ResponseData) GetAgent

GetAgent returns the Agent field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetAgentOk

func (o *GetCurrentVMStatus200ResponseData) GetAgentOk() (*int32, bool)

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetClipboard added in v1.0.4

func (o *GetCurrentVMStatus200ResponseData) GetClipboard() string

GetClipboard returns the Clipboard field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetClipboardOk added in v1.0.4

func (o *GetCurrentVMStatus200ResponseData) GetClipboardOk() (*string, bool)

GetClipboardOk returns a tuple with the Clipboard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetCpus

GetCpus returns the Cpus field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetCpusOk

func (o *GetCurrentVMStatus200ResponseData) GetCpusOk() (*float32, bool)

GetCpusOk returns a tuple with the Cpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetHa

func (o *GetCurrentVMStatus200ResponseData) GetHa() map[string]interface{}

GetHa returns the Ha field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetHaOk

func (o *GetCurrentVMStatus200ResponseData) GetHaOk() (map[string]interface{}, bool)

GetHaOk returns a tuple with the Ha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetLock

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetLockOk

func (o *GetCurrentVMStatus200ResponseData) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetMaxdisk

func (o *GetCurrentVMStatus200ResponseData) GetMaxdisk() int64

GetMaxdisk returns the Maxdisk field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetMaxdiskOk

func (o *GetCurrentVMStatus200ResponseData) GetMaxdiskOk() (*int64, bool)

GetMaxdiskOk returns a tuple with the Maxdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetMaxmem

GetMaxmem returns the Maxmem field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetMaxmemOk

func (o *GetCurrentVMStatus200ResponseData) GetMaxmemOk() (*int64, bool)

GetMaxmemOk returns a tuple with the Maxmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetNameOk

func (o *GetCurrentVMStatus200ResponseData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetPid

GetPid returns the Pid field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetPidOk

func (o *GetCurrentVMStatus200ResponseData) GetPidOk() (*int64, bool)

GetPidOk returns a tuple with the Pid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetQmpstatus

func (o *GetCurrentVMStatus200ResponseData) GetQmpstatus() string

GetQmpstatus returns the Qmpstatus field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetQmpstatusOk

func (o *GetCurrentVMStatus200ResponseData) GetQmpstatusOk() (*string, bool)

GetQmpstatusOk returns a tuple with the Qmpstatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetRunningMachine

func (o *GetCurrentVMStatus200ResponseData) GetRunningMachine() string

GetRunningMachine returns the RunningMachine field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetRunningMachineOk

func (o *GetCurrentVMStatus200ResponseData) GetRunningMachineOk() (*string, bool)

GetRunningMachineOk returns a tuple with the RunningMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetRunningQemu

func (o *GetCurrentVMStatus200ResponseData) GetRunningQemu() string

GetRunningQemu returns the RunningQemu field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetRunningQemuOk

func (o *GetCurrentVMStatus200ResponseData) GetRunningQemuOk() (*string, bool)

GetRunningQemuOk returns a tuple with the RunningQemu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetSpice

GetSpice returns the Spice field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetSpiceOk

func (o *GetCurrentVMStatus200ResponseData) GetSpiceOk() (*int32, bool)

GetSpiceOk returns a tuple with the Spice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetStatusOk

func (o *GetCurrentVMStatus200ResponseData) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetTagsOk

func (o *GetCurrentVMStatus200ResponseData) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetUptime

GetUptime returns the Uptime field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetUptimeOk

func (o *GetCurrentVMStatus200ResponseData) GetUptimeOk() (*int64, bool)

GetUptimeOk returns a tuple with the Uptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) GetVmid

GetVmid returns the Vmid field value if set, zero value otherwise.

func (*GetCurrentVMStatus200ResponseData) GetVmidOk

func (o *GetCurrentVMStatus200ResponseData) GetVmidOk() (*int64, bool)

GetVmidOk returns a tuple with the Vmid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCurrentVMStatus200ResponseData) HasAgent

HasAgent returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasClipboard added in v1.0.4

func (o *GetCurrentVMStatus200ResponseData) HasClipboard() bool

HasClipboard returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasCpus

HasCpus returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasHa

HasHa returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasLock

HasLock returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasMaxdisk

func (o *GetCurrentVMStatus200ResponseData) HasMaxdisk() bool

HasMaxdisk returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasMaxmem

func (o *GetCurrentVMStatus200ResponseData) HasMaxmem() bool

HasMaxmem returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasName

HasName returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasPid

HasPid returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasQmpstatus

func (o *GetCurrentVMStatus200ResponseData) HasQmpstatus() bool

HasQmpstatus returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasRunningMachine

func (o *GetCurrentVMStatus200ResponseData) HasRunningMachine() bool

HasRunningMachine returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasRunningQemu

func (o *GetCurrentVMStatus200ResponseData) HasRunningQemu() bool

HasRunningQemu returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasSpice

HasSpice returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasStatus

func (o *GetCurrentVMStatus200ResponseData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasTags

HasTags returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasUptime

func (o *GetCurrentVMStatus200ResponseData) HasUptime() bool

HasUptime returns a boolean if a field has been set.

func (*GetCurrentVMStatus200ResponseData) HasVmid

HasVmid returns a boolean if a field has been set.

func (GetCurrentVMStatus200ResponseData) MarshalJSON

func (o GetCurrentVMStatus200ResponseData) MarshalJSON() ([]byte, error)

func (*GetCurrentVMStatus200ResponseData) SetAgent

SetAgent gets a reference to the given int32 and assigns it to the Agent field.

func (*GetCurrentVMStatus200ResponseData) SetClipboard added in v1.0.4

func (o *GetCurrentVMStatus200ResponseData) SetClipboard(v string)

SetClipboard gets a reference to the given string and assigns it to the Clipboard field.

func (*GetCurrentVMStatus200ResponseData) SetCpus

SetCpus gets a reference to the given float32 and assigns it to the Cpus field.

func (*GetCurrentVMStatus200ResponseData) SetHa

func (o *GetCurrentVMStatus200ResponseData) SetHa(v map[string]interface{})

SetHa gets a reference to the given map[string]interface{} and assigns it to the Ha field.

func (*GetCurrentVMStatus200ResponseData) SetLock

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetCurrentVMStatus200ResponseData) SetMaxdisk

func (o *GetCurrentVMStatus200ResponseData) SetMaxdisk(v int64)

SetMaxdisk gets a reference to the given int64 and assigns it to the Maxdisk field.

func (*GetCurrentVMStatus200ResponseData) SetMaxmem

func (o *GetCurrentVMStatus200ResponseData) SetMaxmem(v int64)

SetMaxmem gets a reference to the given int64 and assigns it to the Maxmem field.

func (*GetCurrentVMStatus200ResponseData) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetCurrentVMStatus200ResponseData) SetPid

SetPid gets a reference to the given int64 and assigns it to the Pid field.

func (*GetCurrentVMStatus200ResponseData) SetQmpstatus

func (o *GetCurrentVMStatus200ResponseData) SetQmpstatus(v string)

SetQmpstatus gets a reference to the given string and assigns it to the Qmpstatus field.

func (*GetCurrentVMStatus200ResponseData) SetRunningMachine

func (o *GetCurrentVMStatus200ResponseData) SetRunningMachine(v string)

SetRunningMachine gets a reference to the given string and assigns it to the RunningMachine field.

func (*GetCurrentVMStatus200ResponseData) SetRunningQemu

func (o *GetCurrentVMStatus200ResponseData) SetRunningQemu(v string)

SetRunningQemu gets a reference to the given string and assigns it to the RunningQemu field.

func (*GetCurrentVMStatus200ResponseData) SetSpice

SetSpice gets a reference to the given int32 and assigns it to the Spice field.

func (*GetCurrentVMStatus200ResponseData) SetStatus

func (o *GetCurrentVMStatus200ResponseData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetCurrentVMStatus200ResponseData) SetTags

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*GetCurrentVMStatus200ResponseData) SetUptime

func (o *GetCurrentVMStatus200ResponseData) SetUptime(v int64)

SetUptime gets a reference to the given int64 and assigns it to the Uptime field.

func (*GetCurrentVMStatus200ResponseData) SetVmid

SetVmid gets a reference to the given int64 and assigns it to the Vmid field.

func (GetCurrentVMStatus200ResponseData) ToMap

func (o GetCurrentVMStatus200ResponseData) ToMap() (map[string]interface{}, error)

type GetNodeTaskLog200Response

type GetNodeTaskLog200Response struct {
	Data   []GetNodeTaskLog200ResponseDataInner `json:"data,omitempty"`
	Errors []string                             `json:"errors,omitempty"`
}

GetNodeTaskLog200Response struct for GetNodeTaskLog200Response

func NewGetNodeTaskLog200Response

func NewGetNodeTaskLog200Response() *GetNodeTaskLog200Response

NewGetNodeTaskLog200Response instantiates a new GetNodeTaskLog200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNodeTaskLog200ResponseWithDefaults

func NewGetNodeTaskLog200ResponseWithDefaults() *GetNodeTaskLog200Response

NewGetNodeTaskLog200ResponseWithDefaults instantiates a new GetNodeTaskLog200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNodeTaskLog200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetNodeTaskLog200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskLog200Response) GetErrors

func (o *GetNodeTaskLog200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetNodeTaskLog200Response) GetErrorsOk

func (o *GetNodeTaskLog200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskLog200Response) HasData

func (o *GetNodeTaskLog200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetNodeTaskLog200Response) HasErrors

func (o *GetNodeTaskLog200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetNodeTaskLog200Response) MarshalJSON

func (o GetNodeTaskLog200Response) MarshalJSON() ([]byte, error)

func (*GetNodeTaskLog200Response) SetData

SetData gets a reference to the given []GetNodeTaskLog200ResponseDataInner and assigns it to the Data field.

func (*GetNodeTaskLog200Response) SetErrors

func (o *GetNodeTaskLog200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetNodeTaskLog200Response) ToMap

func (o GetNodeTaskLog200Response) ToMap() (map[string]interface{}, error)

type GetNodeTaskLog200ResponseDataInner

type GetNodeTaskLog200ResponseDataInner struct {
	// Line number
	N *int64 `json:"n,omitempty"`
	// Line text
	T *string `json:"t,omitempty"`
}

GetNodeTaskLog200ResponseDataInner struct for GetNodeTaskLog200ResponseDataInner

func NewGetNodeTaskLog200ResponseDataInner

func NewGetNodeTaskLog200ResponseDataInner() *GetNodeTaskLog200ResponseDataInner

NewGetNodeTaskLog200ResponseDataInner instantiates a new GetNodeTaskLog200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNodeTaskLog200ResponseDataInnerWithDefaults

func NewGetNodeTaskLog200ResponseDataInnerWithDefaults() *GetNodeTaskLog200ResponseDataInner

NewGetNodeTaskLog200ResponseDataInnerWithDefaults instantiates a new GetNodeTaskLog200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNodeTaskLog200ResponseDataInner) GetN

GetN returns the N field value if set, zero value otherwise.

func (*GetNodeTaskLog200ResponseDataInner) GetNOk

GetNOk returns a tuple with the N field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskLog200ResponseDataInner) GetT

GetT returns the T field value if set, zero value otherwise.

func (*GetNodeTaskLog200ResponseDataInner) GetTOk

GetTOk returns a tuple with the T field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskLog200ResponseDataInner) HasN

HasN returns a boolean if a field has been set.

func (*GetNodeTaskLog200ResponseDataInner) HasT

HasT returns a boolean if a field has been set.

func (GetNodeTaskLog200ResponseDataInner) MarshalJSON

func (o GetNodeTaskLog200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetNodeTaskLog200ResponseDataInner) SetN

SetN gets a reference to the given int64 and assigns it to the N field.

func (*GetNodeTaskLog200ResponseDataInner) SetT

SetT gets a reference to the given string and assigns it to the T field.

func (GetNodeTaskLog200ResponseDataInner) ToMap

func (o GetNodeTaskLog200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetNodeTaskStatus200Response

type GetNodeTaskStatus200Response struct {
	Data   *GetNodeTaskStatus200ResponseData `json:"data,omitempty"`
	Errors []string                          `json:"errors,omitempty"`
}

GetNodeTaskStatus200Response struct for GetNodeTaskStatus200Response

func NewGetNodeTaskStatus200Response

func NewGetNodeTaskStatus200Response() *GetNodeTaskStatus200Response

NewGetNodeTaskStatus200Response instantiates a new GetNodeTaskStatus200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNodeTaskStatus200ResponseWithDefaults

func NewGetNodeTaskStatus200ResponseWithDefaults() *GetNodeTaskStatus200Response

NewGetNodeTaskStatus200ResponseWithDefaults instantiates a new GetNodeTaskStatus200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNodeTaskStatus200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetNodeTaskStatus200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200Response) GetErrors

func (o *GetNodeTaskStatus200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetNodeTaskStatus200Response) GetErrorsOk

func (o *GetNodeTaskStatus200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200Response) HasData

func (o *GetNodeTaskStatus200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetNodeTaskStatus200Response) HasErrors

func (o *GetNodeTaskStatus200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetNodeTaskStatus200Response) MarshalJSON

func (o GetNodeTaskStatus200Response) MarshalJSON() ([]byte, error)

func (*GetNodeTaskStatus200Response) SetData

SetData gets a reference to the given GetNodeTaskStatus200ResponseData and assigns it to the Data field.

func (*GetNodeTaskStatus200Response) SetErrors

func (o *GetNodeTaskStatus200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetNodeTaskStatus200Response) ToMap

func (o GetNodeTaskStatus200Response) ToMap() (map[string]interface{}, error)

type GetNodeTaskStatus200ResponseData

type GetNodeTaskStatus200ResponseData struct {
	Exitstatus *string  `json:"exitstatus,omitempty"`
	Id         *string  `json:"id,omitempty"`
	Node       *string  `json:"node,omitempty"`
	Pid        *int64   `json:"pid,omitempty"`
	Starttime  *float32 `json:"starttime,omitempty"`
	Status     *string  `json:"status,omitempty"`
	Type       *string  `json:"type,omitempty"`
	Upid       *string  `json:"upid,omitempty"`
	User       *string  `json:"user,omitempty"`
}

GetNodeTaskStatus200ResponseData struct for GetNodeTaskStatus200ResponseData

func NewGetNodeTaskStatus200ResponseData

func NewGetNodeTaskStatus200ResponseData() *GetNodeTaskStatus200ResponseData

NewGetNodeTaskStatus200ResponseData instantiates a new GetNodeTaskStatus200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNodeTaskStatus200ResponseDataWithDefaults

func NewGetNodeTaskStatus200ResponseDataWithDefaults() *GetNodeTaskStatus200ResponseData

NewGetNodeTaskStatus200ResponseDataWithDefaults instantiates a new GetNodeTaskStatus200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNodeTaskStatus200ResponseData) GetExitstatus

func (o *GetNodeTaskStatus200ResponseData) GetExitstatus() string

GetExitstatus returns the Exitstatus field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetExitstatusOk

func (o *GetNodeTaskStatus200ResponseData) GetExitstatusOk() (*string, bool)

GetExitstatusOk returns a tuple with the Exitstatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetIdOk

func (o *GetNodeTaskStatus200ResponseData) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetNode

GetNode returns the Node field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetNodeOk

func (o *GetNodeTaskStatus200ResponseData) GetNodeOk() (*string, bool)

GetNodeOk returns a tuple with the Node field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetPid

GetPid returns the Pid field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetPidOk

func (o *GetNodeTaskStatus200ResponseData) GetPidOk() (*int64, bool)

GetPidOk returns a tuple with the Pid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetStarttime

func (o *GetNodeTaskStatus200ResponseData) GetStarttime() float32

GetStarttime returns the Starttime field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetStarttimeOk

func (o *GetNodeTaskStatus200ResponseData) GetStarttimeOk() (*float32, bool)

GetStarttimeOk returns a tuple with the Starttime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetStatusOk

func (o *GetNodeTaskStatus200ResponseData) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetTypeOk

func (o *GetNodeTaskStatus200ResponseData) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetUpid

GetUpid returns the Upid field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetUpidOk

func (o *GetNodeTaskStatus200ResponseData) GetUpidOk() (*string, bool)

GetUpidOk returns a tuple with the Upid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) GetUser

GetUser returns the User field value if set, zero value otherwise.

func (*GetNodeTaskStatus200ResponseData) GetUserOk

func (o *GetNodeTaskStatus200ResponseData) GetUserOk() (*string, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTaskStatus200ResponseData) HasExitstatus

func (o *GetNodeTaskStatus200ResponseData) HasExitstatus() bool

HasExitstatus returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasId

HasId returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasNode

HasNode returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasPid

HasPid returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasStarttime

func (o *GetNodeTaskStatus200ResponseData) HasStarttime() bool

HasStarttime returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasStatus

func (o *GetNodeTaskStatus200ResponseData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasType

HasType returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasUpid

HasUpid returns a boolean if a field has been set.

func (*GetNodeTaskStatus200ResponseData) HasUser

HasUser returns a boolean if a field has been set.

func (GetNodeTaskStatus200ResponseData) MarshalJSON

func (o GetNodeTaskStatus200ResponseData) MarshalJSON() ([]byte, error)

func (*GetNodeTaskStatus200ResponseData) SetExitstatus

func (o *GetNodeTaskStatus200ResponseData) SetExitstatus(v string)

SetExitstatus gets a reference to the given string and assigns it to the Exitstatus field.

func (*GetNodeTaskStatus200ResponseData) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*GetNodeTaskStatus200ResponseData) SetNode

SetNode gets a reference to the given string and assigns it to the Node field.

func (*GetNodeTaskStatus200ResponseData) SetPid

SetPid gets a reference to the given int64 and assigns it to the Pid field.

func (*GetNodeTaskStatus200ResponseData) SetStarttime

func (o *GetNodeTaskStatus200ResponseData) SetStarttime(v float32)

SetStarttime gets a reference to the given float32 and assigns it to the Starttime field.

func (*GetNodeTaskStatus200ResponseData) SetStatus

func (o *GetNodeTaskStatus200ResponseData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetNodeTaskStatus200ResponseData) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetNodeTaskStatus200ResponseData) SetUpid

SetUpid gets a reference to the given string and assigns it to the Upid field.

func (*GetNodeTaskStatus200ResponseData) SetUser

SetUser gets a reference to the given string and assigns it to the User field.

func (GetNodeTaskStatus200ResponseData) ToMap

func (o GetNodeTaskStatus200ResponseData) ToMap() (map[string]interface{}, error)

type GetNodeTasks200Response

type GetNodeTasks200Response struct {
	Data   []GetNodeTasks200ResponseDataInner `json:"data,omitempty"`
	Errors []string                           `json:"errors,omitempty"`
}

GetNodeTasks200Response struct for GetNodeTasks200Response

func NewGetNodeTasks200Response

func NewGetNodeTasks200Response() *GetNodeTasks200Response

NewGetNodeTasks200Response instantiates a new GetNodeTasks200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNodeTasks200ResponseWithDefaults

func NewGetNodeTasks200ResponseWithDefaults() *GetNodeTasks200Response

NewGetNodeTasks200ResponseWithDefaults instantiates a new GetNodeTasks200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNodeTasks200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetNodeTasks200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200Response) GetErrors

func (o *GetNodeTasks200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetNodeTasks200Response) GetErrorsOk

func (o *GetNodeTasks200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200Response) HasData

func (o *GetNodeTasks200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetNodeTasks200Response) HasErrors

func (o *GetNodeTasks200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetNodeTasks200Response) MarshalJSON

func (o GetNodeTasks200Response) MarshalJSON() ([]byte, error)

func (*GetNodeTasks200Response) SetData

SetData gets a reference to the given []GetNodeTasks200ResponseDataInner and assigns it to the Data field.

func (*GetNodeTasks200Response) SetErrors

func (o *GetNodeTasks200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetNodeTasks200Response) ToMap

func (o GetNodeTasks200Response) ToMap() (map[string]interface{}, error)

type GetNodeTasks200ResponseDataInner

type GetNodeTasks200ResponseDataInner struct {
	Endtime   *int64  `json:"endtime,omitempty"`
	Id        *string `json:"id,omitempty"`
	Node      *string `json:"node,omitempty"`
	Pid       *int64  `json:"pid,omitempty"`
	Pstart    *int64  `json:"pstart,omitempty"`
	Starttime *int64  `json:"starttime,omitempty"`
	Status    *string `json:"status,omitempty"`
	Type      *string `json:"type,omitempty"`
	Upid      *string `json:"upid,omitempty"`
	User      *string `json:"user,omitempty"`
}

GetNodeTasks200ResponseDataInner struct for GetNodeTasks200ResponseDataInner

func NewGetNodeTasks200ResponseDataInner

func NewGetNodeTasks200ResponseDataInner() *GetNodeTasks200ResponseDataInner

NewGetNodeTasks200ResponseDataInner instantiates a new GetNodeTasks200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNodeTasks200ResponseDataInnerWithDefaults

func NewGetNodeTasks200ResponseDataInnerWithDefaults() *GetNodeTasks200ResponseDataInner

NewGetNodeTasks200ResponseDataInnerWithDefaults instantiates a new GetNodeTasks200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNodeTasks200ResponseDataInner) GetEndtime

func (o *GetNodeTasks200ResponseDataInner) GetEndtime() int64

GetEndtime returns the Endtime field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetEndtimeOk

func (o *GetNodeTasks200ResponseDataInner) GetEndtimeOk() (*int64, bool)

GetEndtimeOk returns a tuple with the Endtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetIdOk

func (o *GetNodeTasks200ResponseDataInner) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetNode

GetNode returns the Node field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetNodeOk

func (o *GetNodeTasks200ResponseDataInner) GetNodeOk() (*string, bool)

GetNodeOk returns a tuple with the Node field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetPid

GetPid returns the Pid field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetPidOk

func (o *GetNodeTasks200ResponseDataInner) GetPidOk() (*int64, bool)

GetPidOk returns a tuple with the Pid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetPstart

func (o *GetNodeTasks200ResponseDataInner) GetPstart() int64

GetPstart returns the Pstart field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetPstartOk

func (o *GetNodeTasks200ResponseDataInner) GetPstartOk() (*int64, bool)

GetPstartOk returns a tuple with the Pstart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetStarttime

func (o *GetNodeTasks200ResponseDataInner) GetStarttime() int64

GetStarttime returns the Starttime field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetStarttimeOk

func (o *GetNodeTasks200ResponseDataInner) GetStarttimeOk() (*int64, bool)

GetStarttimeOk returns a tuple with the Starttime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetStatusOk

func (o *GetNodeTasks200ResponseDataInner) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetTypeOk

func (o *GetNodeTasks200ResponseDataInner) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetUpid

GetUpid returns the Upid field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetUpidOk

func (o *GetNodeTasks200ResponseDataInner) GetUpidOk() (*string, bool)

GetUpidOk returns a tuple with the Upid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) GetUser

GetUser returns the User field value if set, zero value otherwise.

func (*GetNodeTasks200ResponseDataInner) GetUserOk

func (o *GetNodeTasks200ResponseDataInner) GetUserOk() (*string, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetNodeTasks200ResponseDataInner) HasEndtime

func (o *GetNodeTasks200ResponseDataInner) HasEndtime() bool

HasEndtime returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasId

HasId returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasNode

HasNode returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasPid

HasPid returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasPstart

func (o *GetNodeTasks200ResponseDataInner) HasPstart() bool

HasPstart returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasStarttime

func (o *GetNodeTasks200ResponseDataInner) HasStarttime() bool

HasStarttime returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasStatus

func (o *GetNodeTasks200ResponseDataInner) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasType

HasType returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasUpid

HasUpid returns a boolean if a field has been set.

func (*GetNodeTasks200ResponseDataInner) HasUser

HasUser returns a boolean if a field has been set.

func (GetNodeTasks200ResponseDataInner) MarshalJSON

func (o GetNodeTasks200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetNodeTasks200ResponseDataInner) SetEndtime

func (o *GetNodeTasks200ResponseDataInner) SetEndtime(v int64)

SetEndtime gets a reference to the given int64 and assigns it to the Endtime field.

func (*GetNodeTasks200ResponseDataInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*GetNodeTasks200ResponseDataInner) SetNode

SetNode gets a reference to the given string and assigns it to the Node field.

func (*GetNodeTasks200ResponseDataInner) SetPid

SetPid gets a reference to the given int64 and assigns it to the Pid field.

func (*GetNodeTasks200ResponseDataInner) SetPstart

func (o *GetNodeTasks200ResponseDataInner) SetPstart(v int64)

SetPstart gets a reference to the given int64 and assigns it to the Pstart field.

func (*GetNodeTasks200ResponseDataInner) SetStarttime

func (o *GetNodeTasks200ResponseDataInner) SetStarttime(v int64)

SetStarttime gets a reference to the given int64 and assigns it to the Starttime field.

func (*GetNodeTasks200ResponseDataInner) SetStatus

func (o *GetNodeTasks200ResponseDataInner) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetNodeTasks200ResponseDataInner) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetNodeTasks200ResponseDataInner) SetUpid

SetUpid gets a reference to the given string and assigns it to the Upid field.

func (*GetNodeTasks200ResponseDataInner) SetUser

SetUser gets a reference to the given string and assigns it to the User field.

func (GetNodeTasks200ResponseDataInner) ToMap

func (o GetNodeTasks200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetStorage200Response

type GetStorage200Response struct {
	Data   []GetStorage200ResponseDataInner `json:"data,omitempty"`
	Errors []string                         `json:"errors,omitempty"`
}

GetStorage200Response struct for GetStorage200Response

func NewGetStorage200Response

func NewGetStorage200Response() *GetStorage200Response

NewGetStorage200Response instantiates a new GetStorage200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorage200ResponseWithDefaults

func NewGetStorage200ResponseWithDefaults() *GetStorage200Response

NewGetStorage200ResponseWithDefaults instantiates a new GetStorage200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorage200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetStorage200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200Response) GetErrors

func (o *GetStorage200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetStorage200Response) GetErrorsOk

func (o *GetStorage200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200Response) HasData

func (o *GetStorage200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetStorage200Response) HasErrors

func (o *GetStorage200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetStorage200Response) MarshalJSON

func (o GetStorage200Response) MarshalJSON() ([]byte, error)

func (*GetStorage200Response) SetData

SetData gets a reference to the given []GetStorage200ResponseDataInner and assigns it to the Data field.

func (*GetStorage200Response) SetErrors

func (o *GetStorage200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetStorage200Response) ToMap

func (o GetStorage200Response) ToMap() (map[string]interface{}, error)

type GetStorage200ResponseDataInner

type GetStorage200ResponseDataInner struct {
	Storage      *string `json:"storage,omitempty"`
	Content      *string `json:"content,omitempty"`
	Digest       *string `json:"digest,omitempty"`
	Nodes        *string `json:"nodes,omitempty"`
	Path         *string `json:"path,omitempty"`
	PruneBackups *string `json:"prune-backups,omitempty"`
	Shared       *int32  `json:"shared,omitempty"`
	Thinpool     *string `json:"thinpool,omitempty"`
	Type         *string `json:"type,omitempty"`
	Vgname       *string `json:"vgname,omitempty"`
}

GetStorage200ResponseDataInner struct for GetStorage200ResponseDataInner

func NewGetStorage200ResponseDataInner

func NewGetStorage200ResponseDataInner() *GetStorage200ResponseDataInner

NewGetStorage200ResponseDataInner instantiates a new GetStorage200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorage200ResponseDataInnerWithDefaults

func NewGetStorage200ResponseDataInnerWithDefaults() *GetStorage200ResponseDataInner

NewGetStorage200ResponseDataInnerWithDefaults instantiates a new GetStorage200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorage200ResponseDataInner) GetContent

func (o *GetStorage200ResponseDataInner) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetContentOk

func (o *GetStorage200ResponseDataInner) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetDigest

func (o *GetStorage200ResponseDataInner) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetDigestOk

func (o *GetStorage200ResponseDataInner) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetNodes

func (o *GetStorage200ResponseDataInner) GetNodes() string

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetNodesOk

func (o *GetStorage200ResponseDataInner) GetNodesOk() (*string, bool)

GetNodesOk returns a tuple with the Nodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetPath

GetPath returns the Path field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetPathOk

func (o *GetStorage200ResponseDataInner) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetPruneBackups

func (o *GetStorage200ResponseDataInner) GetPruneBackups() string

GetPruneBackups returns the PruneBackups field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetPruneBackupsOk

func (o *GetStorage200ResponseDataInner) GetPruneBackupsOk() (*string, bool)

GetPruneBackupsOk returns a tuple with the PruneBackups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetShared

func (o *GetStorage200ResponseDataInner) GetShared() int32

GetShared returns the Shared field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetSharedOk

func (o *GetStorage200ResponseDataInner) GetSharedOk() (*int32, bool)

GetSharedOk returns a tuple with the Shared field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetStorage

func (o *GetStorage200ResponseDataInner) GetStorage() string

GetStorage returns the Storage field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetStorageOk

func (o *GetStorage200ResponseDataInner) GetStorageOk() (*string, bool)

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetThinpool

func (o *GetStorage200ResponseDataInner) GetThinpool() string

GetThinpool returns the Thinpool field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetThinpoolOk

func (o *GetStorage200ResponseDataInner) GetThinpoolOk() (*string, bool)

GetThinpoolOk returns a tuple with the Thinpool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetTypeOk

func (o *GetStorage200ResponseDataInner) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) GetVgname

func (o *GetStorage200ResponseDataInner) GetVgname() string

GetVgname returns the Vgname field value if set, zero value otherwise.

func (*GetStorage200ResponseDataInner) GetVgnameOk

func (o *GetStorage200ResponseDataInner) GetVgnameOk() (*string, bool)

GetVgnameOk returns a tuple with the Vgname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorage200ResponseDataInner) HasContent

func (o *GetStorage200ResponseDataInner) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasDigest

func (o *GetStorage200ResponseDataInner) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasNodes

func (o *GetStorage200ResponseDataInner) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasPath

func (o *GetStorage200ResponseDataInner) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasPruneBackups

func (o *GetStorage200ResponseDataInner) HasPruneBackups() bool

HasPruneBackups returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasShared

func (o *GetStorage200ResponseDataInner) HasShared() bool

HasShared returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasStorage

func (o *GetStorage200ResponseDataInner) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasThinpool

func (o *GetStorage200ResponseDataInner) HasThinpool() bool

HasThinpool returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasType

func (o *GetStorage200ResponseDataInner) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetStorage200ResponseDataInner) HasVgname

func (o *GetStorage200ResponseDataInner) HasVgname() bool

HasVgname returns a boolean if a field has been set.

func (GetStorage200ResponseDataInner) MarshalJSON

func (o GetStorage200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetStorage200ResponseDataInner) SetContent

func (o *GetStorage200ResponseDataInner) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*GetStorage200ResponseDataInner) SetDigest

func (o *GetStorage200ResponseDataInner) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*GetStorage200ResponseDataInner) SetNodes

func (o *GetStorage200ResponseDataInner) SetNodes(v string)

SetNodes gets a reference to the given string and assigns it to the Nodes field.

func (*GetStorage200ResponseDataInner) SetPath

func (o *GetStorage200ResponseDataInner) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*GetStorage200ResponseDataInner) SetPruneBackups

func (o *GetStorage200ResponseDataInner) SetPruneBackups(v string)

SetPruneBackups gets a reference to the given string and assigns it to the PruneBackups field.

func (*GetStorage200ResponseDataInner) SetShared

func (o *GetStorage200ResponseDataInner) SetShared(v int32)

SetShared gets a reference to the given int32 and assigns it to the Shared field.

func (*GetStorage200ResponseDataInner) SetStorage

func (o *GetStorage200ResponseDataInner) SetStorage(v string)

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (*GetStorage200ResponseDataInner) SetThinpool

func (o *GetStorage200ResponseDataInner) SetThinpool(v string)

SetThinpool gets a reference to the given string and assigns it to the Thinpool field.

func (*GetStorage200ResponseDataInner) SetType

func (o *GetStorage200ResponseDataInner) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetStorage200ResponseDataInner) SetVgname

func (o *GetStorage200ResponseDataInner) SetVgname(v string)

SetVgname gets a reference to the given string and assigns it to the Vgname field.

func (GetStorage200ResponseDataInner) ToMap

func (o GetStorage200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetStorageContent200Response

type GetStorageContent200Response struct {
	Data   []GetStorageContent200ResponseDataInner `json:"data,omitempty"`
	Errors []string                                `json:"errors,omitempty"`
}

GetStorageContent200Response struct for GetStorageContent200Response

func NewGetStorageContent200Response

func NewGetStorageContent200Response() *GetStorageContent200Response

NewGetStorageContent200Response instantiates a new GetStorageContent200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorageContent200ResponseWithDefaults

func NewGetStorageContent200ResponseWithDefaults() *GetStorageContent200Response

NewGetStorageContent200ResponseWithDefaults instantiates a new GetStorageContent200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorageContent200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetStorageContent200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200Response) GetErrors

func (o *GetStorageContent200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetStorageContent200Response) GetErrorsOk

func (o *GetStorageContent200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200Response) HasData

func (o *GetStorageContent200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetStorageContent200Response) HasErrors

func (o *GetStorageContent200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetStorageContent200Response) MarshalJSON

func (o GetStorageContent200Response) MarshalJSON() ([]byte, error)

func (*GetStorageContent200Response) SetData

SetData gets a reference to the given []GetStorageContent200ResponseDataInner and assigns it to the Data field.

func (*GetStorageContent200Response) SetErrors

func (o *GetStorageContent200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetStorageContent200Response) ToMap

func (o GetStorageContent200Response) ToMap() (map[string]interface{}, error)

type GetStorageContent200ResponseDataInner

type GetStorageContent200ResponseDataInner struct {
	// Creation time (seconds since the UNIX Epoch).
	Ctime *int64 `json:"ctime,omitempty"`
	// If whole backup is encrypted, value is the fingerprint or '1'  if encrypted. Only useful for the Proxmox Backup Server storage type.
	Encrypted *string `json:"encrypted,omitempty"`
	// Format identifier ('raw', 'qcow2', 'subvol', 'iso', 'tgz' ...)
	Format *string `json:"format,omitempty"`
	// Optional notes. If they contain multiple lines, only the first one is returned here.
	Notes *string `json:"notes,omitempty"`
	// Volume identifier of parent (for linked cloned).
	Parent *string `json:"parent,omitempty"`
	// Protection status. Currently only supported for backups.
	Protected *int32 `json:"protected,omitempty"`
	// Volume size in bytes.
	Size *int64 `json:"size,omitempty"`
	// Used space. Please note that most storage plugins do not report anything useful here.
	Used         *int64                                             `json:"used,omitempty"`
	Verification *GetStorageContent200ResponseDataInnerVerification `json:"verification,omitempty"`
	// Associated Owner VMID.
	Vmid *int64 `json:"vmid,omitempty"`
	// Volume identifier.
	Volid *string `json:"volid,omitempty"`
}

GetStorageContent200ResponseDataInner struct for GetStorageContent200ResponseDataInner

func NewGetStorageContent200ResponseDataInner

func NewGetStorageContent200ResponseDataInner() *GetStorageContent200ResponseDataInner

NewGetStorageContent200ResponseDataInner instantiates a new GetStorageContent200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorageContent200ResponseDataInnerWithDefaults

func NewGetStorageContent200ResponseDataInnerWithDefaults() *GetStorageContent200ResponseDataInner

NewGetStorageContent200ResponseDataInnerWithDefaults instantiates a new GetStorageContent200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorageContent200ResponseDataInner) GetCtime

GetCtime returns the Ctime field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetCtimeOk

func (o *GetStorageContent200ResponseDataInner) GetCtimeOk() (*int64, bool)

GetCtimeOk returns a tuple with the Ctime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetEncrypted

GetEncrypted returns the Encrypted field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetEncryptedOk

func (o *GetStorageContent200ResponseDataInner) GetEncryptedOk() (*string, bool)

GetEncryptedOk returns a tuple with the Encrypted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetFormatOk

func (o *GetStorageContent200ResponseDataInner) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetNotesOk

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetParent

GetParent returns the Parent field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetParentOk

func (o *GetStorageContent200ResponseDataInner) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetProtected

func (o *GetStorageContent200ResponseDataInner) GetProtected() int32

GetProtected returns the Protected field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetProtectedOk

func (o *GetStorageContent200ResponseDataInner) GetProtectedOk() (*int32, bool)

GetProtectedOk returns a tuple with the Protected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetSize

GetSize returns the Size field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetSizeOk

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetUsed

GetUsed returns the Used field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetUsedOk

GetUsedOk returns a tuple with the Used field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetVerification

GetVerification returns the Verification field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetVerificationOk

GetVerificationOk returns a tuple with the Verification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetVmid

GetVmid returns the Vmid field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetVmidOk

GetVmidOk returns a tuple with the Vmid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) GetVolid

GetVolid returns the Volid field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInner) GetVolidOk

GetVolidOk returns a tuple with the Volid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInner) HasCtime

HasCtime returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasEncrypted

func (o *GetStorageContent200ResponseDataInner) HasEncrypted() bool

HasEncrypted returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasFormat

HasFormat returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasNotes

HasNotes returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasParent

HasParent returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasProtected

func (o *GetStorageContent200ResponseDataInner) HasProtected() bool

HasProtected returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasSize

HasSize returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasUsed

HasUsed returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasVerification

func (o *GetStorageContent200ResponseDataInner) HasVerification() bool

HasVerification returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasVmid

HasVmid returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInner) HasVolid

HasVolid returns a boolean if a field has been set.

func (GetStorageContent200ResponseDataInner) MarshalJSON

func (o GetStorageContent200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetStorageContent200ResponseDataInner) SetCtime

SetCtime gets a reference to the given int64 and assigns it to the Ctime field.

func (*GetStorageContent200ResponseDataInner) SetEncrypted

func (o *GetStorageContent200ResponseDataInner) SetEncrypted(v string)

SetEncrypted gets a reference to the given string and assigns it to the Encrypted field.

func (*GetStorageContent200ResponseDataInner) SetFormat

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*GetStorageContent200ResponseDataInner) SetNotes

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*GetStorageContent200ResponseDataInner) SetParent

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*GetStorageContent200ResponseDataInner) SetProtected

func (o *GetStorageContent200ResponseDataInner) SetProtected(v int32)

SetProtected gets a reference to the given int32 and assigns it to the Protected field.

func (*GetStorageContent200ResponseDataInner) SetSize

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*GetStorageContent200ResponseDataInner) SetUsed

SetUsed gets a reference to the given int64 and assigns it to the Used field.

func (*GetStorageContent200ResponseDataInner) SetVerification

SetVerification gets a reference to the given GetStorageContent200ResponseDataInnerVerification and assigns it to the Verification field.

func (*GetStorageContent200ResponseDataInner) SetVmid

SetVmid gets a reference to the given int64 and assigns it to the Vmid field.

func (*GetStorageContent200ResponseDataInner) SetVolid

SetVolid gets a reference to the given string and assigns it to the Volid field.

func (GetStorageContent200ResponseDataInner) ToMap

func (o GetStorageContent200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetStorageContent200ResponseDataInnerVerification

type GetStorageContent200ResponseDataInnerVerification struct {
	// Last backup verification state.
	State *string `json:"state,omitempty"`
	// Last backup verification UPID.
	Upid *string `json:"upid,omitempty"`
}

GetStorageContent200ResponseDataInnerVerification Last backup verification result, only useful for PBS storages.

func NewGetStorageContent200ResponseDataInnerVerification

func NewGetStorageContent200ResponseDataInnerVerification() *GetStorageContent200ResponseDataInnerVerification

NewGetStorageContent200ResponseDataInnerVerification instantiates a new GetStorageContent200ResponseDataInnerVerification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorageContent200ResponseDataInnerVerificationWithDefaults

func NewGetStorageContent200ResponseDataInnerVerificationWithDefaults() *GetStorageContent200ResponseDataInnerVerification

NewGetStorageContent200ResponseDataInnerVerificationWithDefaults instantiates a new GetStorageContent200ResponseDataInnerVerification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorageContent200ResponseDataInnerVerification) GetState

GetState returns the State field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInnerVerification) GetStateOk

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInnerVerification) GetUpid

GetUpid returns the Upid field value if set, zero value otherwise.

func (*GetStorageContent200ResponseDataInnerVerification) GetUpidOk

GetUpidOk returns a tuple with the Upid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorageContent200ResponseDataInnerVerification) HasState

HasState returns a boolean if a field has been set.

func (*GetStorageContent200ResponseDataInnerVerification) HasUpid

HasUpid returns a boolean if a field has been set.

func (GetStorageContent200ResponseDataInnerVerification) MarshalJSON

func (*GetStorageContent200ResponseDataInnerVerification) SetState

SetState gets a reference to the given string and assigns it to the State field.

func (*GetStorageContent200ResponseDataInnerVerification) SetUpid

SetUpid gets a reference to the given string and assigns it to the Upid field.

func (GetStorageContent200ResponseDataInnerVerification) ToMap

func (o GetStorageContent200ResponseDataInnerVerification) ToMap() (map[string]interface{}, error)

type GetStorages200Response

type GetStorages200Response struct {
	Data   []GetStorages200ResponseDataInner `json:"data,omitempty"`
	Errors []string                          `json:"errors,omitempty"`
}

GetStorages200Response struct for GetStorages200Response

func NewGetStorages200Response

func NewGetStorages200Response() *GetStorages200Response

NewGetStorages200Response instantiates a new GetStorages200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorages200ResponseWithDefaults

func NewGetStorages200ResponseWithDefaults() *GetStorages200Response

NewGetStorages200ResponseWithDefaults instantiates a new GetStorages200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorages200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetStorages200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200Response) GetErrors

func (o *GetStorages200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetStorages200Response) GetErrorsOk

func (o *GetStorages200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200Response) HasData

func (o *GetStorages200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetStorages200Response) HasErrors

func (o *GetStorages200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetStorages200Response) MarshalJSON

func (o GetStorages200Response) MarshalJSON() ([]byte, error)

func (*GetStorages200Response) SetData

SetData gets a reference to the given []GetStorages200ResponseDataInner and assigns it to the Data field.

func (*GetStorages200Response) SetErrors

func (o *GetStorages200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetStorages200Response) ToMap

func (o GetStorages200Response) ToMap() (map[string]interface{}, error)

type GetStorages200ResponseDataInner

type GetStorages200ResponseDataInner struct {
	// Set when storage is accessible.
	Active *int32 `json:"active,omitempty"`
	// Available storage space in bytes.
	Avail *int64 `json:"avail,omitempty"`
	// Allowed storage content types.
	Content *string `json:"content,omitempty"`
	// Set when storage is enabled (not disabled).
	Enabled *int32 `json:"enabled,omitempty"`
	// Shared flag from storage configuration.
	Shared *int32 `json:"shared,omitempty"`
	// The storage identifier.
	Storage *string `json:"storage,omitempty"`
	// Total storage space in bytes.
	Total *int64 `json:"total,omitempty"`
	// Storage type.
	Type *string `json:"type,omitempty"`
	// Used storage space in bytes.
	Used *int64 `json:"used,omitempty"`
	// Used fraction (used/total).
	UsedFraction *float32 `json:"used_fraction,omitempty"`
}

GetStorages200ResponseDataInner struct for GetStorages200ResponseDataInner

func NewGetStorages200ResponseDataInner

func NewGetStorages200ResponseDataInner() *GetStorages200ResponseDataInner

NewGetStorages200ResponseDataInner instantiates a new GetStorages200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetStorages200ResponseDataInnerWithDefaults

func NewGetStorages200ResponseDataInnerWithDefaults() *GetStorages200ResponseDataInner

NewGetStorages200ResponseDataInnerWithDefaults instantiates a new GetStorages200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetStorages200ResponseDataInner) GetActive

func (o *GetStorages200ResponseDataInner) GetActive() int32

GetActive returns the Active field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetActiveOk

func (o *GetStorages200ResponseDataInner) GetActiveOk() (*int32, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetAvail

func (o *GetStorages200ResponseDataInner) GetAvail() int64

GetAvail returns the Avail field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetAvailOk

func (o *GetStorages200ResponseDataInner) GetAvailOk() (*int64, bool)

GetAvailOk returns a tuple with the Avail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetContent

func (o *GetStorages200ResponseDataInner) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetContentOk

func (o *GetStorages200ResponseDataInner) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetEnabled

func (o *GetStorages200ResponseDataInner) GetEnabled() int32

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetEnabledOk

func (o *GetStorages200ResponseDataInner) GetEnabledOk() (*int32, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetShared

func (o *GetStorages200ResponseDataInner) GetShared() int32

GetShared returns the Shared field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetSharedOk

func (o *GetStorages200ResponseDataInner) GetSharedOk() (*int32, bool)

GetSharedOk returns a tuple with the Shared field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetStorage

func (o *GetStorages200ResponseDataInner) GetStorage() string

GetStorage returns the Storage field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetStorageOk

func (o *GetStorages200ResponseDataInner) GetStorageOk() (*string, bool)

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetTotal

func (o *GetStorages200ResponseDataInner) GetTotal() int64

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetTotalOk

func (o *GetStorages200ResponseDataInner) GetTotalOk() (*int64, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetTypeOk

func (o *GetStorages200ResponseDataInner) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetUsed

GetUsed returns the Used field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetUsedFraction

func (o *GetStorages200ResponseDataInner) GetUsedFraction() float32

GetUsedFraction returns the UsedFraction field value if set, zero value otherwise.

func (*GetStorages200ResponseDataInner) GetUsedFractionOk

func (o *GetStorages200ResponseDataInner) GetUsedFractionOk() (*float32, bool)

GetUsedFractionOk returns a tuple with the UsedFraction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) GetUsedOk

func (o *GetStorages200ResponseDataInner) GetUsedOk() (*int64, bool)

GetUsedOk returns a tuple with the Used field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetStorages200ResponseDataInner) HasActive

func (o *GetStorages200ResponseDataInner) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasAvail

func (o *GetStorages200ResponseDataInner) HasAvail() bool

HasAvail returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasContent

func (o *GetStorages200ResponseDataInner) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasEnabled

func (o *GetStorages200ResponseDataInner) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasShared

func (o *GetStorages200ResponseDataInner) HasShared() bool

HasShared returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasStorage

func (o *GetStorages200ResponseDataInner) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasTotal

func (o *GetStorages200ResponseDataInner) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasType

HasType returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasUsed

HasUsed returns a boolean if a field has been set.

func (*GetStorages200ResponseDataInner) HasUsedFraction

func (o *GetStorages200ResponseDataInner) HasUsedFraction() bool

HasUsedFraction returns a boolean if a field has been set.

func (GetStorages200ResponseDataInner) MarshalJSON

func (o GetStorages200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetStorages200ResponseDataInner) SetActive

func (o *GetStorages200ResponseDataInner) SetActive(v int32)

SetActive gets a reference to the given int32 and assigns it to the Active field.

func (*GetStorages200ResponseDataInner) SetAvail

func (o *GetStorages200ResponseDataInner) SetAvail(v int64)

SetAvail gets a reference to the given int64 and assigns it to the Avail field.

func (*GetStorages200ResponseDataInner) SetContent

func (o *GetStorages200ResponseDataInner) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*GetStorages200ResponseDataInner) SetEnabled

func (o *GetStorages200ResponseDataInner) SetEnabled(v int32)

SetEnabled gets a reference to the given int32 and assigns it to the Enabled field.

func (*GetStorages200ResponseDataInner) SetShared

func (o *GetStorages200ResponseDataInner) SetShared(v int32)

SetShared gets a reference to the given int32 and assigns it to the Shared field.

func (*GetStorages200ResponseDataInner) SetStorage

func (o *GetStorages200ResponseDataInner) SetStorage(v string)

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (*GetStorages200ResponseDataInner) SetTotal

func (o *GetStorages200ResponseDataInner) SetTotal(v int64)

SetTotal gets a reference to the given int64 and assigns it to the Total field.

func (*GetStorages200ResponseDataInner) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetStorages200ResponseDataInner) SetUsed

func (o *GetStorages200ResponseDataInner) SetUsed(v int64)

SetUsed gets a reference to the given int64 and assigns it to the Used field.

func (*GetStorages200ResponseDataInner) SetUsedFraction

func (o *GetStorages200ResponseDataInner) SetUsedFraction(v float32)

SetUsedFraction gets a reference to the given float32 and assigns it to the UsedFraction field.

func (GetStorages200ResponseDataInner) ToMap

func (o GetStorages200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetVM200Response

type GetVM200Response struct {
	Data   []GetVM200ResponseDataInner `json:"data,omitempty"`
	Errors []string                    `json:"errors,omitempty"`
}

GetVM200Response struct for GetVM200Response

func NewGetVM200Response

func NewGetVM200Response() *GetVM200Response

NewGetVM200Response instantiates a new GetVM200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVM200ResponseWithDefaults

func NewGetVM200ResponseWithDefaults() *GetVM200Response

NewGetVM200ResponseWithDefaults instantiates a new GetVM200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVM200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetVM200Response) GetDataOk

func (o *GetVM200Response) GetDataOk() ([]GetVM200ResponseDataInner, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVM200Response) GetErrors

func (o *GetVM200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVM200Response) GetErrorsOk

func (o *GetVM200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVM200Response) HasData

func (o *GetVM200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVM200Response) HasErrors

func (o *GetVM200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVM200Response) MarshalJSON

func (o GetVM200Response) MarshalJSON() ([]byte, error)

func (*GetVM200Response) SetData

SetData gets a reference to the given []GetVM200ResponseDataInner and assigns it to the Data field.

func (*GetVM200Response) SetErrors

func (o *GetVM200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVM200Response) ToMap

func (o GetVM200Response) ToMap() (map[string]interface{}, error)

type GetVM200ResponseDataInner

type GetVM200ResponseDataInner struct {
	Subdir *string `json:"subdir,omitempty"`
}

GetVM200ResponseDataInner struct for GetVM200ResponseDataInner

func NewGetVM200ResponseDataInner

func NewGetVM200ResponseDataInner() *GetVM200ResponseDataInner

NewGetVM200ResponseDataInner instantiates a new GetVM200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVM200ResponseDataInnerWithDefaults

func NewGetVM200ResponseDataInnerWithDefaults() *GetVM200ResponseDataInner

NewGetVM200ResponseDataInnerWithDefaults instantiates a new GetVM200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVM200ResponseDataInner) GetSubdir

func (o *GetVM200ResponseDataInner) GetSubdir() string

GetSubdir returns the Subdir field value if set, zero value otherwise.

func (*GetVM200ResponseDataInner) GetSubdirOk

func (o *GetVM200ResponseDataInner) GetSubdirOk() (*string, bool)

GetSubdirOk returns a tuple with the Subdir field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVM200ResponseDataInner) HasSubdir

func (o *GetVM200ResponseDataInner) HasSubdir() bool

HasSubdir returns a boolean if a field has been set.

func (GetVM200ResponseDataInner) MarshalJSON

func (o GetVM200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetVM200ResponseDataInner) SetSubdir

func (o *GetVM200ResponseDataInner) SetSubdir(v string)

SetSubdir gets a reference to the given string and assigns it to the Subdir field.

func (GetVM200ResponseDataInner) ToMap

func (o GetVM200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetVMConfig200Response

type GetVMConfig200Response struct {
	Data   *GetVMConfig200ResponseData `json:"data,omitempty"`
	Errors []string                    `json:"errors,omitempty"`
}

GetVMConfig200Response struct for GetVMConfig200Response

func NewGetVMConfig200Response

func NewGetVMConfig200Response() *GetVMConfig200Response

NewGetVMConfig200Response instantiates a new GetVMConfig200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMConfig200ResponseWithDefaults

func NewGetVMConfig200ResponseWithDefaults() *GetVMConfig200Response

NewGetVMConfig200ResponseWithDefaults instantiates a new GetVMConfig200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMConfig200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetVMConfig200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200Response) GetErrors

func (o *GetVMConfig200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVMConfig200Response) GetErrorsOk

func (o *GetVMConfig200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200Response) HasData

func (o *GetVMConfig200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVMConfig200Response) HasErrors

func (o *GetVMConfig200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVMConfig200Response) MarshalJSON

func (o GetVMConfig200Response) MarshalJSON() ([]byte, error)

func (*GetVMConfig200Response) SetData

SetData gets a reference to the given GetVMConfig200ResponseData and assigns it to the Data field.

func (*GetVMConfig200Response) SetErrors

func (o *GetVMConfig200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVMConfig200Response) ToMap

func (o GetVMConfig200Response) ToMap() (map[string]interface{}, error)

type GetVMConfig200ResponseData

type GetVMConfig200ResponseData struct {
	// Enable/disable ACPI.
	Acpi *int32 `json:"acpi,omitempty"`
	// List of host cores used to execute guest processes, for example: 0,5,8-11
	Affinity *string `json:"affinity,omitempty"`
	// Enable/disable communication with the QEMU Guest Agent and its properties.
	Agent *string `json:"agent,omitempty"`
	// Virtual processor architecture. Defaults to the host.
	Arch *string `json:"arch,omitempty"`
	// Arbitrary arguments passed to kvm.
	Args *string `json:"args,omitempty"`
	// Configure a audio device, useful in combination with QXL/Spice.
	Audio0 *string `json:"audio0,omitempty"`
	// Automatic restart after crash (currently ignored).
	Autostart *int32 `json:"autostart,omitempty"`
	// Amount of target RAM for the VM in MiB. Using zero disables the ballon driver.
	Balloon *int64 `json:"balloon,omitempty"`
	// Select BIOS implementation.
	Bios *string `json:"bios,omitempty"`
	// Specify guest boot order. Use the 'order=' sub-property as usage with no key or 'legacy=' is deprecated.
	Boot *string `json:"boot,omitempty"`
	// Enable booting from specified disk. Deprecated: Use 'boot: order=foo;bar' instead.
	Bootdisk *string `json:"bootdisk,omitempty"`
	// This is an alias for option -ide2
	Cdrom *string `json:"cdrom,omitempty"`
	// cloud-init: Specify custom files to replace the automatically generated ones at start.
	Cicustom *string `json:"cicustom,omitempty"`
	// cloud-init: Password to assign the user. Using this is generally not recommended. Use ssh keys instead. Also note that older cloud-init versions do not support hashed passwords.
	Cipassword *string `json:"cipassword,omitempty"`
	// Specifies the cloud-init configuration format. The default depends on the configured operating system type (`ostype`. We use the `nocloud` format for Linux, and `configdrive2` for windows.
	Citype *string `json:"citype,omitempty"`
	// cloud-init: do an automatic package upgrade after the first boot.
	Ciupgrade *int32 `json:"ciupgrade,omitempty"`
	// cloud-init: User name to change ssh keys and password for instead of the image's configured default user.
	Ciuser *string `json:"ciuser,omitempty"`
	// The number of cores per socket.
	Cores *int64 `json:"cores,omitempty"`
	// Emulated CPU type.
	Cpu *string `json:"cpu,omitempty"`
	// Limit of CPU usage.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a VM, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// Description for the VM. Shown in the web-interface VM's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// SHA1 digest of configuration file. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// Configure a disk for storing EFI vars.
	Efidisk0 *string `json:"efidisk0,omitempty"`
	// Freeze CPU at startup (use 'c' monitor command to start execution).
	Freeze *int32 `json:"freeze,omitempty"`
	// Script that will be executed during various steps in the vms lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Map host PCI devices into guest.
	Hostpci0 *string `json:"hostpci0,omitempty"`
	// Map host PCI devices into guest.
	Hostpci1 *string `json:"hostpci1,omitempty"`
	// Map host PCI devices into guest.
	Hostpci2 *string `json:"hostpci2,omitempty"`
	// Map host PCI devices into guest.
	Hostpci3 *string `json:"hostpci3,omitempty"`
	// Map host PCI devices into guest.
	Hostpci4 *string `json:"hostpci4,omitempty"`
	// Map host PCI devices into guest.
	Hostpci5 *string `json:"hostpci5,omitempty"`
	// Map host PCI devices into guest.
	Hostpci6 *string `json:"hostpci6,omitempty"`
	// Map host PCI devices into guest.
	Hostpci7 *string `json:"hostpci7,omitempty"`
	// Map host PCI devices into guest.
	Hostpci8 *string `json:"hostpci8,omitempty"`
	// Map host PCI devices into guest.
	Hostpci9 *string `json:"hostpci9,omitempty"`
	// Map host PCI devices into guest.
	Hostpci10 *string `json:"hostpci10,omitempty"`
	// Map host PCI devices into guest.
	Hostpci11 *string `json:"hostpci11,omitempty"`
	// Map host PCI devices into guest.
	Hostpci12 *string `json:"hostpci12,omitempty"`
	// Map host PCI devices into guest.
	Hostpci13 *string `json:"hostpci13,omitempty"`
	// Map host PCI devices into guest.
	Hostpci14 *string `json:"hostpci14,omitempty"`
	// Map host PCI devices into guest.
	Hostpci15 *string `json:"hostpci15,omitempty"`
	// Map host PCI devices into guest.
	Hostpci16 *string `json:"hostpci16,omitempty"`
	// Map host PCI devices into guest.
	Hostpci17 *string `json:"hostpci17,omitempty"`
	// Map host PCI devices into guest.
	Hostpci18 *string `json:"hostpci18,omitempty"`
	// Map host PCI devices into guest.
	Hostpci19 *string `json:"hostpci19,omitempty"`
	// Map host PCI devices into guest.
	Hostpci20 *string `json:"hostpci20,omitempty"`
	// Map host PCI devices into guest.
	Hostpci21 *string `json:"hostpci21,omitempty"`
	// Map host PCI devices into guest.
	Hostpci22 *string `json:"hostpci22,omitempty"`
	// Map host PCI devices into guest.
	Hostpci23 *string `json:"hostpci23,omitempty"`
	// Map host PCI devices into guest.
	Hostpci24 *string `json:"hostpci24,omitempty"`
	// Map host PCI devices into guest.
	Hostpci25 *string `json:"hostpci25,omitempty"`
	// Map host PCI devices into guest.
	Hostpci26 *string `json:"hostpci26,omitempty"`
	// Map host PCI devices into guest.
	Hostpci27 *string `json:"hostpci27,omitempty"`
	// Map host PCI devices into guest.
	Hostpci28 *string `json:"hostpci28,omitempty"`
	// Map host PCI devices into guest.
	Hostpci29 *string `json:"hostpci29,omitempty"`
	// Selectively enable hotplug features. This is a comma separated list of hotplug features: 'network', 'disk', 'cpu', 'memory', 'usb' and 'cloudinit'. Use '0' to disable hotplug completely. Using '1' as value is an alias for the default `network,disk,usb`. USB hotplugging is possible for guests with machine version >= 7.1 and ostype l26 or windows > 7.
	Hotplug *string `json:"hotplug,omitempty"`
	// Enable/disable hugepages memory.
	Hugepages *string `json:"hugepages,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3).
	Ide0 *string `json:"ide0,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3).
	Ide1 *string `json:"ide1,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3).
	Ide2 *string `json:"ide2,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3).
	Ide3 *string `json:"ide3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig0 *string `json:"ipconfig0,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig1 *string `json:"ipconfig1,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig2 *string `json:"ipconfig2,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig3 *string `json:"ipconfig3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig4 *string `json:"ipconfig4,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig5 *string `json:"ipconfig5,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig6 *string `json:"ipconfig6,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig7 *string `json:"ipconfig7,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig8 *string `json:"ipconfig8,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig9 *string `json:"ipconfig9,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig10 *string `json:"ipconfig10,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig11 *string `json:"ipconfig11,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig12 *string `json:"ipconfig12,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig13 *string `json:"ipconfig13,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig14 *string `json:"ipconfig14,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig15 *string `json:"ipconfig15,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig16 *string `json:"ipconfig16,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig17 *string `json:"ipconfig17,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig18 *string `json:"ipconfig18,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig19 *string `json:"ipconfig19,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig20 *string `json:"ipconfig20,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig21 *string `json:"ipconfig21,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig22 *string `json:"ipconfig22,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig23 *string `json:"ipconfig23,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig24 *string `json:"ipconfig24,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig25 *string `json:"ipconfig25,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig26 *string `json:"ipconfig26,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig27 *string `json:"ipconfig27,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig28 *string `json:"ipconfig28,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig29 *string `json:"ipconfig29,omitempty"`
	// Inter-VM shared memory. Useful for direct communication between VMs, or to the host.
	Ivshmem *string `json:"ivshmem,omitempty"`
	// Use together with hugepages. If enabled, hugepages will not not be deleted after VM shutdown and can be used for subsequent starts.
	Keephugepages *int32 `json:"keephugepages,omitempty"`
	// Keyboard layout for VNC server. This option is generally not required and is often better handled from within the guest OS.
	Keyboard *string `json:"keyboard,omitempty"`
	// Enable/disable KVM hardware virtualization.
	Kvm *int32 `json:"kvm,omitempty"`
	// Set the real time clock (RTC) to local time. This is enabled by default if the `ostype` indicates a Microsoft Windows OS.
	Localtime *int32 `json:"localtime,omitempty"`
	// Lock/unlock the VM.
	Lock *string `json:"lock,omitempty"`
	// Specifies the QEMU machine type.
	Machine *string `json:"machine,omitempty"`
	// Memory
	Memory *string `json:"memory,omitempty"`
	// Set maximum tolerated downtime (in seconds) for migrations.
	MigrateDowntime *float32 `json:"migrate_downtime,omitempty"`
	// Set maximum speed (in MB/s) for migrations. Value 0 is no limit.
	MigrateSpeed *int64 `json:"migrate_speed,omitempty"`
	// Set a name for the VM. Only used on the configuration web interface.
	Name *string `json:"name,omitempty"`
	// cloud-init: Sets DNS server IP address for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specify network devices.
	Net0 *string `json:"net0,omitempty"`
	// Specify network devices.
	Net1 *string `json:"net1,omitempty"`
	// Specify network devices.
	Net2 *string `json:"net2,omitempty"`
	// Specify network devices.
	Net3 *string `json:"net3,omitempty"`
	// Specify network devices.
	Net4 *string `json:"net4,omitempty"`
	// Specify network devices.
	Net5 *string `json:"net5,omitempty"`
	// Specify network devices.
	Net6 *string `json:"net6,omitempty"`
	// Specify network devices.
	Net7 *string `json:"net7,omitempty"`
	// Specify network devices.
	Net8 *string `json:"net8,omitempty"`
	// Specify network devices.
	Net9 *string `json:"net9,omitempty"`
	// Specify network devices.
	Net10 *string `json:"net10,omitempty"`
	// Specify network devices.
	Net11 *string `json:"net11,omitempty"`
	// Specify network devices.
	Net12 *string `json:"net12,omitempty"`
	// Specify network devices.
	Net13 *string `json:"net13,omitempty"`
	// Specify network devices.
	Net14 *string `json:"net14,omitempty"`
	// Specify network devices.
	Net15 *string `json:"net15,omitempty"`
	// Specify network devices.
	Net16 *string `json:"net16,omitempty"`
	// Specify network devices.
	Net17 *string `json:"net17,omitempty"`
	// Specify network devices.
	Net18 *string `json:"net18,omitempty"`
	// Specify network devices.
	Net19 *string `json:"net19,omitempty"`
	// Specify network devices.
	Net20 *string `json:"net20,omitempty"`
	// Specify network devices.
	Net21 *string `json:"net21,omitempty"`
	// Specify network devices.
	Net22 *string `json:"net22,omitempty"`
	// Specify network devices.
	Net23 *string `json:"net23,omitempty"`
	// Specify network devices.
	Net24 *string `json:"net24,omitempty"`
	// Specify network devices.
	Net25 *string `json:"net25,omitempty"`
	// Specify network devices.
	Net26 *string `json:"net26,omitempty"`
	// Specify network devices.
	Net27 *string `json:"net27,omitempty"`
	// Specify network devices.
	Net28 *string `json:"net28,omitempty"`
	// Specify network devices.
	Net29 *string `json:"net29,omitempty"`
	// Specify network devices.
	Net30 *string `json:"net30,omitempty"`
	// Specify network devices.
	Net31 *string `json:"net31,omitempty"`
	// Enable/disable NUMA.
	Numa *int32 `json:"numa,omitempty"`
	// NUMA topology.
	Numa0 *string `json:"numa0,omitempty"`
	// NUMA topology.
	Numa1 *string `json:"numa1,omitempty"`
	// NUMA topology.
	Numa2 *string `json:"numa2,omitempty"`
	// NUMA topology.
	Numa3 *string `json:"numa3,omitempty"`
	// NUMA topology.
	Numa4 *string `json:"numa4,omitempty"`
	// NUMA topology.
	Numa5 *string `json:"numa5,omitempty"`
	// NUMA topology.
	Numa6 *string `json:"numa6,omitempty"`
	// NUMA topology.
	Numa7 *string `json:"numa7,omitempty"`
	// NUMA topology.
	Numa8 *string `json:"numa8,omitempty"`
	// NUMA topology.
	Numa9 *string `json:"numa9,omitempty"`
	// NUMA topology.
	Numa10 *string `json:"numa10,omitempty"`
	// NUMA topology.
	Numa11 *string `json:"numa11,omitempty"`
	// NUMA topology.
	Numa12 *string `json:"numa12,omitempty"`
	// NUMA topology.
	Numa13 *string `json:"numa13,omitempty"`
	// NUMA topology.
	Numa14 *string `json:"numa14,omitempty"`
	// NUMA topology.
	Numa15 *string `json:"numa15,omitempty"`
	// NUMA topology.
	Numa16 *string `json:"numa16,omitempty"`
	// NUMA topology.
	Numa17 *string `json:"numa17,omitempty"`
	// NUMA topology.
	Numa18 *string `json:"numa18,omitempty"`
	// NUMA topology.
	Numa19 *string `json:"numa19,omitempty"`
	// NUMA topology.
	Numa20 *string `json:"numa20,omitempty"`
	// NUMA topology.
	Numa21 *string `json:"numa21,omitempty"`
	// NUMA topology.
	Numa22 *string `json:"numa22,omitempty"`
	// NUMA topology.
	Numa23 *string `json:"numa23,omitempty"`
	// NUMA topology.
	Numa24 *string `json:"numa24,omitempty"`
	// NUMA topology.
	Numa25 *string `json:"numa25,omitempty"`
	// NUMA topology.
	Numa26 *string `json:"numa26,omitempty"`
	// NUMA topology.
	Numa27 *string `json:"numa27,omitempty"`
	// NUMA topology.
	Numa28 *string `json:"numa28,omitempty"`
	// NUMA topology.
	Numa29 *string `json:"numa29,omitempty"`
	// Specifies whether a VM will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// Specify guest operating system.
	Ostype *string `json:"ostype,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel0 *string `json:"parallel0,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel1 *string `json:"parallel1,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel2 *string `json:"parallel2,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel3 *string `json:"parallel3,omitempty"`
	// Sets the protection flag of the VM. This will disable the remove VM and remove disk operations.
	Protection *int32 `json:"protection,omitempty"`
	// Allow reboot. If set to '0' the VM exit on reboot.
	Reboot *int32 `json:"reboot,omitempty"`
	// Configure a VirtIO-based Random Number Generator.
	Rng0 *string `json:"rng0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5).
	Sata0 *string `json:"sata0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5).
	Sata1 *string `json:"sata1,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5).
	Sata2 *string `json:"sata2,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5).
	Sata3 *string `json:"sata3,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5).
	Sata4 *string `json:"sata4,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5).
	Sata5 *string `json:"sata5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi0 *string `json:"scsi0,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi1 *string `json:"scsi1,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi2 *string `json:"scsi2,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi3 *string `json:"scsi3,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi4 *string `json:"scsi4,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi5 *string `json:"scsi5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi6 *string `json:"scsi6,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi7 *string `json:"scsi7,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi8 *string `json:"scsi8,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi9 *string `json:"scsi9,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi10 *string `json:"scsi10,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi11 *string `json:"scsi11,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi12 *string `json:"scsi12,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi13 *string `json:"scsi13,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi14 *string `json:"scsi14,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi15 *string `json:"scsi15,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi16 *string `json:"scsi16,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi17 *string `json:"scsi17,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi18 *string `json:"scsi18,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi19 *string `json:"scsi19,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi20 *string `json:"scsi20,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi21 *string `json:"scsi21,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi22 *string `json:"scsi22,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi23 *string `json:"scsi23,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi24 *string `json:"scsi24,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi25 *string `json:"scsi25,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi26 *string `json:"scsi26,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi27 *string `json:"scsi27,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi28 *string `json:"scsi28,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30).
	Scsi29 *string `json:"scsi29,omitempty"`
	// SCSI controller model
	Scsihw *string `json:"scsihw,omitempty"`
	// cloud-init: Sets DNS search domains for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial0 *string `json:"serial0,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial1 *string `json:"serial1,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial2 *string `json:"serial2,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial3 *string `json:"serial3,omitempty"`
	// Amount of memory shares for auto-ballooning. The larger the number is, the more memory this VM gets. Number is relative to weights of all other running VMs. Using zero disables auto-ballooning. Auto-ballooning is done by pvestatd.
	Shares *int64 `json:"shares,omitempty"`
	// Specify SMBIOS type 1 fields.
	Smbios1 *string `json:"smbios1,omitempty"`
	// The number of CPUs. Please use option -sockets instead.
	Smp *int64 `json:"smp,omitempty"`
	// The number of CPU sockets.
	Sockets *int64 `json:"sockets,omitempty"`
	// Configure additional enhancements for SPICE.
	SpiceEnhancements *string `json:"spice_enhancements,omitempty"`
	// cloud-init: Setup public SSH keys (one key per line, OpenSSH format).
	Sshkeys *string `json:"sshkeys,omitempty"`
	// Set the initial date of the real time clock. Valid format for date are:'now' or '2006-06-17T16:01:21' or '2006-06-17'.
	Startdate *string `json:"startdate,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Enable/disable the USB tablet device.
	Tablet *int32 `json:"tablet,omitempty"`
	// Tags of the VM. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable time drift fix.
	Tdf *int32 `json:"tdf,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Configure a Disk for storing TPM state. The format is fixed to 'raw'.
	Tpmstate0 *string `json:"tpmstate0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb0 *string `json:"usb0,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb1 *string `json:"usb1,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb2 *string `json:"usb2,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb3 *string `json:"usb3,omitempty"`
	// Number of hotplugged vcpus.
	Vcpus *int64 `json:"vcpus,omitempty"`
	// Configure the VGA hardware.
	Vga *string `json:"vga,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio0 *string `json:"virtio0,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio1 *string `json:"virtio1,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio2 *string `json:"virtio2,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio3 *string `json:"virtio3,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio4 *string `json:"virtio4,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio5 *string `json:"virtio5,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio6 *string `json:"virtio6,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio7 *string `json:"virtio7,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio8 *string `json:"virtio8,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio9 *string `json:"virtio9,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio10 *string `json:"virtio10,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio11 *string `json:"virtio11,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio12 *string `json:"virtio12,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio13 *string `json:"virtio13,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio14 *string `json:"virtio14,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15).
	Virtio15 *string `json:"virtio15,omitempty"`
	// Set VM Generation ID. Use '1' to autogenerate on create or update, pass '0' to disable explicitly.
	Vmgenid *string `json:"vmgenid,omitempty"`
	// Default storage for VM state volumes/files.
	Vmstatestorage *string `json:"vmstatestorage,omitempty"`
	// Create a virtual hardware watchdog device.
	Watchdog *string `json:"watchdog,omitempty"`
}

GetVMConfig200ResponseData The VM configuration.

func NewGetVMConfig200ResponseData

func NewGetVMConfig200ResponseData() *GetVMConfig200ResponseData

NewGetVMConfig200ResponseData instantiates a new GetVMConfig200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMConfig200ResponseDataWithDefaults

func NewGetVMConfig200ResponseDataWithDefaults() *GetVMConfig200ResponseData

NewGetVMConfig200ResponseDataWithDefaults instantiates a new GetVMConfig200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMConfig200ResponseData) GetAcpi

func (o *GetVMConfig200ResponseData) GetAcpi() int32

GetAcpi returns the Acpi field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetAcpiOk

func (o *GetVMConfig200ResponseData) GetAcpiOk() (*int32, bool)

GetAcpiOk returns a tuple with the Acpi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetAffinity

func (o *GetVMConfig200ResponseData) GetAffinity() string

GetAffinity returns the Affinity field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetAffinityOk

func (o *GetVMConfig200ResponseData) GetAffinityOk() (*string, bool)

GetAffinityOk returns a tuple with the Affinity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetAgent

func (o *GetVMConfig200ResponseData) GetAgent() string

GetAgent returns the Agent field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetAgentOk

func (o *GetVMConfig200ResponseData) GetAgentOk() (*string, bool)

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetArch

func (o *GetVMConfig200ResponseData) GetArch() string

GetArch returns the Arch field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetArchOk

func (o *GetVMConfig200ResponseData) GetArchOk() (*string, bool)

GetArchOk returns a tuple with the Arch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetArgs

func (o *GetVMConfig200ResponseData) GetArgs() string

GetArgs returns the Args field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetArgsOk

func (o *GetVMConfig200ResponseData) GetArgsOk() (*string, bool)

GetArgsOk returns a tuple with the Args field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetAudio0

func (o *GetVMConfig200ResponseData) GetAudio0() string

GetAudio0 returns the Audio0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetAudio0Ok

func (o *GetVMConfig200ResponseData) GetAudio0Ok() (*string, bool)

GetAudio0Ok returns a tuple with the Audio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetAutostart

func (o *GetVMConfig200ResponseData) GetAutostart() int32

GetAutostart returns the Autostart field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetAutostartOk

func (o *GetVMConfig200ResponseData) GetAutostartOk() (*int32, bool)

GetAutostartOk returns a tuple with the Autostart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetBalloon

func (o *GetVMConfig200ResponseData) GetBalloon() int64

GetBalloon returns the Balloon field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetBalloonOk

func (o *GetVMConfig200ResponseData) GetBalloonOk() (*int64, bool)

GetBalloonOk returns a tuple with the Balloon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetBios

func (o *GetVMConfig200ResponseData) GetBios() string

GetBios returns the Bios field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetBiosOk

func (o *GetVMConfig200ResponseData) GetBiosOk() (*string, bool)

GetBiosOk returns a tuple with the Bios field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetBoot

func (o *GetVMConfig200ResponseData) GetBoot() string

GetBoot returns the Boot field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetBootOk

func (o *GetVMConfig200ResponseData) GetBootOk() (*string, bool)

GetBootOk returns a tuple with the Boot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetBootdisk

func (o *GetVMConfig200ResponseData) GetBootdisk() string

GetBootdisk returns the Bootdisk field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetBootdiskOk

func (o *GetVMConfig200ResponseData) GetBootdiskOk() (*string, bool)

GetBootdiskOk returns a tuple with the Bootdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCdrom

func (o *GetVMConfig200ResponseData) GetCdrom() string

GetCdrom returns the Cdrom field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCdromOk

func (o *GetVMConfig200ResponseData) GetCdromOk() (*string, bool)

GetCdromOk returns a tuple with the Cdrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCicustom

func (o *GetVMConfig200ResponseData) GetCicustom() string

GetCicustom returns the Cicustom field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCicustomOk

func (o *GetVMConfig200ResponseData) GetCicustomOk() (*string, bool)

GetCicustomOk returns a tuple with the Cicustom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCipassword

func (o *GetVMConfig200ResponseData) GetCipassword() string

GetCipassword returns the Cipassword field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCipasswordOk

func (o *GetVMConfig200ResponseData) GetCipasswordOk() (*string, bool)

GetCipasswordOk returns a tuple with the Cipassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCitype

func (o *GetVMConfig200ResponseData) GetCitype() string

GetCitype returns the Citype field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCitypeOk

func (o *GetVMConfig200ResponseData) GetCitypeOk() (*string, bool)

GetCitypeOk returns a tuple with the Citype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCiupgrade

func (o *GetVMConfig200ResponseData) GetCiupgrade() int32

GetCiupgrade returns the Ciupgrade field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCiupgradeOk

func (o *GetVMConfig200ResponseData) GetCiupgradeOk() (*int32, bool)

GetCiupgradeOk returns a tuple with the Ciupgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCiuser

func (o *GetVMConfig200ResponseData) GetCiuser() string

GetCiuser returns the Ciuser field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCiuserOk

func (o *GetVMConfig200ResponseData) GetCiuserOk() (*string, bool)

GetCiuserOk returns a tuple with the Ciuser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCores

func (o *GetVMConfig200ResponseData) GetCores() int64

GetCores returns the Cores field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCoresOk

func (o *GetVMConfig200ResponseData) GetCoresOk() (*int64, bool)

GetCoresOk returns a tuple with the Cores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCpu

func (o *GetVMConfig200ResponseData) GetCpu() string

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCpuOk

func (o *GetVMConfig200ResponseData) GetCpuOk() (*string, bool)

GetCpuOk returns a tuple with the Cpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCpulimit

func (o *GetVMConfig200ResponseData) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCpulimitOk

func (o *GetVMConfig200ResponseData) GetCpulimitOk() (*float32, bool)

GetCpulimitOk returns a tuple with the Cpulimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetCpuunits

func (o *GetVMConfig200ResponseData) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetCpuunitsOk

func (o *GetVMConfig200ResponseData) GetCpuunitsOk() (*int64, bool)

GetCpuunitsOk returns a tuple with the Cpuunits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetDescription

func (o *GetVMConfig200ResponseData) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetDescriptionOk

func (o *GetVMConfig200ResponseData) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetDigest

func (o *GetVMConfig200ResponseData) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetDigestOk

func (o *GetVMConfig200ResponseData) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetEfidisk0

func (o *GetVMConfig200ResponseData) GetEfidisk0() string

GetEfidisk0 returns the Efidisk0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetEfidisk0Ok

func (o *GetVMConfig200ResponseData) GetEfidisk0Ok() (*string, bool)

GetEfidisk0Ok returns a tuple with the Efidisk0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetFreeze

func (o *GetVMConfig200ResponseData) GetFreeze() int32

GetFreeze returns the Freeze field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetFreezeOk

func (o *GetVMConfig200ResponseData) GetFreezeOk() (*int32, bool)

GetFreezeOk returns a tuple with the Freeze field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHookscript

func (o *GetVMConfig200ResponseData) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHookscriptOk

func (o *GetVMConfig200ResponseData) GetHookscriptOk() (*string, bool)

GetHookscriptOk returns a tuple with the Hookscript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci0

func (o *GetVMConfig200ResponseData) GetHostpci0() string

GetHostpci0 returns the Hostpci0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci0Ok

func (o *GetVMConfig200ResponseData) GetHostpci0Ok() (*string, bool)

GetHostpci0Ok returns a tuple with the Hostpci0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci1

func (o *GetVMConfig200ResponseData) GetHostpci1() string

GetHostpci1 returns the Hostpci1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci10

func (o *GetVMConfig200ResponseData) GetHostpci10() string

GetHostpci10 returns the Hostpci10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci10Ok

func (o *GetVMConfig200ResponseData) GetHostpci10Ok() (*string, bool)

GetHostpci10Ok returns a tuple with the Hostpci10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci11

func (o *GetVMConfig200ResponseData) GetHostpci11() string

GetHostpci11 returns the Hostpci11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci11Ok

func (o *GetVMConfig200ResponseData) GetHostpci11Ok() (*string, bool)

GetHostpci11Ok returns a tuple with the Hostpci11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci12

func (o *GetVMConfig200ResponseData) GetHostpci12() string

GetHostpci12 returns the Hostpci12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci12Ok

func (o *GetVMConfig200ResponseData) GetHostpci12Ok() (*string, bool)

GetHostpci12Ok returns a tuple with the Hostpci12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci13

func (o *GetVMConfig200ResponseData) GetHostpci13() string

GetHostpci13 returns the Hostpci13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci13Ok

func (o *GetVMConfig200ResponseData) GetHostpci13Ok() (*string, bool)

GetHostpci13Ok returns a tuple with the Hostpci13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci14

func (o *GetVMConfig200ResponseData) GetHostpci14() string

GetHostpci14 returns the Hostpci14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci14Ok

func (o *GetVMConfig200ResponseData) GetHostpci14Ok() (*string, bool)

GetHostpci14Ok returns a tuple with the Hostpci14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci15

func (o *GetVMConfig200ResponseData) GetHostpci15() string

GetHostpci15 returns the Hostpci15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci15Ok

func (o *GetVMConfig200ResponseData) GetHostpci15Ok() (*string, bool)

GetHostpci15Ok returns a tuple with the Hostpci15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci16

func (o *GetVMConfig200ResponseData) GetHostpci16() string

GetHostpci16 returns the Hostpci16 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci16Ok

func (o *GetVMConfig200ResponseData) GetHostpci16Ok() (*string, bool)

GetHostpci16Ok returns a tuple with the Hostpci16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci17

func (o *GetVMConfig200ResponseData) GetHostpci17() string

GetHostpci17 returns the Hostpci17 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci17Ok

func (o *GetVMConfig200ResponseData) GetHostpci17Ok() (*string, bool)

GetHostpci17Ok returns a tuple with the Hostpci17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci18

func (o *GetVMConfig200ResponseData) GetHostpci18() string

GetHostpci18 returns the Hostpci18 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci18Ok

func (o *GetVMConfig200ResponseData) GetHostpci18Ok() (*string, bool)

GetHostpci18Ok returns a tuple with the Hostpci18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci19

func (o *GetVMConfig200ResponseData) GetHostpci19() string

GetHostpci19 returns the Hostpci19 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci19Ok

func (o *GetVMConfig200ResponseData) GetHostpci19Ok() (*string, bool)

GetHostpci19Ok returns a tuple with the Hostpci19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci1Ok

func (o *GetVMConfig200ResponseData) GetHostpci1Ok() (*string, bool)

GetHostpci1Ok returns a tuple with the Hostpci1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci2

func (o *GetVMConfig200ResponseData) GetHostpci2() string

GetHostpci2 returns the Hostpci2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci20

func (o *GetVMConfig200ResponseData) GetHostpci20() string

GetHostpci20 returns the Hostpci20 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci20Ok

func (o *GetVMConfig200ResponseData) GetHostpci20Ok() (*string, bool)

GetHostpci20Ok returns a tuple with the Hostpci20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci21

func (o *GetVMConfig200ResponseData) GetHostpci21() string

GetHostpci21 returns the Hostpci21 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci21Ok

func (o *GetVMConfig200ResponseData) GetHostpci21Ok() (*string, bool)

GetHostpci21Ok returns a tuple with the Hostpci21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci22

func (o *GetVMConfig200ResponseData) GetHostpci22() string

GetHostpci22 returns the Hostpci22 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci22Ok

func (o *GetVMConfig200ResponseData) GetHostpci22Ok() (*string, bool)

GetHostpci22Ok returns a tuple with the Hostpci22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci23

func (o *GetVMConfig200ResponseData) GetHostpci23() string

GetHostpci23 returns the Hostpci23 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci23Ok

func (o *GetVMConfig200ResponseData) GetHostpci23Ok() (*string, bool)

GetHostpci23Ok returns a tuple with the Hostpci23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci24

func (o *GetVMConfig200ResponseData) GetHostpci24() string

GetHostpci24 returns the Hostpci24 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci24Ok

func (o *GetVMConfig200ResponseData) GetHostpci24Ok() (*string, bool)

GetHostpci24Ok returns a tuple with the Hostpci24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci25

func (o *GetVMConfig200ResponseData) GetHostpci25() string

GetHostpci25 returns the Hostpci25 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci25Ok

func (o *GetVMConfig200ResponseData) GetHostpci25Ok() (*string, bool)

GetHostpci25Ok returns a tuple with the Hostpci25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci26

func (o *GetVMConfig200ResponseData) GetHostpci26() string

GetHostpci26 returns the Hostpci26 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci26Ok

func (o *GetVMConfig200ResponseData) GetHostpci26Ok() (*string, bool)

GetHostpci26Ok returns a tuple with the Hostpci26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci27

func (o *GetVMConfig200ResponseData) GetHostpci27() string

GetHostpci27 returns the Hostpci27 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci27Ok

func (o *GetVMConfig200ResponseData) GetHostpci27Ok() (*string, bool)

GetHostpci27Ok returns a tuple with the Hostpci27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci28

func (o *GetVMConfig200ResponseData) GetHostpci28() string

GetHostpci28 returns the Hostpci28 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci28Ok

func (o *GetVMConfig200ResponseData) GetHostpci28Ok() (*string, bool)

GetHostpci28Ok returns a tuple with the Hostpci28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci29

func (o *GetVMConfig200ResponseData) GetHostpci29() string

GetHostpci29 returns the Hostpci29 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci29Ok

func (o *GetVMConfig200ResponseData) GetHostpci29Ok() (*string, bool)

GetHostpci29Ok returns a tuple with the Hostpci29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci2Ok

func (o *GetVMConfig200ResponseData) GetHostpci2Ok() (*string, bool)

GetHostpci2Ok returns a tuple with the Hostpci2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci3

func (o *GetVMConfig200ResponseData) GetHostpci3() string

GetHostpci3 returns the Hostpci3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci3Ok

func (o *GetVMConfig200ResponseData) GetHostpci3Ok() (*string, bool)

GetHostpci3Ok returns a tuple with the Hostpci3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci4

func (o *GetVMConfig200ResponseData) GetHostpci4() string

GetHostpci4 returns the Hostpci4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci4Ok

func (o *GetVMConfig200ResponseData) GetHostpci4Ok() (*string, bool)

GetHostpci4Ok returns a tuple with the Hostpci4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci5

func (o *GetVMConfig200ResponseData) GetHostpci5() string

GetHostpci5 returns the Hostpci5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci5Ok

func (o *GetVMConfig200ResponseData) GetHostpci5Ok() (*string, bool)

GetHostpci5Ok returns a tuple with the Hostpci5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci6

func (o *GetVMConfig200ResponseData) GetHostpci6() string

GetHostpci6 returns the Hostpci6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci6Ok

func (o *GetVMConfig200ResponseData) GetHostpci6Ok() (*string, bool)

GetHostpci6Ok returns a tuple with the Hostpci6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci7

func (o *GetVMConfig200ResponseData) GetHostpci7() string

GetHostpci7 returns the Hostpci7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci7Ok

func (o *GetVMConfig200ResponseData) GetHostpci7Ok() (*string, bool)

GetHostpci7Ok returns a tuple with the Hostpci7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci8

func (o *GetVMConfig200ResponseData) GetHostpci8() string

GetHostpci8 returns the Hostpci8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci8Ok

func (o *GetVMConfig200ResponseData) GetHostpci8Ok() (*string, bool)

GetHostpci8Ok returns a tuple with the Hostpci8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHostpci9

func (o *GetVMConfig200ResponseData) GetHostpci9() string

GetHostpci9 returns the Hostpci9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHostpci9Ok

func (o *GetVMConfig200ResponseData) GetHostpci9Ok() (*string, bool)

GetHostpci9Ok returns a tuple with the Hostpci9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHotplug

func (o *GetVMConfig200ResponseData) GetHotplug() string

GetHotplug returns the Hotplug field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHotplugOk

func (o *GetVMConfig200ResponseData) GetHotplugOk() (*string, bool)

GetHotplugOk returns a tuple with the Hotplug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetHugepages

func (o *GetVMConfig200ResponseData) GetHugepages() string

GetHugepages returns the Hugepages field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetHugepagesOk

func (o *GetVMConfig200ResponseData) GetHugepagesOk() (*string, bool)

GetHugepagesOk returns a tuple with the Hugepages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIde0

func (o *GetVMConfig200ResponseData) GetIde0() string

GetIde0 returns the Ide0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIde0Ok

func (o *GetVMConfig200ResponseData) GetIde0Ok() (*string, bool)

GetIde0Ok returns a tuple with the Ide0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIde1

func (o *GetVMConfig200ResponseData) GetIde1() string

GetIde1 returns the Ide1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIde1Ok

func (o *GetVMConfig200ResponseData) GetIde1Ok() (*string, bool)

GetIde1Ok returns a tuple with the Ide1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIde2

func (o *GetVMConfig200ResponseData) GetIde2() string

GetIde2 returns the Ide2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIde2Ok

func (o *GetVMConfig200ResponseData) GetIde2Ok() (*string, bool)

GetIde2Ok returns a tuple with the Ide2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIde3

func (o *GetVMConfig200ResponseData) GetIde3() string

GetIde3 returns the Ide3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIde3Ok

func (o *GetVMConfig200ResponseData) GetIde3Ok() (*string, bool)

GetIde3Ok returns a tuple with the Ide3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig0

func (o *GetVMConfig200ResponseData) GetIpconfig0() string

GetIpconfig0 returns the Ipconfig0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig0Ok

func (o *GetVMConfig200ResponseData) GetIpconfig0Ok() (*string, bool)

GetIpconfig0Ok returns a tuple with the Ipconfig0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig1

func (o *GetVMConfig200ResponseData) GetIpconfig1() string

GetIpconfig1 returns the Ipconfig1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig10

func (o *GetVMConfig200ResponseData) GetIpconfig10() string

GetIpconfig10 returns the Ipconfig10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig10Ok

func (o *GetVMConfig200ResponseData) GetIpconfig10Ok() (*string, bool)

GetIpconfig10Ok returns a tuple with the Ipconfig10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig11

func (o *GetVMConfig200ResponseData) GetIpconfig11() string

GetIpconfig11 returns the Ipconfig11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig11Ok

func (o *GetVMConfig200ResponseData) GetIpconfig11Ok() (*string, bool)

GetIpconfig11Ok returns a tuple with the Ipconfig11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig12

func (o *GetVMConfig200ResponseData) GetIpconfig12() string

GetIpconfig12 returns the Ipconfig12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig12Ok

func (o *GetVMConfig200ResponseData) GetIpconfig12Ok() (*string, bool)

GetIpconfig12Ok returns a tuple with the Ipconfig12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig13

func (o *GetVMConfig200ResponseData) GetIpconfig13() string

GetIpconfig13 returns the Ipconfig13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig13Ok

func (o *GetVMConfig200ResponseData) GetIpconfig13Ok() (*string, bool)

GetIpconfig13Ok returns a tuple with the Ipconfig13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig14

func (o *GetVMConfig200ResponseData) GetIpconfig14() string

GetIpconfig14 returns the Ipconfig14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig14Ok

func (o *GetVMConfig200ResponseData) GetIpconfig14Ok() (*string, bool)

GetIpconfig14Ok returns a tuple with the Ipconfig14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig15

func (o *GetVMConfig200ResponseData) GetIpconfig15() string

GetIpconfig15 returns the Ipconfig15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig15Ok

func (o *GetVMConfig200ResponseData) GetIpconfig15Ok() (*string, bool)

GetIpconfig15Ok returns a tuple with the Ipconfig15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig16

func (o *GetVMConfig200ResponseData) GetIpconfig16() string

GetIpconfig16 returns the Ipconfig16 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig16Ok

func (o *GetVMConfig200ResponseData) GetIpconfig16Ok() (*string, bool)

GetIpconfig16Ok returns a tuple with the Ipconfig16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig17

func (o *GetVMConfig200ResponseData) GetIpconfig17() string

GetIpconfig17 returns the Ipconfig17 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig17Ok

func (o *GetVMConfig200ResponseData) GetIpconfig17Ok() (*string, bool)

GetIpconfig17Ok returns a tuple with the Ipconfig17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig18

func (o *GetVMConfig200ResponseData) GetIpconfig18() string

GetIpconfig18 returns the Ipconfig18 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig18Ok

func (o *GetVMConfig200ResponseData) GetIpconfig18Ok() (*string, bool)

GetIpconfig18Ok returns a tuple with the Ipconfig18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig19

func (o *GetVMConfig200ResponseData) GetIpconfig19() string

GetIpconfig19 returns the Ipconfig19 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig19Ok

func (o *GetVMConfig200ResponseData) GetIpconfig19Ok() (*string, bool)

GetIpconfig19Ok returns a tuple with the Ipconfig19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig1Ok

func (o *GetVMConfig200ResponseData) GetIpconfig1Ok() (*string, bool)

GetIpconfig1Ok returns a tuple with the Ipconfig1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig2

func (o *GetVMConfig200ResponseData) GetIpconfig2() string

GetIpconfig2 returns the Ipconfig2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig20

func (o *GetVMConfig200ResponseData) GetIpconfig20() string

GetIpconfig20 returns the Ipconfig20 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig20Ok

func (o *GetVMConfig200ResponseData) GetIpconfig20Ok() (*string, bool)

GetIpconfig20Ok returns a tuple with the Ipconfig20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig21

func (o *GetVMConfig200ResponseData) GetIpconfig21() string

GetIpconfig21 returns the Ipconfig21 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig21Ok

func (o *GetVMConfig200ResponseData) GetIpconfig21Ok() (*string, bool)

GetIpconfig21Ok returns a tuple with the Ipconfig21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig22

func (o *GetVMConfig200ResponseData) GetIpconfig22() string

GetIpconfig22 returns the Ipconfig22 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig22Ok

func (o *GetVMConfig200ResponseData) GetIpconfig22Ok() (*string, bool)

GetIpconfig22Ok returns a tuple with the Ipconfig22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig23

func (o *GetVMConfig200ResponseData) GetIpconfig23() string

GetIpconfig23 returns the Ipconfig23 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig23Ok

func (o *GetVMConfig200ResponseData) GetIpconfig23Ok() (*string, bool)

GetIpconfig23Ok returns a tuple with the Ipconfig23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig24

func (o *GetVMConfig200ResponseData) GetIpconfig24() string

GetIpconfig24 returns the Ipconfig24 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig24Ok

func (o *GetVMConfig200ResponseData) GetIpconfig24Ok() (*string, bool)

GetIpconfig24Ok returns a tuple with the Ipconfig24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig25

func (o *GetVMConfig200ResponseData) GetIpconfig25() string

GetIpconfig25 returns the Ipconfig25 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig25Ok

func (o *GetVMConfig200ResponseData) GetIpconfig25Ok() (*string, bool)

GetIpconfig25Ok returns a tuple with the Ipconfig25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig26

func (o *GetVMConfig200ResponseData) GetIpconfig26() string

GetIpconfig26 returns the Ipconfig26 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig26Ok

func (o *GetVMConfig200ResponseData) GetIpconfig26Ok() (*string, bool)

GetIpconfig26Ok returns a tuple with the Ipconfig26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig27

func (o *GetVMConfig200ResponseData) GetIpconfig27() string

GetIpconfig27 returns the Ipconfig27 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig27Ok

func (o *GetVMConfig200ResponseData) GetIpconfig27Ok() (*string, bool)

GetIpconfig27Ok returns a tuple with the Ipconfig27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig28

func (o *GetVMConfig200ResponseData) GetIpconfig28() string

GetIpconfig28 returns the Ipconfig28 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig28Ok

func (o *GetVMConfig200ResponseData) GetIpconfig28Ok() (*string, bool)

GetIpconfig28Ok returns a tuple with the Ipconfig28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig29

func (o *GetVMConfig200ResponseData) GetIpconfig29() string

GetIpconfig29 returns the Ipconfig29 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig29Ok

func (o *GetVMConfig200ResponseData) GetIpconfig29Ok() (*string, bool)

GetIpconfig29Ok returns a tuple with the Ipconfig29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig2Ok

func (o *GetVMConfig200ResponseData) GetIpconfig2Ok() (*string, bool)

GetIpconfig2Ok returns a tuple with the Ipconfig2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig3

func (o *GetVMConfig200ResponseData) GetIpconfig3() string

GetIpconfig3 returns the Ipconfig3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig3Ok

func (o *GetVMConfig200ResponseData) GetIpconfig3Ok() (*string, bool)

GetIpconfig3Ok returns a tuple with the Ipconfig3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig4

func (o *GetVMConfig200ResponseData) GetIpconfig4() string

GetIpconfig4 returns the Ipconfig4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig4Ok

func (o *GetVMConfig200ResponseData) GetIpconfig4Ok() (*string, bool)

GetIpconfig4Ok returns a tuple with the Ipconfig4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig5

func (o *GetVMConfig200ResponseData) GetIpconfig5() string

GetIpconfig5 returns the Ipconfig5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig5Ok

func (o *GetVMConfig200ResponseData) GetIpconfig5Ok() (*string, bool)

GetIpconfig5Ok returns a tuple with the Ipconfig5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig6

func (o *GetVMConfig200ResponseData) GetIpconfig6() string

GetIpconfig6 returns the Ipconfig6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig6Ok

func (o *GetVMConfig200ResponseData) GetIpconfig6Ok() (*string, bool)

GetIpconfig6Ok returns a tuple with the Ipconfig6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig7

func (o *GetVMConfig200ResponseData) GetIpconfig7() string

GetIpconfig7 returns the Ipconfig7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig7Ok

func (o *GetVMConfig200ResponseData) GetIpconfig7Ok() (*string, bool)

GetIpconfig7Ok returns a tuple with the Ipconfig7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig8

func (o *GetVMConfig200ResponseData) GetIpconfig8() string

GetIpconfig8 returns the Ipconfig8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig8Ok

func (o *GetVMConfig200ResponseData) GetIpconfig8Ok() (*string, bool)

GetIpconfig8Ok returns a tuple with the Ipconfig8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIpconfig9

func (o *GetVMConfig200ResponseData) GetIpconfig9() string

GetIpconfig9 returns the Ipconfig9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIpconfig9Ok

func (o *GetVMConfig200ResponseData) GetIpconfig9Ok() (*string, bool)

GetIpconfig9Ok returns a tuple with the Ipconfig9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetIvshmem

func (o *GetVMConfig200ResponseData) GetIvshmem() string

GetIvshmem returns the Ivshmem field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetIvshmemOk

func (o *GetVMConfig200ResponseData) GetIvshmemOk() (*string, bool)

GetIvshmemOk returns a tuple with the Ivshmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetKeephugepages

func (o *GetVMConfig200ResponseData) GetKeephugepages() int32

GetKeephugepages returns the Keephugepages field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetKeephugepagesOk

func (o *GetVMConfig200ResponseData) GetKeephugepagesOk() (*int32, bool)

GetKeephugepagesOk returns a tuple with the Keephugepages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetKeyboard

func (o *GetVMConfig200ResponseData) GetKeyboard() string

GetKeyboard returns the Keyboard field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetKeyboardOk

func (o *GetVMConfig200ResponseData) GetKeyboardOk() (*string, bool)

GetKeyboardOk returns a tuple with the Keyboard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetKvm

func (o *GetVMConfig200ResponseData) GetKvm() int32

GetKvm returns the Kvm field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetKvmOk

func (o *GetVMConfig200ResponseData) GetKvmOk() (*int32, bool)

GetKvmOk returns a tuple with the Kvm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetLocaltime

func (o *GetVMConfig200ResponseData) GetLocaltime() int32

GetLocaltime returns the Localtime field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetLocaltimeOk

func (o *GetVMConfig200ResponseData) GetLocaltimeOk() (*int32, bool)

GetLocaltimeOk returns a tuple with the Localtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetLock

func (o *GetVMConfig200ResponseData) GetLock() string

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetLockOk

func (o *GetVMConfig200ResponseData) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetMachine

func (o *GetVMConfig200ResponseData) GetMachine() string

GetMachine returns the Machine field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetMachineOk

func (o *GetVMConfig200ResponseData) GetMachineOk() (*string, bool)

GetMachineOk returns a tuple with the Machine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetMemory

func (o *GetVMConfig200ResponseData) GetMemory() string

GetMemory returns the Memory field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetMemoryOk

func (o *GetVMConfig200ResponseData) GetMemoryOk() (*string, bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetMigrateDowntime

func (o *GetVMConfig200ResponseData) GetMigrateDowntime() float32

GetMigrateDowntime returns the MigrateDowntime field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetMigrateDowntimeOk

func (o *GetVMConfig200ResponseData) GetMigrateDowntimeOk() (*float32, bool)

GetMigrateDowntimeOk returns a tuple with the MigrateDowntime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetMigrateSpeed

func (o *GetVMConfig200ResponseData) GetMigrateSpeed() int64

GetMigrateSpeed returns the MigrateSpeed field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetMigrateSpeedOk

func (o *GetVMConfig200ResponseData) GetMigrateSpeedOk() (*int64, bool)

GetMigrateSpeedOk returns a tuple with the MigrateSpeed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetName

func (o *GetVMConfig200ResponseData) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNameOk

func (o *GetVMConfig200ResponseData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNameserver

func (o *GetVMConfig200ResponseData) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNameserverOk

func (o *GetVMConfig200ResponseData) GetNameserverOk() (*string, bool)

GetNameserverOk returns a tuple with the Nameserver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet0

func (o *GetVMConfig200ResponseData) GetNet0() string

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet0Ok

func (o *GetVMConfig200ResponseData) GetNet0Ok() (*string, bool)

GetNet0Ok returns a tuple with the Net0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet1

func (o *GetVMConfig200ResponseData) GetNet1() string

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet10

func (o *GetVMConfig200ResponseData) GetNet10() string

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet10Ok

func (o *GetVMConfig200ResponseData) GetNet10Ok() (*string, bool)

GetNet10Ok returns a tuple with the Net10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet11

func (o *GetVMConfig200ResponseData) GetNet11() string

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet11Ok

func (o *GetVMConfig200ResponseData) GetNet11Ok() (*string, bool)

GetNet11Ok returns a tuple with the Net11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet12

func (o *GetVMConfig200ResponseData) GetNet12() string

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet12Ok

func (o *GetVMConfig200ResponseData) GetNet12Ok() (*string, bool)

GetNet12Ok returns a tuple with the Net12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet13

func (o *GetVMConfig200ResponseData) GetNet13() string

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet13Ok

func (o *GetVMConfig200ResponseData) GetNet13Ok() (*string, bool)

GetNet13Ok returns a tuple with the Net13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet14

func (o *GetVMConfig200ResponseData) GetNet14() string

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet14Ok

func (o *GetVMConfig200ResponseData) GetNet14Ok() (*string, bool)

GetNet14Ok returns a tuple with the Net14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet15

func (o *GetVMConfig200ResponseData) GetNet15() string

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet15Ok

func (o *GetVMConfig200ResponseData) GetNet15Ok() (*string, bool)

GetNet15Ok returns a tuple with the Net15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet16

func (o *GetVMConfig200ResponseData) GetNet16() string

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet16Ok

func (o *GetVMConfig200ResponseData) GetNet16Ok() (*string, bool)

GetNet16Ok returns a tuple with the Net16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet17

func (o *GetVMConfig200ResponseData) GetNet17() string

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet17Ok

func (o *GetVMConfig200ResponseData) GetNet17Ok() (*string, bool)

GetNet17Ok returns a tuple with the Net17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet18

func (o *GetVMConfig200ResponseData) GetNet18() string

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet18Ok

func (o *GetVMConfig200ResponseData) GetNet18Ok() (*string, bool)

GetNet18Ok returns a tuple with the Net18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet19

func (o *GetVMConfig200ResponseData) GetNet19() string

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet19Ok

func (o *GetVMConfig200ResponseData) GetNet19Ok() (*string, bool)

GetNet19Ok returns a tuple with the Net19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet1Ok

func (o *GetVMConfig200ResponseData) GetNet1Ok() (*string, bool)

GetNet1Ok returns a tuple with the Net1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet2

func (o *GetVMConfig200ResponseData) GetNet2() string

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet20

func (o *GetVMConfig200ResponseData) GetNet20() string

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet20Ok

func (o *GetVMConfig200ResponseData) GetNet20Ok() (*string, bool)

GetNet20Ok returns a tuple with the Net20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet21

func (o *GetVMConfig200ResponseData) GetNet21() string

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet21Ok

func (o *GetVMConfig200ResponseData) GetNet21Ok() (*string, bool)

GetNet21Ok returns a tuple with the Net21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet22

func (o *GetVMConfig200ResponseData) GetNet22() string

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet22Ok

func (o *GetVMConfig200ResponseData) GetNet22Ok() (*string, bool)

GetNet22Ok returns a tuple with the Net22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet23

func (o *GetVMConfig200ResponseData) GetNet23() string

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet23Ok

func (o *GetVMConfig200ResponseData) GetNet23Ok() (*string, bool)

GetNet23Ok returns a tuple with the Net23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet24

func (o *GetVMConfig200ResponseData) GetNet24() string

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet24Ok

func (o *GetVMConfig200ResponseData) GetNet24Ok() (*string, bool)

GetNet24Ok returns a tuple with the Net24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet25

func (o *GetVMConfig200ResponseData) GetNet25() string

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet25Ok

func (o *GetVMConfig200ResponseData) GetNet25Ok() (*string, bool)

GetNet25Ok returns a tuple with the Net25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet26

func (o *GetVMConfig200ResponseData) GetNet26() string

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet26Ok

func (o *GetVMConfig200ResponseData) GetNet26Ok() (*string, bool)

GetNet26Ok returns a tuple with the Net26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet27

func (o *GetVMConfig200ResponseData) GetNet27() string

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet27Ok

func (o *GetVMConfig200ResponseData) GetNet27Ok() (*string, bool)

GetNet27Ok returns a tuple with the Net27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet28

func (o *GetVMConfig200ResponseData) GetNet28() string

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet28Ok

func (o *GetVMConfig200ResponseData) GetNet28Ok() (*string, bool)

GetNet28Ok returns a tuple with the Net28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet29

func (o *GetVMConfig200ResponseData) GetNet29() string

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet29Ok

func (o *GetVMConfig200ResponseData) GetNet29Ok() (*string, bool)

GetNet29Ok returns a tuple with the Net29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet2Ok

func (o *GetVMConfig200ResponseData) GetNet2Ok() (*string, bool)

GetNet2Ok returns a tuple with the Net2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet3

func (o *GetVMConfig200ResponseData) GetNet3() string

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet30

func (o *GetVMConfig200ResponseData) GetNet30() string

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet30Ok

func (o *GetVMConfig200ResponseData) GetNet30Ok() (*string, bool)

GetNet30Ok returns a tuple with the Net30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet31

func (o *GetVMConfig200ResponseData) GetNet31() string

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet31Ok

func (o *GetVMConfig200ResponseData) GetNet31Ok() (*string, bool)

GetNet31Ok returns a tuple with the Net31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet3Ok

func (o *GetVMConfig200ResponseData) GetNet3Ok() (*string, bool)

GetNet3Ok returns a tuple with the Net3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet4

func (o *GetVMConfig200ResponseData) GetNet4() string

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet4Ok

func (o *GetVMConfig200ResponseData) GetNet4Ok() (*string, bool)

GetNet4Ok returns a tuple with the Net4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet5

func (o *GetVMConfig200ResponseData) GetNet5() string

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet5Ok

func (o *GetVMConfig200ResponseData) GetNet5Ok() (*string, bool)

GetNet5Ok returns a tuple with the Net5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet6

func (o *GetVMConfig200ResponseData) GetNet6() string

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet6Ok

func (o *GetVMConfig200ResponseData) GetNet6Ok() (*string, bool)

GetNet6Ok returns a tuple with the Net6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet7

func (o *GetVMConfig200ResponseData) GetNet7() string

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet7Ok

func (o *GetVMConfig200ResponseData) GetNet7Ok() (*string, bool)

GetNet7Ok returns a tuple with the Net7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet8

func (o *GetVMConfig200ResponseData) GetNet8() string

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet8Ok

func (o *GetVMConfig200ResponseData) GetNet8Ok() (*string, bool)

GetNet8Ok returns a tuple with the Net8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNet9

func (o *GetVMConfig200ResponseData) GetNet9() string

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNet9Ok

func (o *GetVMConfig200ResponseData) GetNet9Ok() (*string, bool)

GetNet9Ok returns a tuple with the Net9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma

func (o *GetVMConfig200ResponseData) GetNuma() int32

GetNuma returns the Numa field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma0

func (o *GetVMConfig200ResponseData) GetNuma0() string

GetNuma0 returns the Numa0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma0Ok

func (o *GetVMConfig200ResponseData) GetNuma0Ok() (*string, bool)

GetNuma0Ok returns a tuple with the Numa0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma1

func (o *GetVMConfig200ResponseData) GetNuma1() string

GetNuma1 returns the Numa1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma10

func (o *GetVMConfig200ResponseData) GetNuma10() string

GetNuma10 returns the Numa10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma10Ok

func (o *GetVMConfig200ResponseData) GetNuma10Ok() (*string, bool)

GetNuma10Ok returns a tuple with the Numa10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma11

func (o *GetVMConfig200ResponseData) GetNuma11() string

GetNuma11 returns the Numa11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma11Ok

func (o *GetVMConfig200ResponseData) GetNuma11Ok() (*string, bool)

GetNuma11Ok returns a tuple with the Numa11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma12

func (o *GetVMConfig200ResponseData) GetNuma12() string

GetNuma12 returns the Numa12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma12Ok

func (o *GetVMConfig200ResponseData) GetNuma12Ok() (*string, bool)

GetNuma12Ok returns a tuple with the Numa12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma13

func (o *GetVMConfig200ResponseData) GetNuma13() string

GetNuma13 returns the Numa13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma13Ok

func (o *GetVMConfig200ResponseData) GetNuma13Ok() (*string, bool)

GetNuma13Ok returns a tuple with the Numa13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma14

func (o *GetVMConfig200ResponseData) GetNuma14() string

GetNuma14 returns the Numa14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma14Ok

func (o *GetVMConfig200ResponseData) GetNuma14Ok() (*string, bool)

GetNuma14Ok returns a tuple with the Numa14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma15

func (o *GetVMConfig200ResponseData) GetNuma15() string

GetNuma15 returns the Numa15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma15Ok

func (o *GetVMConfig200ResponseData) GetNuma15Ok() (*string, bool)

GetNuma15Ok returns a tuple with the Numa15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma16

func (o *GetVMConfig200ResponseData) GetNuma16() string

GetNuma16 returns the Numa16 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma16Ok

func (o *GetVMConfig200ResponseData) GetNuma16Ok() (*string, bool)

GetNuma16Ok returns a tuple with the Numa16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma17

func (o *GetVMConfig200ResponseData) GetNuma17() string

GetNuma17 returns the Numa17 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma17Ok

func (o *GetVMConfig200ResponseData) GetNuma17Ok() (*string, bool)

GetNuma17Ok returns a tuple with the Numa17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma18

func (o *GetVMConfig200ResponseData) GetNuma18() string

GetNuma18 returns the Numa18 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma18Ok

func (o *GetVMConfig200ResponseData) GetNuma18Ok() (*string, bool)

GetNuma18Ok returns a tuple with the Numa18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma19

func (o *GetVMConfig200ResponseData) GetNuma19() string

GetNuma19 returns the Numa19 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma19Ok

func (o *GetVMConfig200ResponseData) GetNuma19Ok() (*string, bool)

GetNuma19Ok returns a tuple with the Numa19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma1Ok

func (o *GetVMConfig200ResponseData) GetNuma1Ok() (*string, bool)

GetNuma1Ok returns a tuple with the Numa1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma2

func (o *GetVMConfig200ResponseData) GetNuma2() string

GetNuma2 returns the Numa2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma20

func (o *GetVMConfig200ResponseData) GetNuma20() string

GetNuma20 returns the Numa20 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma20Ok

func (o *GetVMConfig200ResponseData) GetNuma20Ok() (*string, bool)

GetNuma20Ok returns a tuple with the Numa20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma21

func (o *GetVMConfig200ResponseData) GetNuma21() string

GetNuma21 returns the Numa21 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma21Ok

func (o *GetVMConfig200ResponseData) GetNuma21Ok() (*string, bool)

GetNuma21Ok returns a tuple with the Numa21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma22

func (o *GetVMConfig200ResponseData) GetNuma22() string

GetNuma22 returns the Numa22 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma22Ok

func (o *GetVMConfig200ResponseData) GetNuma22Ok() (*string, bool)

GetNuma22Ok returns a tuple with the Numa22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma23

func (o *GetVMConfig200ResponseData) GetNuma23() string

GetNuma23 returns the Numa23 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma23Ok

func (o *GetVMConfig200ResponseData) GetNuma23Ok() (*string, bool)

GetNuma23Ok returns a tuple with the Numa23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma24

func (o *GetVMConfig200ResponseData) GetNuma24() string

GetNuma24 returns the Numa24 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma24Ok

func (o *GetVMConfig200ResponseData) GetNuma24Ok() (*string, bool)

GetNuma24Ok returns a tuple with the Numa24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma25

func (o *GetVMConfig200ResponseData) GetNuma25() string

GetNuma25 returns the Numa25 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma25Ok

func (o *GetVMConfig200ResponseData) GetNuma25Ok() (*string, bool)

GetNuma25Ok returns a tuple with the Numa25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma26

func (o *GetVMConfig200ResponseData) GetNuma26() string

GetNuma26 returns the Numa26 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma26Ok

func (o *GetVMConfig200ResponseData) GetNuma26Ok() (*string, bool)

GetNuma26Ok returns a tuple with the Numa26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma27

func (o *GetVMConfig200ResponseData) GetNuma27() string

GetNuma27 returns the Numa27 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma27Ok

func (o *GetVMConfig200ResponseData) GetNuma27Ok() (*string, bool)

GetNuma27Ok returns a tuple with the Numa27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma28

func (o *GetVMConfig200ResponseData) GetNuma28() string

GetNuma28 returns the Numa28 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma28Ok

func (o *GetVMConfig200ResponseData) GetNuma28Ok() (*string, bool)

GetNuma28Ok returns a tuple with the Numa28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma29

func (o *GetVMConfig200ResponseData) GetNuma29() string

GetNuma29 returns the Numa29 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma29Ok

func (o *GetVMConfig200ResponseData) GetNuma29Ok() (*string, bool)

GetNuma29Ok returns a tuple with the Numa29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma2Ok

func (o *GetVMConfig200ResponseData) GetNuma2Ok() (*string, bool)

GetNuma2Ok returns a tuple with the Numa2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma3

func (o *GetVMConfig200ResponseData) GetNuma3() string

GetNuma3 returns the Numa3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma3Ok

func (o *GetVMConfig200ResponseData) GetNuma3Ok() (*string, bool)

GetNuma3Ok returns a tuple with the Numa3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma4

func (o *GetVMConfig200ResponseData) GetNuma4() string

GetNuma4 returns the Numa4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma4Ok

func (o *GetVMConfig200ResponseData) GetNuma4Ok() (*string, bool)

GetNuma4Ok returns a tuple with the Numa4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma5

func (o *GetVMConfig200ResponseData) GetNuma5() string

GetNuma5 returns the Numa5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma5Ok

func (o *GetVMConfig200ResponseData) GetNuma5Ok() (*string, bool)

GetNuma5Ok returns a tuple with the Numa5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma6

func (o *GetVMConfig200ResponseData) GetNuma6() string

GetNuma6 returns the Numa6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma6Ok

func (o *GetVMConfig200ResponseData) GetNuma6Ok() (*string, bool)

GetNuma6Ok returns a tuple with the Numa6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma7

func (o *GetVMConfig200ResponseData) GetNuma7() string

GetNuma7 returns the Numa7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma7Ok

func (o *GetVMConfig200ResponseData) GetNuma7Ok() (*string, bool)

GetNuma7Ok returns a tuple with the Numa7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma8

func (o *GetVMConfig200ResponseData) GetNuma8() string

GetNuma8 returns the Numa8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma8Ok

func (o *GetVMConfig200ResponseData) GetNuma8Ok() (*string, bool)

GetNuma8Ok returns a tuple with the Numa8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNuma9

func (o *GetVMConfig200ResponseData) GetNuma9() string

GetNuma9 returns the Numa9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetNuma9Ok

func (o *GetVMConfig200ResponseData) GetNuma9Ok() (*string, bool)

GetNuma9Ok returns a tuple with the Numa9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetNumaOk

func (o *GetVMConfig200ResponseData) GetNumaOk() (*int32, bool)

GetNumaOk returns a tuple with the Numa field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetOnboot

func (o *GetVMConfig200ResponseData) GetOnboot() int32

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetOnbootOk

func (o *GetVMConfig200ResponseData) GetOnbootOk() (*int32, bool)

GetOnbootOk returns a tuple with the Onboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetOstype

func (o *GetVMConfig200ResponseData) GetOstype() string

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetOstypeOk

func (o *GetVMConfig200ResponseData) GetOstypeOk() (*string, bool)

GetOstypeOk returns a tuple with the Ostype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetParallel0

func (o *GetVMConfig200ResponseData) GetParallel0() string

GetParallel0 returns the Parallel0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetParallel0Ok

func (o *GetVMConfig200ResponseData) GetParallel0Ok() (*string, bool)

GetParallel0Ok returns a tuple with the Parallel0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetParallel1

func (o *GetVMConfig200ResponseData) GetParallel1() string

GetParallel1 returns the Parallel1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetParallel1Ok

func (o *GetVMConfig200ResponseData) GetParallel1Ok() (*string, bool)

GetParallel1Ok returns a tuple with the Parallel1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetParallel2

func (o *GetVMConfig200ResponseData) GetParallel2() string

GetParallel2 returns the Parallel2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetParallel2Ok

func (o *GetVMConfig200ResponseData) GetParallel2Ok() (*string, bool)

GetParallel2Ok returns a tuple with the Parallel2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetParallel3

func (o *GetVMConfig200ResponseData) GetParallel3() string

GetParallel3 returns the Parallel3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetParallel3Ok

func (o *GetVMConfig200ResponseData) GetParallel3Ok() (*string, bool)

GetParallel3Ok returns a tuple with the Parallel3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetProtection

func (o *GetVMConfig200ResponseData) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetProtectionOk

func (o *GetVMConfig200ResponseData) GetProtectionOk() (*int32, bool)

GetProtectionOk returns a tuple with the Protection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetReboot

func (o *GetVMConfig200ResponseData) GetReboot() int32

GetReboot returns the Reboot field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetRebootOk

func (o *GetVMConfig200ResponseData) GetRebootOk() (*int32, bool)

GetRebootOk returns a tuple with the Reboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetRng0

func (o *GetVMConfig200ResponseData) GetRng0() string

GetRng0 returns the Rng0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetRng0Ok

func (o *GetVMConfig200ResponseData) GetRng0Ok() (*string, bool)

GetRng0Ok returns a tuple with the Rng0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSata0

func (o *GetVMConfig200ResponseData) GetSata0() string

GetSata0 returns the Sata0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSata0Ok

func (o *GetVMConfig200ResponseData) GetSata0Ok() (*string, bool)

GetSata0Ok returns a tuple with the Sata0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSata1

func (o *GetVMConfig200ResponseData) GetSata1() string

GetSata1 returns the Sata1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSata1Ok

func (o *GetVMConfig200ResponseData) GetSata1Ok() (*string, bool)

GetSata1Ok returns a tuple with the Sata1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSata2

func (o *GetVMConfig200ResponseData) GetSata2() string

GetSata2 returns the Sata2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSata2Ok

func (o *GetVMConfig200ResponseData) GetSata2Ok() (*string, bool)

GetSata2Ok returns a tuple with the Sata2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSata3

func (o *GetVMConfig200ResponseData) GetSata3() string

GetSata3 returns the Sata3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSata3Ok

func (o *GetVMConfig200ResponseData) GetSata3Ok() (*string, bool)

GetSata3Ok returns a tuple with the Sata3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSata4

func (o *GetVMConfig200ResponseData) GetSata4() string

GetSata4 returns the Sata4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSata4Ok

func (o *GetVMConfig200ResponseData) GetSata4Ok() (*string, bool)

GetSata4Ok returns a tuple with the Sata4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSata5

func (o *GetVMConfig200ResponseData) GetSata5() string

GetSata5 returns the Sata5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSata5Ok

func (o *GetVMConfig200ResponseData) GetSata5Ok() (*string, bool)

GetSata5Ok returns a tuple with the Sata5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi0

func (o *GetVMConfig200ResponseData) GetScsi0() string

GetScsi0 returns the Scsi0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi0Ok

func (o *GetVMConfig200ResponseData) GetScsi0Ok() (*string, bool)

GetScsi0Ok returns a tuple with the Scsi0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi1

func (o *GetVMConfig200ResponseData) GetScsi1() string

GetScsi1 returns the Scsi1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi10

func (o *GetVMConfig200ResponseData) GetScsi10() string

GetScsi10 returns the Scsi10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi10Ok

func (o *GetVMConfig200ResponseData) GetScsi10Ok() (*string, bool)

GetScsi10Ok returns a tuple with the Scsi10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi11

func (o *GetVMConfig200ResponseData) GetScsi11() string

GetScsi11 returns the Scsi11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi11Ok

func (o *GetVMConfig200ResponseData) GetScsi11Ok() (*string, bool)

GetScsi11Ok returns a tuple with the Scsi11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi12

func (o *GetVMConfig200ResponseData) GetScsi12() string

GetScsi12 returns the Scsi12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi12Ok

func (o *GetVMConfig200ResponseData) GetScsi12Ok() (*string, bool)

GetScsi12Ok returns a tuple with the Scsi12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi13

func (o *GetVMConfig200ResponseData) GetScsi13() string

GetScsi13 returns the Scsi13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi13Ok

func (o *GetVMConfig200ResponseData) GetScsi13Ok() (*string, bool)

GetScsi13Ok returns a tuple with the Scsi13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi14

func (o *GetVMConfig200ResponseData) GetScsi14() string

GetScsi14 returns the Scsi14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi14Ok

func (o *GetVMConfig200ResponseData) GetScsi14Ok() (*string, bool)

GetScsi14Ok returns a tuple with the Scsi14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi15

func (o *GetVMConfig200ResponseData) GetScsi15() string

GetScsi15 returns the Scsi15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi15Ok

func (o *GetVMConfig200ResponseData) GetScsi15Ok() (*string, bool)

GetScsi15Ok returns a tuple with the Scsi15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi16

func (o *GetVMConfig200ResponseData) GetScsi16() string

GetScsi16 returns the Scsi16 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi16Ok

func (o *GetVMConfig200ResponseData) GetScsi16Ok() (*string, bool)

GetScsi16Ok returns a tuple with the Scsi16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi17

func (o *GetVMConfig200ResponseData) GetScsi17() string

GetScsi17 returns the Scsi17 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi17Ok

func (o *GetVMConfig200ResponseData) GetScsi17Ok() (*string, bool)

GetScsi17Ok returns a tuple with the Scsi17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi18

func (o *GetVMConfig200ResponseData) GetScsi18() string

GetScsi18 returns the Scsi18 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi18Ok

func (o *GetVMConfig200ResponseData) GetScsi18Ok() (*string, bool)

GetScsi18Ok returns a tuple with the Scsi18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi19

func (o *GetVMConfig200ResponseData) GetScsi19() string

GetScsi19 returns the Scsi19 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi19Ok

func (o *GetVMConfig200ResponseData) GetScsi19Ok() (*string, bool)

GetScsi19Ok returns a tuple with the Scsi19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi1Ok

func (o *GetVMConfig200ResponseData) GetScsi1Ok() (*string, bool)

GetScsi1Ok returns a tuple with the Scsi1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi2

func (o *GetVMConfig200ResponseData) GetScsi2() string

GetScsi2 returns the Scsi2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi20

func (o *GetVMConfig200ResponseData) GetScsi20() string

GetScsi20 returns the Scsi20 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi20Ok

func (o *GetVMConfig200ResponseData) GetScsi20Ok() (*string, bool)

GetScsi20Ok returns a tuple with the Scsi20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi21

func (o *GetVMConfig200ResponseData) GetScsi21() string

GetScsi21 returns the Scsi21 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi21Ok

func (o *GetVMConfig200ResponseData) GetScsi21Ok() (*string, bool)

GetScsi21Ok returns a tuple with the Scsi21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi22

func (o *GetVMConfig200ResponseData) GetScsi22() string

GetScsi22 returns the Scsi22 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi22Ok

func (o *GetVMConfig200ResponseData) GetScsi22Ok() (*string, bool)

GetScsi22Ok returns a tuple with the Scsi22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi23

func (o *GetVMConfig200ResponseData) GetScsi23() string

GetScsi23 returns the Scsi23 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi23Ok

func (o *GetVMConfig200ResponseData) GetScsi23Ok() (*string, bool)

GetScsi23Ok returns a tuple with the Scsi23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi24

func (o *GetVMConfig200ResponseData) GetScsi24() string

GetScsi24 returns the Scsi24 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi24Ok

func (o *GetVMConfig200ResponseData) GetScsi24Ok() (*string, bool)

GetScsi24Ok returns a tuple with the Scsi24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi25

func (o *GetVMConfig200ResponseData) GetScsi25() string

GetScsi25 returns the Scsi25 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi25Ok

func (o *GetVMConfig200ResponseData) GetScsi25Ok() (*string, bool)

GetScsi25Ok returns a tuple with the Scsi25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi26

func (o *GetVMConfig200ResponseData) GetScsi26() string

GetScsi26 returns the Scsi26 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi26Ok

func (o *GetVMConfig200ResponseData) GetScsi26Ok() (*string, bool)

GetScsi26Ok returns a tuple with the Scsi26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi27

func (o *GetVMConfig200ResponseData) GetScsi27() string

GetScsi27 returns the Scsi27 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi27Ok

func (o *GetVMConfig200ResponseData) GetScsi27Ok() (*string, bool)

GetScsi27Ok returns a tuple with the Scsi27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi28

func (o *GetVMConfig200ResponseData) GetScsi28() string

GetScsi28 returns the Scsi28 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi28Ok

func (o *GetVMConfig200ResponseData) GetScsi28Ok() (*string, bool)

GetScsi28Ok returns a tuple with the Scsi28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi29

func (o *GetVMConfig200ResponseData) GetScsi29() string

GetScsi29 returns the Scsi29 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi29Ok

func (o *GetVMConfig200ResponseData) GetScsi29Ok() (*string, bool)

GetScsi29Ok returns a tuple with the Scsi29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi2Ok

func (o *GetVMConfig200ResponseData) GetScsi2Ok() (*string, bool)

GetScsi2Ok returns a tuple with the Scsi2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi3

func (o *GetVMConfig200ResponseData) GetScsi3() string

GetScsi3 returns the Scsi3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi3Ok

func (o *GetVMConfig200ResponseData) GetScsi3Ok() (*string, bool)

GetScsi3Ok returns a tuple with the Scsi3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi4

func (o *GetVMConfig200ResponseData) GetScsi4() string

GetScsi4 returns the Scsi4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi4Ok

func (o *GetVMConfig200ResponseData) GetScsi4Ok() (*string, bool)

GetScsi4Ok returns a tuple with the Scsi4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi5

func (o *GetVMConfig200ResponseData) GetScsi5() string

GetScsi5 returns the Scsi5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi5Ok

func (o *GetVMConfig200ResponseData) GetScsi5Ok() (*string, bool)

GetScsi5Ok returns a tuple with the Scsi5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi6

func (o *GetVMConfig200ResponseData) GetScsi6() string

GetScsi6 returns the Scsi6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi6Ok

func (o *GetVMConfig200ResponseData) GetScsi6Ok() (*string, bool)

GetScsi6Ok returns a tuple with the Scsi6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi7

func (o *GetVMConfig200ResponseData) GetScsi7() string

GetScsi7 returns the Scsi7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi7Ok

func (o *GetVMConfig200ResponseData) GetScsi7Ok() (*string, bool)

GetScsi7Ok returns a tuple with the Scsi7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi8

func (o *GetVMConfig200ResponseData) GetScsi8() string

GetScsi8 returns the Scsi8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi8Ok

func (o *GetVMConfig200ResponseData) GetScsi8Ok() (*string, bool)

GetScsi8Ok returns a tuple with the Scsi8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsi9

func (o *GetVMConfig200ResponseData) GetScsi9() string

GetScsi9 returns the Scsi9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsi9Ok

func (o *GetVMConfig200ResponseData) GetScsi9Ok() (*string, bool)

GetScsi9Ok returns a tuple with the Scsi9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetScsihw

func (o *GetVMConfig200ResponseData) GetScsihw() string

GetScsihw returns the Scsihw field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetScsihwOk

func (o *GetVMConfig200ResponseData) GetScsihwOk() (*string, bool)

GetScsihwOk returns a tuple with the Scsihw field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSearchdomain

func (o *GetVMConfig200ResponseData) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSearchdomainOk

func (o *GetVMConfig200ResponseData) GetSearchdomainOk() (*string, bool)

GetSearchdomainOk returns a tuple with the Searchdomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSerial0

func (o *GetVMConfig200ResponseData) GetSerial0() string

GetSerial0 returns the Serial0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSerial0Ok

func (o *GetVMConfig200ResponseData) GetSerial0Ok() (*string, bool)

GetSerial0Ok returns a tuple with the Serial0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSerial1

func (o *GetVMConfig200ResponseData) GetSerial1() string

GetSerial1 returns the Serial1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSerial1Ok

func (o *GetVMConfig200ResponseData) GetSerial1Ok() (*string, bool)

GetSerial1Ok returns a tuple with the Serial1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSerial2

func (o *GetVMConfig200ResponseData) GetSerial2() string

GetSerial2 returns the Serial2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSerial2Ok

func (o *GetVMConfig200ResponseData) GetSerial2Ok() (*string, bool)

GetSerial2Ok returns a tuple with the Serial2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSerial3

func (o *GetVMConfig200ResponseData) GetSerial3() string

GetSerial3 returns the Serial3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSerial3Ok

func (o *GetVMConfig200ResponseData) GetSerial3Ok() (*string, bool)

GetSerial3Ok returns a tuple with the Serial3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetShares

func (o *GetVMConfig200ResponseData) GetShares() int64

GetShares returns the Shares field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSharesOk

func (o *GetVMConfig200ResponseData) GetSharesOk() (*int64, bool)

GetSharesOk returns a tuple with the Shares field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSmbios1

func (o *GetVMConfig200ResponseData) GetSmbios1() string

GetSmbios1 returns the Smbios1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSmbios1Ok

func (o *GetVMConfig200ResponseData) GetSmbios1Ok() (*string, bool)

GetSmbios1Ok returns a tuple with the Smbios1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSmp

func (o *GetVMConfig200ResponseData) GetSmp() int64

GetSmp returns the Smp field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSmpOk

func (o *GetVMConfig200ResponseData) GetSmpOk() (*int64, bool)

GetSmpOk returns a tuple with the Smp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSockets

func (o *GetVMConfig200ResponseData) GetSockets() int64

GetSockets returns the Sockets field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSocketsOk

func (o *GetVMConfig200ResponseData) GetSocketsOk() (*int64, bool)

GetSocketsOk returns a tuple with the Sockets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSpiceEnhancements

func (o *GetVMConfig200ResponseData) GetSpiceEnhancements() string

GetSpiceEnhancements returns the SpiceEnhancements field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSpiceEnhancementsOk

func (o *GetVMConfig200ResponseData) GetSpiceEnhancementsOk() (*string, bool)

GetSpiceEnhancementsOk returns a tuple with the SpiceEnhancements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetSshkeys

func (o *GetVMConfig200ResponseData) GetSshkeys() string

GetSshkeys returns the Sshkeys field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetSshkeysOk

func (o *GetVMConfig200ResponseData) GetSshkeysOk() (*string, bool)

GetSshkeysOk returns a tuple with the Sshkeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetStartdate

func (o *GetVMConfig200ResponseData) GetStartdate() string

GetStartdate returns the Startdate field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetStartdateOk

func (o *GetVMConfig200ResponseData) GetStartdateOk() (*string, bool)

GetStartdateOk returns a tuple with the Startdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetStartup

func (o *GetVMConfig200ResponseData) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetStartupOk

func (o *GetVMConfig200ResponseData) GetStartupOk() (*string, bool)

GetStartupOk returns a tuple with the Startup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetTablet

func (o *GetVMConfig200ResponseData) GetTablet() int32

GetTablet returns the Tablet field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetTabletOk

func (o *GetVMConfig200ResponseData) GetTabletOk() (*int32, bool)

GetTabletOk returns a tuple with the Tablet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetTags

func (o *GetVMConfig200ResponseData) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetTagsOk

func (o *GetVMConfig200ResponseData) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetTdf

func (o *GetVMConfig200ResponseData) GetTdf() int32

GetTdf returns the Tdf field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetTdfOk

func (o *GetVMConfig200ResponseData) GetTdfOk() (*int32, bool)

GetTdfOk returns a tuple with the Tdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetTemplate

func (o *GetVMConfig200ResponseData) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetTemplateOk

func (o *GetVMConfig200ResponseData) GetTemplateOk() (*int32, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetTpmstate0

func (o *GetVMConfig200ResponseData) GetTpmstate0() string

GetTpmstate0 returns the Tpmstate0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetTpmstate0Ok

func (o *GetVMConfig200ResponseData) GetTpmstate0Ok() (*string, bool)

GetTpmstate0Ok returns a tuple with the Tpmstate0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused0

func (o *GetVMConfig200ResponseData) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused0Ok

func (o *GetVMConfig200ResponseData) GetUnused0Ok() (*string, bool)

GetUnused0Ok returns a tuple with the Unused0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused1

func (o *GetVMConfig200ResponseData) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused10

func (o *GetVMConfig200ResponseData) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused10Ok

func (o *GetVMConfig200ResponseData) GetUnused10Ok() (*string, bool)

GetUnused10Ok returns a tuple with the Unused10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused11

func (o *GetVMConfig200ResponseData) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused11Ok

func (o *GetVMConfig200ResponseData) GetUnused11Ok() (*string, bool)

GetUnused11Ok returns a tuple with the Unused11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused12

func (o *GetVMConfig200ResponseData) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused12Ok

func (o *GetVMConfig200ResponseData) GetUnused12Ok() (*string, bool)

GetUnused12Ok returns a tuple with the Unused12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused13

func (o *GetVMConfig200ResponseData) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused13Ok

func (o *GetVMConfig200ResponseData) GetUnused13Ok() (*string, bool)

GetUnused13Ok returns a tuple with the Unused13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused14

func (o *GetVMConfig200ResponseData) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused14Ok

func (o *GetVMConfig200ResponseData) GetUnused14Ok() (*string, bool)

GetUnused14Ok returns a tuple with the Unused14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused15

func (o *GetVMConfig200ResponseData) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused15Ok

func (o *GetVMConfig200ResponseData) GetUnused15Ok() (*string, bool)

GetUnused15Ok returns a tuple with the Unused15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused16

func (o *GetVMConfig200ResponseData) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused16Ok

func (o *GetVMConfig200ResponseData) GetUnused16Ok() (*string, bool)

GetUnused16Ok returns a tuple with the Unused16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused17

func (o *GetVMConfig200ResponseData) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused17Ok

func (o *GetVMConfig200ResponseData) GetUnused17Ok() (*string, bool)

GetUnused17Ok returns a tuple with the Unused17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused18

func (o *GetVMConfig200ResponseData) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused18Ok

func (o *GetVMConfig200ResponseData) GetUnused18Ok() (*string, bool)

GetUnused18Ok returns a tuple with the Unused18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused19

func (o *GetVMConfig200ResponseData) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused19Ok

func (o *GetVMConfig200ResponseData) GetUnused19Ok() (*string, bool)

GetUnused19Ok returns a tuple with the Unused19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused1Ok

func (o *GetVMConfig200ResponseData) GetUnused1Ok() (*string, bool)

GetUnused1Ok returns a tuple with the Unused1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused2

func (o *GetVMConfig200ResponseData) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused20

func (o *GetVMConfig200ResponseData) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused20Ok

func (o *GetVMConfig200ResponseData) GetUnused20Ok() (*string, bool)

GetUnused20Ok returns a tuple with the Unused20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused21

func (o *GetVMConfig200ResponseData) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused21Ok

func (o *GetVMConfig200ResponseData) GetUnused21Ok() (*string, bool)

GetUnused21Ok returns a tuple with the Unused21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused22

func (o *GetVMConfig200ResponseData) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused22Ok

func (o *GetVMConfig200ResponseData) GetUnused22Ok() (*string, bool)

GetUnused22Ok returns a tuple with the Unused22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused23

func (o *GetVMConfig200ResponseData) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused23Ok

func (o *GetVMConfig200ResponseData) GetUnused23Ok() (*string, bool)

GetUnused23Ok returns a tuple with the Unused23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused24

func (o *GetVMConfig200ResponseData) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused24Ok

func (o *GetVMConfig200ResponseData) GetUnused24Ok() (*string, bool)

GetUnused24Ok returns a tuple with the Unused24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused25

func (o *GetVMConfig200ResponseData) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused25Ok

func (o *GetVMConfig200ResponseData) GetUnused25Ok() (*string, bool)

GetUnused25Ok returns a tuple with the Unused25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused26

func (o *GetVMConfig200ResponseData) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused26Ok

func (o *GetVMConfig200ResponseData) GetUnused26Ok() (*string, bool)

GetUnused26Ok returns a tuple with the Unused26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused27

func (o *GetVMConfig200ResponseData) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused27Ok

func (o *GetVMConfig200ResponseData) GetUnused27Ok() (*string, bool)

GetUnused27Ok returns a tuple with the Unused27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused28

func (o *GetVMConfig200ResponseData) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused28Ok

func (o *GetVMConfig200ResponseData) GetUnused28Ok() (*string, bool)

GetUnused28Ok returns a tuple with the Unused28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused29

func (o *GetVMConfig200ResponseData) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused29Ok

func (o *GetVMConfig200ResponseData) GetUnused29Ok() (*string, bool)

GetUnused29Ok returns a tuple with the Unused29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused2Ok

func (o *GetVMConfig200ResponseData) GetUnused2Ok() (*string, bool)

GetUnused2Ok returns a tuple with the Unused2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused3

func (o *GetVMConfig200ResponseData) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused3Ok

func (o *GetVMConfig200ResponseData) GetUnused3Ok() (*string, bool)

GetUnused3Ok returns a tuple with the Unused3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused4

func (o *GetVMConfig200ResponseData) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused4Ok

func (o *GetVMConfig200ResponseData) GetUnused4Ok() (*string, bool)

GetUnused4Ok returns a tuple with the Unused4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused5

func (o *GetVMConfig200ResponseData) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused5Ok

func (o *GetVMConfig200ResponseData) GetUnused5Ok() (*string, bool)

GetUnused5Ok returns a tuple with the Unused5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused6

func (o *GetVMConfig200ResponseData) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused6Ok

func (o *GetVMConfig200ResponseData) GetUnused6Ok() (*string, bool)

GetUnused6Ok returns a tuple with the Unused6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused7

func (o *GetVMConfig200ResponseData) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused7Ok

func (o *GetVMConfig200ResponseData) GetUnused7Ok() (*string, bool)

GetUnused7Ok returns a tuple with the Unused7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused8

func (o *GetVMConfig200ResponseData) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused8Ok

func (o *GetVMConfig200ResponseData) GetUnused8Ok() (*string, bool)

GetUnused8Ok returns a tuple with the Unused8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUnused9

func (o *GetVMConfig200ResponseData) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUnused9Ok

func (o *GetVMConfig200ResponseData) GetUnused9Ok() (*string, bool)

GetUnused9Ok returns a tuple with the Unused9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUsb0

func (o *GetVMConfig200ResponseData) GetUsb0() string

GetUsb0 returns the Usb0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUsb0Ok

func (o *GetVMConfig200ResponseData) GetUsb0Ok() (*string, bool)

GetUsb0Ok returns a tuple with the Usb0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUsb1

func (o *GetVMConfig200ResponseData) GetUsb1() string

GetUsb1 returns the Usb1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUsb1Ok

func (o *GetVMConfig200ResponseData) GetUsb1Ok() (*string, bool)

GetUsb1Ok returns a tuple with the Usb1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUsb2

func (o *GetVMConfig200ResponseData) GetUsb2() string

GetUsb2 returns the Usb2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUsb2Ok

func (o *GetVMConfig200ResponseData) GetUsb2Ok() (*string, bool)

GetUsb2Ok returns a tuple with the Usb2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetUsb3

func (o *GetVMConfig200ResponseData) GetUsb3() string

GetUsb3 returns the Usb3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetUsb3Ok

func (o *GetVMConfig200ResponseData) GetUsb3Ok() (*string, bool)

GetUsb3Ok returns a tuple with the Usb3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVcpus

func (o *GetVMConfig200ResponseData) GetVcpus() int64

GetVcpus returns the Vcpus field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVcpusOk

func (o *GetVMConfig200ResponseData) GetVcpusOk() (*int64, bool)

GetVcpusOk returns a tuple with the Vcpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVga

func (o *GetVMConfig200ResponseData) GetVga() string

GetVga returns the Vga field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVgaOk

func (o *GetVMConfig200ResponseData) GetVgaOk() (*string, bool)

GetVgaOk returns a tuple with the Vga field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio0

func (o *GetVMConfig200ResponseData) GetVirtio0() string

GetVirtio0 returns the Virtio0 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio0Ok

func (o *GetVMConfig200ResponseData) GetVirtio0Ok() (*string, bool)

GetVirtio0Ok returns a tuple with the Virtio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio1

func (o *GetVMConfig200ResponseData) GetVirtio1() string

GetVirtio1 returns the Virtio1 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio10

func (o *GetVMConfig200ResponseData) GetVirtio10() string

GetVirtio10 returns the Virtio10 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio10Ok

func (o *GetVMConfig200ResponseData) GetVirtio10Ok() (*string, bool)

GetVirtio10Ok returns a tuple with the Virtio10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio11

func (o *GetVMConfig200ResponseData) GetVirtio11() string

GetVirtio11 returns the Virtio11 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio11Ok

func (o *GetVMConfig200ResponseData) GetVirtio11Ok() (*string, bool)

GetVirtio11Ok returns a tuple with the Virtio11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio12

func (o *GetVMConfig200ResponseData) GetVirtio12() string

GetVirtio12 returns the Virtio12 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio12Ok

func (o *GetVMConfig200ResponseData) GetVirtio12Ok() (*string, bool)

GetVirtio12Ok returns a tuple with the Virtio12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio13

func (o *GetVMConfig200ResponseData) GetVirtio13() string

GetVirtio13 returns the Virtio13 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio13Ok

func (o *GetVMConfig200ResponseData) GetVirtio13Ok() (*string, bool)

GetVirtio13Ok returns a tuple with the Virtio13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio14

func (o *GetVMConfig200ResponseData) GetVirtio14() string

GetVirtio14 returns the Virtio14 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio14Ok

func (o *GetVMConfig200ResponseData) GetVirtio14Ok() (*string, bool)

GetVirtio14Ok returns a tuple with the Virtio14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio15

func (o *GetVMConfig200ResponseData) GetVirtio15() string

GetVirtio15 returns the Virtio15 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio15Ok

func (o *GetVMConfig200ResponseData) GetVirtio15Ok() (*string, bool)

GetVirtio15Ok returns a tuple with the Virtio15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio1Ok

func (o *GetVMConfig200ResponseData) GetVirtio1Ok() (*string, bool)

GetVirtio1Ok returns a tuple with the Virtio1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio2

func (o *GetVMConfig200ResponseData) GetVirtio2() string

GetVirtio2 returns the Virtio2 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio2Ok

func (o *GetVMConfig200ResponseData) GetVirtio2Ok() (*string, bool)

GetVirtio2Ok returns a tuple with the Virtio2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio3

func (o *GetVMConfig200ResponseData) GetVirtio3() string

GetVirtio3 returns the Virtio3 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio3Ok

func (o *GetVMConfig200ResponseData) GetVirtio3Ok() (*string, bool)

GetVirtio3Ok returns a tuple with the Virtio3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio4

func (o *GetVMConfig200ResponseData) GetVirtio4() string

GetVirtio4 returns the Virtio4 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio4Ok

func (o *GetVMConfig200ResponseData) GetVirtio4Ok() (*string, bool)

GetVirtio4Ok returns a tuple with the Virtio4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio5

func (o *GetVMConfig200ResponseData) GetVirtio5() string

GetVirtio5 returns the Virtio5 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio5Ok

func (o *GetVMConfig200ResponseData) GetVirtio5Ok() (*string, bool)

GetVirtio5Ok returns a tuple with the Virtio5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio6

func (o *GetVMConfig200ResponseData) GetVirtio6() string

GetVirtio6 returns the Virtio6 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio6Ok

func (o *GetVMConfig200ResponseData) GetVirtio6Ok() (*string, bool)

GetVirtio6Ok returns a tuple with the Virtio6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio7

func (o *GetVMConfig200ResponseData) GetVirtio7() string

GetVirtio7 returns the Virtio7 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio7Ok

func (o *GetVMConfig200ResponseData) GetVirtio7Ok() (*string, bool)

GetVirtio7Ok returns a tuple with the Virtio7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio8

func (o *GetVMConfig200ResponseData) GetVirtio8() string

GetVirtio8 returns the Virtio8 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio8Ok

func (o *GetVMConfig200ResponseData) GetVirtio8Ok() (*string, bool)

GetVirtio8Ok returns a tuple with the Virtio8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVirtio9

func (o *GetVMConfig200ResponseData) GetVirtio9() string

GetVirtio9 returns the Virtio9 field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVirtio9Ok

func (o *GetVMConfig200ResponseData) GetVirtio9Ok() (*string, bool)

GetVirtio9Ok returns a tuple with the Virtio9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVmgenid

func (o *GetVMConfig200ResponseData) GetVmgenid() string

GetVmgenid returns the Vmgenid field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVmgenidOk

func (o *GetVMConfig200ResponseData) GetVmgenidOk() (*string, bool)

GetVmgenidOk returns a tuple with the Vmgenid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetVmstatestorage

func (o *GetVMConfig200ResponseData) GetVmstatestorage() string

GetVmstatestorage returns the Vmstatestorage field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetVmstatestorageOk

func (o *GetVMConfig200ResponseData) GetVmstatestorageOk() (*string, bool)

GetVmstatestorageOk returns a tuple with the Vmstatestorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) GetWatchdog

func (o *GetVMConfig200ResponseData) GetWatchdog() string

GetWatchdog returns the Watchdog field value if set, zero value otherwise.

func (*GetVMConfig200ResponseData) GetWatchdogOk

func (o *GetVMConfig200ResponseData) GetWatchdogOk() (*string, bool)

GetWatchdogOk returns a tuple with the Watchdog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfig200ResponseData) HasAcpi

func (o *GetVMConfig200ResponseData) HasAcpi() bool

HasAcpi returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasAffinity

func (o *GetVMConfig200ResponseData) HasAffinity() bool

HasAffinity returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasAgent

func (o *GetVMConfig200ResponseData) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasArch

func (o *GetVMConfig200ResponseData) HasArch() bool

HasArch returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasArgs

func (o *GetVMConfig200ResponseData) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasAudio0

func (o *GetVMConfig200ResponseData) HasAudio0() bool

HasAudio0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasAutostart

func (o *GetVMConfig200ResponseData) HasAutostart() bool

HasAutostart returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasBalloon

func (o *GetVMConfig200ResponseData) HasBalloon() bool

HasBalloon returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasBios

func (o *GetVMConfig200ResponseData) HasBios() bool

HasBios returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasBoot

func (o *GetVMConfig200ResponseData) HasBoot() bool

HasBoot returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasBootdisk

func (o *GetVMConfig200ResponseData) HasBootdisk() bool

HasBootdisk returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCdrom

func (o *GetVMConfig200ResponseData) HasCdrom() bool

HasCdrom returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCicustom

func (o *GetVMConfig200ResponseData) HasCicustom() bool

HasCicustom returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCipassword

func (o *GetVMConfig200ResponseData) HasCipassword() bool

HasCipassword returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCitype

func (o *GetVMConfig200ResponseData) HasCitype() bool

HasCitype returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCiupgrade

func (o *GetVMConfig200ResponseData) HasCiupgrade() bool

HasCiupgrade returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCiuser

func (o *GetVMConfig200ResponseData) HasCiuser() bool

HasCiuser returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCores

func (o *GetVMConfig200ResponseData) HasCores() bool

HasCores returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCpu

func (o *GetVMConfig200ResponseData) HasCpu() bool

HasCpu returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCpulimit

func (o *GetVMConfig200ResponseData) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasCpuunits

func (o *GetVMConfig200ResponseData) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasDescription

func (o *GetVMConfig200ResponseData) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasDigest

func (o *GetVMConfig200ResponseData) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasEfidisk0

func (o *GetVMConfig200ResponseData) HasEfidisk0() bool

HasEfidisk0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasFreeze

func (o *GetVMConfig200ResponseData) HasFreeze() bool

HasFreeze returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHookscript

func (o *GetVMConfig200ResponseData) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci0

func (o *GetVMConfig200ResponseData) HasHostpci0() bool

HasHostpci0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci1

func (o *GetVMConfig200ResponseData) HasHostpci1() bool

HasHostpci1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci10

func (o *GetVMConfig200ResponseData) HasHostpci10() bool

HasHostpci10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci11

func (o *GetVMConfig200ResponseData) HasHostpci11() bool

HasHostpci11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci12

func (o *GetVMConfig200ResponseData) HasHostpci12() bool

HasHostpci12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci13

func (o *GetVMConfig200ResponseData) HasHostpci13() bool

HasHostpci13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci14

func (o *GetVMConfig200ResponseData) HasHostpci14() bool

HasHostpci14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci15

func (o *GetVMConfig200ResponseData) HasHostpci15() bool

HasHostpci15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci16

func (o *GetVMConfig200ResponseData) HasHostpci16() bool

HasHostpci16 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci17

func (o *GetVMConfig200ResponseData) HasHostpci17() bool

HasHostpci17 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci18

func (o *GetVMConfig200ResponseData) HasHostpci18() bool

HasHostpci18 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci19

func (o *GetVMConfig200ResponseData) HasHostpci19() bool

HasHostpci19 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci2

func (o *GetVMConfig200ResponseData) HasHostpci2() bool

HasHostpci2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci20

func (o *GetVMConfig200ResponseData) HasHostpci20() bool

HasHostpci20 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci21

func (o *GetVMConfig200ResponseData) HasHostpci21() bool

HasHostpci21 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci22

func (o *GetVMConfig200ResponseData) HasHostpci22() bool

HasHostpci22 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci23

func (o *GetVMConfig200ResponseData) HasHostpci23() bool

HasHostpci23 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci24

func (o *GetVMConfig200ResponseData) HasHostpci24() bool

HasHostpci24 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci25

func (o *GetVMConfig200ResponseData) HasHostpci25() bool

HasHostpci25 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci26

func (o *GetVMConfig200ResponseData) HasHostpci26() bool

HasHostpci26 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci27

func (o *GetVMConfig200ResponseData) HasHostpci27() bool

HasHostpci27 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci28

func (o *GetVMConfig200ResponseData) HasHostpci28() bool

HasHostpci28 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci29

func (o *GetVMConfig200ResponseData) HasHostpci29() bool

HasHostpci29 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci3

func (o *GetVMConfig200ResponseData) HasHostpci3() bool

HasHostpci3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci4

func (o *GetVMConfig200ResponseData) HasHostpci4() bool

HasHostpci4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci5

func (o *GetVMConfig200ResponseData) HasHostpci5() bool

HasHostpci5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci6

func (o *GetVMConfig200ResponseData) HasHostpci6() bool

HasHostpci6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci7

func (o *GetVMConfig200ResponseData) HasHostpci7() bool

HasHostpci7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci8

func (o *GetVMConfig200ResponseData) HasHostpci8() bool

HasHostpci8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHostpci9

func (o *GetVMConfig200ResponseData) HasHostpci9() bool

HasHostpci9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHotplug

func (o *GetVMConfig200ResponseData) HasHotplug() bool

HasHotplug returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasHugepages

func (o *GetVMConfig200ResponseData) HasHugepages() bool

HasHugepages returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIde0

func (o *GetVMConfig200ResponseData) HasIde0() bool

HasIde0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIde1

func (o *GetVMConfig200ResponseData) HasIde1() bool

HasIde1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIde2

func (o *GetVMConfig200ResponseData) HasIde2() bool

HasIde2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIde3

func (o *GetVMConfig200ResponseData) HasIde3() bool

HasIde3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig0

func (o *GetVMConfig200ResponseData) HasIpconfig0() bool

HasIpconfig0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig1

func (o *GetVMConfig200ResponseData) HasIpconfig1() bool

HasIpconfig1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig10

func (o *GetVMConfig200ResponseData) HasIpconfig10() bool

HasIpconfig10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig11

func (o *GetVMConfig200ResponseData) HasIpconfig11() bool

HasIpconfig11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig12

func (o *GetVMConfig200ResponseData) HasIpconfig12() bool

HasIpconfig12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig13

func (o *GetVMConfig200ResponseData) HasIpconfig13() bool

HasIpconfig13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig14

func (o *GetVMConfig200ResponseData) HasIpconfig14() bool

HasIpconfig14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig15

func (o *GetVMConfig200ResponseData) HasIpconfig15() bool

HasIpconfig15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig16

func (o *GetVMConfig200ResponseData) HasIpconfig16() bool

HasIpconfig16 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig17

func (o *GetVMConfig200ResponseData) HasIpconfig17() bool

HasIpconfig17 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig18

func (o *GetVMConfig200ResponseData) HasIpconfig18() bool

HasIpconfig18 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig19

func (o *GetVMConfig200ResponseData) HasIpconfig19() bool

HasIpconfig19 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig2

func (o *GetVMConfig200ResponseData) HasIpconfig2() bool

HasIpconfig2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig20

func (o *GetVMConfig200ResponseData) HasIpconfig20() bool

HasIpconfig20 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig21

func (o *GetVMConfig200ResponseData) HasIpconfig21() bool

HasIpconfig21 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig22

func (o *GetVMConfig200ResponseData) HasIpconfig22() bool

HasIpconfig22 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig23

func (o *GetVMConfig200ResponseData) HasIpconfig23() bool

HasIpconfig23 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig24

func (o *GetVMConfig200ResponseData) HasIpconfig24() bool

HasIpconfig24 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig25

func (o *GetVMConfig200ResponseData) HasIpconfig25() bool

HasIpconfig25 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig26

func (o *GetVMConfig200ResponseData) HasIpconfig26() bool

HasIpconfig26 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig27

func (o *GetVMConfig200ResponseData) HasIpconfig27() bool

HasIpconfig27 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig28

func (o *GetVMConfig200ResponseData) HasIpconfig28() bool

HasIpconfig28 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig29

func (o *GetVMConfig200ResponseData) HasIpconfig29() bool

HasIpconfig29 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig3

func (o *GetVMConfig200ResponseData) HasIpconfig3() bool

HasIpconfig3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig4

func (o *GetVMConfig200ResponseData) HasIpconfig4() bool

HasIpconfig4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig5

func (o *GetVMConfig200ResponseData) HasIpconfig5() bool

HasIpconfig5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig6

func (o *GetVMConfig200ResponseData) HasIpconfig6() bool

HasIpconfig6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig7

func (o *GetVMConfig200ResponseData) HasIpconfig7() bool

HasIpconfig7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig8

func (o *GetVMConfig200ResponseData) HasIpconfig8() bool

HasIpconfig8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIpconfig9

func (o *GetVMConfig200ResponseData) HasIpconfig9() bool

HasIpconfig9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasIvshmem

func (o *GetVMConfig200ResponseData) HasIvshmem() bool

HasIvshmem returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasKeephugepages

func (o *GetVMConfig200ResponseData) HasKeephugepages() bool

HasKeephugepages returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasKeyboard

func (o *GetVMConfig200ResponseData) HasKeyboard() bool

HasKeyboard returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasKvm

func (o *GetVMConfig200ResponseData) HasKvm() bool

HasKvm returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasLocaltime

func (o *GetVMConfig200ResponseData) HasLocaltime() bool

HasLocaltime returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasLock

func (o *GetVMConfig200ResponseData) HasLock() bool

HasLock returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasMachine

func (o *GetVMConfig200ResponseData) HasMachine() bool

HasMachine returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasMemory

func (o *GetVMConfig200ResponseData) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasMigrateDowntime

func (o *GetVMConfig200ResponseData) HasMigrateDowntime() bool

HasMigrateDowntime returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasMigrateSpeed

func (o *GetVMConfig200ResponseData) HasMigrateSpeed() bool

HasMigrateSpeed returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasName

func (o *GetVMConfig200ResponseData) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNameserver

func (o *GetVMConfig200ResponseData) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet0

func (o *GetVMConfig200ResponseData) HasNet0() bool

HasNet0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet1

func (o *GetVMConfig200ResponseData) HasNet1() bool

HasNet1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet10

func (o *GetVMConfig200ResponseData) HasNet10() bool

HasNet10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet11

func (o *GetVMConfig200ResponseData) HasNet11() bool

HasNet11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet12

func (o *GetVMConfig200ResponseData) HasNet12() bool

HasNet12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet13

func (o *GetVMConfig200ResponseData) HasNet13() bool

HasNet13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet14

func (o *GetVMConfig200ResponseData) HasNet14() bool

HasNet14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet15

func (o *GetVMConfig200ResponseData) HasNet15() bool

HasNet15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet16

func (o *GetVMConfig200ResponseData) HasNet16() bool

HasNet16 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet17

func (o *GetVMConfig200ResponseData) HasNet17() bool

HasNet17 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet18

func (o *GetVMConfig200ResponseData) HasNet18() bool

HasNet18 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet19

func (o *GetVMConfig200ResponseData) HasNet19() bool

HasNet19 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet2

func (o *GetVMConfig200ResponseData) HasNet2() bool

HasNet2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet20

func (o *GetVMConfig200ResponseData) HasNet20() bool

HasNet20 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet21

func (o *GetVMConfig200ResponseData) HasNet21() bool

HasNet21 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet22

func (o *GetVMConfig200ResponseData) HasNet22() bool

HasNet22 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet23

func (o *GetVMConfig200ResponseData) HasNet23() bool

HasNet23 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet24

func (o *GetVMConfig200ResponseData) HasNet24() bool

HasNet24 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet25

func (o *GetVMConfig200ResponseData) HasNet25() bool

HasNet25 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet26

func (o *GetVMConfig200ResponseData) HasNet26() bool

HasNet26 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet27

func (o *GetVMConfig200ResponseData) HasNet27() bool

HasNet27 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet28

func (o *GetVMConfig200ResponseData) HasNet28() bool

HasNet28 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet29

func (o *GetVMConfig200ResponseData) HasNet29() bool

HasNet29 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet3

func (o *GetVMConfig200ResponseData) HasNet3() bool

HasNet3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet30

func (o *GetVMConfig200ResponseData) HasNet30() bool

HasNet30 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet31

func (o *GetVMConfig200ResponseData) HasNet31() bool

HasNet31 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet4

func (o *GetVMConfig200ResponseData) HasNet4() bool

HasNet4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet5

func (o *GetVMConfig200ResponseData) HasNet5() bool

HasNet5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet6

func (o *GetVMConfig200ResponseData) HasNet6() bool

HasNet6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet7

func (o *GetVMConfig200ResponseData) HasNet7() bool

HasNet7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet8

func (o *GetVMConfig200ResponseData) HasNet8() bool

HasNet8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNet9

func (o *GetVMConfig200ResponseData) HasNet9() bool

HasNet9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma

func (o *GetVMConfig200ResponseData) HasNuma() bool

HasNuma returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma0

func (o *GetVMConfig200ResponseData) HasNuma0() bool

HasNuma0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma1

func (o *GetVMConfig200ResponseData) HasNuma1() bool

HasNuma1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma10

func (o *GetVMConfig200ResponseData) HasNuma10() bool

HasNuma10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma11

func (o *GetVMConfig200ResponseData) HasNuma11() bool

HasNuma11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma12

func (o *GetVMConfig200ResponseData) HasNuma12() bool

HasNuma12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma13

func (o *GetVMConfig200ResponseData) HasNuma13() bool

HasNuma13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma14

func (o *GetVMConfig200ResponseData) HasNuma14() bool

HasNuma14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma15

func (o *GetVMConfig200ResponseData) HasNuma15() bool

HasNuma15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma16

func (o *GetVMConfig200ResponseData) HasNuma16() bool

HasNuma16 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma17

func (o *GetVMConfig200ResponseData) HasNuma17() bool

HasNuma17 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma18

func (o *GetVMConfig200ResponseData) HasNuma18() bool

HasNuma18 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma19

func (o *GetVMConfig200ResponseData) HasNuma19() bool

HasNuma19 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma2

func (o *GetVMConfig200ResponseData) HasNuma2() bool

HasNuma2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma20

func (o *GetVMConfig200ResponseData) HasNuma20() bool

HasNuma20 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma21

func (o *GetVMConfig200ResponseData) HasNuma21() bool

HasNuma21 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma22

func (o *GetVMConfig200ResponseData) HasNuma22() bool

HasNuma22 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma23

func (o *GetVMConfig200ResponseData) HasNuma23() bool

HasNuma23 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma24

func (o *GetVMConfig200ResponseData) HasNuma24() bool

HasNuma24 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma25

func (o *GetVMConfig200ResponseData) HasNuma25() bool

HasNuma25 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma26

func (o *GetVMConfig200ResponseData) HasNuma26() bool

HasNuma26 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma27

func (o *GetVMConfig200ResponseData) HasNuma27() bool

HasNuma27 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma28

func (o *GetVMConfig200ResponseData) HasNuma28() bool

HasNuma28 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma29

func (o *GetVMConfig200ResponseData) HasNuma29() bool

HasNuma29 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma3

func (o *GetVMConfig200ResponseData) HasNuma3() bool

HasNuma3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma4

func (o *GetVMConfig200ResponseData) HasNuma4() bool

HasNuma4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma5

func (o *GetVMConfig200ResponseData) HasNuma5() bool

HasNuma5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma6

func (o *GetVMConfig200ResponseData) HasNuma6() bool

HasNuma6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma7

func (o *GetVMConfig200ResponseData) HasNuma7() bool

HasNuma7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma8

func (o *GetVMConfig200ResponseData) HasNuma8() bool

HasNuma8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasNuma9

func (o *GetVMConfig200ResponseData) HasNuma9() bool

HasNuma9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasOnboot

func (o *GetVMConfig200ResponseData) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasOstype

func (o *GetVMConfig200ResponseData) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasParallel0

func (o *GetVMConfig200ResponseData) HasParallel0() bool

HasParallel0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasParallel1

func (o *GetVMConfig200ResponseData) HasParallel1() bool

HasParallel1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasParallel2

func (o *GetVMConfig200ResponseData) HasParallel2() bool

HasParallel2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasParallel3

func (o *GetVMConfig200ResponseData) HasParallel3() bool

HasParallel3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasProtection

func (o *GetVMConfig200ResponseData) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasReboot

func (o *GetVMConfig200ResponseData) HasReboot() bool

HasReboot returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasRng0

func (o *GetVMConfig200ResponseData) HasRng0() bool

HasRng0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSata0

func (o *GetVMConfig200ResponseData) HasSata0() bool

HasSata0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSata1

func (o *GetVMConfig200ResponseData) HasSata1() bool

HasSata1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSata2

func (o *GetVMConfig200ResponseData) HasSata2() bool

HasSata2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSata3

func (o *GetVMConfig200ResponseData) HasSata3() bool

HasSata3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSata4

func (o *GetVMConfig200ResponseData) HasSata4() bool

HasSata4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSata5

func (o *GetVMConfig200ResponseData) HasSata5() bool

HasSata5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi0

func (o *GetVMConfig200ResponseData) HasScsi0() bool

HasScsi0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi1

func (o *GetVMConfig200ResponseData) HasScsi1() bool

HasScsi1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi10

func (o *GetVMConfig200ResponseData) HasScsi10() bool

HasScsi10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi11

func (o *GetVMConfig200ResponseData) HasScsi11() bool

HasScsi11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi12

func (o *GetVMConfig200ResponseData) HasScsi12() bool

HasScsi12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi13

func (o *GetVMConfig200ResponseData) HasScsi13() bool

HasScsi13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi14

func (o *GetVMConfig200ResponseData) HasScsi14() bool

HasScsi14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi15

func (o *GetVMConfig200ResponseData) HasScsi15() bool

HasScsi15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi16

func (o *GetVMConfig200ResponseData) HasScsi16() bool

HasScsi16 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi17

func (o *GetVMConfig200ResponseData) HasScsi17() bool

HasScsi17 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi18

func (o *GetVMConfig200ResponseData) HasScsi18() bool

HasScsi18 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi19

func (o *GetVMConfig200ResponseData) HasScsi19() bool

HasScsi19 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi2

func (o *GetVMConfig200ResponseData) HasScsi2() bool

HasScsi2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi20

func (o *GetVMConfig200ResponseData) HasScsi20() bool

HasScsi20 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi21

func (o *GetVMConfig200ResponseData) HasScsi21() bool

HasScsi21 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi22

func (o *GetVMConfig200ResponseData) HasScsi22() bool

HasScsi22 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi23

func (o *GetVMConfig200ResponseData) HasScsi23() bool

HasScsi23 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi24

func (o *GetVMConfig200ResponseData) HasScsi24() bool

HasScsi24 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi25

func (o *GetVMConfig200ResponseData) HasScsi25() bool

HasScsi25 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi26

func (o *GetVMConfig200ResponseData) HasScsi26() bool

HasScsi26 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi27

func (o *GetVMConfig200ResponseData) HasScsi27() bool

HasScsi27 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi28

func (o *GetVMConfig200ResponseData) HasScsi28() bool

HasScsi28 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi29

func (o *GetVMConfig200ResponseData) HasScsi29() bool

HasScsi29 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi3

func (o *GetVMConfig200ResponseData) HasScsi3() bool

HasScsi3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi4

func (o *GetVMConfig200ResponseData) HasScsi4() bool

HasScsi4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi5

func (o *GetVMConfig200ResponseData) HasScsi5() bool

HasScsi5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi6

func (o *GetVMConfig200ResponseData) HasScsi6() bool

HasScsi6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi7

func (o *GetVMConfig200ResponseData) HasScsi7() bool

HasScsi7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi8

func (o *GetVMConfig200ResponseData) HasScsi8() bool

HasScsi8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsi9

func (o *GetVMConfig200ResponseData) HasScsi9() bool

HasScsi9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasScsihw

func (o *GetVMConfig200ResponseData) HasScsihw() bool

HasScsihw returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSearchdomain

func (o *GetVMConfig200ResponseData) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSerial0

func (o *GetVMConfig200ResponseData) HasSerial0() bool

HasSerial0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSerial1

func (o *GetVMConfig200ResponseData) HasSerial1() bool

HasSerial1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSerial2

func (o *GetVMConfig200ResponseData) HasSerial2() bool

HasSerial2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSerial3

func (o *GetVMConfig200ResponseData) HasSerial3() bool

HasSerial3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasShares

func (o *GetVMConfig200ResponseData) HasShares() bool

HasShares returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSmbios1

func (o *GetVMConfig200ResponseData) HasSmbios1() bool

HasSmbios1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSmp

func (o *GetVMConfig200ResponseData) HasSmp() bool

HasSmp returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSockets

func (o *GetVMConfig200ResponseData) HasSockets() bool

HasSockets returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSpiceEnhancements

func (o *GetVMConfig200ResponseData) HasSpiceEnhancements() bool

HasSpiceEnhancements returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasSshkeys

func (o *GetVMConfig200ResponseData) HasSshkeys() bool

HasSshkeys returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasStartdate

func (o *GetVMConfig200ResponseData) HasStartdate() bool

HasStartdate returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasStartup

func (o *GetVMConfig200ResponseData) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasTablet

func (o *GetVMConfig200ResponseData) HasTablet() bool

HasTablet returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasTags

func (o *GetVMConfig200ResponseData) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasTdf

func (o *GetVMConfig200ResponseData) HasTdf() bool

HasTdf returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasTemplate

func (o *GetVMConfig200ResponseData) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasTpmstate0

func (o *GetVMConfig200ResponseData) HasTpmstate0() bool

HasTpmstate0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused0

func (o *GetVMConfig200ResponseData) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused1

func (o *GetVMConfig200ResponseData) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused10

func (o *GetVMConfig200ResponseData) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused11

func (o *GetVMConfig200ResponseData) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused12

func (o *GetVMConfig200ResponseData) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused13

func (o *GetVMConfig200ResponseData) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused14

func (o *GetVMConfig200ResponseData) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused15

func (o *GetVMConfig200ResponseData) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused16

func (o *GetVMConfig200ResponseData) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused17

func (o *GetVMConfig200ResponseData) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused18

func (o *GetVMConfig200ResponseData) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused19

func (o *GetVMConfig200ResponseData) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused2

func (o *GetVMConfig200ResponseData) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused20

func (o *GetVMConfig200ResponseData) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused21

func (o *GetVMConfig200ResponseData) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused22

func (o *GetVMConfig200ResponseData) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused23

func (o *GetVMConfig200ResponseData) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused24

func (o *GetVMConfig200ResponseData) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused25

func (o *GetVMConfig200ResponseData) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused26

func (o *GetVMConfig200ResponseData) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused27

func (o *GetVMConfig200ResponseData) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused28

func (o *GetVMConfig200ResponseData) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused29

func (o *GetVMConfig200ResponseData) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused3

func (o *GetVMConfig200ResponseData) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused4

func (o *GetVMConfig200ResponseData) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused5

func (o *GetVMConfig200ResponseData) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused6

func (o *GetVMConfig200ResponseData) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused7

func (o *GetVMConfig200ResponseData) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused8

func (o *GetVMConfig200ResponseData) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUnused9

func (o *GetVMConfig200ResponseData) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUsb0

func (o *GetVMConfig200ResponseData) HasUsb0() bool

HasUsb0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUsb1

func (o *GetVMConfig200ResponseData) HasUsb1() bool

HasUsb1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUsb2

func (o *GetVMConfig200ResponseData) HasUsb2() bool

HasUsb2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasUsb3

func (o *GetVMConfig200ResponseData) HasUsb3() bool

HasUsb3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVcpus

func (o *GetVMConfig200ResponseData) HasVcpus() bool

HasVcpus returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVga

func (o *GetVMConfig200ResponseData) HasVga() bool

HasVga returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio0

func (o *GetVMConfig200ResponseData) HasVirtio0() bool

HasVirtio0 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio1

func (o *GetVMConfig200ResponseData) HasVirtio1() bool

HasVirtio1 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio10

func (o *GetVMConfig200ResponseData) HasVirtio10() bool

HasVirtio10 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio11

func (o *GetVMConfig200ResponseData) HasVirtio11() bool

HasVirtio11 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio12

func (o *GetVMConfig200ResponseData) HasVirtio12() bool

HasVirtio12 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio13

func (o *GetVMConfig200ResponseData) HasVirtio13() bool

HasVirtio13 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio14

func (o *GetVMConfig200ResponseData) HasVirtio14() bool

HasVirtio14 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio15

func (o *GetVMConfig200ResponseData) HasVirtio15() bool

HasVirtio15 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio2

func (o *GetVMConfig200ResponseData) HasVirtio2() bool

HasVirtio2 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio3

func (o *GetVMConfig200ResponseData) HasVirtio3() bool

HasVirtio3 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio4

func (o *GetVMConfig200ResponseData) HasVirtio4() bool

HasVirtio4 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio5

func (o *GetVMConfig200ResponseData) HasVirtio5() bool

HasVirtio5 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio6

func (o *GetVMConfig200ResponseData) HasVirtio6() bool

HasVirtio6 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio7

func (o *GetVMConfig200ResponseData) HasVirtio7() bool

HasVirtio7 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio8

func (o *GetVMConfig200ResponseData) HasVirtio8() bool

HasVirtio8 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVirtio9

func (o *GetVMConfig200ResponseData) HasVirtio9() bool

HasVirtio9 returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVmgenid

func (o *GetVMConfig200ResponseData) HasVmgenid() bool

HasVmgenid returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasVmstatestorage

func (o *GetVMConfig200ResponseData) HasVmstatestorage() bool

HasVmstatestorage returns a boolean if a field has been set.

func (*GetVMConfig200ResponseData) HasWatchdog

func (o *GetVMConfig200ResponseData) HasWatchdog() bool

HasWatchdog returns a boolean if a field has been set.

func (GetVMConfig200ResponseData) MarshalJSON

func (o GetVMConfig200ResponseData) MarshalJSON() ([]byte, error)

func (*GetVMConfig200ResponseData) SetAcpi

func (o *GetVMConfig200ResponseData) SetAcpi(v int32)

SetAcpi gets a reference to the given int32 and assigns it to the Acpi field.

func (*GetVMConfig200ResponseData) SetAffinity

func (o *GetVMConfig200ResponseData) SetAffinity(v string)

SetAffinity gets a reference to the given string and assigns it to the Affinity field.

func (*GetVMConfig200ResponseData) SetAgent

func (o *GetVMConfig200ResponseData) SetAgent(v string)

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*GetVMConfig200ResponseData) SetArch

func (o *GetVMConfig200ResponseData) SetArch(v string)

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*GetVMConfig200ResponseData) SetArgs

func (o *GetVMConfig200ResponseData) SetArgs(v string)

SetArgs gets a reference to the given string and assigns it to the Args field.

func (*GetVMConfig200ResponseData) SetAudio0

func (o *GetVMConfig200ResponseData) SetAudio0(v string)

SetAudio0 gets a reference to the given string and assigns it to the Audio0 field.

func (*GetVMConfig200ResponseData) SetAutostart

func (o *GetVMConfig200ResponseData) SetAutostart(v int32)

SetAutostart gets a reference to the given int32 and assigns it to the Autostart field.

func (*GetVMConfig200ResponseData) SetBalloon

func (o *GetVMConfig200ResponseData) SetBalloon(v int64)

SetBalloon gets a reference to the given int64 and assigns it to the Balloon field.

func (*GetVMConfig200ResponseData) SetBios

func (o *GetVMConfig200ResponseData) SetBios(v string)

SetBios gets a reference to the given string and assigns it to the Bios field.

func (*GetVMConfig200ResponseData) SetBoot

func (o *GetVMConfig200ResponseData) SetBoot(v string)

SetBoot gets a reference to the given string and assigns it to the Boot field.

func (*GetVMConfig200ResponseData) SetBootdisk

func (o *GetVMConfig200ResponseData) SetBootdisk(v string)

SetBootdisk gets a reference to the given string and assigns it to the Bootdisk field.

func (*GetVMConfig200ResponseData) SetCdrom

func (o *GetVMConfig200ResponseData) SetCdrom(v string)

SetCdrom gets a reference to the given string and assigns it to the Cdrom field.

func (*GetVMConfig200ResponseData) SetCicustom

func (o *GetVMConfig200ResponseData) SetCicustom(v string)

SetCicustom gets a reference to the given string and assigns it to the Cicustom field.

func (*GetVMConfig200ResponseData) SetCipassword

func (o *GetVMConfig200ResponseData) SetCipassword(v string)

SetCipassword gets a reference to the given string and assigns it to the Cipassword field.

func (*GetVMConfig200ResponseData) SetCitype

func (o *GetVMConfig200ResponseData) SetCitype(v string)

SetCitype gets a reference to the given string and assigns it to the Citype field.

func (*GetVMConfig200ResponseData) SetCiupgrade

func (o *GetVMConfig200ResponseData) SetCiupgrade(v int32)

SetCiupgrade gets a reference to the given int32 and assigns it to the Ciupgrade field.

func (*GetVMConfig200ResponseData) SetCiuser

func (o *GetVMConfig200ResponseData) SetCiuser(v string)

SetCiuser gets a reference to the given string and assigns it to the Ciuser field.

func (*GetVMConfig200ResponseData) SetCores

func (o *GetVMConfig200ResponseData) SetCores(v int64)

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*GetVMConfig200ResponseData) SetCpu

func (o *GetVMConfig200ResponseData) SetCpu(v string)

SetCpu gets a reference to the given string and assigns it to the Cpu field.

func (*GetVMConfig200ResponseData) SetCpulimit

func (o *GetVMConfig200ResponseData) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*GetVMConfig200ResponseData) SetCpuunits

func (o *GetVMConfig200ResponseData) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*GetVMConfig200ResponseData) SetDescription

func (o *GetVMConfig200ResponseData) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GetVMConfig200ResponseData) SetDigest

func (o *GetVMConfig200ResponseData) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*GetVMConfig200ResponseData) SetEfidisk0

func (o *GetVMConfig200ResponseData) SetEfidisk0(v string)

SetEfidisk0 gets a reference to the given string and assigns it to the Efidisk0 field.

func (*GetVMConfig200ResponseData) SetFreeze

func (o *GetVMConfig200ResponseData) SetFreeze(v int32)

SetFreeze gets a reference to the given int32 and assigns it to the Freeze field.

func (*GetVMConfig200ResponseData) SetHookscript

func (o *GetVMConfig200ResponseData) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*GetVMConfig200ResponseData) SetHostpci0

func (o *GetVMConfig200ResponseData) SetHostpci0(v string)

SetHostpci0 gets a reference to the given string and assigns it to the Hostpci0 field.

func (*GetVMConfig200ResponseData) SetHostpci1

func (o *GetVMConfig200ResponseData) SetHostpci1(v string)

SetHostpci1 gets a reference to the given string and assigns it to the Hostpci1 field.

func (*GetVMConfig200ResponseData) SetHostpci10

func (o *GetVMConfig200ResponseData) SetHostpci10(v string)

SetHostpci10 gets a reference to the given string and assigns it to the Hostpci10 field.

func (*GetVMConfig200ResponseData) SetHostpci11

func (o *GetVMConfig200ResponseData) SetHostpci11(v string)

SetHostpci11 gets a reference to the given string and assigns it to the Hostpci11 field.

func (*GetVMConfig200ResponseData) SetHostpci12

func (o *GetVMConfig200ResponseData) SetHostpci12(v string)

SetHostpci12 gets a reference to the given string and assigns it to the Hostpci12 field.

func (*GetVMConfig200ResponseData) SetHostpci13

func (o *GetVMConfig200ResponseData) SetHostpci13(v string)

SetHostpci13 gets a reference to the given string and assigns it to the Hostpci13 field.

func (*GetVMConfig200ResponseData) SetHostpci14

func (o *GetVMConfig200ResponseData) SetHostpci14(v string)

SetHostpci14 gets a reference to the given string and assigns it to the Hostpci14 field.

func (*GetVMConfig200ResponseData) SetHostpci15

func (o *GetVMConfig200ResponseData) SetHostpci15(v string)

SetHostpci15 gets a reference to the given string and assigns it to the Hostpci15 field.

func (*GetVMConfig200ResponseData) SetHostpci16

func (o *GetVMConfig200ResponseData) SetHostpci16(v string)

SetHostpci16 gets a reference to the given string and assigns it to the Hostpci16 field.

func (*GetVMConfig200ResponseData) SetHostpci17

func (o *GetVMConfig200ResponseData) SetHostpci17(v string)

SetHostpci17 gets a reference to the given string and assigns it to the Hostpci17 field.

func (*GetVMConfig200ResponseData) SetHostpci18

func (o *GetVMConfig200ResponseData) SetHostpci18(v string)

SetHostpci18 gets a reference to the given string and assigns it to the Hostpci18 field.

func (*GetVMConfig200ResponseData) SetHostpci19

func (o *GetVMConfig200ResponseData) SetHostpci19(v string)

SetHostpci19 gets a reference to the given string and assigns it to the Hostpci19 field.

func (*GetVMConfig200ResponseData) SetHostpci2

func (o *GetVMConfig200ResponseData) SetHostpci2(v string)

SetHostpci2 gets a reference to the given string and assigns it to the Hostpci2 field.

func (*GetVMConfig200ResponseData) SetHostpci20

func (o *GetVMConfig200ResponseData) SetHostpci20(v string)

SetHostpci20 gets a reference to the given string and assigns it to the Hostpci20 field.

func (*GetVMConfig200ResponseData) SetHostpci21

func (o *GetVMConfig200ResponseData) SetHostpci21(v string)

SetHostpci21 gets a reference to the given string and assigns it to the Hostpci21 field.

func (*GetVMConfig200ResponseData) SetHostpci22

func (o *GetVMConfig200ResponseData) SetHostpci22(v string)

SetHostpci22 gets a reference to the given string and assigns it to the Hostpci22 field.

func (*GetVMConfig200ResponseData) SetHostpci23

func (o *GetVMConfig200ResponseData) SetHostpci23(v string)

SetHostpci23 gets a reference to the given string and assigns it to the Hostpci23 field.

func (*GetVMConfig200ResponseData) SetHostpci24

func (o *GetVMConfig200ResponseData) SetHostpci24(v string)

SetHostpci24 gets a reference to the given string and assigns it to the Hostpci24 field.

func (*GetVMConfig200ResponseData) SetHostpci25

func (o *GetVMConfig200ResponseData) SetHostpci25(v string)

SetHostpci25 gets a reference to the given string and assigns it to the Hostpci25 field.

func (*GetVMConfig200ResponseData) SetHostpci26

func (o *GetVMConfig200ResponseData) SetHostpci26(v string)

SetHostpci26 gets a reference to the given string and assigns it to the Hostpci26 field.

func (*GetVMConfig200ResponseData) SetHostpci27

func (o *GetVMConfig200ResponseData) SetHostpci27(v string)

SetHostpci27 gets a reference to the given string and assigns it to the Hostpci27 field.

func (*GetVMConfig200ResponseData) SetHostpci28

func (o *GetVMConfig200ResponseData) SetHostpci28(v string)

SetHostpci28 gets a reference to the given string and assigns it to the Hostpci28 field.

func (*GetVMConfig200ResponseData) SetHostpci29

func (o *GetVMConfig200ResponseData) SetHostpci29(v string)

SetHostpci29 gets a reference to the given string and assigns it to the Hostpci29 field.

func (*GetVMConfig200ResponseData) SetHostpci3

func (o *GetVMConfig200ResponseData) SetHostpci3(v string)

SetHostpci3 gets a reference to the given string and assigns it to the Hostpci3 field.

func (*GetVMConfig200ResponseData) SetHostpci4

func (o *GetVMConfig200ResponseData) SetHostpci4(v string)

SetHostpci4 gets a reference to the given string and assigns it to the Hostpci4 field.

func (*GetVMConfig200ResponseData) SetHostpci5

func (o *GetVMConfig200ResponseData) SetHostpci5(v string)

SetHostpci5 gets a reference to the given string and assigns it to the Hostpci5 field.

func (*GetVMConfig200ResponseData) SetHostpci6

func (o *GetVMConfig200ResponseData) SetHostpci6(v string)

SetHostpci6 gets a reference to the given string and assigns it to the Hostpci6 field.

func (*GetVMConfig200ResponseData) SetHostpci7

func (o *GetVMConfig200ResponseData) SetHostpci7(v string)

SetHostpci7 gets a reference to the given string and assigns it to the Hostpci7 field.

func (*GetVMConfig200ResponseData) SetHostpci8

func (o *GetVMConfig200ResponseData) SetHostpci8(v string)

SetHostpci8 gets a reference to the given string and assigns it to the Hostpci8 field.

func (*GetVMConfig200ResponseData) SetHostpci9

func (o *GetVMConfig200ResponseData) SetHostpci9(v string)

SetHostpci9 gets a reference to the given string and assigns it to the Hostpci9 field.

func (*GetVMConfig200ResponseData) SetHotplug

func (o *GetVMConfig200ResponseData) SetHotplug(v string)

SetHotplug gets a reference to the given string and assigns it to the Hotplug field.

func (*GetVMConfig200ResponseData) SetHugepages

func (o *GetVMConfig200ResponseData) SetHugepages(v string)

SetHugepages gets a reference to the given string and assigns it to the Hugepages field.

func (*GetVMConfig200ResponseData) SetIde0

func (o *GetVMConfig200ResponseData) SetIde0(v string)

SetIde0 gets a reference to the given string and assigns it to the Ide0 field.

func (*GetVMConfig200ResponseData) SetIde1

func (o *GetVMConfig200ResponseData) SetIde1(v string)

SetIde1 gets a reference to the given string and assigns it to the Ide1 field.

func (*GetVMConfig200ResponseData) SetIde2

func (o *GetVMConfig200ResponseData) SetIde2(v string)

SetIde2 gets a reference to the given string and assigns it to the Ide2 field.

func (*GetVMConfig200ResponseData) SetIde3

func (o *GetVMConfig200ResponseData) SetIde3(v string)

SetIde3 gets a reference to the given string and assigns it to the Ide3 field.

func (*GetVMConfig200ResponseData) SetIpconfig0

func (o *GetVMConfig200ResponseData) SetIpconfig0(v string)

SetIpconfig0 gets a reference to the given string and assigns it to the Ipconfig0 field.

func (*GetVMConfig200ResponseData) SetIpconfig1

func (o *GetVMConfig200ResponseData) SetIpconfig1(v string)

SetIpconfig1 gets a reference to the given string and assigns it to the Ipconfig1 field.

func (*GetVMConfig200ResponseData) SetIpconfig10

func (o *GetVMConfig200ResponseData) SetIpconfig10(v string)

SetIpconfig10 gets a reference to the given string and assigns it to the Ipconfig10 field.

func (*GetVMConfig200ResponseData) SetIpconfig11

func (o *GetVMConfig200ResponseData) SetIpconfig11(v string)

SetIpconfig11 gets a reference to the given string and assigns it to the Ipconfig11 field.

func (*GetVMConfig200ResponseData) SetIpconfig12

func (o *GetVMConfig200ResponseData) SetIpconfig12(v string)

SetIpconfig12 gets a reference to the given string and assigns it to the Ipconfig12 field.

func (*GetVMConfig200ResponseData) SetIpconfig13

func (o *GetVMConfig200ResponseData) SetIpconfig13(v string)

SetIpconfig13 gets a reference to the given string and assigns it to the Ipconfig13 field.

func (*GetVMConfig200ResponseData) SetIpconfig14

func (o *GetVMConfig200ResponseData) SetIpconfig14(v string)

SetIpconfig14 gets a reference to the given string and assigns it to the Ipconfig14 field.

func (*GetVMConfig200ResponseData) SetIpconfig15

func (o *GetVMConfig200ResponseData) SetIpconfig15(v string)

SetIpconfig15 gets a reference to the given string and assigns it to the Ipconfig15 field.

func (*GetVMConfig200ResponseData) SetIpconfig16

func (o *GetVMConfig200ResponseData) SetIpconfig16(v string)

SetIpconfig16 gets a reference to the given string and assigns it to the Ipconfig16 field.

func (*GetVMConfig200ResponseData) SetIpconfig17

func (o *GetVMConfig200ResponseData) SetIpconfig17(v string)

SetIpconfig17 gets a reference to the given string and assigns it to the Ipconfig17 field.

func (*GetVMConfig200ResponseData) SetIpconfig18

func (o *GetVMConfig200ResponseData) SetIpconfig18(v string)

SetIpconfig18 gets a reference to the given string and assigns it to the Ipconfig18 field.

func (*GetVMConfig200ResponseData) SetIpconfig19

func (o *GetVMConfig200ResponseData) SetIpconfig19(v string)

SetIpconfig19 gets a reference to the given string and assigns it to the Ipconfig19 field.

func (*GetVMConfig200ResponseData) SetIpconfig2

func (o *GetVMConfig200ResponseData) SetIpconfig2(v string)

SetIpconfig2 gets a reference to the given string and assigns it to the Ipconfig2 field.

func (*GetVMConfig200ResponseData) SetIpconfig20

func (o *GetVMConfig200ResponseData) SetIpconfig20(v string)

SetIpconfig20 gets a reference to the given string and assigns it to the Ipconfig20 field.

func (*GetVMConfig200ResponseData) SetIpconfig21

func (o *GetVMConfig200ResponseData) SetIpconfig21(v string)

SetIpconfig21 gets a reference to the given string and assigns it to the Ipconfig21 field.

func (*GetVMConfig200ResponseData) SetIpconfig22

func (o *GetVMConfig200ResponseData) SetIpconfig22(v string)

SetIpconfig22 gets a reference to the given string and assigns it to the Ipconfig22 field.

func (*GetVMConfig200ResponseData) SetIpconfig23

func (o *GetVMConfig200ResponseData) SetIpconfig23(v string)

SetIpconfig23 gets a reference to the given string and assigns it to the Ipconfig23 field.

func (*GetVMConfig200ResponseData) SetIpconfig24

func (o *GetVMConfig200ResponseData) SetIpconfig24(v string)

SetIpconfig24 gets a reference to the given string and assigns it to the Ipconfig24 field.

func (*GetVMConfig200ResponseData) SetIpconfig25

func (o *GetVMConfig200ResponseData) SetIpconfig25(v string)

SetIpconfig25 gets a reference to the given string and assigns it to the Ipconfig25 field.

func (*GetVMConfig200ResponseData) SetIpconfig26

func (o *GetVMConfig200ResponseData) SetIpconfig26(v string)

SetIpconfig26 gets a reference to the given string and assigns it to the Ipconfig26 field.

func (*GetVMConfig200ResponseData) SetIpconfig27

func (o *GetVMConfig200ResponseData) SetIpconfig27(v string)

SetIpconfig27 gets a reference to the given string and assigns it to the Ipconfig27 field.

func (*GetVMConfig200ResponseData) SetIpconfig28

func (o *GetVMConfig200ResponseData) SetIpconfig28(v string)

SetIpconfig28 gets a reference to the given string and assigns it to the Ipconfig28 field.

func (*GetVMConfig200ResponseData) SetIpconfig29

func (o *GetVMConfig200ResponseData) SetIpconfig29(v string)

SetIpconfig29 gets a reference to the given string and assigns it to the Ipconfig29 field.

func (*GetVMConfig200ResponseData) SetIpconfig3

func (o *GetVMConfig200ResponseData) SetIpconfig3(v string)

SetIpconfig3 gets a reference to the given string and assigns it to the Ipconfig3 field.

func (*GetVMConfig200ResponseData) SetIpconfig4

func (o *GetVMConfig200ResponseData) SetIpconfig4(v string)

SetIpconfig4 gets a reference to the given string and assigns it to the Ipconfig4 field.

func (*GetVMConfig200ResponseData) SetIpconfig5

func (o *GetVMConfig200ResponseData) SetIpconfig5(v string)

SetIpconfig5 gets a reference to the given string and assigns it to the Ipconfig5 field.

func (*GetVMConfig200ResponseData) SetIpconfig6

func (o *GetVMConfig200ResponseData) SetIpconfig6(v string)

SetIpconfig6 gets a reference to the given string and assigns it to the Ipconfig6 field.

func (*GetVMConfig200ResponseData) SetIpconfig7

func (o *GetVMConfig200ResponseData) SetIpconfig7(v string)

SetIpconfig7 gets a reference to the given string and assigns it to the Ipconfig7 field.

func (*GetVMConfig200ResponseData) SetIpconfig8

func (o *GetVMConfig200ResponseData) SetIpconfig8(v string)

SetIpconfig8 gets a reference to the given string and assigns it to the Ipconfig8 field.

func (*GetVMConfig200ResponseData) SetIpconfig9

func (o *GetVMConfig200ResponseData) SetIpconfig9(v string)

SetIpconfig9 gets a reference to the given string and assigns it to the Ipconfig9 field.

func (*GetVMConfig200ResponseData) SetIvshmem

func (o *GetVMConfig200ResponseData) SetIvshmem(v string)

SetIvshmem gets a reference to the given string and assigns it to the Ivshmem field.

func (*GetVMConfig200ResponseData) SetKeephugepages

func (o *GetVMConfig200ResponseData) SetKeephugepages(v int32)

SetKeephugepages gets a reference to the given int32 and assigns it to the Keephugepages field.

func (*GetVMConfig200ResponseData) SetKeyboard

func (o *GetVMConfig200ResponseData) SetKeyboard(v string)

SetKeyboard gets a reference to the given string and assigns it to the Keyboard field.

func (*GetVMConfig200ResponseData) SetKvm

func (o *GetVMConfig200ResponseData) SetKvm(v int32)

SetKvm gets a reference to the given int32 and assigns it to the Kvm field.

func (*GetVMConfig200ResponseData) SetLocaltime

func (o *GetVMConfig200ResponseData) SetLocaltime(v int32)

SetLocaltime gets a reference to the given int32 and assigns it to the Localtime field.

func (*GetVMConfig200ResponseData) SetLock

func (o *GetVMConfig200ResponseData) SetLock(v string)

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetVMConfig200ResponseData) SetMachine

func (o *GetVMConfig200ResponseData) SetMachine(v string)

SetMachine gets a reference to the given string and assigns it to the Machine field.

func (*GetVMConfig200ResponseData) SetMemory

func (o *GetVMConfig200ResponseData) SetMemory(v string)

SetMemory gets a reference to the given string and assigns it to the Memory field.

func (*GetVMConfig200ResponseData) SetMigrateDowntime

func (o *GetVMConfig200ResponseData) SetMigrateDowntime(v float32)

SetMigrateDowntime gets a reference to the given float32 and assigns it to the MigrateDowntime field.

func (*GetVMConfig200ResponseData) SetMigrateSpeed

func (o *GetVMConfig200ResponseData) SetMigrateSpeed(v int64)

SetMigrateSpeed gets a reference to the given int64 and assigns it to the MigrateSpeed field.

func (*GetVMConfig200ResponseData) SetName

func (o *GetVMConfig200ResponseData) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetVMConfig200ResponseData) SetNameserver

func (o *GetVMConfig200ResponseData) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*GetVMConfig200ResponseData) SetNet0

func (o *GetVMConfig200ResponseData) SetNet0(v string)

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*GetVMConfig200ResponseData) SetNet1

func (o *GetVMConfig200ResponseData) SetNet1(v string)

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*GetVMConfig200ResponseData) SetNet10

func (o *GetVMConfig200ResponseData) SetNet10(v string)

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*GetVMConfig200ResponseData) SetNet11

func (o *GetVMConfig200ResponseData) SetNet11(v string)

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*GetVMConfig200ResponseData) SetNet12

func (o *GetVMConfig200ResponseData) SetNet12(v string)

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*GetVMConfig200ResponseData) SetNet13

func (o *GetVMConfig200ResponseData) SetNet13(v string)

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*GetVMConfig200ResponseData) SetNet14

func (o *GetVMConfig200ResponseData) SetNet14(v string)

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*GetVMConfig200ResponseData) SetNet15

func (o *GetVMConfig200ResponseData) SetNet15(v string)

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*GetVMConfig200ResponseData) SetNet16

func (o *GetVMConfig200ResponseData) SetNet16(v string)

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*GetVMConfig200ResponseData) SetNet17

func (o *GetVMConfig200ResponseData) SetNet17(v string)

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*GetVMConfig200ResponseData) SetNet18

func (o *GetVMConfig200ResponseData) SetNet18(v string)

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*GetVMConfig200ResponseData) SetNet19

func (o *GetVMConfig200ResponseData) SetNet19(v string)

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*GetVMConfig200ResponseData) SetNet2

func (o *GetVMConfig200ResponseData) SetNet2(v string)

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*GetVMConfig200ResponseData) SetNet20

func (o *GetVMConfig200ResponseData) SetNet20(v string)

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*GetVMConfig200ResponseData) SetNet21

func (o *GetVMConfig200ResponseData) SetNet21(v string)

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*GetVMConfig200ResponseData) SetNet22

func (o *GetVMConfig200ResponseData) SetNet22(v string)

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*GetVMConfig200ResponseData) SetNet23

func (o *GetVMConfig200ResponseData) SetNet23(v string)

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*GetVMConfig200ResponseData) SetNet24

func (o *GetVMConfig200ResponseData) SetNet24(v string)

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*GetVMConfig200ResponseData) SetNet25

func (o *GetVMConfig200ResponseData) SetNet25(v string)

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*GetVMConfig200ResponseData) SetNet26

func (o *GetVMConfig200ResponseData) SetNet26(v string)

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*GetVMConfig200ResponseData) SetNet27

func (o *GetVMConfig200ResponseData) SetNet27(v string)

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*GetVMConfig200ResponseData) SetNet28

func (o *GetVMConfig200ResponseData) SetNet28(v string)

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*GetVMConfig200ResponseData) SetNet29

func (o *GetVMConfig200ResponseData) SetNet29(v string)

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*GetVMConfig200ResponseData) SetNet3

func (o *GetVMConfig200ResponseData) SetNet3(v string)

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*GetVMConfig200ResponseData) SetNet30

func (o *GetVMConfig200ResponseData) SetNet30(v string)

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*GetVMConfig200ResponseData) SetNet31

func (o *GetVMConfig200ResponseData) SetNet31(v string)

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*GetVMConfig200ResponseData) SetNet4

func (o *GetVMConfig200ResponseData) SetNet4(v string)

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*GetVMConfig200ResponseData) SetNet5

func (o *GetVMConfig200ResponseData) SetNet5(v string)

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*GetVMConfig200ResponseData) SetNet6

func (o *GetVMConfig200ResponseData) SetNet6(v string)

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*GetVMConfig200ResponseData) SetNet7

func (o *GetVMConfig200ResponseData) SetNet7(v string)

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*GetVMConfig200ResponseData) SetNet8

func (o *GetVMConfig200ResponseData) SetNet8(v string)

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*GetVMConfig200ResponseData) SetNet9

func (o *GetVMConfig200ResponseData) SetNet9(v string)

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*GetVMConfig200ResponseData) SetNuma

func (o *GetVMConfig200ResponseData) SetNuma(v int32)

SetNuma gets a reference to the given int32 and assigns it to the Numa field.

func (*GetVMConfig200ResponseData) SetNuma0

func (o *GetVMConfig200ResponseData) SetNuma0(v string)

SetNuma0 gets a reference to the given string and assigns it to the Numa0 field.

func (*GetVMConfig200ResponseData) SetNuma1

func (o *GetVMConfig200ResponseData) SetNuma1(v string)

SetNuma1 gets a reference to the given string and assigns it to the Numa1 field.

func (*GetVMConfig200ResponseData) SetNuma10

func (o *GetVMConfig200ResponseData) SetNuma10(v string)

SetNuma10 gets a reference to the given string and assigns it to the Numa10 field.

func (*GetVMConfig200ResponseData) SetNuma11

func (o *GetVMConfig200ResponseData) SetNuma11(v string)

SetNuma11 gets a reference to the given string and assigns it to the Numa11 field.

func (*GetVMConfig200ResponseData) SetNuma12

func (o *GetVMConfig200ResponseData) SetNuma12(v string)

SetNuma12 gets a reference to the given string and assigns it to the Numa12 field.

func (*GetVMConfig200ResponseData) SetNuma13

func (o *GetVMConfig200ResponseData) SetNuma13(v string)

SetNuma13 gets a reference to the given string and assigns it to the Numa13 field.

func (*GetVMConfig200ResponseData) SetNuma14

func (o *GetVMConfig200ResponseData) SetNuma14(v string)

SetNuma14 gets a reference to the given string and assigns it to the Numa14 field.

func (*GetVMConfig200ResponseData) SetNuma15

func (o *GetVMConfig200ResponseData) SetNuma15(v string)

SetNuma15 gets a reference to the given string and assigns it to the Numa15 field.

func (*GetVMConfig200ResponseData) SetNuma16

func (o *GetVMConfig200ResponseData) SetNuma16(v string)

SetNuma16 gets a reference to the given string and assigns it to the Numa16 field.

func (*GetVMConfig200ResponseData) SetNuma17

func (o *GetVMConfig200ResponseData) SetNuma17(v string)

SetNuma17 gets a reference to the given string and assigns it to the Numa17 field.

func (*GetVMConfig200ResponseData) SetNuma18

func (o *GetVMConfig200ResponseData) SetNuma18(v string)

SetNuma18 gets a reference to the given string and assigns it to the Numa18 field.

func (*GetVMConfig200ResponseData) SetNuma19

func (o *GetVMConfig200ResponseData) SetNuma19(v string)

SetNuma19 gets a reference to the given string and assigns it to the Numa19 field.

func (*GetVMConfig200ResponseData) SetNuma2

func (o *GetVMConfig200ResponseData) SetNuma2(v string)

SetNuma2 gets a reference to the given string and assigns it to the Numa2 field.

func (*GetVMConfig200ResponseData) SetNuma20

func (o *GetVMConfig200ResponseData) SetNuma20(v string)

SetNuma20 gets a reference to the given string and assigns it to the Numa20 field.

func (*GetVMConfig200ResponseData) SetNuma21

func (o *GetVMConfig200ResponseData) SetNuma21(v string)

SetNuma21 gets a reference to the given string and assigns it to the Numa21 field.

func (*GetVMConfig200ResponseData) SetNuma22

func (o *GetVMConfig200ResponseData) SetNuma22(v string)

SetNuma22 gets a reference to the given string and assigns it to the Numa22 field.

func (*GetVMConfig200ResponseData) SetNuma23

func (o *GetVMConfig200ResponseData) SetNuma23(v string)

SetNuma23 gets a reference to the given string and assigns it to the Numa23 field.

func (*GetVMConfig200ResponseData) SetNuma24

func (o *GetVMConfig200ResponseData) SetNuma24(v string)

SetNuma24 gets a reference to the given string and assigns it to the Numa24 field.

func (*GetVMConfig200ResponseData) SetNuma25

func (o *GetVMConfig200ResponseData) SetNuma25(v string)

SetNuma25 gets a reference to the given string and assigns it to the Numa25 field.

func (*GetVMConfig200ResponseData) SetNuma26

func (o *GetVMConfig200ResponseData) SetNuma26(v string)

SetNuma26 gets a reference to the given string and assigns it to the Numa26 field.

func (*GetVMConfig200ResponseData) SetNuma27

func (o *GetVMConfig200ResponseData) SetNuma27(v string)

SetNuma27 gets a reference to the given string and assigns it to the Numa27 field.

func (*GetVMConfig200ResponseData) SetNuma28

func (o *GetVMConfig200ResponseData) SetNuma28(v string)

SetNuma28 gets a reference to the given string and assigns it to the Numa28 field.

func (*GetVMConfig200ResponseData) SetNuma29

func (o *GetVMConfig200ResponseData) SetNuma29(v string)

SetNuma29 gets a reference to the given string and assigns it to the Numa29 field.

func (*GetVMConfig200ResponseData) SetNuma3

func (o *GetVMConfig200ResponseData) SetNuma3(v string)

SetNuma3 gets a reference to the given string and assigns it to the Numa3 field.

func (*GetVMConfig200ResponseData) SetNuma4

func (o *GetVMConfig200ResponseData) SetNuma4(v string)

SetNuma4 gets a reference to the given string and assigns it to the Numa4 field.

func (*GetVMConfig200ResponseData) SetNuma5

func (o *GetVMConfig200ResponseData) SetNuma5(v string)

SetNuma5 gets a reference to the given string and assigns it to the Numa5 field.

func (*GetVMConfig200ResponseData) SetNuma6

func (o *GetVMConfig200ResponseData) SetNuma6(v string)

SetNuma6 gets a reference to the given string and assigns it to the Numa6 field.

func (*GetVMConfig200ResponseData) SetNuma7

func (o *GetVMConfig200ResponseData) SetNuma7(v string)

SetNuma7 gets a reference to the given string and assigns it to the Numa7 field.

func (*GetVMConfig200ResponseData) SetNuma8

func (o *GetVMConfig200ResponseData) SetNuma8(v string)

SetNuma8 gets a reference to the given string and assigns it to the Numa8 field.

func (*GetVMConfig200ResponseData) SetNuma9

func (o *GetVMConfig200ResponseData) SetNuma9(v string)

SetNuma9 gets a reference to the given string and assigns it to the Numa9 field.

func (*GetVMConfig200ResponseData) SetOnboot

func (o *GetVMConfig200ResponseData) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*GetVMConfig200ResponseData) SetOstype

func (o *GetVMConfig200ResponseData) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*GetVMConfig200ResponseData) SetParallel0

func (o *GetVMConfig200ResponseData) SetParallel0(v string)

SetParallel0 gets a reference to the given string and assigns it to the Parallel0 field.

func (*GetVMConfig200ResponseData) SetParallel1

func (o *GetVMConfig200ResponseData) SetParallel1(v string)

SetParallel1 gets a reference to the given string and assigns it to the Parallel1 field.

func (*GetVMConfig200ResponseData) SetParallel2

func (o *GetVMConfig200ResponseData) SetParallel2(v string)

SetParallel2 gets a reference to the given string and assigns it to the Parallel2 field.

func (*GetVMConfig200ResponseData) SetParallel3

func (o *GetVMConfig200ResponseData) SetParallel3(v string)

SetParallel3 gets a reference to the given string and assigns it to the Parallel3 field.

func (*GetVMConfig200ResponseData) SetProtection

func (o *GetVMConfig200ResponseData) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*GetVMConfig200ResponseData) SetReboot

func (o *GetVMConfig200ResponseData) SetReboot(v int32)

SetReboot gets a reference to the given int32 and assigns it to the Reboot field.

func (*GetVMConfig200ResponseData) SetRng0

func (o *GetVMConfig200ResponseData) SetRng0(v string)

SetRng0 gets a reference to the given string and assigns it to the Rng0 field.

func (*GetVMConfig200ResponseData) SetSata0

func (o *GetVMConfig200ResponseData) SetSata0(v string)

SetSata0 gets a reference to the given string and assigns it to the Sata0 field.

func (*GetVMConfig200ResponseData) SetSata1

func (o *GetVMConfig200ResponseData) SetSata1(v string)

SetSata1 gets a reference to the given string and assigns it to the Sata1 field.

func (*GetVMConfig200ResponseData) SetSata2

func (o *GetVMConfig200ResponseData) SetSata2(v string)

SetSata2 gets a reference to the given string and assigns it to the Sata2 field.

func (*GetVMConfig200ResponseData) SetSata3

func (o *GetVMConfig200ResponseData) SetSata3(v string)

SetSata3 gets a reference to the given string and assigns it to the Sata3 field.

func (*GetVMConfig200ResponseData) SetSata4

func (o *GetVMConfig200ResponseData) SetSata4(v string)

SetSata4 gets a reference to the given string and assigns it to the Sata4 field.

func (*GetVMConfig200ResponseData) SetSata5

func (o *GetVMConfig200ResponseData) SetSata5(v string)

SetSata5 gets a reference to the given string and assigns it to the Sata5 field.

func (*GetVMConfig200ResponseData) SetScsi0

func (o *GetVMConfig200ResponseData) SetScsi0(v string)

SetScsi0 gets a reference to the given string and assigns it to the Scsi0 field.

func (*GetVMConfig200ResponseData) SetScsi1

func (o *GetVMConfig200ResponseData) SetScsi1(v string)

SetScsi1 gets a reference to the given string and assigns it to the Scsi1 field.

func (*GetVMConfig200ResponseData) SetScsi10

func (o *GetVMConfig200ResponseData) SetScsi10(v string)

SetScsi10 gets a reference to the given string and assigns it to the Scsi10 field.

func (*GetVMConfig200ResponseData) SetScsi11

func (o *GetVMConfig200ResponseData) SetScsi11(v string)

SetScsi11 gets a reference to the given string and assigns it to the Scsi11 field.

func (*GetVMConfig200ResponseData) SetScsi12

func (o *GetVMConfig200ResponseData) SetScsi12(v string)

SetScsi12 gets a reference to the given string and assigns it to the Scsi12 field.

func (*GetVMConfig200ResponseData) SetScsi13

func (o *GetVMConfig200ResponseData) SetScsi13(v string)

SetScsi13 gets a reference to the given string and assigns it to the Scsi13 field.

func (*GetVMConfig200ResponseData) SetScsi14

func (o *GetVMConfig200ResponseData) SetScsi14(v string)

SetScsi14 gets a reference to the given string and assigns it to the Scsi14 field.

func (*GetVMConfig200ResponseData) SetScsi15

func (o *GetVMConfig200ResponseData) SetScsi15(v string)

SetScsi15 gets a reference to the given string and assigns it to the Scsi15 field.

func (*GetVMConfig200ResponseData) SetScsi16

func (o *GetVMConfig200ResponseData) SetScsi16(v string)

SetScsi16 gets a reference to the given string and assigns it to the Scsi16 field.

func (*GetVMConfig200ResponseData) SetScsi17

func (o *GetVMConfig200ResponseData) SetScsi17(v string)

SetScsi17 gets a reference to the given string and assigns it to the Scsi17 field.

func (*GetVMConfig200ResponseData) SetScsi18

func (o *GetVMConfig200ResponseData) SetScsi18(v string)

SetScsi18 gets a reference to the given string and assigns it to the Scsi18 field.

func (*GetVMConfig200ResponseData) SetScsi19

func (o *GetVMConfig200ResponseData) SetScsi19(v string)

SetScsi19 gets a reference to the given string and assigns it to the Scsi19 field.

func (*GetVMConfig200ResponseData) SetScsi2

func (o *GetVMConfig200ResponseData) SetScsi2(v string)

SetScsi2 gets a reference to the given string and assigns it to the Scsi2 field.

func (*GetVMConfig200ResponseData) SetScsi20

func (o *GetVMConfig200ResponseData) SetScsi20(v string)

SetScsi20 gets a reference to the given string and assigns it to the Scsi20 field.

func (*GetVMConfig200ResponseData) SetScsi21

func (o *GetVMConfig200ResponseData) SetScsi21(v string)

SetScsi21 gets a reference to the given string and assigns it to the Scsi21 field.

func (*GetVMConfig200ResponseData) SetScsi22

func (o *GetVMConfig200ResponseData) SetScsi22(v string)

SetScsi22 gets a reference to the given string and assigns it to the Scsi22 field.

func (*GetVMConfig200ResponseData) SetScsi23

func (o *GetVMConfig200ResponseData) SetScsi23(v string)

SetScsi23 gets a reference to the given string and assigns it to the Scsi23 field.

func (*GetVMConfig200ResponseData) SetScsi24

func (o *GetVMConfig200ResponseData) SetScsi24(v string)

SetScsi24 gets a reference to the given string and assigns it to the Scsi24 field.

func (*GetVMConfig200ResponseData) SetScsi25

func (o *GetVMConfig200ResponseData) SetScsi25(v string)

SetScsi25 gets a reference to the given string and assigns it to the Scsi25 field.

func (*GetVMConfig200ResponseData) SetScsi26

func (o *GetVMConfig200ResponseData) SetScsi26(v string)

SetScsi26 gets a reference to the given string and assigns it to the Scsi26 field.

func (*GetVMConfig200ResponseData) SetScsi27

func (o *GetVMConfig200ResponseData) SetScsi27(v string)

SetScsi27 gets a reference to the given string and assigns it to the Scsi27 field.

func (*GetVMConfig200ResponseData) SetScsi28

func (o *GetVMConfig200ResponseData) SetScsi28(v string)

SetScsi28 gets a reference to the given string and assigns it to the Scsi28 field.

func (*GetVMConfig200ResponseData) SetScsi29

func (o *GetVMConfig200ResponseData) SetScsi29(v string)

SetScsi29 gets a reference to the given string and assigns it to the Scsi29 field.

func (*GetVMConfig200ResponseData) SetScsi3

func (o *GetVMConfig200ResponseData) SetScsi3(v string)

SetScsi3 gets a reference to the given string and assigns it to the Scsi3 field.

func (*GetVMConfig200ResponseData) SetScsi4

func (o *GetVMConfig200ResponseData) SetScsi4(v string)

SetScsi4 gets a reference to the given string and assigns it to the Scsi4 field.

func (*GetVMConfig200ResponseData) SetScsi5

func (o *GetVMConfig200ResponseData) SetScsi5(v string)

SetScsi5 gets a reference to the given string and assigns it to the Scsi5 field.

func (*GetVMConfig200ResponseData) SetScsi6

func (o *GetVMConfig200ResponseData) SetScsi6(v string)

SetScsi6 gets a reference to the given string and assigns it to the Scsi6 field.

func (*GetVMConfig200ResponseData) SetScsi7

func (o *GetVMConfig200ResponseData) SetScsi7(v string)

SetScsi7 gets a reference to the given string and assigns it to the Scsi7 field.

func (*GetVMConfig200ResponseData) SetScsi8

func (o *GetVMConfig200ResponseData) SetScsi8(v string)

SetScsi8 gets a reference to the given string and assigns it to the Scsi8 field.

func (*GetVMConfig200ResponseData) SetScsi9

func (o *GetVMConfig200ResponseData) SetScsi9(v string)

SetScsi9 gets a reference to the given string and assigns it to the Scsi9 field.

func (*GetVMConfig200ResponseData) SetScsihw

func (o *GetVMConfig200ResponseData) SetScsihw(v string)

SetScsihw gets a reference to the given string and assigns it to the Scsihw field.

func (*GetVMConfig200ResponseData) SetSearchdomain

func (o *GetVMConfig200ResponseData) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*GetVMConfig200ResponseData) SetSerial0

func (o *GetVMConfig200ResponseData) SetSerial0(v string)

SetSerial0 gets a reference to the given string and assigns it to the Serial0 field.

func (*GetVMConfig200ResponseData) SetSerial1

func (o *GetVMConfig200ResponseData) SetSerial1(v string)

SetSerial1 gets a reference to the given string and assigns it to the Serial1 field.

func (*GetVMConfig200ResponseData) SetSerial2

func (o *GetVMConfig200ResponseData) SetSerial2(v string)

SetSerial2 gets a reference to the given string and assigns it to the Serial2 field.

func (*GetVMConfig200ResponseData) SetSerial3

func (o *GetVMConfig200ResponseData) SetSerial3(v string)

SetSerial3 gets a reference to the given string and assigns it to the Serial3 field.

func (*GetVMConfig200ResponseData) SetShares

func (o *GetVMConfig200ResponseData) SetShares(v int64)

SetShares gets a reference to the given int64 and assigns it to the Shares field.

func (*GetVMConfig200ResponseData) SetSmbios1

func (o *GetVMConfig200ResponseData) SetSmbios1(v string)

SetSmbios1 gets a reference to the given string and assigns it to the Smbios1 field.

func (*GetVMConfig200ResponseData) SetSmp

func (o *GetVMConfig200ResponseData) SetSmp(v int64)

SetSmp gets a reference to the given int64 and assigns it to the Smp field.

func (*GetVMConfig200ResponseData) SetSockets

func (o *GetVMConfig200ResponseData) SetSockets(v int64)

SetSockets gets a reference to the given int64 and assigns it to the Sockets field.

func (*GetVMConfig200ResponseData) SetSpiceEnhancements

func (o *GetVMConfig200ResponseData) SetSpiceEnhancements(v string)

SetSpiceEnhancements gets a reference to the given string and assigns it to the SpiceEnhancements field.

func (*GetVMConfig200ResponseData) SetSshkeys

func (o *GetVMConfig200ResponseData) SetSshkeys(v string)

SetSshkeys gets a reference to the given string and assigns it to the Sshkeys field.

func (*GetVMConfig200ResponseData) SetStartdate

func (o *GetVMConfig200ResponseData) SetStartdate(v string)

SetStartdate gets a reference to the given string and assigns it to the Startdate field.

func (*GetVMConfig200ResponseData) SetStartup

func (o *GetVMConfig200ResponseData) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*GetVMConfig200ResponseData) SetTablet

func (o *GetVMConfig200ResponseData) SetTablet(v int32)

SetTablet gets a reference to the given int32 and assigns it to the Tablet field.

func (*GetVMConfig200ResponseData) SetTags

func (o *GetVMConfig200ResponseData) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*GetVMConfig200ResponseData) SetTdf

func (o *GetVMConfig200ResponseData) SetTdf(v int32)

SetTdf gets a reference to the given int32 and assigns it to the Tdf field.

func (*GetVMConfig200ResponseData) SetTemplate

func (o *GetVMConfig200ResponseData) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*GetVMConfig200ResponseData) SetTpmstate0

func (o *GetVMConfig200ResponseData) SetTpmstate0(v string)

SetTpmstate0 gets a reference to the given string and assigns it to the Tpmstate0 field.

func (*GetVMConfig200ResponseData) SetUnused0

func (o *GetVMConfig200ResponseData) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*GetVMConfig200ResponseData) SetUnused1

func (o *GetVMConfig200ResponseData) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*GetVMConfig200ResponseData) SetUnused10

func (o *GetVMConfig200ResponseData) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*GetVMConfig200ResponseData) SetUnused11

func (o *GetVMConfig200ResponseData) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*GetVMConfig200ResponseData) SetUnused12

func (o *GetVMConfig200ResponseData) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*GetVMConfig200ResponseData) SetUnused13

func (o *GetVMConfig200ResponseData) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*GetVMConfig200ResponseData) SetUnused14

func (o *GetVMConfig200ResponseData) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*GetVMConfig200ResponseData) SetUnused15

func (o *GetVMConfig200ResponseData) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*GetVMConfig200ResponseData) SetUnused16

func (o *GetVMConfig200ResponseData) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*GetVMConfig200ResponseData) SetUnused17

func (o *GetVMConfig200ResponseData) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*GetVMConfig200ResponseData) SetUnused18

func (o *GetVMConfig200ResponseData) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*GetVMConfig200ResponseData) SetUnused19

func (o *GetVMConfig200ResponseData) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*GetVMConfig200ResponseData) SetUnused2

func (o *GetVMConfig200ResponseData) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*GetVMConfig200ResponseData) SetUnused20

func (o *GetVMConfig200ResponseData) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*GetVMConfig200ResponseData) SetUnused21

func (o *GetVMConfig200ResponseData) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*GetVMConfig200ResponseData) SetUnused22

func (o *GetVMConfig200ResponseData) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*GetVMConfig200ResponseData) SetUnused23

func (o *GetVMConfig200ResponseData) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*GetVMConfig200ResponseData) SetUnused24

func (o *GetVMConfig200ResponseData) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*GetVMConfig200ResponseData) SetUnused25

func (o *GetVMConfig200ResponseData) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*GetVMConfig200ResponseData) SetUnused26

func (o *GetVMConfig200ResponseData) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*GetVMConfig200ResponseData) SetUnused27

func (o *GetVMConfig200ResponseData) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*GetVMConfig200ResponseData) SetUnused28

func (o *GetVMConfig200ResponseData) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*GetVMConfig200ResponseData) SetUnused29

func (o *GetVMConfig200ResponseData) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*GetVMConfig200ResponseData) SetUnused3

func (o *GetVMConfig200ResponseData) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*GetVMConfig200ResponseData) SetUnused4

func (o *GetVMConfig200ResponseData) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*GetVMConfig200ResponseData) SetUnused5

func (o *GetVMConfig200ResponseData) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*GetVMConfig200ResponseData) SetUnused6

func (o *GetVMConfig200ResponseData) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*GetVMConfig200ResponseData) SetUnused7

func (o *GetVMConfig200ResponseData) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*GetVMConfig200ResponseData) SetUnused8

func (o *GetVMConfig200ResponseData) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*GetVMConfig200ResponseData) SetUnused9

func (o *GetVMConfig200ResponseData) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (*GetVMConfig200ResponseData) SetUsb0

func (o *GetVMConfig200ResponseData) SetUsb0(v string)

SetUsb0 gets a reference to the given string and assigns it to the Usb0 field.

func (*GetVMConfig200ResponseData) SetUsb1

func (o *GetVMConfig200ResponseData) SetUsb1(v string)

SetUsb1 gets a reference to the given string and assigns it to the Usb1 field.

func (*GetVMConfig200ResponseData) SetUsb2

func (o *GetVMConfig200ResponseData) SetUsb2(v string)

SetUsb2 gets a reference to the given string and assigns it to the Usb2 field.

func (*GetVMConfig200ResponseData) SetUsb3

func (o *GetVMConfig200ResponseData) SetUsb3(v string)

SetUsb3 gets a reference to the given string and assigns it to the Usb3 field.

func (*GetVMConfig200ResponseData) SetVcpus

func (o *GetVMConfig200ResponseData) SetVcpus(v int64)

SetVcpus gets a reference to the given int64 and assigns it to the Vcpus field.

func (*GetVMConfig200ResponseData) SetVga

func (o *GetVMConfig200ResponseData) SetVga(v string)

SetVga gets a reference to the given string and assigns it to the Vga field.

func (*GetVMConfig200ResponseData) SetVirtio0

func (o *GetVMConfig200ResponseData) SetVirtio0(v string)

SetVirtio0 gets a reference to the given string and assigns it to the Virtio0 field.

func (*GetVMConfig200ResponseData) SetVirtio1

func (o *GetVMConfig200ResponseData) SetVirtio1(v string)

SetVirtio1 gets a reference to the given string and assigns it to the Virtio1 field.

func (*GetVMConfig200ResponseData) SetVirtio10

func (o *GetVMConfig200ResponseData) SetVirtio10(v string)

SetVirtio10 gets a reference to the given string and assigns it to the Virtio10 field.

func (*GetVMConfig200ResponseData) SetVirtio11

func (o *GetVMConfig200ResponseData) SetVirtio11(v string)

SetVirtio11 gets a reference to the given string and assigns it to the Virtio11 field.

func (*GetVMConfig200ResponseData) SetVirtio12

func (o *GetVMConfig200ResponseData) SetVirtio12(v string)

SetVirtio12 gets a reference to the given string and assigns it to the Virtio12 field.

func (*GetVMConfig200ResponseData) SetVirtio13

func (o *GetVMConfig200ResponseData) SetVirtio13(v string)

SetVirtio13 gets a reference to the given string and assigns it to the Virtio13 field.

func (*GetVMConfig200ResponseData) SetVirtio14

func (o *GetVMConfig200ResponseData) SetVirtio14(v string)

SetVirtio14 gets a reference to the given string and assigns it to the Virtio14 field.

func (*GetVMConfig200ResponseData) SetVirtio15

func (o *GetVMConfig200ResponseData) SetVirtio15(v string)

SetVirtio15 gets a reference to the given string and assigns it to the Virtio15 field.

func (*GetVMConfig200ResponseData) SetVirtio2

func (o *GetVMConfig200ResponseData) SetVirtio2(v string)

SetVirtio2 gets a reference to the given string and assigns it to the Virtio2 field.

func (*GetVMConfig200ResponseData) SetVirtio3

func (o *GetVMConfig200ResponseData) SetVirtio3(v string)

SetVirtio3 gets a reference to the given string and assigns it to the Virtio3 field.

func (*GetVMConfig200ResponseData) SetVirtio4

func (o *GetVMConfig200ResponseData) SetVirtio4(v string)

SetVirtio4 gets a reference to the given string and assigns it to the Virtio4 field.

func (*GetVMConfig200ResponseData) SetVirtio5

func (o *GetVMConfig200ResponseData) SetVirtio5(v string)

SetVirtio5 gets a reference to the given string and assigns it to the Virtio5 field.

func (*GetVMConfig200ResponseData) SetVirtio6

func (o *GetVMConfig200ResponseData) SetVirtio6(v string)

SetVirtio6 gets a reference to the given string and assigns it to the Virtio6 field.

func (*GetVMConfig200ResponseData) SetVirtio7

func (o *GetVMConfig200ResponseData) SetVirtio7(v string)

SetVirtio7 gets a reference to the given string and assigns it to the Virtio7 field.

func (*GetVMConfig200ResponseData) SetVirtio8

func (o *GetVMConfig200ResponseData) SetVirtio8(v string)

SetVirtio8 gets a reference to the given string and assigns it to the Virtio8 field.

func (*GetVMConfig200ResponseData) SetVirtio9

func (o *GetVMConfig200ResponseData) SetVirtio9(v string)

SetVirtio9 gets a reference to the given string and assigns it to the Virtio9 field.

func (*GetVMConfig200ResponseData) SetVmgenid

func (o *GetVMConfig200ResponseData) SetVmgenid(v string)

SetVmgenid gets a reference to the given string and assigns it to the Vmgenid field.

func (*GetVMConfig200ResponseData) SetVmstatestorage

func (o *GetVMConfig200ResponseData) SetVmstatestorage(v string)

SetVmstatestorage gets a reference to the given string and assigns it to the Vmstatestorage field.

func (*GetVMConfig200ResponseData) SetWatchdog

func (o *GetVMConfig200ResponseData) SetWatchdog(v string)

SetWatchdog gets a reference to the given string and assigns it to the Watchdog field.

func (GetVMConfig200ResponseData) ToMap

func (o GetVMConfig200ResponseData) ToMap() (map[string]interface{}, error)

type GetVMConfigPending200Response

type GetVMConfigPending200Response struct {
	Data   []GetVMConfigPending200ResponseDataInner `json:"data,omitempty"`
	Errors []string                                 `json:"errors,omitempty"`
}

GetVMConfigPending200Response struct for GetVMConfigPending200Response

func NewGetVMConfigPending200Response

func NewGetVMConfigPending200Response() *GetVMConfigPending200Response

NewGetVMConfigPending200Response instantiates a new GetVMConfigPending200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMConfigPending200ResponseWithDefaults

func NewGetVMConfigPending200ResponseWithDefaults() *GetVMConfigPending200Response

NewGetVMConfigPending200ResponseWithDefaults instantiates a new GetVMConfigPending200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMConfigPending200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetVMConfigPending200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200Response) GetErrors

func (o *GetVMConfigPending200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVMConfigPending200Response) GetErrorsOk

func (o *GetVMConfigPending200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200Response) HasData

func (o *GetVMConfigPending200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVMConfigPending200Response) HasErrors

func (o *GetVMConfigPending200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVMConfigPending200Response) MarshalJSON

func (o GetVMConfigPending200Response) MarshalJSON() ([]byte, error)

func (*GetVMConfigPending200Response) SetData

SetData gets a reference to the given []GetVMConfigPending200ResponseDataInner and assigns it to the Data field.

func (*GetVMConfigPending200Response) SetErrors

func (o *GetVMConfigPending200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVMConfigPending200Response) ToMap

func (o GetVMConfigPending200Response) ToMap() (map[string]interface{}, error)

type GetVMConfigPending200ResponseDataInner

type GetVMConfigPending200ResponseDataInner struct {
	GetVMConfigPending200ResponseDataInnerOneOf  *GetVMConfigPending200ResponseDataInnerOneOf
	GetVMConfigPending200ResponseDataInnerOneOf1 *GetVMConfigPending200ResponseDataInnerOneOf1
}

GetVMConfigPending200ResponseDataInner - struct for GetVMConfigPending200ResponseDataInner

func GetVMConfigPending200ResponseDataInnerOneOf1AsGetVMConfigPending200ResponseDataInner

func GetVMConfigPending200ResponseDataInnerOneOf1AsGetVMConfigPending200ResponseDataInner(v *GetVMConfigPending200ResponseDataInnerOneOf1) GetVMConfigPending200ResponseDataInner

GetVMConfigPending200ResponseDataInnerOneOf1AsGetVMConfigPending200ResponseDataInner is a convenience function that returns GetVMConfigPending200ResponseDataInnerOneOf1 wrapped in GetVMConfigPending200ResponseDataInner

func GetVMConfigPending200ResponseDataInnerOneOfAsGetVMConfigPending200ResponseDataInner

func GetVMConfigPending200ResponseDataInnerOneOfAsGetVMConfigPending200ResponseDataInner(v *GetVMConfigPending200ResponseDataInnerOneOf) GetVMConfigPending200ResponseDataInner

GetVMConfigPending200ResponseDataInnerOneOfAsGetVMConfigPending200ResponseDataInner is a convenience function that returns GetVMConfigPending200ResponseDataInnerOneOf wrapped in GetVMConfigPending200ResponseDataInner

func (*GetVMConfigPending200ResponseDataInner) GetActualInstance

func (obj *GetVMConfigPending200ResponseDataInner) GetActualInstance() interface{}

Get the actual instance

func (GetVMConfigPending200ResponseDataInner) MarshalJSON

func (src GetVMConfigPending200ResponseDataInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetVMConfigPending200ResponseDataInner) UnmarshalJSON

func (dst *GetVMConfigPending200ResponseDataInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetVMConfigPending200ResponseDataInnerOneOf

type GetVMConfigPending200ResponseDataInnerOneOf struct {
	// Indicates a pending delete request if present and not 0. The value 2 indicates a force-delete request.
	Delete *int64 `json:"delete,omitempty"`
	// Configuration option name.
	Key *string `json:"key,omitempty"`
	// Pending value.
	Pending *string `json:"pending,omitempty"`
	// Current value.
	Value *int32 `json:"value,omitempty"`
}

GetVMConfigPending200ResponseDataInnerOneOf struct for GetVMConfigPending200ResponseDataInnerOneOf

func NewGetVMConfigPending200ResponseDataInnerOneOf

func NewGetVMConfigPending200ResponseDataInnerOneOf() *GetVMConfigPending200ResponseDataInnerOneOf

NewGetVMConfigPending200ResponseDataInnerOneOf instantiates a new GetVMConfigPending200ResponseDataInnerOneOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMConfigPending200ResponseDataInnerOneOfWithDefaults

func NewGetVMConfigPending200ResponseDataInnerOneOfWithDefaults() *GetVMConfigPending200ResponseDataInnerOneOf

NewGetVMConfigPending200ResponseDataInnerOneOfWithDefaults instantiates a new GetVMConfigPending200ResponseDataInnerOneOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetDelete

GetDelete returns the Delete field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetDeleteOk

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetKeyOk

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetPending

GetPending returns the Pending field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetPendingOk

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) HasDelete

HasDelete returns a boolean if a field has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) HasKey

HasKey returns a boolean if a field has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) HasPending

HasPending returns a boolean if a field has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf) HasValue

HasValue returns a boolean if a field has been set.

func (GetVMConfigPending200ResponseDataInnerOneOf) MarshalJSON

func (*GetVMConfigPending200ResponseDataInnerOneOf) SetDelete

SetDelete gets a reference to the given int64 and assigns it to the Delete field.

func (*GetVMConfigPending200ResponseDataInnerOneOf) SetKey

SetKey gets a reference to the given string and assigns it to the Key field.

func (*GetVMConfigPending200ResponseDataInnerOneOf) SetPending

SetPending gets a reference to the given string and assigns it to the Pending field.

func (*GetVMConfigPending200ResponseDataInnerOneOf) SetValue

SetValue gets a reference to the given int32 and assigns it to the Value field.

func (GetVMConfigPending200ResponseDataInnerOneOf) ToMap

func (o GetVMConfigPending200ResponseDataInnerOneOf) ToMap() (map[string]interface{}, error)

type GetVMConfigPending200ResponseDataInnerOneOf1

type GetVMConfigPending200ResponseDataInnerOneOf1 struct {
	// Indicates a pending delete request if present and not 0. The value 2 indicates a force-delete request.
	Delete *int64 `json:"delete,omitempty"`
	// Configuration option name.
	Key *string `json:"key,omitempty"`
	// Pending value.
	Pending *string `json:"pending,omitempty"`
	// Current value.
	Value *string `json:"value,omitempty"`
}

GetVMConfigPending200ResponseDataInnerOneOf1 struct for GetVMConfigPending200ResponseDataInnerOneOf1

func NewGetVMConfigPending200ResponseDataInnerOneOf1

func NewGetVMConfigPending200ResponseDataInnerOneOf1() *GetVMConfigPending200ResponseDataInnerOneOf1

NewGetVMConfigPending200ResponseDataInnerOneOf1 instantiates a new GetVMConfigPending200ResponseDataInnerOneOf1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMConfigPending200ResponseDataInnerOneOf1WithDefaults

func NewGetVMConfigPending200ResponseDataInnerOneOf1WithDefaults() *GetVMConfigPending200ResponseDataInnerOneOf1

NewGetVMConfigPending200ResponseDataInnerOneOf1WithDefaults instantiates a new GetVMConfigPending200ResponseDataInnerOneOf1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetDelete

GetDelete returns the Delete field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetDeleteOk

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetKeyOk

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetPending

GetPending returns the Pending field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetPendingOk

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) HasDelete

HasDelete returns a boolean if a field has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) HasKey

HasKey returns a boolean if a field has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) HasPending

HasPending returns a boolean if a field has been set.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) HasValue

HasValue returns a boolean if a field has been set.

func (GetVMConfigPending200ResponseDataInnerOneOf1) MarshalJSON

func (*GetVMConfigPending200ResponseDataInnerOneOf1) SetDelete

SetDelete gets a reference to the given int64 and assigns it to the Delete field.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) SetKey

SetKey gets a reference to the given string and assigns it to the Key field.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) SetPending

SetPending gets a reference to the given string and assigns it to the Pending field.

func (*GetVMConfigPending200ResponseDataInnerOneOf1) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (GetVMConfigPending200ResponseDataInnerOneOf1) ToMap

func (o GetVMConfigPending200ResponseDataInnerOneOf1) ToMap() (map[string]interface{}, error)

type GetVMSnapshot200Response

type GetVMSnapshot200Response struct {
	Data   []map[string]interface{} `json:"data,omitempty"`
	Errors []string                 `json:"errors,omitempty"`
}

GetVMSnapshot200Response struct for GetVMSnapshot200Response

func NewGetVMSnapshot200Response

func NewGetVMSnapshot200Response() *GetVMSnapshot200Response

NewGetVMSnapshot200Response instantiates a new GetVMSnapshot200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMSnapshot200ResponseWithDefaults

func NewGetVMSnapshot200ResponseWithDefaults() *GetVMSnapshot200Response

NewGetVMSnapshot200ResponseWithDefaults instantiates a new GetVMSnapshot200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMSnapshot200Response) GetData

func (o *GetVMSnapshot200Response) GetData() []map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*GetVMSnapshot200Response) GetDataOk

func (o *GetVMSnapshot200Response) GetDataOk() ([]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshot200Response) GetErrors

func (o *GetVMSnapshot200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVMSnapshot200Response) GetErrorsOk

func (o *GetVMSnapshot200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshot200Response) HasData

func (o *GetVMSnapshot200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVMSnapshot200Response) HasErrors

func (o *GetVMSnapshot200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVMSnapshot200Response) MarshalJSON

func (o GetVMSnapshot200Response) MarshalJSON() ([]byte, error)

func (*GetVMSnapshot200Response) SetData

func (o *GetVMSnapshot200Response) SetData(v []map[string]interface{})

SetData gets a reference to the given []map[string]interface{} and assigns it to the Data field.

func (*GetVMSnapshot200Response) SetErrors

func (o *GetVMSnapshot200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVMSnapshot200Response) ToMap

func (o GetVMSnapshot200Response) ToMap() (map[string]interface{}, error)

type GetVMSnapshotConfig200Response

type GetVMSnapshotConfig200Response struct {
	Data   map[string]interface{} `json:"data,omitempty"`
	Errors []string               `json:"errors,omitempty"`
}

GetVMSnapshotConfig200Response struct for GetVMSnapshotConfig200Response

func NewGetVMSnapshotConfig200Response

func NewGetVMSnapshotConfig200Response() *GetVMSnapshotConfig200Response

NewGetVMSnapshotConfig200Response instantiates a new GetVMSnapshotConfig200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMSnapshotConfig200ResponseWithDefaults

func NewGetVMSnapshotConfig200ResponseWithDefaults() *GetVMSnapshotConfig200Response

NewGetVMSnapshotConfig200ResponseWithDefaults instantiates a new GetVMSnapshotConfig200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMSnapshotConfig200Response) GetData

func (o *GetVMSnapshotConfig200Response) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*GetVMSnapshotConfig200Response) GetDataOk

func (o *GetVMSnapshotConfig200Response) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshotConfig200Response) GetErrors

func (o *GetVMSnapshotConfig200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVMSnapshotConfig200Response) GetErrorsOk

func (o *GetVMSnapshotConfig200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshotConfig200Response) HasData

func (o *GetVMSnapshotConfig200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVMSnapshotConfig200Response) HasErrors

func (o *GetVMSnapshotConfig200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVMSnapshotConfig200Response) MarshalJSON

func (o GetVMSnapshotConfig200Response) MarshalJSON() ([]byte, error)

func (*GetVMSnapshotConfig200Response) SetData

func (o *GetVMSnapshotConfig200Response) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*GetVMSnapshotConfig200Response) SetErrors

func (o *GetVMSnapshotConfig200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVMSnapshotConfig200Response) ToMap

func (o GetVMSnapshotConfig200Response) ToMap() (map[string]interface{}, error)

type GetVMSnapshots200Response

type GetVMSnapshots200Response struct {
	Data   []GetVMSnapshots200ResponseDataInner `json:"data,omitempty"`
	Errors []string                             `json:"errors,omitempty"`
}

GetVMSnapshots200Response struct for GetVMSnapshots200Response

func NewGetVMSnapshots200Response

func NewGetVMSnapshots200Response() *GetVMSnapshots200Response

NewGetVMSnapshots200Response instantiates a new GetVMSnapshots200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMSnapshots200ResponseWithDefaults

func NewGetVMSnapshots200ResponseWithDefaults() *GetVMSnapshots200Response

NewGetVMSnapshots200ResponseWithDefaults instantiates a new GetVMSnapshots200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMSnapshots200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetVMSnapshots200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200Response) GetErrors

func (o *GetVMSnapshots200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVMSnapshots200Response) GetErrorsOk

func (o *GetVMSnapshots200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200Response) HasData

func (o *GetVMSnapshots200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVMSnapshots200Response) HasErrors

func (o *GetVMSnapshots200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVMSnapshots200Response) MarshalJSON

func (o GetVMSnapshots200Response) MarshalJSON() ([]byte, error)

func (*GetVMSnapshots200Response) SetData

SetData gets a reference to the given []GetVMSnapshots200ResponseDataInner and assigns it to the Data field.

func (*GetVMSnapshots200Response) SetErrors

func (o *GetVMSnapshots200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVMSnapshots200Response) ToMap

func (o GetVMSnapshots200Response) ToMap() (map[string]interface{}, error)

type GetVMSnapshots200ResponseDataInner

type GetVMSnapshots200ResponseDataInner struct {
	// Snapshot description.
	Description *string `json:"description,omitempty"`
	// Snapshot identifier. Value 'current' identifies the current VM.
	Name *string `json:"name,omitempty"`
	// Parent snapshot identifier.
	Parent *string `json:"parent,omitempty"`
	// Snapshot creation time
	Snaptime *int64 `json:"snaptime,omitempty"`
	// Snapshot includes RAM.
	Vmstate *int32 `json:"vmstate,omitempty"`
}

GetVMSnapshots200ResponseDataInner struct for GetVMSnapshots200ResponseDataInner

func NewGetVMSnapshots200ResponseDataInner

func NewGetVMSnapshots200ResponseDataInner() *GetVMSnapshots200ResponseDataInner

NewGetVMSnapshots200ResponseDataInner instantiates a new GetVMSnapshots200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMSnapshots200ResponseDataInnerWithDefaults

func NewGetVMSnapshots200ResponseDataInnerWithDefaults() *GetVMSnapshots200ResponseDataInner

NewGetVMSnapshots200ResponseDataInnerWithDefaults instantiates a new GetVMSnapshots200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMSnapshots200ResponseDataInner) GetDescription

func (o *GetVMSnapshots200ResponseDataInner) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*GetVMSnapshots200ResponseDataInner) GetDescriptionOk

func (o *GetVMSnapshots200ResponseDataInner) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*GetVMSnapshots200ResponseDataInner) GetNameOk

func (o *GetVMSnapshots200ResponseDataInner) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200ResponseDataInner) GetParent

GetParent returns the Parent field value if set, zero value otherwise.

func (*GetVMSnapshots200ResponseDataInner) GetParentOk

func (o *GetVMSnapshots200ResponseDataInner) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200ResponseDataInner) GetSnaptime

func (o *GetVMSnapshots200ResponseDataInner) GetSnaptime() int64

GetSnaptime returns the Snaptime field value if set, zero value otherwise.

func (*GetVMSnapshots200ResponseDataInner) GetSnaptimeOk

func (o *GetVMSnapshots200ResponseDataInner) GetSnaptimeOk() (*int64, bool)

GetSnaptimeOk returns a tuple with the Snaptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200ResponseDataInner) GetVmstate

func (o *GetVMSnapshots200ResponseDataInner) GetVmstate() int32

GetVmstate returns the Vmstate field value if set, zero value otherwise.

func (*GetVMSnapshots200ResponseDataInner) GetVmstateOk

func (o *GetVMSnapshots200ResponseDataInner) GetVmstateOk() (*int32, bool)

GetVmstateOk returns a tuple with the Vmstate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMSnapshots200ResponseDataInner) HasDescription

func (o *GetVMSnapshots200ResponseDataInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetVMSnapshots200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (*GetVMSnapshots200ResponseDataInner) HasParent

HasParent returns a boolean if a field has been set.

func (*GetVMSnapshots200ResponseDataInner) HasSnaptime

func (o *GetVMSnapshots200ResponseDataInner) HasSnaptime() bool

HasSnaptime returns a boolean if a field has been set.

func (*GetVMSnapshots200ResponseDataInner) HasVmstate

func (o *GetVMSnapshots200ResponseDataInner) HasVmstate() bool

HasVmstate returns a boolean if a field has been set.

func (GetVMSnapshots200ResponseDataInner) MarshalJSON

func (o GetVMSnapshots200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetVMSnapshots200ResponseDataInner) SetDescription

func (o *GetVMSnapshots200ResponseDataInner) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GetVMSnapshots200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetVMSnapshots200ResponseDataInner) SetParent

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*GetVMSnapshots200ResponseDataInner) SetSnaptime

func (o *GetVMSnapshots200ResponseDataInner) SetSnaptime(v int64)

SetSnaptime gets a reference to the given int64 and assigns it to the Snaptime field.

func (*GetVMSnapshots200ResponseDataInner) SetVmstate

func (o *GetVMSnapshots200ResponseDataInner) SetVmstate(v int32)

SetVmstate gets a reference to the given int32 and assigns it to the Vmstate field.

func (GetVMSnapshots200ResponseDataInner) ToMap

func (o GetVMSnapshots200ResponseDataInner) ToMap() (map[string]interface{}, error)

type GetVMs200Response

type GetVMs200Response struct {
	Data   []GetVMs200ResponseDataInner `json:"data,omitempty"`
	Errors []string                     `json:"errors,omitempty"`
}

GetVMs200Response struct for GetVMs200Response

func NewGetVMs200Response

func NewGetVMs200Response() *GetVMs200Response

NewGetVMs200Response instantiates a new GetVMs200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMs200ResponseWithDefaults

func NewGetVMs200ResponseWithDefaults() *GetVMs200Response

NewGetVMs200ResponseWithDefaults instantiates a new GetVMs200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMs200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GetVMs200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200Response) GetErrors

func (o *GetVMs200Response) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetVMs200Response) GetErrorsOk

func (o *GetVMs200Response) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200Response) HasData

func (o *GetVMs200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetVMs200Response) HasErrors

func (o *GetVMs200Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetVMs200Response) MarshalJSON

func (o GetVMs200Response) MarshalJSON() ([]byte, error)

func (*GetVMs200Response) SetData

SetData gets a reference to the given []GetVMs200ResponseDataInner and assigns it to the Data field.

func (*GetVMs200Response) SetErrors

func (o *GetVMs200Response) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (GetVMs200Response) ToMap

func (o GetVMs200Response) ToMap() (map[string]interface{}, error)

type GetVMs200ResponseDataInner

type GetVMs200ResponseDataInner struct {
	// Maximum usable CPUs.
	Cpus *float32 `json:"cpus,omitempty"`
	// The current config lock, if any.
	Lock *string `json:"lock,omitempty"`
	// Root disk size in bytes.
	Maxdisk *int64 `json:"maxdisk,omitempty"`
	// Maximum memory in bytes.
	Maxmem *int64 `json:"maxmem,omitempty"`
	// VM name.
	Name *string `json:"name,omitempty"`
	// PID of running qemu process.
	Pid *int64 `json:"pid,omitempty"`
	// VM run state from the 'query-status' QMP monitor command.
	Qmpstatus *string `json:"qmpstatus,omitempty"`
	// The currently running machine type (if running).
	RunningMachine *string `json:"running-machine,omitempty"`
	// The currently running QEMU version (if running).
	RunningQemu *string `json:"running-qemu,omitempty"`
	// QEMU process status.
	Status *string `json:"status,omitempty"`
	// The current configured tags, if any
	Tags *string `json:"tags,omitempty"`
	// Uptime.
	Uptime *int64 `json:"uptime,omitempty"`
	// The (unique) ID of the VM.
	Vmid *int64 `json:"vmid,omitempty"`
}

GetVMs200ResponseDataInner struct for GetVMs200ResponseDataInner

func NewGetVMs200ResponseDataInner

func NewGetVMs200ResponseDataInner() *GetVMs200ResponseDataInner

NewGetVMs200ResponseDataInner instantiates a new GetVMs200ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetVMs200ResponseDataInnerWithDefaults

func NewGetVMs200ResponseDataInnerWithDefaults() *GetVMs200ResponseDataInner

NewGetVMs200ResponseDataInnerWithDefaults instantiates a new GetVMs200ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetVMs200ResponseDataInner) GetCpus

func (o *GetVMs200ResponseDataInner) GetCpus() float32

GetCpus returns the Cpus field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetCpusOk

func (o *GetVMs200ResponseDataInner) GetCpusOk() (*float32, bool)

GetCpusOk returns a tuple with the Cpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetLock

func (o *GetVMs200ResponseDataInner) GetLock() string

GetLock returns the Lock field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetLockOk

func (o *GetVMs200ResponseDataInner) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetMaxdisk

func (o *GetVMs200ResponseDataInner) GetMaxdisk() int64

GetMaxdisk returns the Maxdisk field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetMaxdiskOk

func (o *GetVMs200ResponseDataInner) GetMaxdiskOk() (*int64, bool)

GetMaxdiskOk returns a tuple with the Maxdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetMaxmem

func (o *GetVMs200ResponseDataInner) GetMaxmem() int64

GetMaxmem returns the Maxmem field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetMaxmemOk

func (o *GetVMs200ResponseDataInner) GetMaxmemOk() (*int64, bool)

GetMaxmemOk returns a tuple with the Maxmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetName

func (o *GetVMs200ResponseDataInner) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetNameOk

func (o *GetVMs200ResponseDataInner) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetPid

func (o *GetVMs200ResponseDataInner) GetPid() int64

GetPid returns the Pid field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetPidOk

func (o *GetVMs200ResponseDataInner) GetPidOk() (*int64, bool)

GetPidOk returns a tuple with the Pid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetQmpstatus

func (o *GetVMs200ResponseDataInner) GetQmpstatus() string

GetQmpstatus returns the Qmpstatus field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetQmpstatusOk

func (o *GetVMs200ResponseDataInner) GetQmpstatusOk() (*string, bool)

GetQmpstatusOk returns a tuple with the Qmpstatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetRunningMachine

func (o *GetVMs200ResponseDataInner) GetRunningMachine() string

GetRunningMachine returns the RunningMachine field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetRunningMachineOk

func (o *GetVMs200ResponseDataInner) GetRunningMachineOk() (*string, bool)

GetRunningMachineOk returns a tuple with the RunningMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetRunningQemu

func (o *GetVMs200ResponseDataInner) GetRunningQemu() string

GetRunningQemu returns the RunningQemu field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetRunningQemuOk

func (o *GetVMs200ResponseDataInner) GetRunningQemuOk() (*string, bool)

GetRunningQemuOk returns a tuple with the RunningQemu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetStatus

func (o *GetVMs200ResponseDataInner) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetStatusOk

func (o *GetVMs200ResponseDataInner) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetTags

func (o *GetVMs200ResponseDataInner) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetTagsOk

func (o *GetVMs200ResponseDataInner) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetUptime

func (o *GetVMs200ResponseDataInner) GetUptime() int64

GetUptime returns the Uptime field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetUptimeOk

func (o *GetVMs200ResponseDataInner) GetUptimeOk() (*int64, bool)

GetUptimeOk returns a tuple with the Uptime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) GetVmid

func (o *GetVMs200ResponseDataInner) GetVmid() int64

GetVmid returns the Vmid field value if set, zero value otherwise.

func (*GetVMs200ResponseDataInner) GetVmidOk

func (o *GetVMs200ResponseDataInner) GetVmidOk() (*int64, bool)

GetVmidOk returns a tuple with the Vmid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetVMs200ResponseDataInner) HasCpus

func (o *GetVMs200ResponseDataInner) HasCpus() bool

HasCpus returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasLock

func (o *GetVMs200ResponseDataInner) HasLock() bool

HasLock returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasMaxdisk

func (o *GetVMs200ResponseDataInner) HasMaxdisk() bool

HasMaxdisk returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasMaxmem

func (o *GetVMs200ResponseDataInner) HasMaxmem() bool

HasMaxmem returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasName

func (o *GetVMs200ResponseDataInner) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasPid

func (o *GetVMs200ResponseDataInner) HasPid() bool

HasPid returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasQmpstatus

func (o *GetVMs200ResponseDataInner) HasQmpstatus() bool

HasQmpstatus returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasRunningMachine

func (o *GetVMs200ResponseDataInner) HasRunningMachine() bool

HasRunningMachine returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasRunningQemu

func (o *GetVMs200ResponseDataInner) HasRunningQemu() bool

HasRunningQemu returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasStatus

func (o *GetVMs200ResponseDataInner) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasTags

func (o *GetVMs200ResponseDataInner) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasUptime

func (o *GetVMs200ResponseDataInner) HasUptime() bool

HasUptime returns a boolean if a field has been set.

func (*GetVMs200ResponseDataInner) HasVmid

func (o *GetVMs200ResponseDataInner) HasVmid() bool

HasVmid returns a boolean if a field has been set.

func (GetVMs200ResponseDataInner) MarshalJSON

func (o GetVMs200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*GetVMs200ResponseDataInner) SetCpus

func (o *GetVMs200ResponseDataInner) SetCpus(v float32)

SetCpus gets a reference to the given float32 and assigns it to the Cpus field.

func (*GetVMs200ResponseDataInner) SetLock

func (o *GetVMs200ResponseDataInner) SetLock(v string)

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*GetVMs200ResponseDataInner) SetMaxdisk

func (o *GetVMs200ResponseDataInner) SetMaxdisk(v int64)

SetMaxdisk gets a reference to the given int64 and assigns it to the Maxdisk field.

func (*GetVMs200ResponseDataInner) SetMaxmem

func (o *GetVMs200ResponseDataInner) SetMaxmem(v int64)

SetMaxmem gets a reference to the given int64 and assigns it to the Maxmem field.

func (*GetVMs200ResponseDataInner) SetName

func (o *GetVMs200ResponseDataInner) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*GetVMs200ResponseDataInner) SetPid

func (o *GetVMs200ResponseDataInner) SetPid(v int64)

SetPid gets a reference to the given int64 and assigns it to the Pid field.

func (*GetVMs200ResponseDataInner) SetQmpstatus

func (o *GetVMs200ResponseDataInner) SetQmpstatus(v string)

SetQmpstatus gets a reference to the given string and assigns it to the Qmpstatus field.

func (*GetVMs200ResponseDataInner) SetRunningMachine

func (o *GetVMs200ResponseDataInner) SetRunningMachine(v string)

SetRunningMachine gets a reference to the given string and assigns it to the RunningMachine field.

func (*GetVMs200ResponseDataInner) SetRunningQemu

func (o *GetVMs200ResponseDataInner) SetRunningQemu(v string)

SetRunningQemu gets a reference to the given string and assigns it to the RunningQemu field.

func (*GetVMs200ResponseDataInner) SetStatus

func (o *GetVMs200ResponseDataInner) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetVMs200ResponseDataInner) SetTags

func (o *GetVMs200ResponseDataInner) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*GetVMs200ResponseDataInner) SetUptime

func (o *GetVMs200ResponseDataInner) SetUptime(v int64)

SetUptime gets a reference to the given int64 and assigns it to the Uptime field.

func (*GetVMs200ResponseDataInner) SetVmid

func (o *GetVMs200ResponseDataInner) SetVmid(v int64)

SetVmid gets a reference to the given int64 and assigns it to the Vmid field.

func (GetVMs200ResponseDataInner) ToMap

func (o GetVMs200ResponseDataInner) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NodesAPI added in v1.0.9

type NodesAPI interface {

	/*
		CreateContainer createContainer

		Create or restore a container.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@return ApiCreateContainerRequest
	*/
	CreateContainer(ctx context.Context, node string) ApiCreateContainerRequest

	// CreateContainerExecute executes the request
	//  @return CreateVM200Response
	CreateContainerExecute(r ApiCreateContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		CreateContainerSnapshot createContainerSnapshot

		Snapshot a container.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiCreateContainerSnapshotRequest
	*/
	CreateContainerSnapshot(ctx context.Context, node string, vmid int64) ApiCreateContainerSnapshotRequest

	// CreateContainerSnapshotExecute executes the request
	//  @return TaskStartResponse
	CreateContainerSnapshotExecute(r ApiCreateContainerSnapshotRequest) (*TaskStartResponse, *http.Response, error)

	/*
		CreateNodesSingleStorageSingleContent createNodesSingleStorageSingleContent

		Allocate disk images.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param storage The storage identifier.
		@return ApiCreateNodesSingleStorageSingleContentRequest
	*/
	CreateNodesSingleStorageSingleContent(ctx context.Context, node string, storage string) ApiCreateNodesSingleStorageSingleContentRequest

	// CreateNodesSingleStorageSingleContentExecute executes the request
	//  @return CreateNodesSingleStorageSingleContent200Response
	CreateNodesSingleStorageSingleContentExecute(r ApiCreateNodesSingleStorageSingleContentRequest) (*CreateNodesSingleStorageSingleContent200Response, *http.Response, error)

	/*
		CreateVM createVM

		Create or restore a virtual machine.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@return ApiCreateVMRequest
	*/
	CreateVM(ctx context.Context, node string) ApiCreateVMRequest

	// CreateVMExecute executes the request
	//  @return CreateVM200Response
	CreateVMExecute(r ApiCreateVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		CreateVMSnapshot createVMSnapshot

		Snapshot a VM.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiCreateVMSnapshotRequest
	*/
	CreateVMSnapshot(ctx context.Context, node string, vmid int64) ApiCreateVMSnapshotRequest

	// CreateVMSnapshotExecute executes the request
	//  @return TaskStartResponse
	CreateVMSnapshotExecute(r ApiCreateVMSnapshotRequest) (*TaskStartResponse, *http.Response, error)

	/*
		DeleteContainer deleteContainer

		Destroy the container (also delete all uses files).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiDeleteContainerRequest
	*/
	DeleteContainer(ctx context.Context, node string, vmid int64) ApiDeleteContainerRequest

	// DeleteContainerExecute executes the request
	//  @return CreateVM200Response
	DeleteContainerExecute(r ApiDeleteContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		DeleteContainerSnapshot deleteContainerSnapshot

		Delete a LXC snapshot.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiDeleteContainerSnapshotRequest
	*/
	DeleteContainerSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiDeleteContainerSnapshotRequest

	// DeleteContainerSnapshotExecute executes the request
	//  @return TaskStartResponse
	DeleteContainerSnapshotExecute(r ApiDeleteContainerSnapshotRequest) (*TaskStartResponse, *http.Response, error)

	/*
		DeleteVM deleteVM

		Destroy the VM and  all used/owned volumes. Removes any VM specific permissions and firewall rules

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiDeleteVMRequest
	*/
	DeleteVM(ctx context.Context, node string, vmid int64) ApiDeleteVMRequest

	// DeleteVMExecute executes the request
	//  @return CreateVM200Response
	DeleteVMExecute(r ApiDeleteVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		DeleteVMSnapshot deleteVMSnapshot

		Delete a VM snapshot.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiDeleteVMSnapshotRequest
	*/
	DeleteVMSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiDeleteVMSnapshotRequest

	// DeleteVMSnapshotExecute executes the request
	//  @return TaskStartResponse
	DeleteVMSnapshotExecute(r ApiDeleteVMSnapshotRequest) (*TaskStartResponse, *http.Response, error)

	/*
		GetContainer getContainer

		Directory index

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetContainerRequest
	*/
	GetContainer(ctx context.Context, node string, vmid int64) ApiGetContainerRequest

	// GetContainerExecute executes the request
	//  @return GetVM200Response
	GetContainerExecute(r ApiGetContainerRequest) (*GetVM200Response, *http.Response, error)

	/*
		GetContainerConfig getContainerConfig

		Get container configuration.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetContainerConfigRequest
	*/
	GetContainerConfig(ctx context.Context, node string, vmid int64) ApiGetContainerConfigRequest

	// GetContainerConfigExecute executes the request
	//  @return GetContainerConfig200Response
	GetContainerConfigExecute(r ApiGetContainerConfigRequest) (*GetContainerConfig200Response, *http.Response, error)

	/*
		GetContainerConfigPending getContainerConfigPending

		Get container configuration, including pending changes.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetContainerConfigPendingRequest
	*/
	GetContainerConfigPending(ctx context.Context, node string, vmid int64) ApiGetContainerConfigPendingRequest

	// GetContainerConfigPendingExecute executes the request
	//  @return GetContainerConfigPending200Response
	GetContainerConfigPendingExecute(r ApiGetContainerConfigPendingRequest) (*GetContainerConfigPending200Response, *http.Response, error)

	/*
		GetContainerSnapshot getContainerSnapshot



		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiGetContainerSnapshotRequest
	*/
	GetContainerSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiGetContainerSnapshotRequest

	// GetContainerSnapshotExecute executes the request
	//  @return GetVMSnapshot200Response
	GetContainerSnapshotExecute(r ApiGetContainerSnapshotRequest) (*GetVMSnapshot200Response, *http.Response, error)

	/*
		GetContainerSnapshotConfig getContainerSnapshotConfig

		Get snapshot configuration

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiGetContainerSnapshotConfigRequest
	*/
	GetContainerSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiGetContainerSnapshotConfigRequest

	// GetContainerSnapshotConfigExecute executes the request
	//  @return GetVMSnapshotConfig200Response
	GetContainerSnapshotConfigExecute(r ApiGetContainerSnapshotConfigRequest) (*GetVMSnapshotConfig200Response, *http.Response, error)

	/*
		GetContainerSnapshots getContainerSnapshots

		List all snapshots.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetContainerSnapshotsRequest
	*/
	GetContainerSnapshots(ctx context.Context, node string, vmid int64) ApiGetContainerSnapshotsRequest

	// GetContainerSnapshotsExecute executes the request
	//  @return GetContainerSnapshots200Response
	GetContainerSnapshotsExecute(r ApiGetContainerSnapshotsRequest) (*GetContainerSnapshots200Response, *http.Response, error)

	/*
		GetContainerStatus getContainerStatus

		Directory index

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetContainerStatusRequest
	*/
	GetContainerStatus(ctx context.Context, node string, vmid int64) ApiGetContainerStatusRequest

	// GetContainerStatusExecute executes the request
	//  @return GetVM200Response
	GetContainerStatusExecute(r ApiGetContainerStatusRequest) (*GetVM200Response, *http.Response, error)

	/*
		GetContainers getContainers

		LXC container index (per node).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@return ApiGetContainersRequest
	*/
	GetContainers(ctx context.Context, node string) ApiGetContainersRequest

	// GetContainersExecute executes the request
	//  @return GetContainers200Response
	GetContainersExecute(r ApiGetContainersRequest) (*GetContainers200Response, *http.Response, error)

	/*
		GetCurrentContainerStatus getCurrentContainerStatus

		Get virtual machine status.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetCurrentContainerStatusRequest
	*/
	GetCurrentContainerStatus(ctx context.Context, node string, vmid int64) ApiGetCurrentContainerStatusRequest

	// GetCurrentContainerStatusExecute executes the request
	//  @return GetCurrentContainerStatus200Response
	GetCurrentContainerStatusExecute(r ApiGetCurrentContainerStatusRequest) (*GetCurrentContainerStatus200Response, *http.Response, error)

	/*
		GetCurrentVMStatus getCurrentVMStatus

		Get virtual machine status.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetCurrentVMStatusRequest
	*/
	GetCurrentVMStatus(ctx context.Context, node string, vmid int64) ApiGetCurrentVMStatusRequest

	// GetCurrentVMStatusExecute executes the request
	//  @return GetCurrentVMStatus200Response
	GetCurrentVMStatusExecute(r ApiGetCurrentVMStatusRequest) (*GetCurrentVMStatus200Response, *http.Response, error)

	/*
		GetNodeTask getNodeTask



		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param upid
		@return ApiGetNodeTaskRequest
	*/
	GetNodeTask(ctx context.Context, node string, upid string) ApiGetNodeTaskRequest

	// GetNodeTaskExecute executes the request
	//  @return GetVMSnapshot200Response
	GetNodeTaskExecute(r ApiGetNodeTaskRequest) (*GetVMSnapshot200Response, *http.Response, error)

	/*
		GetNodeTaskLog getNodeTaskLog

		Read task log.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param upid The task's unique ID.
		@return ApiGetNodeTaskLogRequest
	*/
	GetNodeTaskLog(ctx context.Context, node string, upid string) ApiGetNodeTaskLogRequest

	// GetNodeTaskLogExecute executes the request
	//  @return GetNodeTaskLog200Response
	GetNodeTaskLogExecute(r ApiGetNodeTaskLogRequest) (*GetNodeTaskLog200Response, *http.Response, error)

	/*
		GetNodeTaskStatus getNodeTaskStatus

		Read task status.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param upid The task's unique ID.
		@return ApiGetNodeTaskStatusRequest
	*/
	GetNodeTaskStatus(ctx context.Context, node string, upid string) ApiGetNodeTaskStatusRequest

	// GetNodeTaskStatusExecute executes the request
	//  @return GetNodeTaskStatus200Response
	GetNodeTaskStatusExecute(r ApiGetNodeTaskStatusRequest) (*GetNodeTaskStatus200Response, *http.Response, error)

	/*
		GetNodeTasks getNodeTasks

		Read task list for one node (finished tasks).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@return ApiGetNodeTasksRequest
	*/
	GetNodeTasks(ctx context.Context, node string) ApiGetNodeTasksRequest

	// GetNodeTasksExecute executes the request
	//  @return GetNodeTasks200Response
	GetNodeTasksExecute(r ApiGetNodeTasksRequest) (*GetNodeTasks200Response, *http.Response, error)

	/*
		GetStorageContent getStorageContent

		List storage content.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param storage The storage identifier.
		@return ApiGetStorageContentRequest
	*/
	GetStorageContent(ctx context.Context, node string, storage string) ApiGetStorageContentRequest

	// GetStorageContentExecute executes the request
	//  @return GetStorageContent200Response
	GetStorageContentExecute(r ApiGetStorageContentRequest) (*GetStorageContent200Response, *http.Response, error)

	/*
		GetStorages getStorages

		Get status for all datastores.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@return ApiGetStoragesRequest
	*/
	GetStorages(ctx context.Context, node string) ApiGetStoragesRequest

	// GetStoragesExecute executes the request
	//  @return GetStorages200Response
	GetStoragesExecute(r ApiGetStoragesRequest) (*GetStorages200Response, *http.Response, error)

	/*
		GetVM getVM

		Directory index

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetVMRequest
	*/
	GetVM(ctx context.Context, node string, vmid int64) ApiGetVMRequest

	// GetVMExecute executes the request
	//  @return GetVM200Response
	GetVMExecute(r ApiGetVMRequest) (*GetVM200Response, *http.Response, error)

	/*
		GetVMConfig getVMConfig

		Get the virtual machine configuration with pending configuration changes applied. Set the 'current' parameter to get the current configuration instead.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetVMConfigRequest
	*/
	GetVMConfig(ctx context.Context, node string, vmid int64) ApiGetVMConfigRequest

	// GetVMConfigExecute executes the request
	//  @return GetVMConfig200Response
	GetVMConfigExecute(r ApiGetVMConfigRequest) (*GetVMConfig200Response, *http.Response, error)

	/*
		GetVMConfigPending getVMConfigPending

		Get the virtual machine configuration with both current and pending values.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetVMConfigPendingRequest
	*/
	GetVMConfigPending(ctx context.Context, node string, vmid int64) ApiGetVMConfigPendingRequest

	// GetVMConfigPendingExecute executes the request
	//  @return GetVMConfigPending200Response
	GetVMConfigPendingExecute(r ApiGetVMConfigPendingRequest) (*GetVMConfigPending200Response, *http.Response, error)

	/*
		GetVMSnapshot getVMSnapshot



		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiGetVMSnapshotRequest
	*/
	GetVMSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiGetVMSnapshotRequest

	// GetVMSnapshotExecute executes the request
	//  @return GetVMSnapshot200Response
	GetVMSnapshotExecute(r ApiGetVMSnapshotRequest) (*GetVMSnapshot200Response, *http.Response, error)

	/*
		GetVMSnapshotConfig getVMSnapshotConfig

		Get snapshot configuration

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiGetVMSnapshotConfigRequest
	*/
	GetVMSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiGetVMSnapshotConfigRequest

	// GetVMSnapshotConfigExecute executes the request
	//  @return GetVMSnapshotConfig200Response
	GetVMSnapshotConfigExecute(r ApiGetVMSnapshotConfigRequest) (*GetVMSnapshotConfig200Response, *http.Response, error)

	/*
		GetVMSnapshots getVMSnapshots

		List all snapshots.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiGetVMSnapshotsRequest
	*/
	GetVMSnapshots(ctx context.Context, node string, vmid int64) ApiGetVMSnapshotsRequest

	// GetVMSnapshotsExecute executes the request
	//  @return GetVMSnapshots200Response
	GetVMSnapshotsExecute(r ApiGetVMSnapshotsRequest) (*GetVMSnapshots200Response, *http.Response, error)

	/*
		GetVMs getVMs

		Virtual machine index (per node).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@return ApiGetVMsRequest
	*/
	GetVMs(ctx context.Context, node string) ApiGetVMsRequest

	// GetVMsExecute executes the request
	//  @return GetVMs200Response
	GetVMsExecute(r ApiGetVMsRequest) (*GetVMs200Response, *http.Response, error)

	/*
		RebootContainer rebootContainer

		Reboot the container by shutting it down, and starting it again. Applies pending changes.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiRebootContainerRequest
	*/
	RebootContainer(ctx context.Context, node string, vmid int64) ApiRebootContainerRequest

	// RebootContainerExecute executes the request
	//  @return CreateVM200Response
	RebootContainerExecute(r ApiRebootContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		RebootVM rebootVM

		Reboot the VM by shutting it down, and starting it again. Applies pending changes.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiRebootVMRequest
	*/
	RebootVM(ctx context.Context, node string, vmid int64) ApiRebootVMRequest

	// RebootVMExecute executes the request
	//  @return CreateVM200Response
	RebootVMExecute(r ApiRebootVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		ResizeContainerDisk resizeContainerDisk

		Resize a container mount point.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiResizeContainerDiskRequest
	*/
	ResizeContainerDisk(ctx context.Context, node string, vmid int64) ApiResizeContainerDiskRequest

	// ResizeContainerDiskExecute executes the request
	//  @return TaskStartResponse
	ResizeContainerDiskExecute(r ApiResizeContainerDiskRequest) (*TaskStartResponse, *http.Response, error)

	/*
		ResizeVMDisk resizeVMDisk

		Extend volume size.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiResizeVMDiskRequest
	*/
	ResizeVMDisk(ctx context.Context, node string, vmid int64) ApiResizeVMDiskRequest

	// ResizeVMDiskExecute executes the request
	//  @return TaskStartResponse
	ResizeVMDiskExecute(r ApiResizeVMDiskRequest) (*TaskStartResponse, *http.Response, error)

	/*
		ResumeContainer resumeContainer

		Resume the container.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiResumeContainerRequest
	*/
	ResumeContainer(ctx context.Context, node string, vmid int64) ApiResumeContainerRequest

	// ResumeContainerExecute executes the request
	//  @return CreateVM200Response
	ResumeContainerExecute(r ApiResumeContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		ResumeVM resumeVM

		Resume virtual machine.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiResumeVMRequest
	*/
	ResumeVM(ctx context.Context, node string, vmid int64) ApiResumeVMRequest

	// ResumeVMExecute executes the request
	//  @return CreateVM200Response
	ResumeVMExecute(r ApiResumeVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		RollbackContainerSnapshot rollbackContainerSnapshot

		Rollback LXC state to specified snapshot.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiRollbackContainerSnapshotRequest
	*/
	RollbackContainerSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiRollbackContainerSnapshotRequest

	// RollbackContainerSnapshotExecute executes the request
	//  @return TaskStartResponse
	RollbackContainerSnapshotExecute(r ApiRollbackContainerSnapshotRequest) (*TaskStartResponse, *http.Response, error)

	/*
		RollbackVMSnapshot rollbackVMSnapshot

		Rollback VM state to specified snapshot.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiRollbackVMSnapshotRequest
	*/
	RollbackVMSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiRollbackVMSnapshotRequest

	// RollbackVMSnapshotExecute executes the request
	//  @return TaskStartResponse
	RollbackVMSnapshotExecute(r ApiRollbackVMSnapshotRequest) (*TaskStartResponse, *http.Response, error)

	/*
		ShutdownContainer shutdownContainer

		Shutdown the container. This will trigger a clean shutdown of the container, see lxc-stop(1) for details.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiShutdownContainerRequest
	*/
	ShutdownContainer(ctx context.Context, node string, vmid int64) ApiShutdownContainerRequest

	// ShutdownContainerExecute executes the request
	//  @return CreateVM200Response
	ShutdownContainerExecute(r ApiShutdownContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		ShutdownVM shutdownVM

		Shutdown virtual machine. This is similar to pressing the power button on a physical machine.This will send an ACPI event for the guest OS, which should then proceed to a clean shutdown.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiShutdownVMRequest
	*/
	ShutdownVM(ctx context.Context, node string, vmid int64) ApiShutdownVMRequest

	// ShutdownVMExecute executes the request
	//  @return CreateVM200Response
	ShutdownVMExecute(r ApiShutdownVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		StartContainer startContainer

		Start the container.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiStartContainerRequest
	*/
	StartContainer(ctx context.Context, node string, vmid int64) ApiStartContainerRequest

	// StartContainerExecute executes the request
	//  @return CreateVM200Response
	StartContainerExecute(r ApiStartContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		StartVM startVM

		Start virtual machine.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiStartVMRequest
	*/
	StartVM(ctx context.Context, node string, vmid int64) ApiStartVMRequest

	// StartVMExecute executes the request
	//  @return CreateVM200Response
	StartVMExecute(r ApiStartVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		StopContainer stopContainer

		Stop the container. This will abruptly stop all processes running in the container.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiStopContainerRequest
	*/
	StopContainer(ctx context.Context, node string, vmid int64) ApiStopContainerRequest

	// StopContainerExecute executes the request
	//  @return CreateVM200Response
	StopContainerExecute(r ApiStopContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		StopNodeTask stopNodeTask

		Stop a task.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param upid
		@return ApiStopNodeTaskRequest
	*/
	StopNodeTask(ctx context.Context, node string, upid string) ApiStopNodeTaskRequest

	// StopNodeTaskExecute executes the request
	//  @return CreateVM200Response
	StopNodeTaskExecute(r ApiStopNodeTaskRequest) (*CreateVM200Response, *http.Response, error)

	/*
		StopVM stopVM

		Stop virtual machine. The qemu process will exit immediately. Thisis akin to pulling the power plug of a running computer and may damage the VM data

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiStopVMRequest
	*/
	StopVM(ctx context.Context, node string, vmid int64) ApiStopVMRequest

	// StopVMExecute executes the request
	//  @return CreateVM200Response
	StopVMExecute(r ApiStopVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		SuspendContainer suspendContainer

		Suspend the container. This is experimental.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiSuspendContainerRequest
	*/
	SuspendContainer(ctx context.Context, node string, vmid int64) ApiSuspendContainerRequest

	// SuspendContainerExecute executes the request
	//  @return CreateVM200Response
	SuspendContainerExecute(r ApiSuspendContainerRequest) (*CreateVM200Response, *http.Response, error)

	/*
		SuspendVM suspendVM

		Suspend virtual machine.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiSuspendVMRequest
	*/
	SuspendVM(ctx context.Context, node string, vmid int64) ApiSuspendVMRequest

	// SuspendVMExecute executes the request
	//  @return CreateVM200Response
	SuspendVMExecute(r ApiSuspendVMRequest) (*CreateVM200Response, *http.Response, error)

	/*
		UpdateContainerConfigSync updateContainerConfigSync

		Set container options.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiUpdateContainerConfigSyncRequest
	*/
	UpdateContainerConfigSync(ctx context.Context, node string, vmid int64) ApiUpdateContainerConfigSyncRequest

	// UpdateContainerConfigSyncExecute executes the request
	//  @return CreateVM200Response
	UpdateContainerConfigSyncExecute(r ApiUpdateContainerConfigSyncRequest) (*CreateVM200Response, *http.Response, error)

	/*
		UpdateContainerSnapshotConfig updateContainerSnapshotConfig

		Update snapshot metadata.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiUpdateContainerSnapshotConfigRequest
	*/
	UpdateContainerSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiUpdateContainerSnapshotConfigRequest

	// UpdateContainerSnapshotConfigExecute executes the request
	//  @return CreateVM200Response
	UpdateContainerSnapshotConfigExecute(r ApiUpdateContainerSnapshotConfigRequest) (*CreateVM200Response, *http.Response, error)

	/*
		UpdateVMConfig updateVMConfig

		Set virtual machine options (asynchrounous API).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiUpdateVMConfigRequest
	*/
	UpdateVMConfig(ctx context.Context, node string, vmid int64) ApiUpdateVMConfigRequest

	// UpdateVMConfigExecute executes the request
	//  @return CreateVM200Response
	UpdateVMConfigExecute(r ApiUpdateVMConfigRequest) (*CreateVM200Response, *http.Response, error)

	/*
		UpdateVMConfigSync updateVMConfigSync

		Set virtual machine options (synchrounous API) - You should consider using the POST method instead for any actions involving hotplug or storage allocation.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@return ApiUpdateVMConfigSyncRequest
	*/
	UpdateVMConfigSync(ctx context.Context, node string, vmid int64) ApiUpdateVMConfigSyncRequest

	// UpdateVMConfigSyncExecute executes the request
	//  @return CreateVM200Response
	UpdateVMConfigSyncExecute(r ApiUpdateVMConfigSyncRequest) (*CreateVM200Response, *http.Response, error)

	/*
		UpdateVMSnapshotConfig updateVMSnapshotConfig

		Update snapshot metadata.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param vmid The (unique) ID of the VM.
		@param snapname The name of the snapshot.
		@return ApiUpdateVMSnapshotConfigRequest
	*/
	UpdateVMSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiUpdateVMSnapshotConfigRequest

	// UpdateVMSnapshotConfigExecute executes the request
	//  @return CreateVM200Response
	UpdateVMSnapshotConfigExecute(r ApiUpdateVMSnapshotConfigRequest) (*CreateVM200Response, *http.Response, error)

	/*
		UploadFile uploadFile

		Upload templates and ISO images.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param node The cluster node name.
		@param storage The storage identifier.
		@return ApiUploadFileRequest
	*/
	UploadFile(ctx context.Context, node string, storage string) ApiUploadFileRequest

	// UploadFileExecute executes the request
	//  @return CreateVM200Response
	UploadFileExecute(r ApiUploadFileRequest) (*CreateVM200Response, *http.Response, error)
}

type NodesAPIService added in v1.0.9

type NodesAPIService service

NodesAPIService NodesAPI service

func (*NodesAPIService) CreateContainer added in v1.0.9

func (a *NodesAPIService) CreateContainer(ctx context.Context, node string) ApiCreateContainerRequest

CreateContainer createContainer

Create or restore a container.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@return ApiCreateContainerRequest

func (*NodesAPIService) CreateContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) CreateContainerSnapshot added in v1.0.9

func (a *NodesAPIService) CreateContainerSnapshot(ctx context.Context, node string, vmid int64) ApiCreateContainerSnapshotRequest

CreateContainerSnapshot createContainerSnapshot

Snapshot a container.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiCreateContainerSnapshotRequest

func (*NodesAPIService) CreateContainerSnapshotExecute added in v1.0.9

func (a *NodesAPIService) CreateContainerSnapshotExecute(r ApiCreateContainerSnapshotRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) CreateNodesSingleStorageSingleContent added in v1.0.9

func (a *NodesAPIService) CreateNodesSingleStorageSingleContent(ctx context.Context, node string, storage string) ApiCreateNodesSingleStorageSingleContentRequest

CreateNodesSingleStorageSingleContent createNodesSingleStorageSingleContent

Allocate disk images.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param storage The storage identifier.
@return ApiCreateNodesSingleStorageSingleContentRequest

func (*NodesAPIService) CreateNodesSingleStorageSingleContentExecute added in v1.0.9

Execute executes the request

@return CreateNodesSingleStorageSingleContent200Response

func (*NodesAPIService) CreateVM added in v1.0.9

func (a *NodesAPIService) CreateVM(ctx context.Context, node string) ApiCreateVMRequest

CreateVM createVM

Create or restore a virtual machine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@return ApiCreateVMRequest

func (*NodesAPIService) CreateVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) CreateVMSnapshot added in v1.0.9

func (a *NodesAPIService) CreateVMSnapshot(ctx context.Context, node string, vmid int64) ApiCreateVMSnapshotRequest

CreateVMSnapshot createVMSnapshot

Snapshot a VM.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiCreateVMSnapshotRequest

func (*NodesAPIService) CreateVMSnapshotExecute added in v1.0.9

func (a *NodesAPIService) CreateVMSnapshotExecute(r ApiCreateVMSnapshotRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) DeleteContainer added in v1.0.9

func (a *NodesAPIService) DeleteContainer(ctx context.Context, node string, vmid int64) ApiDeleteContainerRequest

DeleteContainer deleteContainer

Destroy the container (also delete all uses files).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiDeleteContainerRequest

func (*NodesAPIService) DeleteContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) DeleteContainerSnapshot added in v1.0.9

func (a *NodesAPIService) DeleteContainerSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiDeleteContainerSnapshotRequest

DeleteContainerSnapshot deleteContainerSnapshot

Delete a LXC snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiDeleteContainerSnapshotRequest

func (*NodesAPIService) DeleteContainerSnapshotExecute added in v1.0.9

func (a *NodesAPIService) DeleteContainerSnapshotExecute(r ApiDeleteContainerSnapshotRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) DeleteVM added in v1.0.9

func (a *NodesAPIService) DeleteVM(ctx context.Context, node string, vmid int64) ApiDeleteVMRequest

DeleteVM deleteVM

Destroy the VM and all used/owned volumes. Removes any VM specific permissions and firewall rules

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiDeleteVMRequest

func (*NodesAPIService) DeleteVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) DeleteVMSnapshot added in v1.0.9

func (a *NodesAPIService) DeleteVMSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiDeleteVMSnapshotRequest

DeleteVMSnapshot deleteVMSnapshot

Delete a VM snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiDeleteVMSnapshotRequest

func (*NodesAPIService) DeleteVMSnapshotExecute added in v1.0.9

func (a *NodesAPIService) DeleteVMSnapshotExecute(r ApiDeleteVMSnapshotRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) GetContainer added in v1.0.9

func (a *NodesAPIService) GetContainer(ctx context.Context, node string, vmid int64) ApiGetContainerRequest

GetContainer getContainer

Directory index

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetContainerRequest

func (*NodesAPIService) GetContainerConfig added in v1.0.9

func (a *NodesAPIService) GetContainerConfig(ctx context.Context, node string, vmid int64) ApiGetContainerConfigRequest

GetContainerConfig getContainerConfig

Get container configuration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetContainerConfigRequest

func (*NodesAPIService) GetContainerConfigExecute added in v1.0.9

Execute executes the request

@return GetContainerConfig200Response

func (*NodesAPIService) GetContainerConfigPending added in v1.0.9

func (a *NodesAPIService) GetContainerConfigPending(ctx context.Context, node string, vmid int64) ApiGetContainerConfigPendingRequest

GetContainerConfigPending getContainerConfigPending

Get container configuration, including pending changes.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetContainerConfigPendingRequest

func (*NodesAPIService) GetContainerConfigPendingExecute added in v1.0.9

Execute executes the request

@return GetContainerConfigPending200Response

func (*NodesAPIService) GetContainerExecute added in v1.0.9

Execute executes the request

@return GetVM200Response

func (*NodesAPIService) GetContainerSnapshot added in v1.0.9

func (a *NodesAPIService) GetContainerSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiGetContainerSnapshotRequest

GetContainerSnapshot getContainerSnapshot

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiGetContainerSnapshotRequest

func (*NodesAPIService) GetContainerSnapshotConfig added in v1.0.9

func (a *NodesAPIService) GetContainerSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiGetContainerSnapshotConfigRequest

GetContainerSnapshotConfig getContainerSnapshotConfig

Get snapshot configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiGetContainerSnapshotConfigRequest

func (*NodesAPIService) GetContainerSnapshotConfigExecute added in v1.0.9

Execute executes the request

@return GetVMSnapshotConfig200Response

func (*NodesAPIService) GetContainerSnapshotExecute added in v1.0.9

Execute executes the request

@return GetVMSnapshot200Response

func (*NodesAPIService) GetContainerSnapshots added in v1.0.9

func (a *NodesAPIService) GetContainerSnapshots(ctx context.Context, node string, vmid int64) ApiGetContainerSnapshotsRequest

GetContainerSnapshots getContainerSnapshots

List all snapshots.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetContainerSnapshotsRequest

func (*NodesAPIService) GetContainerSnapshotsExecute added in v1.0.9

Execute executes the request

@return GetContainerSnapshots200Response

func (*NodesAPIService) GetContainerStatus added in v1.0.9

func (a *NodesAPIService) GetContainerStatus(ctx context.Context, node string, vmid int64) ApiGetContainerStatusRequest

GetContainerStatus getContainerStatus

Directory index

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetContainerStatusRequest

func (*NodesAPIService) GetContainerStatusExecute added in v1.0.9

func (a *NodesAPIService) GetContainerStatusExecute(r ApiGetContainerStatusRequest) (*GetVM200Response, *http.Response, error)

Execute executes the request

@return GetVM200Response

func (*NodesAPIService) GetContainers added in v1.0.9

func (a *NodesAPIService) GetContainers(ctx context.Context, node string) ApiGetContainersRequest

GetContainers getContainers

LXC container index (per node).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@return ApiGetContainersRequest

func (*NodesAPIService) GetContainersExecute added in v1.0.9

Execute executes the request

@return GetContainers200Response

func (*NodesAPIService) GetCurrentContainerStatus added in v1.0.9

func (a *NodesAPIService) GetCurrentContainerStatus(ctx context.Context, node string, vmid int64) ApiGetCurrentContainerStatusRequest

GetCurrentContainerStatus getCurrentContainerStatus

Get virtual machine status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetCurrentContainerStatusRequest

func (*NodesAPIService) GetCurrentContainerStatusExecute added in v1.0.9

Execute executes the request

@return GetCurrentContainerStatus200Response

func (*NodesAPIService) GetCurrentVMStatus added in v1.0.9

func (a *NodesAPIService) GetCurrentVMStatus(ctx context.Context, node string, vmid int64) ApiGetCurrentVMStatusRequest

GetCurrentVMStatus getCurrentVMStatus

Get virtual machine status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetCurrentVMStatusRequest

func (*NodesAPIService) GetCurrentVMStatusExecute added in v1.0.9

Execute executes the request

@return GetCurrentVMStatus200Response

func (*NodesAPIService) GetNodeTask added in v1.0.9

func (a *NodesAPIService) GetNodeTask(ctx context.Context, node string, upid string) ApiGetNodeTaskRequest

GetNodeTask getNodeTask

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param upid
@return ApiGetNodeTaskRequest

func (*NodesAPIService) GetNodeTaskExecute added in v1.0.9

Execute executes the request

@return GetVMSnapshot200Response

func (*NodesAPIService) GetNodeTaskLog added in v1.0.9

func (a *NodesAPIService) GetNodeTaskLog(ctx context.Context, node string, upid string) ApiGetNodeTaskLogRequest

GetNodeTaskLog getNodeTaskLog

Read task log.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param upid The task's unique ID.
@return ApiGetNodeTaskLogRequest

func (*NodesAPIService) GetNodeTaskLogExecute added in v1.0.9

Execute executes the request

@return GetNodeTaskLog200Response

func (*NodesAPIService) GetNodeTaskStatus added in v1.0.9

func (a *NodesAPIService) GetNodeTaskStatus(ctx context.Context, node string, upid string) ApiGetNodeTaskStatusRequest

GetNodeTaskStatus getNodeTaskStatus

Read task status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param upid The task's unique ID.
@return ApiGetNodeTaskStatusRequest

func (*NodesAPIService) GetNodeTaskStatusExecute added in v1.0.9

Execute executes the request

@return GetNodeTaskStatus200Response

func (*NodesAPIService) GetNodeTasks added in v1.0.9

func (a *NodesAPIService) GetNodeTasks(ctx context.Context, node string) ApiGetNodeTasksRequest

GetNodeTasks getNodeTasks

Read task list for one node (finished tasks).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@return ApiGetNodeTasksRequest

func (*NodesAPIService) GetNodeTasksExecute added in v1.0.9

Execute executes the request

@return GetNodeTasks200Response

func (*NodesAPIService) GetStorageContent added in v1.0.9

func (a *NodesAPIService) GetStorageContent(ctx context.Context, node string, storage string) ApiGetStorageContentRequest

GetStorageContent getStorageContent

List storage content.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param storage The storage identifier.
@return ApiGetStorageContentRequest

func (*NodesAPIService) GetStorageContentExecute added in v1.0.9

Execute executes the request

@return GetStorageContent200Response

func (*NodesAPIService) GetStorages added in v1.0.9

func (a *NodesAPIService) GetStorages(ctx context.Context, node string) ApiGetStoragesRequest

GetStorages getStorages

Get status for all datastores.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@return ApiGetStoragesRequest

func (*NodesAPIService) GetStoragesExecute added in v1.0.9

Execute executes the request

@return GetStorages200Response

func (*NodesAPIService) GetVM added in v1.0.9

func (a *NodesAPIService) GetVM(ctx context.Context, node string, vmid int64) ApiGetVMRequest

GetVM getVM

Directory index

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetVMRequest

func (*NodesAPIService) GetVMConfig added in v1.0.9

func (a *NodesAPIService) GetVMConfig(ctx context.Context, node string, vmid int64) ApiGetVMConfigRequest

GetVMConfig getVMConfig

Get the virtual machine configuration with pending configuration changes applied. Set the 'current' parameter to get the current configuration instead.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetVMConfigRequest

func (*NodesAPIService) GetVMConfigExecute added in v1.0.9

Execute executes the request

@return GetVMConfig200Response

func (*NodesAPIService) GetVMConfigPending added in v1.0.9

func (a *NodesAPIService) GetVMConfigPending(ctx context.Context, node string, vmid int64) ApiGetVMConfigPendingRequest

GetVMConfigPending getVMConfigPending

Get the virtual machine configuration with both current and pending values.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetVMConfigPendingRequest

func (*NodesAPIService) GetVMConfigPendingExecute added in v1.0.9

Execute executes the request

@return GetVMConfigPending200Response

func (*NodesAPIService) GetVMExecute added in v1.0.9

Execute executes the request

@return GetVM200Response

func (*NodesAPIService) GetVMSnapshot added in v1.0.9

func (a *NodesAPIService) GetVMSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiGetVMSnapshotRequest

GetVMSnapshot getVMSnapshot

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiGetVMSnapshotRequest

func (*NodesAPIService) GetVMSnapshotConfig added in v1.0.9

func (a *NodesAPIService) GetVMSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiGetVMSnapshotConfigRequest

GetVMSnapshotConfig getVMSnapshotConfig

Get snapshot configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiGetVMSnapshotConfigRequest

func (*NodesAPIService) GetVMSnapshotConfigExecute added in v1.0.9

Execute executes the request

@return GetVMSnapshotConfig200Response

func (*NodesAPIService) GetVMSnapshotExecute added in v1.0.9

Execute executes the request

@return GetVMSnapshot200Response

func (*NodesAPIService) GetVMSnapshots added in v1.0.9

func (a *NodesAPIService) GetVMSnapshots(ctx context.Context, node string, vmid int64) ApiGetVMSnapshotsRequest

GetVMSnapshots getVMSnapshots

List all snapshots.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiGetVMSnapshotsRequest

func (*NodesAPIService) GetVMSnapshotsExecute added in v1.0.9

Execute executes the request

@return GetVMSnapshots200Response

func (*NodesAPIService) GetVMs added in v1.0.9

func (a *NodesAPIService) GetVMs(ctx context.Context, node string) ApiGetVMsRequest

GetVMs getVMs

Virtual machine index (per node).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@return ApiGetVMsRequest

func (*NodesAPIService) GetVMsExecute added in v1.0.9

Execute executes the request

@return GetVMs200Response

func (*NodesAPIService) RebootContainer added in v1.0.9

func (a *NodesAPIService) RebootContainer(ctx context.Context, node string, vmid int64) ApiRebootContainerRequest

RebootContainer rebootContainer

Reboot the container by shutting it down, and starting it again. Applies pending changes.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiRebootContainerRequest

func (*NodesAPIService) RebootContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) RebootVM added in v1.0.9

func (a *NodesAPIService) RebootVM(ctx context.Context, node string, vmid int64) ApiRebootVMRequest

RebootVM rebootVM

Reboot the VM by shutting it down, and starting it again. Applies pending changes.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiRebootVMRequest

func (*NodesAPIService) RebootVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) ResizeContainerDisk added in v1.0.9

func (a *NodesAPIService) ResizeContainerDisk(ctx context.Context, node string, vmid int64) ApiResizeContainerDiskRequest

ResizeContainerDisk resizeContainerDisk

Resize a container mount point.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiResizeContainerDiskRequest

func (*NodesAPIService) ResizeContainerDiskExecute added in v1.0.9

func (a *NodesAPIService) ResizeContainerDiskExecute(r ApiResizeContainerDiskRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) ResizeVMDisk added in v1.0.9

func (a *NodesAPIService) ResizeVMDisk(ctx context.Context, node string, vmid int64) ApiResizeVMDiskRequest

ResizeVMDisk resizeVMDisk

Extend volume size.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiResizeVMDiskRequest

func (*NodesAPIService) ResizeVMDiskExecute added in v1.0.9

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) ResumeContainer added in v1.0.9

func (a *NodesAPIService) ResumeContainer(ctx context.Context, node string, vmid int64) ApiResumeContainerRequest

ResumeContainer resumeContainer

Resume the container.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiResumeContainerRequest

func (*NodesAPIService) ResumeContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) ResumeVM added in v1.0.9

func (a *NodesAPIService) ResumeVM(ctx context.Context, node string, vmid int64) ApiResumeVMRequest

ResumeVM resumeVM

Resume virtual machine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiResumeVMRequest

func (*NodesAPIService) ResumeVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) RollbackContainerSnapshot added in v1.0.9

func (a *NodesAPIService) RollbackContainerSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiRollbackContainerSnapshotRequest

RollbackContainerSnapshot rollbackContainerSnapshot

Rollback LXC state to specified snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiRollbackContainerSnapshotRequest

func (*NodesAPIService) RollbackContainerSnapshotExecute added in v1.0.9

func (a *NodesAPIService) RollbackContainerSnapshotExecute(r ApiRollbackContainerSnapshotRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) RollbackVMSnapshot added in v1.0.9

func (a *NodesAPIService) RollbackVMSnapshot(ctx context.Context, node string, vmid int64, snapname string) ApiRollbackVMSnapshotRequest

RollbackVMSnapshot rollbackVMSnapshot

Rollback VM state to specified snapshot.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiRollbackVMSnapshotRequest

func (*NodesAPIService) RollbackVMSnapshotExecute added in v1.0.9

func (a *NodesAPIService) RollbackVMSnapshotExecute(r ApiRollbackVMSnapshotRequest) (*TaskStartResponse, *http.Response, error)

Execute executes the request

@return TaskStartResponse

func (*NodesAPIService) ShutdownContainer added in v1.0.9

func (a *NodesAPIService) ShutdownContainer(ctx context.Context, node string, vmid int64) ApiShutdownContainerRequest

ShutdownContainer shutdownContainer

Shutdown the container. This will trigger a clean shutdown of the container, see lxc-stop(1) for details.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiShutdownContainerRequest

func (*NodesAPIService) ShutdownContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) ShutdownVM added in v1.0.9

func (a *NodesAPIService) ShutdownVM(ctx context.Context, node string, vmid int64) ApiShutdownVMRequest

ShutdownVM shutdownVM

Shutdown virtual machine. This is similar to pressing the power button on a physical machine.This will send an ACPI event for the guest OS, which should then proceed to a clean shutdown.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiShutdownVMRequest

func (*NodesAPIService) ShutdownVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) StartContainer added in v1.0.9

func (a *NodesAPIService) StartContainer(ctx context.Context, node string, vmid int64) ApiStartContainerRequest

StartContainer startContainer

Start the container.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiStartContainerRequest

func (*NodesAPIService) StartContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) StartVM added in v1.0.9

func (a *NodesAPIService) StartVM(ctx context.Context, node string, vmid int64) ApiStartVMRequest

StartVM startVM

Start virtual machine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiStartVMRequest

func (*NodesAPIService) StartVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) StopContainer added in v1.0.9

func (a *NodesAPIService) StopContainer(ctx context.Context, node string, vmid int64) ApiStopContainerRequest

StopContainer stopContainer

Stop the container. This will abruptly stop all processes running in the container.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiStopContainerRequest

func (*NodesAPIService) StopContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) StopNodeTask added in v1.0.9

func (a *NodesAPIService) StopNodeTask(ctx context.Context, node string, upid string) ApiStopNodeTaskRequest

StopNodeTask stopNodeTask

Stop a task.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param upid
@return ApiStopNodeTaskRequest

func (*NodesAPIService) StopNodeTaskExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) StopVM added in v1.0.9

func (a *NodesAPIService) StopVM(ctx context.Context, node string, vmid int64) ApiStopVMRequest

StopVM stopVM

Stop virtual machine. The qemu process will exit immediately. Thisis akin to pulling the power plug of a running computer and may damage the VM data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiStopVMRequest

func (*NodesAPIService) StopVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) SuspendContainer added in v1.0.9

func (a *NodesAPIService) SuspendContainer(ctx context.Context, node string, vmid int64) ApiSuspendContainerRequest

SuspendContainer suspendContainer

Suspend the container. This is experimental.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiSuspendContainerRequest

func (*NodesAPIService) SuspendContainerExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) SuspendVM added in v1.0.9

func (a *NodesAPIService) SuspendVM(ctx context.Context, node string, vmid int64) ApiSuspendVMRequest

SuspendVM suspendVM

Suspend virtual machine.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiSuspendVMRequest

func (*NodesAPIService) SuspendVMExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) UpdateContainerConfigSync added in v1.0.9

func (a *NodesAPIService) UpdateContainerConfigSync(ctx context.Context, node string, vmid int64) ApiUpdateContainerConfigSyncRequest

UpdateContainerConfigSync updateContainerConfigSync

Set container options.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiUpdateContainerConfigSyncRequest

func (*NodesAPIService) UpdateContainerConfigSyncExecute added in v1.0.9

func (a *NodesAPIService) UpdateContainerConfigSyncExecute(r ApiUpdateContainerConfigSyncRequest) (*CreateVM200Response, *http.Response, error)

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) UpdateContainerSnapshotConfig added in v1.0.9

func (a *NodesAPIService) UpdateContainerSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiUpdateContainerSnapshotConfigRequest

UpdateContainerSnapshotConfig updateContainerSnapshotConfig

Update snapshot metadata.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiUpdateContainerSnapshotConfigRequest

func (*NodesAPIService) UpdateContainerSnapshotConfigExecute added in v1.0.9

func (a *NodesAPIService) UpdateContainerSnapshotConfigExecute(r ApiUpdateContainerSnapshotConfigRequest) (*CreateVM200Response, *http.Response, error)

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) UpdateVMConfig added in v1.0.9

func (a *NodesAPIService) UpdateVMConfig(ctx context.Context, node string, vmid int64) ApiUpdateVMConfigRequest

UpdateVMConfig updateVMConfig

Set virtual machine options (asynchrounous API).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiUpdateVMConfigRequest

func (*NodesAPIService) UpdateVMConfigExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) UpdateVMConfigSync added in v1.0.9

func (a *NodesAPIService) UpdateVMConfigSync(ctx context.Context, node string, vmid int64) ApiUpdateVMConfigSyncRequest

UpdateVMConfigSync updateVMConfigSync

Set virtual machine options (synchrounous API) - You should consider using the POST method instead for any actions involving hotplug or storage allocation.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@return ApiUpdateVMConfigSyncRequest

func (*NodesAPIService) UpdateVMConfigSyncExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) UpdateVMSnapshotConfig added in v1.0.9

func (a *NodesAPIService) UpdateVMSnapshotConfig(ctx context.Context, node string, vmid int64, snapname string) ApiUpdateVMSnapshotConfigRequest

UpdateVMSnapshotConfig updateVMSnapshotConfig

Update snapshot metadata.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param vmid The (unique) ID of the VM.
@param snapname The name of the snapshot.
@return ApiUpdateVMSnapshotConfigRequest

func (*NodesAPIService) UpdateVMSnapshotConfigExecute added in v1.0.9

func (a *NodesAPIService) UpdateVMSnapshotConfigExecute(r ApiUpdateVMSnapshotConfigRequest) (*CreateVM200Response, *http.Response, error)

Execute executes the request

@return CreateVM200Response

func (*NodesAPIService) UploadFile added in v1.0.9

func (a *NodesAPIService) UploadFile(ctx context.Context, node string, storage string) ApiUploadFileRequest

UploadFile uploadFile

Upload templates and ISO images.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param node The cluster node name.
@param storage The storage identifier.
@return ApiUploadFileRequest

func (*NodesAPIService) UploadFileExecute added in v1.0.9

Execute executes the request

@return CreateVM200Response

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCreateAccessTicket200Response

type NullableCreateAccessTicket200Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateAccessTicket200Response) Get

func (NullableCreateAccessTicket200Response) IsSet

func (NullableCreateAccessTicket200Response) MarshalJSON

func (v NullableCreateAccessTicket200Response) MarshalJSON() ([]byte, error)

func (*NullableCreateAccessTicket200Response) Set

func (*NullableCreateAccessTicket200Response) UnmarshalJSON

func (v *NullableCreateAccessTicket200Response) UnmarshalJSON(src []byte) error

func (*NullableCreateAccessTicket200Response) Unset

type NullableCreateAccessTicket200ResponseData

type NullableCreateAccessTicket200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCreateAccessTicket200ResponseData) Get

func (NullableCreateAccessTicket200ResponseData) IsSet

func (NullableCreateAccessTicket200ResponseData) MarshalJSON

func (*NullableCreateAccessTicket200ResponseData) Set

func (*NullableCreateAccessTicket200ResponseData) UnmarshalJSON

func (v *NullableCreateAccessTicket200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableCreateAccessTicket200ResponseData) Unset

type NullableCreateAccessTicketRequest

type NullableCreateAccessTicketRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateAccessTicketRequest) Get

func (NullableCreateAccessTicketRequest) IsSet

func (NullableCreateAccessTicketRequest) MarshalJSON

func (v NullableCreateAccessTicketRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateAccessTicketRequest) Set

func (*NullableCreateAccessTicketRequest) UnmarshalJSON

func (v *NullableCreateAccessTicketRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateAccessTicketRequest) Unset

type NullableCreateContainerRequest

type NullableCreateContainerRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateContainerRequest) Get

func (NullableCreateContainerRequest) IsSet

func (NullableCreateContainerRequest) MarshalJSON

func (v NullableCreateContainerRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateContainerRequest) Set

func (*NullableCreateContainerRequest) UnmarshalJSON

func (v *NullableCreateContainerRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateContainerRequest) Unset

func (v *NullableCreateContainerRequest) Unset()

type NullableCreateContainerSnapshotRequest

type NullableCreateContainerSnapshotRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateContainerSnapshotRequest) Get

func (NullableCreateContainerSnapshotRequest) IsSet

func (NullableCreateContainerSnapshotRequest) MarshalJSON

func (v NullableCreateContainerSnapshotRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateContainerSnapshotRequest) Set

func (*NullableCreateContainerSnapshotRequest) UnmarshalJSON

func (v *NullableCreateContainerSnapshotRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateContainerSnapshotRequest) Unset

type NullableCreateNodesSingleStorageSingleContent200Response

type NullableCreateNodesSingleStorageSingleContent200Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateNodesSingleStorageSingleContent200Response) Get

func (NullableCreateNodesSingleStorageSingleContent200Response) IsSet

func (NullableCreateNodesSingleStorageSingleContent200Response) MarshalJSON

func (*NullableCreateNodesSingleStorageSingleContent200Response) Set

func (*NullableCreateNodesSingleStorageSingleContent200Response) UnmarshalJSON

func (*NullableCreateNodesSingleStorageSingleContent200Response) Unset

type NullableCreateNodesSingleStorageSingleContentRequest

type NullableCreateNodesSingleStorageSingleContentRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateNodesSingleStorageSingleContentRequest) Get

func (NullableCreateNodesSingleStorageSingleContentRequest) IsSet

func (NullableCreateNodesSingleStorageSingleContentRequest) MarshalJSON

func (*NullableCreateNodesSingleStorageSingleContentRequest) Set

func (*NullableCreateNodesSingleStorageSingleContentRequest) UnmarshalJSON

func (*NullableCreateNodesSingleStorageSingleContentRequest) Unset

type NullableCreateStorage200Response

type NullableCreateStorage200Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateStorage200Response) Get

func (NullableCreateStorage200Response) IsSet

func (NullableCreateStorage200Response) MarshalJSON

func (v NullableCreateStorage200Response) MarshalJSON() ([]byte, error)

func (*NullableCreateStorage200Response) Set

func (*NullableCreateStorage200Response) UnmarshalJSON

func (v *NullableCreateStorage200Response) UnmarshalJSON(src []byte) error

func (*NullableCreateStorage200Response) Unset

type NullableCreateStorage200ResponseData

type NullableCreateStorage200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCreateStorage200ResponseData) Get

func (NullableCreateStorage200ResponseData) IsSet

func (NullableCreateStorage200ResponseData) MarshalJSON

func (v NullableCreateStorage200ResponseData) MarshalJSON() ([]byte, error)

func (*NullableCreateStorage200ResponseData) Set

func (*NullableCreateStorage200ResponseData) UnmarshalJSON

func (v *NullableCreateStorage200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableCreateStorage200ResponseData) Unset

type NullableCreateStorage200ResponseDataConfig

type NullableCreateStorage200ResponseDataConfig struct {
	// contains filtered or unexported fields
}

func (NullableCreateStorage200ResponseDataConfig) Get

func (NullableCreateStorage200ResponseDataConfig) IsSet

func (NullableCreateStorage200ResponseDataConfig) MarshalJSON

func (*NullableCreateStorage200ResponseDataConfig) Set

func (*NullableCreateStorage200ResponseDataConfig) UnmarshalJSON

func (v *NullableCreateStorage200ResponseDataConfig) UnmarshalJSON(src []byte) error

func (*NullableCreateStorage200ResponseDataConfig) Unset

type NullableCreateStorageRequest

type NullableCreateStorageRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateStorageRequest

func NewNullableCreateStorageRequest(val *CreateStorageRequest) *NullableCreateStorageRequest

func (NullableCreateStorageRequest) Get

func (NullableCreateStorageRequest) IsSet

func (NullableCreateStorageRequest) MarshalJSON

func (v NullableCreateStorageRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateStorageRequest) Set

func (*NullableCreateStorageRequest) UnmarshalJSON

func (v *NullableCreateStorageRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateStorageRequest) Unset

func (v *NullableCreateStorageRequest) Unset()

type NullableCreateVM200Response

type NullableCreateVM200Response struct {
	// contains filtered or unexported fields
}

func NewNullableCreateVM200Response

func NewNullableCreateVM200Response(val *CreateVM200Response) *NullableCreateVM200Response

func (NullableCreateVM200Response) Get

func (NullableCreateVM200Response) IsSet

func (NullableCreateVM200Response) MarshalJSON

func (v NullableCreateVM200Response) MarshalJSON() ([]byte, error)

func (*NullableCreateVM200Response) Set

func (*NullableCreateVM200Response) UnmarshalJSON

func (v *NullableCreateVM200Response) UnmarshalJSON(src []byte) error

func (*NullableCreateVM200Response) Unset

func (v *NullableCreateVM200Response) Unset()

type NullableCreateVMRequest

type NullableCreateVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateVMRequest

func NewNullableCreateVMRequest(val *CreateVMRequest) *NullableCreateVMRequest

func (NullableCreateVMRequest) Get

func (NullableCreateVMRequest) IsSet

func (v NullableCreateVMRequest) IsSet() bool

func (NullableCreateVMRequest) MarshalJSON

func (v NullableCreateVMRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateVMRequest) Set

func (*NullableCreateVMRequest) UnmarshalJSON

func (v *NullableCreateVMRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateVMRequest) Unset

func (v *NullableCreateVMRequest) Unset()

type NullableCreateVMSnapshotRequest

type NullableCreateVMSnapshotRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateVMSnapshotRequest) Get

func (NullableCreateVMSnapshotRequest) IsSet

func (NullableCreateVMSnapshotRequest) MarshalJSON

func (v NullableCreateVMSnapshotRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateVMSnapshotRequest) Set

func (*NullableCreateVMSnapshotRequest) UnmarshalJSON

func (v *NullableCreateVMSnapshotRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateVMSnapshotRequest) Unset

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetClusterConfigNodes200Response

type NullableGetClusterConfigNodes200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetClusterConfigNodes200Response) Get

func (NullableGetClusterConfigNodes200Response) IsSet

func (NullableGetClusterConfigNodes200Response) MarshalJSON

func (*NullableGetClusterConfigNodes200Response) Set

func (*NullableGetClusterConfigNodes200Response) UnmarshalJSON

func (v *NullableGetClusterConfigNodes200Response) UnmarshalJSON(src []byte) error

func (*NullableGetClusterConfigNodes200Response) Unset

type NullableGetClusterConfigNodes200ResponseDataInner

type NullableGetClusterConfigNodes200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetClusterConfigNodes200ResponseDataInner) Get

func (NullableGetClusterConfigNodes200ResponseDataInner) IsSet

func (NullableGetClusterConfigNodes200ResponseDataInner) MarshalJSON

func (*NullableGetClusterConfigNodes200ResponseDataInner) Set

func (*NullableGetClusterConfigNodes200ResponseDataInner) UnmarshalJSON

func (*NullableGetClusterConfigNodes200ResponseDataInner) Unset

type NullableGetClusterNextid200Response

type NullableGetClusterNextid200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetClusterNextid200Response) Get

func (NullableGetClusterNextid200Response) IsSet

func (NullableGetClusterNextid200Response) MarshalJSON

func (v NullableGetClusterNextid200Response) MarshalJSON() ([]byte, error)

func (*NullableGetClusterNextid200Response) Set

func (*NullableGetClusterNextid200Response) UnmarshalJSON

func (v *NullableGetClusterNextid200Response) UnmarshalJSON(src []byte) error

func (*NullableGetClusterNextid200Response) Unset

type NullableGetClusterResources200Response

type NullableGetClusterResources200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetClusterResources200Response) Get

func (NullableGetClusterResources200Response) IsSet

func (NullableGetClusterResources200Response) MarshalJSON

func (v NullableGetClusterResources200Response) MarshalJSON() ([]byte, error)

func (*NullableGetClusterResources200Response) Set

func (*NullableGetClusterResources200Response) UnmarshalJSON

func (v *NullableGetClusterResources200Response) UnmarshalJSON(src []byte) error

func (*NullableGetClusterResources200Response) Unset

type NullableGetClusterResources200ResponseDataInner

type NullableGetClusterResources200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetClusterResources200ResponseDataInner) Get

func (NullableGetClusterResources200ResponseDataInner) IsSet

func (NullableGetClusterResources200ResponseDataInner) MarshalJSON

func (*NullableGetClusterResources200ResponseDataInner) Set

func (*NullableGetClusterResources200ResponseDataInner) UnmarshalJSON

func (*NullableGetClusterResources200ResponseDataInner) Unset

type NullableGetContainerConfig200Response

type NullableGetContainerConfig200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetContainerConfig200Response) Get

func (NullableGetContainerConfig200Response) IsSet

func (NullableGetContainerConfig200Response) MarshalJSON

func (v NullableGetContainerConfig200Response) MarshalJSON() ([]byte, error)

func (*NullableGetContainerConfig200Response) Set

func (*NullableGetContainerConfig200Response) UnmarshalJSON

func (v *NullableGetContainerConfig200Response) UnmarshalJSON(src []byte) error

func (*NullableGetContainerConfig200Response) Unset

type NullableGetContainerConfig200ResponseData

type NullableGetContainerConfig200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableGetContainerConfig200ResponseData) Get

func (NullableGetContainerConfig200ResponseData) IsSet

func (NullableGetContainerConfig200ResponseData) MarshalJSON

func (*NullableGetContainerConfig200ResponseData) Set

func (*NullableGetContainerConfig200ResponseData) UnmarshalJSON

func (v *NullableGetContainerConfig200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableGetContainerConfig200ResponseData) Unset

type NullableGetContainerConfigPending200Response

type NullableGetContainerConfigPending200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetContainerConfigPending200Response) Get

func (NullableGetContainerConfigPending200Response) IsSet

func (NullableGetContainerConfigPending200Response) MarshalJSON

func (*NullableGetContainerConfigPending200Response) Set

func (*NullableGetContainerConfigPending200Response) UnmarshalJSON

func (*NullableGetContainerConfigPending200Response) Unset

type NullableGetContainerConfigPending200ResponseDataInner

type NullableGetContainerConfigPending200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetContainerConfigPending200ResponseDataInner) Get

func (NullableGetContainerConfigPending200ResponseDataInner) IsSet

func (NullableGetContainerConfigPending200ResponseDataInner) MarshalJSON

func (*NullableGetContainerConfigPending200ResponseDataInner) Set

func (*NullableGetContainerConfigPending200ResponseDataInner) UnmarshalJSON

func (*NullableGetContainerConfigPending200ResponseDataInner) Unset

type NullableGetContainerSnapshots200Response

type NullableGetContainerSnapshots200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetContainerSnapshots200Response) Get

func (NullableGetContainerSnapshots200Response) IsSet

func (NullableGetContainerSnapshots200Response) MarshalJSON

func (*NullableGetContainerSnapshots200Response) Set

func (*NullableGetContainerSnapshots200Response) UnmarshalJSON

func (v *NullableGetContainerSnapshots200Response) UnmarshalJSON(src []byte) error

func (*NullableGetContainerSnapshots200Response) Unset

type NullableGetContainerSnapshots200ResponseDataInner

type NullableGetContainerSnapshots200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetContainerSnapshots200ResponseDataInner) Get

func (NullableGetContainerSnapshots200ResponseDataInner) IsSet

func (NullableGetContainerSnapshots200ResponseDataInner) MarshalJSON

func (*NullableGetContainerSnapshots200ResponseDataInner) Set

func (*NullableGetContainerSnapshots200ResponseDataInner) UnmarshalJSON

func (*NullableGetContainerSnapshots200ResponseDataInner) Unset

type NullableGetContainers200Response

type NullableGetContainers200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetContainers200Response) Get

func (NullableGetContainers200Response) IsSet

func (NullableGetContainers200Response) MarshalJSON

func (v NullableGetContainers200Response) MarshalJSON() ([]byte, error)

func (*NullableGetContainers200Response) Set

func (*NullableGetContainers200Response) UnmarshalJSON

func (v *NullableGetContainers200Response) UnmarshalJSON(src []byte) error

func (*NullableGetContainers200Response) Unset

type NullableGetContainers200ResponseDataInner

type NullableGetContainers200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetContainers200ResponseDataInner) Get

func (NullableGetContainers200ResponseDataInner) IsSet

func (NullableGetContainers200ResponseDataInner) MarshalJSON

func (*NullableGetContainers200ResponseDataInner) Set

func (*NullableGetContainers200ResponseDataInner) UnmarshalJSON

func (v *NullableGetContainers200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetContainers200ResponseDataInner) Unset

type NullableGetCurrentContainerStatus200Response

type NullableGetCurrentContainerStatus200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetCurrentContainerStatus200Response) Get

func (NullableGetCurrentContainerStatus200Response) IsSet

func (NullableGetCurrentContainerStatus200Response) MarshalJSON

func (*NullableGetCurrentContainerStatus200Response) Set

func (*NullableGetCurrentContainerStatus200Response) UnmarshalJSON

func (*NullableGetCurrentContainerStatus200Response) Unset

type NullableGetCurrentContainerStatus200ResponseData

type NullableGetCurrentContainerStatus200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableGetCurrentContainerStatus200ResponseData) Get

func (NullableGetCurrentContainerStatus200ResponseData) IsSet

func (NullableGetCurrentContainerStatus200ResponseData) MarshalJSON

func (*NullableGetCurrentContainerStatus200ResponseData) Set

func (*NullableGetCurrentContainerStatus200ResponseData) UnmarshalJSON

func (*NullableGetCurrentContainerStatus200ResponseData) Unset

type NullableGetCurrentVMStatus200Response

type NullableGetCurrentVMStatus200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetCurrentVMStatus200Response) Get

func (NullableGetCurrentVMStatus200Response) IsSet

func (NullableGetCurrentVMStatus200Response) MarshalJSON

func (v NullableGetCurrentVMStatus200Response) MarshalJSON() ([]byte, error)

func (*NullableGetCurrentVMStatus200Response) Set

func (*NullableGetCurrentVMStatus200Response) UnmarshalJSON

func (v *NullableGetCurrentVMStatus200Response) UnmarshalJSON(src []byte) error

func (*NullableGetCurrentVMStatus200Response) Unset

type NullableGetCurrentVMStatus200ResponseData

type NullableGetCurrentVMStatus200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableGetCurrentVMStatus200ResponseData) Get

func (NullableGetCurrentVMStatus200ResponseData) IsSet

func (NullableGetCurrentVMStatus200ResponseData) MarshalJSON

func (*NullableGetCurrentVMStatus200ResponseData) Set

func (*NullableGetCurrentVMStatus200ResponseData) UnmarshalJSON

func (v *NullableGetCurrentVMStatus200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableGetCurrentVMStatus200ResponseData) Unset

type NullableGetNodeTaskLog200Response

type NullableGetNodeTaskLog200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetNodeTaskLog200Response) Get

func (NullableGetNodeTaskLog200Response) IsSet

func (NullableGetNodeTaskLog200Response) MarshalJSON

func (v NullableGetNodeTaskLog200Response) MarshalJSON() ([]byte, error)

func (*NullableGetNodeTaskLog200Response) Set

func (*NullableGetNodeTaskLog200Response) UnmarshalJSON

func (v *NullableGetNodeTaskLog200Response) UnmarshalJSON(src []byte) error

func (*NullableGetNodeTaskLog200Response) Unset

type NullableGetNodeTaskLog200ResponseDataInner

type NullableGetNodeTaskLog200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetNodeTaskLog200ResponseDataInner) Get

func (NullableGetNodeTaskLog200ResponseDataInner) IsSet

func (NullableGetNodeTaskLog200ResponseDataInner) MarshalJSON

func (*NullableGetNodeTaskLog200ResponseDataInner) Set

func (*NullableGetNodeTaskLog200ResponseDataInner) UnmarshalJSON

func (v *NullableGetNodeTaskLog200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetNodeTaskLog200ResponseDataInner) Unset

type NullableGetNodeTaskStatus200Response

type NullableGetNodeTaskStatus200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetNodeTaskStatus200Response) Get

func (NullableGetNodeTaskStatus200Response) IsSet

func (NullableGetNodeTaskStatus200Response) MarshalJSON

func (v NullableGetNodeTaskStatus200Response) MarshalJSON() ([]byte, error)

func (*NullableGetNodeTaskStatus200Response) Set

func (*NullableGetNodeTaskStatus200Response) UnmarshalJSON

func (v *NullableGetNodeTaskStatus200Response) UnmarshalJSON(src []byte) error

func (*NullableGetNodeTaskStatus200Response) Unset

type NullableGetNodeTaskStatus200ResponseData

type NullableGetNodeTaskStatus200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableGetNodeTaskStatus200ResponseData) Get

func (NullableGetNodeTaskStatus200ResponseData) IsSet

func (NullableGetNodeTaskStatus200ResponseData) MarshalJSON

func (*NullableGetNodeTaskStatus200ResponseData) Set

func (*NullableGetNodeTaskStatus200ResponseData) UnmarshalJSON

func (v *NullableGetNodeTaskStatus200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableGetNodeTaskStatus200ResponseData) Unset

type NullableGetNodeTasks200Response

type NullableGetNodeTasks200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetNodeTasks200Response) Get

func (NullableGetNodeTasks200Response) IsSet

func (NullableGetNodeTasks200Response) MarshalJSON

func (v NullableGetNodeTasks200Response) MarshalJSON() ([]byte, error)

func (*NullableGetNodeTasks200Response) Set

func (*NullableGetNodeTasks200Response) UnmarshalJSON

func (v *NullableGetNodeTasks200Response) UnmarshalJSON(src []byte) error

func (*NullableGetNodeTasks200Response) Unset

type NullableGetNodeTasks200ResponseDataInner

type NullableGetNodeTasks200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetNodeTasks200ResponseDataInner) Get

func (NullableGetNodeTasks200ResponseDataInner) IsSet

func (NullableGetNodeTasks200ResponseDataInner) MarshalJSON

func (*NullableGetNodeTasks200ResponseDataInner) Set

func (*NullableGetNodeTasks200ResponseDataInner) UnmarshalJSON

func (v *NullableGetNodeTasks200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetNodeTasks200ResponseDataInner) Unset

type NullableGetStorage200Response

type NullableGetStorage200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetStorage200Response) Get

func (NullableGetStorage200Response) IsSet

func (NullableGetStorage200Response) MarshalJSON

func (v NullableGetStorage200Response) MarshalJSON() ([]byte, error)

func (*NullableGetStorage200Response) Set

func (*NullableGetStorage200Response) UnmarshalJSON

func (v *NullableGetStorage200Response) UnmarshalJSON(src []byte) error

func (*NullableGetStorage200Response) Unset

func (v *NullableGetStorage200Response) Unset()

type NullableGetStorage200ResponseDataInner

type NullableGetStorage200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetStorage200ResponseDataInner) Get

func (NullableGetStorage200ResponseDataInner) IsSet

func (NullableGetStorage200ResponseDataInner) MarshalJSON

func (v NullableGetStorage200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*NullableGetStorage200ResponseDataInner) Set

func (*NullableGetStorage200ResponseDataInner) UnmarshalJSON

func (v *NullableGetStorage200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetStorage200ResponseDataInner) Unset

type NullableGetStorageContent200Response

type NullableGetStorageContent200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetStorageContent200Response) Get

func (NullableGetStorageContent200Response) IsSet

func (NullableGetStorageContent200Response) MarshalJSON

func (v NullableGetStorageContent200Response) MarshalJSON() ([]byte, error)

func (*NullableGetStorageContent200Response) Set

func (*NullableGetStorageContent200Response) UnmarshalJSON

func (v *NullableGetStorageContent200Response) UnmarshalJSON(src []byte) error

func (*NullableGetStorageContent200Response) Unset

type NullableGetStorageContent200ResponseDataInner

type NullableGetStorageContent200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetStorageContent200ResponseDataInner) Get

func (NullableGetStorageContent200ResponseDataInner) IsSet

func (NullableGetStorageContent200ResponseDataInner) MarshalJSON

func (*NullableGetStorageContent200ResponseDataInner) Set

func (*NullableGetStorageContent200ResponseDataInner) UnmarshalJSON

func (*NullableGetStorageContent200ResponseDataInner) Unset

type NullableGetStorageContent200ResponseDataInnerVerification

type NullableGetStorageContent200ResponseDataInnerVerification struct {
	// contains filtered or unexported fields
}

func (NullableGetStorageContent200ResponseDataInnerVerification) Get

func (NullableGetStorageContent200ResponseDataInnerVerification) IsSet

func (NullableGetStorageContent200ResponseDataInnerVerification) MarshalJSON

func (*NullableGetStorageContent200ResponseDataInnerVerification) Set

func (*NullableGetStorageContent200ResponseDataInnerVerification) UnmarshalJSON

func (*NullableGetStorageContent200ResponseDataInnerVerification) Unset

type NullableGetStorages200Response

type NullableGetStorages200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetStorages200Response) Get

func (NullableGetStorages200Response) IsSet

func (NullableGetStorages200Response) MarshalJSON

func (v NullableGetStorages200Response) MarshalJSON() ([]byte, error)

func (*NullableGetStorages200Response) Set

func (*NullableGetStorages200Response) UnmarshalJSON

func (v *NullableGetStorages200Response) UnmarshalJSON(src []byte) error

func (*NullableGetStorages200Response) Unset

func (v *NullableGetStorages200Response) Unset()

type NullableGetStorages200ResponseDataInner

type NullableGetStorages200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetStorages200ResponseDataInner) Get

func (NullableGetStorages200ResponseDataInner) IsSet

func (NullableGetStorages200ResponseDataInner) MarshalJSON

func (v NullableGetStorages200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*NullableGetStorages200ResponseDataInner) Set

func (*NullableGetStorages200ResponseDataInner) UnmarshalJSON

func (v *NullableGetStorages200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetStorages200ResponseDataInner) Unset

type NullableGetVM200Response

type NullableGetVM200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetVM200Response

func NewNullableGetVM200Response(val *GetVM200Response) *NullableGetVM200Response

func (NullableGetVM200Response) Get

func (NullableGetVM200Response) IsSet

func (v NullableGetVM200Response) IsSet() bool

func (NullableGetVM200Response) MarshalJSON

func (v NullableGetVM200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVM200Response) Set

func (*NullableGetVM200Response) UnmarshalJSON

func (v *NullableGetVM200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVM200Response) Unset

func (v *NullableGetVM200Response) Unset()

type NullableGetVM200ResponseDataInner

type NullableGetVM200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetVM200ResponseDataInner) Get

func (NullableGetVM200ResponseDataInner) IsSet

func (NullableGetVM200ResponseDataInner) MarshalJSON

func (v NullableGetVM200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*NullableGetVM200ResponseDataInner) Set

func (*NullableGetVM200ResponseDataInner) UnmarshalJSON

func (v *NullableGetVM200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetVM200ResponseDataInner) Unset

type NullableGetVMConfig200Response

type NullableGetVMConfig200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetVMConfig200Response) Get

func (NullableGetVMConfig200Response) IsSet

func (NullableGetVMConfig200Response) MarshalJSON

func (v NullableGetVMConfig200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVMConfig200Response) Set

func (*NullableGetVMConfig200Response) UnmarshalJSON

func (v *NullableGetVMConfig200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVMConfig200Response) Unset

func (v *NullableGetVMConfig200Response) Unset()

type NullableGetVMConfig200ResponseData

type NullableGetVMConfig200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableGetVMConfig200ResponseData) Get

func (NullableGetVMConfig200ResponseData) IsSet

func (NullableGetVMConfig200ResponseData) MarshalJSON

func (v NullableGetVMConfig200ResponseData) MarshalJSON() ([]byte, error)

func (*NullableGetVMConfig200ResponseData) Set

func (*NullableGetVMConfig200ResponseData) UnmarshalJSON

func (v *NullableGetVMConfig200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableGetVMConfig200ResponseData) Unset

type NullableGetVMConfigPending200Response

type NullableGetVMConfigPending200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetVMConfigPending200Response) Get

func (NullableGetVMConfigPending200Response) IsSet

func (NullableGetVMConfigPending200Response) MarshalJSON

func (v NullableGetVMConfigPending200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVMConfigPending200Response) Set

func (*NullableGetVMConfigPending200Response) UnmarshalJSON

func (v *NullableGetVMConfigPending200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVMConfigPending200Response) Unset

type NullableGetVMConfigPending200ResponseDataInner

type NullableGetVMConfigPending200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetVMConfigPending200ResponseDataInner) Get

func (NullableGetVMConfigPending200ResponseDataInner) IsSet

func (NullableGetVMConfigPending200ResponseDataInner) MarshalJSON

func (*NullableGetVMConfigPending200ResponseDataInner) Set

func (*NullableGetVMConfigPending200ResponseDataInner) UnmarshalJSON

func (*NullableGetVMConfigPending200ResponseDataInner) Unset

type NullableGetVMConfigPending200ResponseDataInnerOneOf

type NullableGetVMConfigPending200ResponseDataInnerOneOf struct {
	// contains filtered or unexported fields
}

func (NullableGetVMConfigPending200ResponseDataInnerOneOf) Get

func (NullableGetVMConfigPending200ResponseDataInnerOneOf) IsSet

func (NullableGetVMConfigPending200ResponseDataInnerOneOf) MarshalJSON

func (*NullableGetVMConfigPending200ResponseDataInnerOneOf) Set

func (*NullableGetVMConfigPending200ResponseDataInnerOneOf) UnmarshalJSON

func (*NullableGetVMConfigPending200ResponseDataInnerOneOf) Unset

type NullableGetVMConfigPending200ResponseDataInnerOneOf1

type NullableGetVMConfigPending200ResponseDataInnerOneOf1 struct {
	// contains filtered or unexported fields
}

func (NullableGetVMConfigPending200ResponseDataInnerOneOf1) Get

func (NullableGetVMConfigPending200ResponseDataInnerOneOf1) IsSet

func (NullableGetVMConfigPending200ResponseDataInnerOneOf1) MarshalJSON

func (*NullableGetVMConfigPending200ResponseDataInnerOneOf1) Set

func (*NullableGetVMConfigPending200ResponseDataInnerOneOf1) UnmarshalJSON

func (*NullableGetVMConfigPending200ResponseDataInnerOneOf1) Unset

type NullableGetVMSnapshot200Response

type NullableGetVMSnapshot200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetVMSnapshot200Response) Get

func (NullableGetVMSnapshot200Response) IsSet

func (NullableGetVMSnapshot200Response) MarshalJSON

func (v NullableGetVMSnapshot200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVMSnapshot200Response) Set

func (*NullableGetVMSnapshot200Response) UnmarshalJSON

func (v *NullableGetVMSnapshot200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVMSnapshot200Response) Unset

type NullableGetVMSnapshotConfig200Response

type NullableGetVMSnapshotConfig200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetVMSnapshotConfig200Response) Get

func (NullableGetVMSnapshotConfig200Response) IsSet

func (NullableGetVMSnapshotConfig200Response) MarshalJSON

func (v NullableGetVMSnapshotConfig200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVMSnapshotConfig200Response) Set

func (*NullableGetVMSnapshotConfig200Response) UnmarshalJSON

func (v *NullableGetVMSnapshotConfig200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVMSnapshotConfig200Response) Unset

type NullableGetVMSnapshots200Response

type NullableGetVMSnapshots200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetVMSnapshots200Response) Get

func (NullableGetVMSnapshots200Response) IsSet

func (NullableGetVMSnapshots200Response) MarshalJSON

func (v NullableGetVMSnapshots200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVMSnapshots200Response) Set

func (*NullableGetVMSnapshots200Response) UnmarshalJSON

func (v *NullableGetVMSnapshots200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVMSnapshots200Response) Unset

type NullableGetVMSnapshots200ResponseDataInner

type NullableGetVMSnapshots200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetVMSnapshots200ResponseDataInner) Get

func (NullableGetVMSnapshots200ResponseDataInner) IsSet

func (NullableGetVMSnapshots200ResponseDataInner) MarshalJSON

func (*NullableGetVMSnapshots200ResponseDataInner) Set

func (*NullableGetVMSnapshots200ResponseDataInner) UnmarshalJSON

func (v *NullableGetVMSnapshots200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetVMSnapshots200ResponseDataInner) Unset

type NullableGetVMs200Response

type NullableGetVMs200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetVMs200Response

func NewNullableGetVMs200Response(val *GetVMs200Response) *NullableGetVMs200Response

func (NullableGetVMs200Response) Get

func (NullableGetVMs200Response) IsSet

func (v NullableGetVMs200Response) IsSet() bool

func (NullableGetVMs200Response) MarshalJSON

func (v NullableGetVMs200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVMs200Response) Set

func (*NullableGetVMs200Response) UnmarshalJSON

func (v *NullableGetVMs200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVMs200Response) Unset

func (v *NullableGetVMs200Response) Unset()

type NullableGetVMs200ResponseDataInner

type NullableGetVMs200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableGetVMs200ResponseDataInner) Get

func (NullableGetVMs200ResponseDataInner) IsSet

func (NullableGetVMs200ResponseDataInner) MarshalJSON

func (v NullableGetVMs200ResponseDataInner) MarshalJSON() ([]byte, error)

func (*NullableGetVMs200ResponseDataInner) Set

func (*NullableGetVMs200ResponseDataInner) UnmarshalJSON

func (v *NullableGetVMs200ResponseDataInner) UnmarshalJSON(src []byte) error

func (*NullableGetVMs200ResponseDataInner) Unset

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableRebootContainerRequest

type NullableRebootContainerRequest struct {
	// contains filtered or unexported fields
}

func (NullableRebootContainerRequest) Get

func (NullableRebootContainerRequest) IsSet

func (NullableRebootContainerRequest) MarshalJSON

func (v NullableRebootContainerRequest) MarshalJSON() ([]byte, error)

func (*NullableRebootContainerRequest) Set

func (*NullableRebootContainerRequest) UnmarshalJSON

func (v *NullableRebootContainerRequest) UnmarshalJSON(src []byte) error

func (*NullableRebootContainerRequest) Unset

func (v *NullableRebootContainerRequest) Unset()

type NullableRebootVMRequest

type NullableRebootVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRebootVMRequest

func NewNullableRebootVMRequest(val *RebootVMRequest) *NullableRebootVMRequest

func (NullableRebootVMRequest) Get

func (NullableRebootVMRequest) IsSet

func (v NullableRebootVMRequest) IsSet() bool

func (NullableRebootVMRequest) MarshalJSON

func (v NullableRebootVMRequest) MarshalJSON() ([]byte, error)

func (*NullableRebootVMRequest) Set

func (*NullableRebootVMRequest) UnmarshalJSON

func (v *NullableRebootVMRequest) UnmarshalJSON(src []byte) error

func (*NullableRebootVMRequest) Unset

func (v *NullableRebootVMRequest) Unset()

type NullableResizeContainerDiskRequest

type NullableResizeContainerDiskRequest struct {
	// contains filtered or unexported fields
}

func (NullableResizeContainerDiskRequest) Get

func (NullableResizeContainerDiskRequest) IsSet

func (NullableResizeContainerDiskRequest) MarshalJSON

func (v NullableResizeContainerDiskRequest) MarshalJSON() ([]byte, error)

func (*NullableResizeContainerDiskRequest) Set

func (*NullableResizeContainerDiskRequest) UnmarshalJSON

func (v *NullableResizeContainerDiskRequest) UnmarshalJSON(src []byte) error

func (*NullableResizeContainerDiskRequest) Unset

type NullableResizeVMDiskRequest

type NullableResizeVMDiskRequest struct {
	// contains filtered or unexported fields
}

func NewNullableResizeVMDiskRequest

func NewNullableResizeVMDiskRequest(val *ResizeVMDiskRequest) *NullableResizeVMDiskRequest

func (NullableResizeVMDiskRequest) Get

func (NullableResizeVMDiskRequest) IsSet

func (NullableResizeVMDiskRequest) MarshalJSON

func (v NullableResizeVMDiskRequest) MarshalJSON() ([]byte, error)

func (*NullableResizeVMDiskRequest) Set

func (*NullableResizeVMDiskRequest) UnmarshalJSON

func (v *NullableResizeVMDiskRequest) UnmarshalJSON(src []byte) error

func (*NullableResizeVMDiskRequest) Unset

func (v *NullableResizeVMDiskRequest) Unset()

type NullableResumeVMRequest

type NullableResumeVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableResumeVMRequest

func NewNullableResumeVMRequest(val *ResumeVMRequest) *NullableResumeVMRequest

func (NullableResumeVMRequest) Get

func (NullableResumeVMRequest) IsSet

func (v NullableResumeVMRequest) IsSet() bool

func (NullableResumeVMRequest) MarshalJSON

func (v NullableResumeVMRequest) MarshalJSON() ([]byte, error)

func (*NullableResumeVMRequest) Set

func (*NullableResumeVMRequest) UnmarshalJSON

func (v *NullableResumeVMRequest) UnmarshalJSON(src []byte) error

func (*NullableResumeVMRequest) Unset

func (v *NullableResumeVMRequest) Unset()

type NullableRollbackContainerSnapshotRequest

type NullableRollbackContainerSnapshotRequest struct {
	// contains filtered or unexported fields
}

func (NullableRollbackContainerSnapshotRequest) Get

func (NullableRollbackContainerSnapshotRequest) IsSet

func (NullableRollbackContainerSnapshotRequest) MarshalJSON

func (*NullableRollbackContainerSnapshotRequest) Set

func (*NullableRollbackContainerSnapshotRequest) UnmarshalJSON

func (v *NullableRollbackContainerSnapshotRequest) UnmarshalJSON(src []byte) error

func (*NullableRollbackContainerSnapshotRequest) Unset

type NullableRollbackVMSnapshotRequest

type NullableRollbackVMSnapshotRequest struct {
	// contains filtered or unexported fields
}

func (NullableRollbackVMSnapshotRequest) Get

func (NullableRollbackVMSnapshotRequest) IsSet

func (NullableRollbackVMSnapshotRequest) MarshalJSON

func (v NullableRollbackVMSnapshotRequest) MarshalJSON() ([]byte, error)

func (*NullableRollbackVMSnapshotRequest) Set

func (*NullableRollbackVMSnapshotRequest) UnmarshalJSON

func (v *NullableRollbackVMSnapshotRequest) UnmarshalJSON(src []byte) error

func (*NullableRollbackVMSnapshotRequest) Unset

type NullableShutdownContainerRequest

type NullableShutdownContainerRequest struct {
	// contains filtered or unexported fields
}

func (NullableShutdownContainerRequest) Get

func (NullableShutdownContainerRequest) IsSet

func (NullableShutdownContainerRequest) MarshalJSON

func (v NullableShutdownContainerRequest) MarshalJSON() ([]byte, error)

func (*NullableShutdownContainerRequest) Set

func (*NullableShutdownContainerRequest) UnmarshalJSON

func (v *NullableShutdownContainerRequest) UnmarshalJSON(src []byte) error

func (*NullableShutdownContainerRequest) Unset

type NullableShutdownVMRequest

type NullableShutdownVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableShutdownVMRequest

func NewNullableShutdownVMRequest(val *ShutdownVMRequest) *NullableShutdownVMRequest

func (NullableShutdownVMRequest) Get

func (NullableShutdownVMRequest) IsSet

func (v NullableShutdownVMRequest) IsSet() bool

func (NullableShutdownVMRequest) MarshalJSON

func (v NullableShutdownVMRequest) MarshalJSON() ([]byte, error)

func (*NullableShutdownVMRequest) Set

func (*NullableShutdownVMRequest) UnmarshalJSON

func (v *NullableShutdownVMRequest) UnmarshalJSON(src []byte) error

func (*NullableShutdownVMRequest) Unset

func (v *NullableShutdownVMRequest) Unset()

type NullableStartContainerRequest

type NullableStartContainerRequest struct {
	// contains filtered or unexported fields
}

func (NullableStartContainerRequest) Get

func (NullableStartContainerRequest) IsSet

func (NullableStartContainerRequest) MarshalJSON

func (v NullableStartContainerRequest) MarshalJSON() ([]byte, error)

func (*NullableStartContainerRequest) Set

func (*NullableStartContainerRequest) UnmarshalJSON

func (v *NullableStartContainerRequest) UnmarshalJSON(src []byte) error

func (*NullableStartContainerRequest) Unset

func (v *NullableStartContainerRequest) Unset()

type NullableStartVMRequest

type NullableStartVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableStartVMRequest

func NewNullableStartVMRequest(val *StartVMRequest) *NullableStartVMRequest

func (NullableStartVMRequest) Get

func (NullableStartVMRequest) IsSet

func (v NullableStartVMRequest) IsSet() bool

func (NullableStartVMRequest) MarshalJSON

func (v NullableStartVMRequest) MarshalJSON() ([]byte, error)

func (*NullableStartVMRequest) Set

func (*NullableStartVMRequest) UnmarshalJSON

func (v *NullableStartVMRequest) UnmarshalJSON(src []byte) error

func (*NullableStartVMRequest) Unset

func (v *NullableStartVMRequest) Unset()

type NullableStopContainerRequest

type NullableStopContainerRequest struct {
	// contains filtered or unexported fields
}

func NewNullableStopContainerRequest

func NewNullableStopContainerRequest(val *StopContainerRequest) *NullableStopContainerRequest

func (NullableStopContainerRequest) Get

func (NullableStopContainerRequest) IsSet

func (NullableStopContainerRequest) MarshalJSON

func (v NullableStopContainerRequest) MarshalJSON() ([]byte, error)

func (*NullableStopContainerRequest) Set

func (*NullableStopContainerRequest) UnmarshalJSON

func (v *NullableStopContainerRequest) UnmarshalJSON(src []byte) error

func (*NullableStopContainerRequest) Unset

func (v *NullableStopContainerRequest) Unset()

type NullableStopVMRequest

type NullableStopVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableStopVMRequest

func NewNullableStopVMRequest(val *StopVMRequest) *NullableStopVMRequest

func (NullableStopVMRequest) Get

func (NullableStopVMRequest) IsSet

func (v NullableStopVMRequest) IsSet() bool

func (NullableStopVMRequest) MarshalJSON

func (v NullableStopVMRequest) MarshalJSON() ([]byte, error)

func (*NullableStopVMRequest) Set

func (v *NullableStopVMRequest) Set(val *StopVMRequest)

func (*NullableStopVMRequest) UnmarshalJSON

func (v *NullableStopVMRequest) UnmarshalJSON(src []byte) error

func (*NullableStopVMRequest) Unset

func (v *NullableStopVMRequest) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSuspendVMRequest

type NullableSuspendVMRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSuspendVMRequest

func NewNullableSuspendVMRequest(val *SuspendVMRequest) *NullableSuspendVMRequest

func (NullableSuspendVMRequest) Get

func (NullableSuspendVMRequest) IsSet

func (v NullableSuspendVMRequest) IsSet() bool

func (NullableSuspendVMRequest) MarshalJSON

func (v NullableSuspendVMRequest) MarshalJSON() ([]byte, error)

func (*NullableSuspendVMRequest) Set

func (*NullableSuspendVMRequest) UnmarshalJSON

func (v *NullableSuspendVMRequest) UnmarshalJSON(src []byte) error

func (*NullableSuspendVMRequest) Unset

func (v *NullableSuspendVMRequest) Unset()

type NullableTaskStartResponse

type NullableTaskStartResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTaskStartResponse

func NewNullableTaskStartResponse(val *TaskStartResponse) *NullableTaskStartResponse

func (NullableTaskStartResponse) Get

func (NullableTaskStartResponse) IsSet

func (v NullableTaskStartResponse) IsSet() bool

func (NullableTaskStartResponse) MarshalJSON

func (v NullableTaskStartResponse) MarshalJSON() ([]byte, error)

func (*NullableTaskStartResponse) Set

func (*NullableTaskStartResponse) UnmarshalJSON

func (v *NullableTaskStartResponse) UnmarshalJSON(src []byte) error

func (*NullableTaskStartResponse) Unset

func (v *NullableTaskStartResponse) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateContainerConfigSyncRequest

type NullableUpdateContainerConfigSyncRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateContainerConfigSyncRequest) Get

func (NullableUpdateContainerConfigSyncRequest) IsSet

func (NullableUpdateContainerConfigSyncRequest) MarshalJSON

func (*NullableUpdateContainerConfigSyncRequest) Set

func (*NullableUpdateContainerConfigSyncRequest) UnmarshalJSON

func (v *NullableUpdateContainerConfigSyncRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateContainerConfigSyncRequest) Unset

type NullableUpdateContainerSnapshotConfigRequest

type NullableUpdateContainerSnapshotConfigRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateContainerSnapshotConfigRequest) Get

func (NullableUpdateContainerSnapshotConfigRequest) IsSet

func (NullableUpdateContainerSnapshotConfigRequest) MarshalJSON

func (*NullableUpdateContainerSnapshotConfigRequest) Set

func (*NullableUpdateContainerSnapshotConfigRequest) UnmarshalJSON

func (*NullableUpdateContainerSnapshotConfigRequest) Unset

type NullableUpdateVMConfigRequest

type NullableUpdateVMConfigRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVMConfigRequest) Get

func (NullableUpdateVMConfigRequest) IsSet

func (NullableUpdateVMConfigRequest) MarshalJSON

func (v NullableUpdateVMConfigRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateVMConfigRequest) Set

func (*NullableUpdateVMConfigRequest) UnmarshalJSON

func (v *NullableUpdateVMConfigRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateVMConfigRequest) Unset

func (v *NullableUpdateVMConfigRequest) Unset()

type NullableUpdateVMConfigSyncRequest

type NullableUpdateVMConfigSyncRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVMConfigSyncRequest) Get

func (NullableUpdateVMConfigSyncRequest) IsSet

func (NullableUpdateVMConfigSyncRequest) MarshalJSON

func (v NullableUpdateVMConfigSyncRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateVMConfigSyncRequest) Set

func (*NullableUpdateVMConfigSyncRequest) UnmarshalJSON

func (v *NullableUpdateVMConfigSyncRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateVMConfigSyncRequest) Unset

type NullableUpdateVMSnapshotConfigRequest

type NullableUpdateVMSnapshotConfigRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVMSnapshotConfigRequest) Get

func (NullableUpdateVMSnapshotConfigRequest) IsSet

func (NullableUpdateVMSnapshotConfigRequest) MarshalJSON

func (v NullableUpdateVMSnapshotConfigRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateVMSnapshotConfigRequest) Set

func (*NullableUpdateVMSnapshotConfigRequest) UnmarshalJSON

func (v *NullableUpdateVMSnapshotConfigRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateVMSnapshotConfigRequest) Unset

type RebootContainerRequest

type RebootContainerRequest struct {
	// Wait maximal timeout seconds for the shutdown.
	Timeout *int64 `json:"timeout,omitempty"`
}

RebootContainerRequest struct for RebootContainerRequest

func NewRebootContainerRequest

func NewRebootContainerRequest() *RebootContainerRequest

NewRebootContainerRequest instantiates a new RebootContainerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRebootContainerRequestWithDefaults

func NewRebootContainerRequestWithDefaults() *RebootContainerRequest

NewRebootContainerRequestWithDefaults instantiates a new RebootContainerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RebootContainerRequest) GetTimeout

func (o *RebootContainerRequest) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*RebootContainerRequest) GetTimeoutOk

func (o *RebootContainerRequest) GetTimeoutOk() (*int64, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RebootContainerRequest) HasTimeout

func (o *RebootContainerRequest) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (RebootContainerRequest) MarshalJSON

func (o RebootContainerRequest) MarshalJSON() ([]byte, error)

func (*RebootContainerRequest) SetTimeout

func (o *RebootContainerRequest) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

func (RebootContainerRequest) ToMap

func (o RebootContainerRequest) ToMap() (map[string]interface{}, error)

type RebootVMRequest

type RebootVMRequest struct {
	// Wait maximal timeout seconds for the shutdown.
	Timeout *int64 `json:"timeout,omitempty"`
}

RebootVMRequest struct for RebootVMRequest

func NewRebootVMRequest

func NewRebootVMRequest() *RebootVMRequest

NewRebootVMRequest instantiates a new RebootVMRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRebootVMRequestWithDefaults

func NewRebootVMRequestWithDefaults() *RebootVMRequest

NewRebootVMRequestWithDefaults instantiates a new RebootVMRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RebootVMRequest) GetTimeout

func (o *RebootVMRequest) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*RebootVMRequest) GetTimeoutOk

func (o *RebootVMRequest) GetTimeoutOk() (*int64, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RebootVMRequest) HasTimeout

func (o *RebootVMRequest) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (RebootVMRequest) MarshalJSON

func (o RebootVMRequest) MarshalJSON() ([]byte, error)

func (*RebootVMRequest) SetTimeout

func (o *RebootVMRequest) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

func (RebootVMRequest) ToMap

func (o RebootVMRequest) ToMap() (map[string]interface{}, error)

type ResizeContainerDiskRequest

type ResizeContainerDiskRequest struct {
	// Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// The disk you want to resize.
	Disk string `json:"disk"`
	// The new size. With the '+' sign the value is added to the actual size of the volume and without it, the value is taken as an absolute one. Shrinking disk size is not supported.
	Size string `json:"size"`
}

ResizeContainerDiskRequest struct for ResizeContainerDiskRequest

func NewResizeContainerDiskRequest

func NewResizeContainerDiskRequest(disk string, size string) *ResizeContainerDiskRequest

NewResizeContainerDiskRequest instantiates a new ResizeContainerDiskRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResizeContainerDiskRequestWithDefaults

func NewResizeContainerDiskRequestWithDefaults() *ResizeContainerDiskRequest

NewResizeContainerDiskRequestWithDefaults instantiates a new ResizeContainerDiskRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResizeContainerDiskRequest) GetDigest

func (o *ResizeContainerDiskRequest) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*ResizeContainerDiskRequest) GetDigestOk

func (o *ResizeContainerDiskRequest) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResizeContainerDiskRequest) GetDisk

func (o *ResizeContainerDiskRequest) GetDisk() string

GetDisk returns the Disk field value

func (*ResizeContainerDiskRequest) GetDiskOk

func (o *ResizeContainerDiskRequest) GetDiskOk() (*string, bool)

GetDiskOk returns a tuple with the Disk field value and a boolean to check if the value has been set.

func (*ResizeContainerDiskRequest) GetSize

func (o *ResizeContainerDiskRequest) GetSize() string

GetSize returns the Size field value

func (*ResizeContainerDiskRequest) GetSizeOk

func (o *ResizeContainerDiskRequest) GetSizeOk() (*string, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ResizeContainerDiskRequest) HasDigest

func (o *ResizeContainerDiskRequest) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (ResizeContainerDiskRequest) MarshalJSON

func (o ResizeContainerDiskRequest) MarshalJSON() ([]byte, error)

func (*ResizeContainerDiskRequest) SetDigest

func (o *ResizeContainerDiskRequest) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*ResizeContainerDiskRequest) SetDisk

func (o *ResizeContainerDiskRequest) SetDisk(v string)

SetDisk sets field value

func (*ResizeContainerDiskRequest) SetSize

func (o *ResizeContainerDiskRequest) SetSize(v string)

SetSize sets field value

func (ResizeContainerDiskRequest) ToMap

func (o ResizeContainerDiskRequest) ToMap() (map[string]interface{}, error)

func (*ResizeContainerDiskRequest) UnmarshalJSON added in v1.0.9

func (o *ResizeContainerDiskRequest) UnmarshalJSON(bytes []byte) (err error)

type ResizeVMDiskRequest

type ResizeVMDiskRequest struct {
	// Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// The disk you want to resize.
	Disk string `json:"disk"`
	// The new size. With the `+` sign the value is added to the actual size of the volume and without it, the value is taken as an absolute one. Shrinking disk size is not supported.
	Size string `json:"size"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
}

ResizeVMDiskRequest struct for ResizeVMDiskRequest

func NewResizeVMDiskRequest

func NewResizeVMDiskRequest(disk string, size string) *ResizeVMDiskRequest

NewResizeVMDiskRequest instantiates a new ResizeVMDiskRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResizeVMDiskRequestWithDefaults

func NewResizeVMDiskRequestWithDefaults() *ResizeVMDiskRequest

NewResizeVMDiskRequestWithDefaults instantiates a new ResizeVMDiskRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResizeVMDiskRequest) GetDigest

func (o *ResizeVMDiskRequest) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*ResizeVMDiskRequest) GetDigestOk

func (o *ResizeVMDiskRequest) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResizeVMDiskRequest) GetDisk

func (o *ResizeVMDiskRequest) GetDisk() string

GetDisk returns the Disk field value

func (*ResizeVMDiskRequest) GetDiskOk

func (o *ResizeVMDiskRequest) GetDiskOk() (*string, bool)

GetDiskOk returns a tuple with the Disk field value and a boolean to check if the value has been set.

func (*ResizeVMDiskRequest) GetSize

func (o *ResizeVMDiskRequest) GetSize() string

GetSize returns the Size field value

func (*ResizeVMDiskRequest) GetSizeOk

func (o *ResizeVMDiskRequest) GetSizeOk() (*string, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ResizeVMDiskRequest) GetSkiplock

func (o *ResizeVMDiskRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*ResizeVMDiskRequest) GetSkiplockOk

func (o *ResizeVMDiskRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResizeVMDiskRequest) HasDigest

func (o *ResizeVMDiskRequest) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*ResizeVMDiskRequest) HasSkiplock

func (o *ResizeVMDiskRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (ResizeVMDiskRequest) MarshalJSON

func (o ResizeVMDiskRequest) MarshalJSON() ([]byte, error)

func (*ResizeVMDiskRequest) SetDigest

func (o *ResizeVMDiskRequest) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*ResizeVMDiskRequest) SetDisk

func (o *ResizeVMDiskRequest) SetDisk(v string)

SetDisk sets field value

func (*ResizeVMDiskRequest) SetSize

func (o *ResizeVMDiskRequest) SetSize(v string)

SetSize sets field value

func (*ResizeVMDiskRequest) SetSkiplock

func (o *ResizeVMDiskRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (ResizeVMDiskRequest) ToMap

func (o ResizeVMDiskRequest) ToMap() (map[string]interface{}, error)

func (*ResizeVMDiskRequest) UnmarshalJSON added in v1.0.9

func (o *ResizeVMDiskRequest) UnmarshalJSON(bytes []byte) (err error)

type ResumeVMRequest

type ResumeVMRequest struct {
	Nocheck *int32 `json:"nocheck,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
}

ResumeVMRequest struct for ResumeVMRequest

func NewResumeVMRequest

func NewResumeVMRequest() *ResumeVMRequest

NewResumeVMRequest instantiates a new ResumeVMRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResumeVMRequestWithDefaults

func NewResumeVMRequestWithDefaults() *ResumeVMRequest

NewResumeVMRequestWithDefaults instantiates a new ResumeVMRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResumeVMRequest) GetNocheck

func (o *ResumeVMRequest) GetNocheck() int32

GetNocheck returns the Nocheck field value if set, zero value otherwise.

func (*ResumeVMRequest) GetNocheckOk

func (o *ResumeVMRequest) GetNocheckOk() (*int32, bool)

GetNocheckOk returns a tuple with the Nocheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResumeVMRequest) GetSkiplock

func (o *ResumeVMRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*ResumeVMRequest) GetSkiplockOk

func (o *ResumeVMRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResumeVMRequest) HasNocheck

func (o *ResumeVMRequest) HasNocheck() bool

HasNocheck returns a boolean if a field has been set.

func (*ResumeVMRequest) HasSkiplock

func (o *ResumeVMRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (ResumeVMRequest) MarshalJSON

func (o ResumeVMRequest) MarshalJSON() ([]byte, error)

func (*ResumeVMRequest) SetNocheck

func (o *ResumeVMRequest) SetNocheck(v int32)

SetNocheck gets a reference to the given int32 and assigns it to the Nocheck field.

func (*ResumeVMRequest) SetSkiplock

func (o *ResumeVMRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (ResumeVMRequest) ToMap

func (o ResumeVMRequest) ToMap() (map[string]interface{}, error)

type RollbackContainerSnapshotRequest

type RollbackContainerSnapshotRequest struct {
	// Whether the container should get started after rolling back successfully
	Start *int32 `json:"start,omitempty"`
}

RollbackContainerSnapshotRequest struct for RollbackContainerSnapshotRequest

func NewRollbackContainerSnapshotRequest

func NewRollbackContainerSnapshotRequest() *RollbackContainerSnapshotRequest

NewRollbackContainerSnapshotRequest instantiates a new RollbackContainerSnapshotRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRollbackContainerSnapshotRequestWithDefaults

func NewRollbackContainerSnapshotRequestWithDefaults() *RollbackContainerSnapshotRequest

NewRollbackContainerSnapshotRequestWithDefaults instantiates a new RollbackContainerSnapshotRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RollbackContainerSnapshotRequest) GetStart

GetStart returns the Start field value if set, zero value otherwise.

func (*RollbackContainerSnapshotRequest) GetStartOk

func (o *RollbackContainerSnapshotRequest) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackContainerSnapshotRequest) HasStart

func (o *RollbackContainerSnapshotRequest) HasStart() bool

HasStart returns a boolean if a field has been set.

func (RollbackContainerSnapshotRequest) MarshalJSON

func (o RollbackContainerSnapshotRequest) MarshalJSON() ([]byte, error)

func (*RollbackContainerSnapshotRequest) SetStart

func (o *RollbackContainerSnapshotRequest) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (RollbackContainerSnapshotRequest) ToMap

func (o RollbackContainerSnapshotRequest) ToMap() (map[string]interface{}, error)

type RollbackVMSnapshotRequest

type RollbackVMSnapshotRequest struct {
	// Whether the VM should get started after rolling back successfully. (Note: VMs will be automatically started if the snapshot includes RAM.)
	Start *int32 `json:"start,omitempty"`
}

RollbackVMSnapshotRequest struct for RollbackVMSnapshotRequest

func NewRollbackVMSnapshotRequest

func NewRollbackVMSnapshotRequest() *RollbackVMSnapshotRequest

NewRollbackVMSnapshotRequest instantiates a new RollbackVMSnapshotRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRollbackVMSnapshotRequestWithDefaults

func NewRollbackVMSnapshotRequestWithDefaults() *RollbackVMSnapshotRequest

NewRollbackVMSnapshotRequestWithDefaults instantiates a new RollbackVMSnapshotRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RollbackVMSnapshotRequest) GetStart

func (o *RollbackVMSnapshotRequest) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*RollbackVMSnapshotRequest) GetStartOk

func (o *RollbackVMSnapshotRequest) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RollbackVMSnapshotRequest) HasStart

func (o *RollbackVMSnapshotRequest) HasStart() bool

HasStart returns a boolean if a field has been set.

func (RollbackVMSnapshotRequest) MarshalJSON

func (o RollbackVMSnapshotRequest) MarshalJSON() ([]byte, error)

func (*RollbackVMSnapshotRequest) SetStart

func (o *RollbackVMSnapshotRequest) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (RollbackVMSnapshotRequest) ToMap

func (o RollbackVMSnapshotRequest) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ShutdownContainerRequest

type ShutdownContainerRequest struct {
	// Make sure the Container stops.
	ForceStop *int32 `json:"forceStop,omitempty"`
	// Wait maximal timeout seconds.
	Timeout *int64 `json:"timeout,omitempty"`
}

ShutdownContainerRequest struct for ShutdownContainerRequest

func NewShutdownContainerRequest

func NewShutdownContainerRequest() *ShutdownContainerRequest

NewShutdownContainerRequest instantiates a new ShutdownContainerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewShutdownContainerRequestWithDefaults

func NewShutdownContainerRequestWithDefaults() *ShutdownContainerRequest

NewShutdownContainerRequestWithDefaults instantiates a new ShutdownContainerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ShutdownContainerRequest) GetForceStop

func (o *ShutdownContainerRequest) GetForceStop() int32

GetForceStop returns the ForceStop field value if set, zero value otherwise.

func (*ShutdownContainerRequest) GetForceStopOk

func (o *ShutdownContainerRequest) GetForceStopOk() (*int32, bool)

GetForceStopOk returns a tuple with the ForceStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShutdownContainerRequest) GetTimeout

func (o *ShutdownContainerRequest) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*ShutdownContainerRequest) GetTimeoutOk

func (o *ShutdownContainerRequest) GetTimeoutOk() (*int64, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShutdownContainerRequest) HasForceStop

func (o *ShutdownContainerRequest) HasForceStop() bool

HasForceStop returns a boolean if a field has been set.

func (*ShutdownContainerRequest) HasTimeout

func (o *ShutdownContainerRequest) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (ShutdownContainerRequest) MarshalJSON

func (o ShutdownContainerRequest) MarshalJSON() ([]byte, error)

func (*ShutdownContainerRequest) SetForceStop

func (o *ShutdownContainerRequest) SetForceStop(v int32)

SetForceStop gets a reference to the given int32 and assigns it to the ForceStop field.

func (*ShutdownContainerRequest) SetTimeout

func (o *ShutdownContainerRequest) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

func (ShutdownContainerRequest) ToMap

func (o ShutdownContainerRequest) ToMap() (map[string]interface{}, error)

type ShutdownVMRequest

type ShutdownVMRequest struct {
	// Make sure the VM stops.
	ForceStop *int32 `json:"forceStop,omitempty"`
	// Do not deactivate storage volumes.
	KeepActive *int32 `json:"keepActive,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
	// Wait maximal timeout seconds.
	Timeout *int64 `json:"timeout,omitempty"`
}

ShutdownVMRequest struct for ShutdownVMRequest

func NewShutdownVMRequest

func NewShutdownVMRequest() *ShutdownVMRequest

NewShutdownVMRequest instantiates a new ShutdownVMRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewShutdownVMRequestWithDefaults

func NewShutdownVMRequestWithDefaults() *ShutdownVMRequest

NewShutdownVMRequestWithDefaults instantiates a new ShutdownVMRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ShutdownVMRequest) GetForceStop

func (o *ShutdownVMRequest) GetForceStop() int32

GetForceStop returns the ForceStop field value if set, zero value otherwise.

func (*ShutdownVMRequest) GetForceStopOk

func (o *ShutdownVMRequest) GetForceStopOk() (*int32, bool)

GetForceStopOk returns a tuple with the ForceStop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShutdownVMRequest) GetKeepActive

func (o *ShutdownVMRequest) GetKeepActive() int32

GetKeepActive returns the KeepActive field value if set, zero value otherwise.

func (*ShutdownVMRequest) GetKeepActiveOk

func (o *ShutdownVMRequest) GetKeepActiveOk() (*int32, bool)

GetKeepActiveOk returns a tuple with the KeepActive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShutdownVMRequest) GetSkiplock

func (o *ShutdownVMRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*ShutdownVMRequest) GetSkiplockOk

func (o *ShutdownVMRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShutdownVMRequest) GetTimeout

func (o *ShutdownVMRequest) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*ShutdownVMRequest) GetTimeoutOk

func (o *ShutdownVMRequest) GetTimeoutOk() (*int64, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShutdownVMRequest) HasForceStop

func (o *ShutdownVMRequest) HasForceStop() bool

HasForceStop returns a boolean if a field has been set.

func (*ShutdownVMRequest) HasKeepActive

func (o *ShutdownVMRequest) HasKeepActive() bool

HasKeepActive returns a boolean if a field has been set.

func (*ShutdownVMRequest) HasSkiplock

func (o *ShutdownVMRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (*ShutdownVMRequest) HasTimeout

func (o *ShutdownVMRequest) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (ShutdownVMRequest) MarshalJSON

func (o ShutdownVMRequest) MarshalJSON() ([]byte, error)

func (*ShutdownVMRequest) SetForceStop

func (o *ShutdownVMRequest) SetForceStop(v int32)

SetForceStop gets a reference to the given int32 and assigns it to the ForceStop field.

func (*ShutdownVMRequest) SetKeepActive

func (o *ShutdownVMRequest) SetKeepActive(v int32)

SetKeepActive gets a reference to the given int32 and assigns it to the KeepActive field.

func (*ShutdownVMRequest) SetSkiplock

func (o *ShutdownVMRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (*ShutdownVMRequest) SetTimeout

func (o *ShutdownVMRequest) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

func (ShutdownVMRequest) ToMap

func (o ShutdownVMRequest) ToMap() (map[string]interface{}, error)

type StartContainerRequest

type StartContainerRequest struct {
	// If set, enables very verbose debug log-level on start.
	Debug *int32 `json:"debug,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
}

StartContainerRequest struct for StartContainerRequest

func NewStartContainerRequest

func NewStartContainerRequest() *StartContainerRequest

NewStartContainerRequest instantiates a new StartContainerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartContainerRequestWithDefaults

func NewStartContainerRequestWithDefaults() *StartContainerRequest

NewStartContainerRequestWithDefaults instantiates a new StartContainerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartContainerRequest) GetDebug

func (o *StartContainerRequest) GetDebug() int32

GetDebug returns the Debug field value if set, zero value otherwise.

func (*StartContainerRequest) GetDebugOk

func (o *StartContainerRequest) GetDebugOk() (*int32, bool)

GetDebugOk returns a tuple with the Debug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartContainerRequest) GetSkiplock

func (o *StartContainerRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*StartContainerRequest) GetSkiplockOk

func (o *StartContainerRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartContainerRequest) HasDebug

func (o *StartContainerRequest) HasDebug() bool

HasDebug returns a boolean if a field has been set.

func (*StartContainerRequest) HasSkiplock

func (o *StartContainerRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (StartContainerRequest) MarshalJSON

func (o StartContainerRequest) MarshalJSON() ([]byte, error)

func (*StartContainerRequest) SetDebug

func (o *StartContainerRequest) SetDebug(v int32)

SetDebug gets a reference to the given int32 and assigns it to the Debug field.

func (*StartContainerRequest) SetSkiplock

func (o *StartContainerRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (StartContainerRequest) ToMap

func (o StartContainerRequest) ToMap() (map[string]interface{}, error)

type StartVMRequest

type StartVMRequest struct {
	// Override QEMU's -cpu argument with the given string.
	ForceCpu *string `json:"force-cpu,omitempty"`
	// Specifies the QEMU machine type.
	Machine *string `json:"machine,omitempty"`
	// The cluster node name.
	Migratedfrom *string `json:"migratedfrom,omitempty"`
	// CIDR of the (sub) network that is used for migration.
	MigrationNetwork *string `json:"migration_network,omitempty"`
	// Migration traffic is encrypted using an SSH tunnel by default. On secure, completely private networks this can be disabled to increase performance.
	MigrationType *string `json:"migration_type,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
	// Some command save/restore state from this location.
	Stateuri *string `json:"stateuri,omitempty"`
	// Mapping from source to target storages. Providing only a single storage ID maps all source storages to that storage. Providing the special value '1' will map each source storage to itself.
	Targetstorage *string `json:"targetstorage,omitempty"`
	// Wait maximal timeout seconds.
	Timeout *int64 `json:"timeout,omitempty"`
}

StartVMRequest struct for StartVMRequest

func NewStartVMRequest

func NewStartVMRequest() *StartVMRequest

NewStartVMRequest instantiates a new StartVMRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartVMRequestWithDefaults

func NewStartVMRequestWithDefaults() *StartVMRequest

NewStartVMRequestWithDefaults instantiates a new StartVMRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartVMRequest) GetForceCpu

func (o *StartVMRequest) GetForceCpu() string

GetForceCpu returns the ForceCpu field value if set, zero value otherwise.

func (*StartVMRequest) GetForceCpuOk

func (o *StartVMRequest) GetForceCpuOk() (*string, bool)

GetForceCpuOk returns a tuple with the ForceCpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetMachine

func (o *StartVMRequest) GetMachine() string

GetMachine returns the Machine field value if set, zero value otherwise.

func (*StartVMRequest) GetMachineOk

func (o *StartVMRequest) GetMachineOk() (*string, bool)

GetMachineOk returns a tuple with the Machine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetMigratedfrom

func (o *StartVMRequest) GetMigratedfrom() string

GetMigratedfrom returns the Migratedfrom field value if set, zero value otherwise.

func (*StartVMRequest) GetMigratedfromOk

func (o *StartVMRequest) GetMigratedfromOk() (*string, bool)

GetMigratedfromOk returns a tuple with the Migratedfrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetMigrationNetwork

func (o *StartVMRequest) GetMigrationNetwork() string

GetMigrationNetwork returns the MigrationNetwork field value if set, zero value otherwise.

func (*StartVMRequest) GetMigrationNetworkOk

func (o *StartVMRequest) GetMigrationNetworkOk() (*string, bool)

GetMigrationNetworkOk returns a tuple with the MigrationNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetMigrationType

func (o *StartVMRequest) GetMigrationType() string

GetMigrationType returns the MigrationType field value if set, zero value otherwise.

func (*StartVMRequest) GetMigrationTypeOk

func (o *StartVMRequest) GetMigrationTypeOk() (*string, bool)

GetMigrationTypeOk returns a tuple with the MigrationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetSkiplock

func (o *StartVMRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*StartVMRequest) GetSkiplockOk

func (o *StartVMRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetStateuri

func (o *StartVMRequest) GetStateuri() string

GetStateuri returns the Stateuri field value if set, zero value otherwise.

func (*StartVMRequest) GetStateuriOk

func (o *StartVMRequest) GetStateuriOk() (*string, bool)

GetStateuriOk returns a tuple with the Stateuri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetTargetstorage

func (o *StartVMRequest) GetTargetstorage() string

GetTargetstorage returns the Targetstorage field value if set, zero value otherwise.

func (*StartVMRequest) GetTargetstorageOk

func (o *StartVMRequest) GetTargetstorageOk() (*string, bool)

GetTargetstorageOk returns a tuple with the Targetstorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) GetTimeout

func (o *StartVMRequest) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*StartVMRequest) GetTimeoutOk

func (o *StartVMRequest) GetTimeoutOk() (*int64, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartVMRequest) HasForceCpu

func (o *StartVMRequest) HasForceCpu() bool

HasForceCpu returns a boolean if a field has been set.

func (*StartVMRequest) HasMachine

func (o *StartVMRequest) HasMachine() bool

HasMachine returns a boolean if a field has been set.

func (*StartVMRequest) HasMigratedfrom

func (o *StartVMRequest) HasMigratedfrom() bool

HasMigratedfrom returns a boolean if a field has been set.

func (*StartVMRequest) HasMigrationNetwork

func (o *StartVMRequest) HasMigrationNetwork() bool

HasMigrationNetwork returns a boolean if a field has been set.

func (*StartVMRequest) HasMigrationType

func (o *StartVMRequest) HasMigrationType() bool

HasMigrationType returns a boolean if a field has been set.

func (*StartVMRequest) HasSkiplock

func (o *StartVMRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (*StartVMRequest) HasStateuri

func (o *StartVMRequest) HasStateuri() bool

HasStateuri returns a boolean if a field has been set.

func (*StartVMRequest) HasTargetstorage

func (o *StartVMRequest) HasTargetstorage() bool

HasTargetstorage returns a boolean if a field has been set.

func (*StartVMRequest) HasTimeout

func (o *StartVMRequest) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (StartVMRequest) MarshalJSON

func (o StartVMRequest) MarshalJSON() ([]byte, error)

func (*StartVMRequest) SetForceCpu

func (o *StartVMRequest) SetForceCpu(v string)

SetForceCpu gets a reference to the given string and assigns it to the ForceCpu field.

func (*StartVMRequest) SetMachine

func (o *StartVMRequest) SetMachine(v string)

SetMachine gets a reference to the given string and assigns it to the Machine field.

func (*StartVMRequest) SetMigratedfrom

func (o *StartVMRequest) SetMigratedfrom(v string)

SetMigratedfrom gets a reference to the given string and assigns it to the Migratedfrom field.

func (*StartVMRequest) SetMigrationNetwork

func (o *StartVMRequest) SetMigrationNetwork(v string)

SetMigrationNetwork gets a reference to the given string and assigns it to the MigrationNetwork field.

func (*StartVMRequest) SetMigrationType

func (o *StartVMRequest) SetMigrationType(v string)

SetMigrationType gets a reference to the given string and assigns it to the MigrationType field.

func (*StartVMRequest) SetSkiplock

func (o *StartVMRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (*StartVMRequest) SetStateuri

func (o *StartVMRequest) SetStateuri(v string)

SetStateuri gets a reference to the given string and assigns it to the Stateuri field.

func (*StartVMRequest) SetTargetstorage

func (o *StartVMRequest) SetTargetstorage(v string)

SetTargetstorage gets a reference to the given string and assigns it to the Targetstorage field.

func (*StartVMRequest) SetTimeout

func (o *StartVMRequest) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

func (StartVMRequest) ToMap

func (o StartVMRequest) ToMap() (map[string]interface{}, error)

type StopContainerRequest

type StopContainerRequest struct {
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
}

StopContainerRequest struct for StopContainerRequest

func NewStopContainerRequest

func NewStopContainerRequest() *StopContainerRequest

NewStopContainerRequest instantiates a new StopContainerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStopContainerRequestWithDefaults

func NewStopContainerRequestWithDefaults() *StopContainerRequest

NewStopContainerRequestWithDefaults instantiates a new StopContainerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StopContainerRequest) GetSkiplock

func (o *StopContainerRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*StopContainerRequest) GetSkiplockOk

func (o *StopContainerRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StopContainerRequest) HasSkiplock

func (o *StopContainerRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (StopContainerRequest) MarshalJSON

func (o StopContainerRequest) MarshalJSON() ([]byte, error)

func (*StopContainerRequest) SetSkiplock

func (o *StopContainerRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (StopContainerRequest) ToMap

func (o StopContainerRequest) ToMap() (map[string]interface{}, error)

type StopVMRequest

type StopVMRequest struct {
	// Do not deactivate storage volumes.
	KeepActive *int32 `json:"keepActive,omitempty"`
	// The cluster node name.
	Migratedfrom *string `json:"migratedfrom,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
	// Wait maximal timeout seconds.
	Timeout *int64 `json:"timeout,omitempty"`
}

StopVMRequest struct for StopVMRequest

func NewStopVMRequest

func NewStopVMRequest() *StopVMRequest

NewStopVMRequest instantiates a new StopVMRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStopVMRequestWithDefaults

func NewStopVMRequestWithDefaults() *StopVMRequest

NewStopVMRequestWithDefaults instantiates a new StopVMRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StopVMRequest) GetKeepActive

func (o *StopVMRequest) GetKeepActive() int32

GetKeepActive returns the KeepActive field value if set, zero value otherwise.

func (*StopVMRequest) GetKeepActiveOk

func (o *StopVMRequest) GetKeepActiveOk() (*int32, bool)

GetKeepActiveOk returns a tuple with the KeepActive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StopVMRequest) GetMigratedfrom

func (o *StopVMRequest) GetMigratedfrom() string

GetMigratedfrom returns the Migratedfrom field value if set, zero value otherwise.

func (*StopVMRequest) GetMigratedfromOk

func (o *StopVMRequest) GetMigratedfromOk() (*string, bool)

GetMigratedfromOk returns a tuple with the Migratedfrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StopVMRequest) GetSkiplock

func (o *StopVMRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*StopVMRequest) GetSkiplockOk

func (o *StopVMRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StopVMRequest) GetTimeout

func (o *StopVMRequest) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*StopVMRequest) GetTimeoutOk

func (o *StopVMRequest) GetTimeoutOk() (*int64, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StopVMRequest) HasKeepActive

func (o *StopVMRequest) HasKeepActive() bool

HasKeepActive returns a boolean if a field has been set.

func (*StopVMRequest) HasMigratedfrom

func (o *StopVMRequest) HasMigratedfrom() bool

HasMigratedfrom returns a boolean if a field has been set.

func (*StopVMRequest) HasSkiplock

func (o *StopVMRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (*StopVMRequest) HasTimeout

func (o *StopVMRequest) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (StopVMRequest) MarshalJSON

func (o StopVMRequest) MarshalJSON() ([]byte, error)

func (*StopVMRequest) SetKeepActive

func (o *StopVMRequest) SetKeepActive(v int32)

SetKeepActive gets a reference to the given int32 and assigns it to the KeepActive field.

func (*StopVMRequest) SetMigratedfrom

func (o *StopVMRequest) SetMigratedfrom(v string)

SetMigratedfrom gets a reference to the given string and assigns it to the Migratedfrom field.

func (*StopVMRequest) SetSkiplock

func (o *StopVMRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (*StopVMRequest) SetTimeout

func (o *StopVMRequest) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

func (StopVMRequest) ToMap

func (o StopVMRequest) ToMap() (map[string]interface{}, error)

type StorageAPI added in v1.0.9

type StorageAPI interface {

	/*
		CreateStorage createStorage

		Create a new storage.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateStorageRequest
	*/
	CreateStorage(ctx context.Context) ApiCreateStorageRequest

	// CreateStorageExecute executes the request
	//  @return CreateStorage200Response
	CreateStorageExecute(r ApiCreateStorageRequest) (*CreateStorage200Response, *http.Response, error)

	/*
		GetStorage getStorage

		Storage index.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetStorageRequest
	*/
	GetStorage(ctx context.Context) ApiGetStorageRequest

	// GetStorageExecute executes the request
	//  @return GetStorage200Response
	GetStorageExecute(r ApiGetStorageRequest) (*GetStorage200Response, *http.Response, error)
}

type StorageAPIService added in v1.0.9

type StorageAPIService service

StorageAPIService StorageAPI service

func (*StorageAPIService) CreateStorage added in v1.0.9

CreateStorage createStorage

Create a new storage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateStorageRequest

func (*StorageAPIService) CreateStorageExecute added in v1.0.9

Execute executes the request

@return CreateStorage200Response

func (*StorageAPIService) GetStorage added in v1.0.9

GetStorage getStorage

Storage index.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetStorageRequest

func (*StorageAPIService) GetStorageExecute added in v1.0.9

Execute executes the request

@return GetStorage200Response

type SuspendVMRequest

type SuspendVMRequest struct {
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
	// The storage for the VM state
	Statestorage *string `json:"statestorage,omitempty"`
	// If set, suspends the VM to disk. Will be resumed on next VM start.
	Todisk *int32 `json:"todisk,omitempty"`
}

SuspendVMRequest struct for SuspendVMRequest

func NewSuspendVMRequest

func NewSuspendVMRequest() *SuspendVMRequest

NewSuspendVMRequest instantiates a new SuspendVMRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuspendVMRequestWithDefaults

func NewSuspendVMRequestWithDefaults() *SuspendVMRequest

NewSuspendVMRequestWithDefaults instantiates a new SuspendVMRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuspendVMRequest) GetSkiplock

func (o *SuspendVMRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*SuspendVMRequest) GetSkiplockOk

func (o *SuspendVMRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuspendVMRequest) GetStatestorage

func (o *SuspendVMRequest) GetStatestorage() string

GetStatestorage returns the Statestorage field value if set, zero value otherwise.

func (*SuspendVMRequest) GetStatestorageOk

func (o *SuspendVMRequest) GetStatestorageOk() (*string, bool)

GetStatestorageOk returns a tuple with the Statestorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuspendVMRequest) GetTodisk

func (o *SuspendVMRequest) GetTodisk() int32

GetTodisk returns the Todisk field value if set, zero value otherwise.

func (*SuspendVMRequest) GetTodiskOk

func (o *SuspendVMRequest) GetTodiskOk() (*int32, bool)

GetTodiskOk returns a tuple with the Todisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuspendVMRequest) HasSkiplock

func (o *SuspendVMRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (*SuspendVMRequest) HasStatestorage

func (o *SuspendVMRequest) HasStatestorage() bool

HasStatestorage returns a boolean if a field has been set.

func (*SuspendVMRequest) HasTodisk

func (o *SuspendVMRequest) HasTodisk() bool

HasTodisk returns a boolean if a field has been set.

func (SuspendVMRequest) MarshalJSON

func (o SuspendVMRequest) MarshalJSON() ([]byte, error)

func (*SuspendVMRequest) SetSkiplock

func (o *SuspendVMRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (*SuspendVMRequest) SetStatestorage

func (o *SuspendVMRequest) SetStatestorage(v string)

SetStatestorage gets a reference to the given string and assigns it to the Statestorage field.

func (*SuspendVMRequest) SetTodisk

func (o *SuspendVMRequest) SetTodisk(v int32)

SetTodisk gets a reference to the given int32 and assigns it to the Todisk field.

func (SuspendVMRequest) ToMap

func (o SuspendVMRequest) ToMap() (map[string]interface{}, error)

type TaskStartResponse

type TaskStartResponse struct {
	// the task ID.
	Data   *string  `json:"data,omitempty"`
	Errors []string `json:"errors,omitempty"`
}

TaskStartResponse struct for TaskStartResponse

func NewTaskStartResponse

func NewTaskStartResponse() *TaskStartResponse

NewTaskStartResponse instantiates a new TaskStartResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskStartResponseWithDefaults

func NewTaskStartResponseWithDefaults() *TaskStartResponse

NewTaskStartResponseWithDefaults instantiates a new TaskStartResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskStartResponse) GetData

func (o *TaskStartResponse) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*TaskStartResponse) GetDataOk

func (o *TaskStartResponse) GetDataOk() (*string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskStartResponse) GetErrors

func (o *TaskStartResponse) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*TaskStartResponse) GetErrorsOk

func (o *TaskStartResponse) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskStartResponse) HasData

func (o *TaskStartResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*TaskStartResponse) HasErrors

func (o *TaskStartResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (TaskStartResponse) MarshalJSON

func (o TaskStartResponse) MarshalJSON() ([]byte, error)

func (*TaskStartResponse) SetData

func (o *TaskStartResponse) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*TaskStartResponse) SetErrors

func (o *TaskStartResponse) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (TaskStartResponse) ToMap

func (o TaskStartResponse) ToMap() (map[string]interface{}, error)

type UpdateContainerConfigSyncRequest

type UpdateContainerConfigSyncRequest struct {
	// OS architecture type.
	Arch *string `json:"arch,omitempty"`
	// Console mode. By default, the console command tries to open a connection to one of the available tty devices. By setting cmode to 'console' it tries to attach to /dev/console instead. If you set cmode to 'shell', it simply invokes a shell inside the container (no login).
	Cmode *string `json:"cmode,omitempty"`
	// Attach a console device (/dev/console) to the container.
	Console *int32 `json:"console,omitempty"`
	// The number of cores assigned to the container. A container can use all available cores by default.
	Cores *int64 `json:"cores,omitempty"`
	// Limit of CPU usage.  NOTE: If the computer has 2 CPUs, it has a total of '2' CPU time. Value '0' indicates no CPU limit.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a container, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// Try to be more verbose. For now this only enables debug log-level on start.
	Debug *int32 `json:"debug,omitempty"`
	// A list of settings you want to delete.
	Delete *string `json:"delete,omitempty"`
	// Description for the Container. Shown in the web-interface CT's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// Device to pass through to the container
	Dev0 *string `json:"dev0,omitempty"`
	// Device to pass through to the container
	Dev1 *string `json:"dev1,omitempty"`
	// Device to pass through to the container
	Dev2 *string `json:"dev2,omitempty"`
	// Device to pass through to the container
	Dev3 *string `json:"dev3,omitempty"`
	// Device to pass through to the container
	Dev4 *string `json:"dev4,omitempty"`
	// Device to pass through to the container
	Dev5 *string `json:"dev5,omitempty"`
	// Device to pass through to the container
	Dev6 *string `json:"dev6,omitempty"`
	// Device to pass through to the container
	Dev7 *string `json:"dev7,omitempty"`
	// Device to pass through to the container
	Dev8 *string `json:"dev8,omitempty"`
	// Device to pass through to the container
	Dev9 *string `json:"dev9,omitempty"`
	// Device to pass through to the container
	Dev10 *string `json:"dev10,omitempty"`
	// Device to pass through to the container
	Dev11 *string `json:"dev11,omitempty"`
	// Device to pass through to the container
	Dev12 *string `json:"dev12,omitempty"`
	// Device to pass through to the container
	Dev13 *string `json:"dev13,omitempty"`
	// Device to pass through to the container
	Dev14 *string `json:"dev14,omitempty"`
	// Device to pass through to the container
	Dev15 *string `json:"dev15,omitempty"`
	// Device to pass through to the container
	Dev16 *string `json:"dev16,omitempty"`
	// Device to pass through to the container
	Dev17 *string `json:"dev17,omitempty"`
	// Device to pass through to the container
	Dev18 *string `json:"dev18,omitempty"`
	// Device to pass through to the container
	Dev19 *string `json:"dev19,omitempty"`
	// Device to pass through to the container
	Dev20 *string `json:"dev20,omitempty"`
	// Device to pass through to the container
	Dev21 *string `json:"dev21,omitempty"`
	// Device to pass through to the container
	Dev22 *string `json:"dev22,omitempty"`
	// Device to pass through to the container
	Dev23 *string `json:"dev23,omitempty"`
	// Device to pass through to the container
	Dev24 *string `json:"dev24,omitempty"`
	// Device to pass through to the container
	Dev25 *string `json:"dev25,omitempty"`
	// Device to pass through to the container
	Dev26 *string `json:"dev26,omitempty"`
	// Device to pass through to the container
	Dev27 *string `json:"dev27,omitempty"`
	// Device to pass through to the container
	Dev28 *string `json:"dev28,omitempty"`
	// Device to pass through to the container
	Dev29 *string `json:"dev29,omitempty"`
	// Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// Allow containers access to advanced features.
	Features *string `json:"features,omitempty"`
	// Script that will be exectued during various steps in the containers lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Set a host name for the container.
	Hostname *string `json:"hostname,omitempty"`
	// Lock/unlock the container.
	Lock *string `json:"lock,omitempty"`
	// Amount of RAM for the container in MB.
	Memory *int64 `json:"memory,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp0 *string `json:"mp0,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp1 *string `json:"mp1,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp2 *string `json:"mp2,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp3 *string `json:"mp3,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp4 *string `json:"mp4,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp5 *string `json:"mp5,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp6 *string `json:"mp6,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp7 *string `json:"mp7,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp8 *string `json:"mp8,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp9 *string `json:"mp9,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp10 *string `json:"mp10,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp11 *string `json:"mp11,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp12 *string `json:"mp12,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp13 *string `json:"mp13,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp14 *string `json:"mp14,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp15 *string `json:"mp15,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp16 *string `json:"mp16,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp17 *string `json:"mp17,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp18 *string `json:"mp18,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp19 *string `json:"mp19,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp20 *string `json:"mp20,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp21 *string `json:"mp21,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp22 *string `json:"mp22,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp23 *string `json:"mp23,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp24 *string `json:"mp24,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp25 *string `json:"mp25,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp26 *string `json:"mp26,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp27 *string `json:"mp27,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp28 *string `json:"mp28,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp29 *string `json:"mp29,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp30 *string `json:"mp30,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp31 *string `json:"mp31,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp32 *string `json:"mp32,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp33 *string `json:"mp33,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp34 *string `json:"mp34,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp35 *string `json:"mp35,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp36 *string `json:"mp36,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp37 *string `json:"mp37,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp38 *string `json:"mp38,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp39 *string `json:"mp39,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp40 *string `json:"mp40,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp41 *string `json:"mp41,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp42 *string `json:"mp42,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp43 *string `json:"mp43,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp44 *string `json:"mp44,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp45 *string `json:"mp45,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp46 *string `json:"mp46,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp47 *string `json:"mp47,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp48 *string `json:"mp48,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp49 *string `json:"mp49,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp50 *string `json:"mp50,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp51 *string `json:"mp51,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp52 *string `json:"mp52,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp53 *string `json:"mp53,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp54 *string `json:"mp54,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp55 *string `json:"mp55,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp56 *string `json:"mp56,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp57 *string `json:"mp57,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp58 *string `json:"mp58,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp59 *string `json:"mp59,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp60 *string `json:"mp60,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp61 *string `json:"mp61,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp62 *string `json:"mp62,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp63 *string `json:"mp63,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp64 *string `json:"mp64,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp65 *string `json:"mp65,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp66 *string `json:"mp66,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp67 *string `json:"mp67,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp68 *string `json:"mp68,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp69 *string `json:"mp69,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp70 *string `json:"mp70,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp71 *string `json:"mp71,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp72 *string `json:"mp72,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp73 *string `json:"mp73,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp74 *string `json:"mp74,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp75 *string `json:"mp75,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp76 *string `json:"mp76,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp77 *string `json:"mp77,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp78 *string `json:"mp78,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp79 *string `json:"mp79,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp80 *string `json:"mp80,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp81 *string `json:"mp81,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp82 *string `json:"mp82,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp83 *string `json:"mp83,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp84 *string `json:"mp84,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp85 *string `json:"mp85,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp86 *string `json:"mp86,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp87 *string `json:"mp87,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp88 *string `json:"mp88,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp89 *string `json:"mp89,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp90 *string `json:"mp90,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp91 *string `json:"mp91,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp92 *string `json:"mp92,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp93 *string `json:"mp93,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp94 *string `json:"mp94,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp95 *string `json:"mp95,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp96 *string `json:"mp96,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp97 *string `json:"mp97,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp98 *string `json:"mp98,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp99 *string `json:"mp99,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp100 *string `json:"mp100,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp101 *string `json:"mp101,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp102 *string `json:"mp102,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp103 *string `json:"mp103,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp104 *string `json:"mp104,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp105 *string `json:"mp105,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp106 *string `json:"mp106,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp107 *string `json:"mp107,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp108 *string `json:"mp108,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp109 *string `json:"mp109,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp110 *string `json:"mp110,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp111 *string `json:"mp111,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp112 *string `json:"mp112,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp113 *string `json:"mp113,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp114 *string `json:"mp114,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp115 *string `json:"mp115,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp116 *string `json:"mp116,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp117 *string `json:"mp117,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp118 *string `json:"mp118,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp119 *string `json:"mp119,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp120 *string `json:"mp120,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp121 *string `json:"mp121,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp122 *string `json:"mp122,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp123 *string `json:"mp123,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp124 *string `json:"mp124,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp125 *string `json:"mp125,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp126 *string `json:"mp126,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp127 *string `json:"mp127,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp128 *string `json:"mp128,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp129 *string `json:"mp129,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp130 *string `json:"mp130,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp131 *string `json:"mp131,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp132 *string `json:"mp132,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp133 *string `json:"mp133,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp134 *string `json:"mp134,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp135 *string `json:"mp135,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp136 *string `json:"mp136,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp137 *string `json:"mp137,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp138 *string `json:"mp138,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp139 *string `json:"mp139,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp140 *string `json:"mp140,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp141 *string `json:"mp141,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp142 *string `json:"mp142,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp143 *string `json:"mp143,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp144 *string `json:"mp144,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp145 *string `json:"mp145,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp146 *string `json:"mp146,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp147 *string `json:"mp147,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp148 *string `json:"mp148,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp149 *string `json:"mp149,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp150 *string `json:"mp150,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp151 *string `json:"mp151,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp152 *string `json:"mp152,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp153 *string `json:"mp153,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp154 *string `json:"mp154,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp155 *string `json:"mp155,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp156 *string `json:"mp156,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp157 *string `json:"mp157,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp158 *string `json:"mp158,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp159 *string `json:"mp159,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp160 *string `json:"mp160,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp161 *string `json:"mp161,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp162 *string `json:"mp162,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp163 *string `json:"mp163,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp164 *string `json:"mp164,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp165 *string `json:"mp165,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp166 *string `json:"mp166,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp167 *string `json:"mp167,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp168 *string `json:"mp168,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp169 *string `json:"mp169,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp170 *string `json:"mp170,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp171 *string `json:"mp171,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp172 *string `json:"mp172,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp173 *string `json:"mp173,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp174 *string `json:"mp174,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp175 *string `json:"mp175,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp176 *string `json:"mp176,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp177 *string `json:"mp177,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp178 *string `json:"mp178,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp179 *string `json:"mp179,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp180 *string `json:"mp180,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp181 *string `json:"mp181,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp182 *string `json:"mp182,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp183 *string `json:"mp183,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp184 *string `json:"mp184,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp185 *string `json:"mp185,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp186 *string `json:"mp186,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp187 *string `json:"mp187,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp188 *string `json:"mp188,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp189 *string `json:"mp189,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp190 *string `json:"mp190,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp191 *string `json:"mp191,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp192 *string `json:"mp192,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp193 *string `json:"mp193,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp194 *string `json:"mp194,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp195 *string `json:"mp195,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp196 *string `json:"mp196,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp197 *string `json:"mp197,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp198 *string `json:"mp198,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp199 *string `json:"mp199,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp200 *string `json:"mp200,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp201 *string `json:"mp201,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp202 *string `json:"mp202,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp203 *string `json:"mp203,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp204 *string `json:"mp204,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp205 *string `json:"mp205,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp206 *string `json:"mp206,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp207 *string `json:"mp207,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp208 *string `json:"mp208,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp209 *string `json:"mp209,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp210 *string `json:"mp210,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp211 *string `json:"mp211,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp212 *string `json:"mp212,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp213 *string `json:"mp213,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp214 *string `json:"mp214,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp215 *string `json:"mp215,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp216 *string `json:"mp216,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp217 *string `json:"mp217,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp218 *string `json:"mp218,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp219 *string `json:"mp219,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp220 *string `json:"mp220,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp221 *string `json:"mp221,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp222 *string `json:"mp222,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp223 *string `json:"mp223,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp224 *string `json:"mp224,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp225 *string `json:"mp225,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp226 *string `json:"mp226,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp227 *string `json:"mp227,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp228 *string `json:"mp228,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp229 *string `json:"mp229,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp230 *string `json:"mp230,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp231 *string `json:"mp231,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp232 *string `json:"mp232,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp233 *string `json:"mp233,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp234 *string `json:"mp234,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp235 *string `json:"mp235,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp236 *string `json:"mp236,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp237 *string `json:"mp237,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp238 *string `json:"mp238,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp239 *string `json:"mp239,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp240 *string `json:"mp240,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp241 *string `json:"mp241,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp242 *string `json:"mp242,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp243 *string `json:"mp243,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp244 *string `json:"mp244,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp245 *string `json:"mp245,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp246 *string `json:"mp246,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp247 *string `json:"mp247,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp248 *string `json:"mp248,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp249 *string `json:"mp249,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp250 *string `json:"mp250,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp251 *string `json:"mp251,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp252 *string `json:"mp252,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp253 *string `json:"mp253,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp254 *string `json:"mp254,omitempty"`
	// Use volume as container mount point. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume.
	Mp255 *string `json:"mp255,omitempty"`
	// Sets DNS server IP address for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specifies network interfaces for the container.
	Net0 *string `json:"net0,omitempty"`
	// Specifies network interfaces for the container.
	Net1 *string `json:"net1,omitempty"`
	// Specifies network interfaces for the container.
	Net2 *string `json:"net2,omitempty"`
	// Specifies network interfaces for the container.
	Net3 *string `json:"net3,omitempty"`
	// Specifies network interfaces for the container.
	Net4 *string `json:"net4,omitempty"`
	// Specifies network interfaces for the container.
	Net5 *string `json:"net5,omitempty"`
	// Specifies network interfaces for the container.
	Net6 *string `json:"net6,omitempty"`
	// Specifies network interfaces for the container.
	Net7 *string `json:"net7,omitempty"`
	// Specifies network interfaces for the container.
	Net8 *string `json:"net8,omitempty"`
	// Specifies network interfaces for the container.
	Net9 *string `json:"net9,omitempty"`
	// Specifies network interfaces for the container.
	Net10 *string `json:"net10,omitempty"`
	// Specifies network interfaces for the container.
	Net11 *string `json:"net11,omitempty"`
	// Specifies network interfaces for the container.
	Net12 *string `json:"net12,omitempty"`
	// Specifies network interfaces for the container.
	Net13 *string `json:"net13,omitempty"`
	// Specifies network interfaces for the container.
	Net14 *string `json:"net14,omitempty"`
	// Specifies network interfaces for the container.
	Net15 *string `json:"net15,omitempty"`
	// Specifies network interfaces for the container.
	Net16 *string `json:"net16,omitempty"`
	// Specifies network interfaces for the container.
	Net17 *string `json:"net17,omitempty"`
	// Specifies network interfaces for the container.
	Net18 *string `json:"net18,omitempty"`
	// Specifies network interfaces for the container.
	Net19 *string `json:"net19,omitempty"`
	// Specifies network interfaces for the container.
	Net20 *string `json:"net20,omitempty"`
	// Specifies network interfaces for the container.
	Net21 *string `json:"net21,omitempty"`
	// Specifies network interfaces for the container.
	Net22 *string `json:"net22,omitempty"`
	// Specifies network interfaces for the container.
	Net23 *string `json:"net23,omitempty"`
	// Specifies network interfaces for the container.
	Net24 *string `json:"net24,omitempty"`
	// Specifies network interfaces for the container.
	Net25 *string `json:"net25,omitempty"`
	// Specifies network interfaces for the container.
	Net26 *string `json:"net26,omitempty"`
	// Specifies network interfaces for the container.
	Net27 *string `json:"net27,omitempty"`
	// Specifies network interfaces for the container.
	Net28 *string `json:"net28,omitempty"`
	// Specifies network interfaces for the container.
	Net29 *string `json:"net29,omitempty"`
	// Specifies network interfaces for the container.
	Net30 *string `json:"net30,omitempty"`
	// Specifies network interfaces for the container.
	Net31 *string `json:"net31,omitempty"`
	// Specifies whether a container will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// OS type. This is used to setup configuration inside the container, and corresponds to lxc setup scripts in /usr/share/lxc/config/<ostype>.common.conf. Value 'unmanaged' can be used to skip and OS specific setup.
	Ostype *string `json:"ostype,omitempty"`
	// Sets the protection flag of the container. This will prevent the CT or CT's disk remove/update operation.
	Protection *int32 `json:"protection,omitempty"`
	// Revert a pending change.
	Revert *string `json:"revert,omitempty"`
	// Use volume as container root.
	Rootfs *string `json:"rootfs,omitempty"`
	// Sets DNS search domains for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Amount of SWAP for the container in MB.
	Swap *int64 `json:"swap,omitempty"`
	// Tags of the Container. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Time zone to use in the container. If option isn't set, then nothing will be done. Can be set to 'host' to match the host time zone, or an arbitrary time zone option from /usr/share/zoneinfo/zone.tab
	Timezone *string `json:"timezone,omitempty"`
	// Specify the number of tty available to the container
	Tty *int64 `json:"tty,omitempty"`
	// Makes the container run as unprivileged user. (Should not be modified manually.)
	Unprivileged *int32 `json:"unprivileged,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
}

UpdateContainerConfigSyncRequest struct for UpdateContainerConfigSyncRequest

func NewUpdateContainerConfigSyncRequest

func NewUpdateContainerConfigSyncRequest() *UpdateContainerConfigSyncRequest

NewUpdateContainerConfigSyncRequest instantiates a new UpdateContainerConfigSyncRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateContainerConfigSyncRequestWithDefaults

func NewUpdateContainerConfigSyncRequestWithDefaults() *UpdateContainerConfigSyncRequest

NewUpdateContainerConfigSyncRequestWithDefaults instantiates a new UpdateContainerConfigSyncRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateContainerConfigSyncRequest) GetArch

GetArch returns the Arch field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetArchOk

func (o *UpdateContainerConfigSyncRequest) GetArchOk() (*string, bool)

GetArchOk returns a tuple with the Arch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetCmode

GetCmode returns the Cmode field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetCmodeOk

func (o *UpdateContainerConfigSyncRequest) GetCmodeOk() (*string, bool)

GetCmodeOk returns a tuple with the Cmode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetConsole

func (o *UpdateContainerConfigSyncRequest) GetConsole() int32

GetConsole returns the Console field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetConsoleOk

func (o *UpdateContainerConfigSyncRequest) GetConsoleOk() (*int32, bool)

GetConsoleOk returns a tuple with the Console field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetCores

GetCores returns the Cores field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetCoresOk

func (o *UpdateContainerConfigSyncRequest) GetCoresOk() (*int64, bool)

GetCoresOk returns a tuple with the Cores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetCpulimit

func (o *UpdateContainerConfigSyncRequest) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetCpulimitOk

func (o *UpdateContainerConfigSyncRequest) GetCpulimitOk() (*float32, bool)

GetCpulimitOk returns a tuple with the Cpulimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetCpuunits

func (o *UpdateContainerConfigSyncRequest) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetCpuunitsOk

func (o *UpdateContainerConfigSyncRequest) GetCpuunitsOk() (*int64, bool)

GetCpuunitsOk returns a tuple with the Cpuunits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDebug

GetDebug returns the Debug field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDebugOk

func (o *UpdateContainerConfigSyncRequest) GetDebugOk() (*int32, bool)

GetDebugOk returns a tuple with the Debug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDelete

GetDelete returns the Delete field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDeleteOk

func (o *UpdateContainerConfigSyncRequest) GetDeleteOk() (*string, bool)

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDescription

func (o *UpdateContainerConfigSyncRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDescriptionOk

func (o *UpdateContainerConfigSyncRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev0 added in v1.0.4

GetDev0 returns the Dev0 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev0Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev0Ok() (*string, bool)

GetDev0Ok returns a tuple with the Dev0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev1 added in v1.0.4

GetDev1 returns the Dev1 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev10 added in v1.0.4

GetDev10 returns the Dev10 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev10Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev10Ok() (*string, bool)

GetDev10Ok returns a tuple with the Dev10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev11 added in v1.0.4

GetDev11 returns the Dev11 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev11Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev11Ok() (*string, bool)

GetDev11Ok returns a tuple with the Dev11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev12 added in v1.0.4

GetDev12 returns the Dev12 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev12Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev12Ok() (*string, bool)

GetDev12Ok returns a tuple with the Dev12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev13 added in v1.0.4

GetDev13 returns the Dev13 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev13Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev13Ok() (*string, bool)

GetDev13Ok returns a tuple with the Dev13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev14 added in v1.0.4

GetDev14 returns the Dev14 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev14Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev14Ok() (*string, bool)

GetDev14Ok returns a tuple with the Dev14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev15 added in v1.0.4

GetDev15 returns the Dev15 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev15Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev15Ok() (*string, bool)

GetDev15Ok returns a tuple with the Dev15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev16 added in v1.0.4

GetDev16 returns the Dev16 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev16Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev16Ok() (*string, bool)

GetDev16Ok returns a tuple with the Dev16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev17 added in v1.0.4

GetDev17 returns the Dev17 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev17Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev17Ok() (*string, bool)

GetDev17Ok returns a tuple with the Dev17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev18 added in v1.0.4

GetDev18 returns the Dev18 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev18Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev18Ok() (*string, bool)

GetDev18Ok returns a tuple with the Dev18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev19 added in v1.0.4

GetDev19 returns the Dev19 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev19Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev19Ok() (*string, bool)

GetDev19Ok returns a tuple with the Dev19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev1Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev1Ok() (*string, bool)

GetDev1Ok returns a tuple with the Dev1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev2 added in v1.0.4

GetDev2 returns the Dev2 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev20 added in v1.0.4

GetDev20 returns the Dev20 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev20Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev20Ok() (*string, bool)

GetDev20Ok returns a tuple with the Dev20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev21 added in v1.0.4

GetDev21 returns the Dev21 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev21Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev21Ok() (*string, bool)

GetDev21Ok returns a tuple with the Dev21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev22 added in v1.0.4

GetDev22 returns the Dev22 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev22Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev22Ok() (*string, bool)

GetDev22Ok returns a tuple with the Dev22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev23 added in v1.0.4

GetDev23 returns the Dev23 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev23Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev23Ok() (*string, bool)

GetDev23Ok returns a tuple with the Dev23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev24 added in v1.0.4

GetDev24 returns the Dev24 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev24Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev24Ok() (*string, bool)

GetDev24Ok returns a tuple with the Dev24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev25 added in v1.0.4

GetDev25 returns the Dev25 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev25Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev25Ok() (*string, bool)

GetDev25Ok returns a tuple with the Dev25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev26 added in v1.0.4

GetDev26 returns the Dev26 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev26Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev26Ok() (*string, bool)

GetDev26Ok returns a tuple with the Dev26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev27 added in v1.0.4

GetDev27 returns the Dev27 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev27Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev27Ok() (*string, bool)

GetDev27Ok returns a tuple with the Dev27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev28 added in v1.0.4

GetDev28 returns the Dev28 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev28Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev28Ok() (*string, bool)

GetDev28Ok returns a tuple with the Dev28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev29 added in v1.0.4

GetDev29 returns the Dev29 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev29Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev29Ok() (*string, bool)

GetDev29Ok returns a tuple with the Dev29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev2Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev2Ok() (*string, bool)

GetDev2Ok returns a tuple with the Dev2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev3 added in v1.0.4

GetDev3 returns the Dev3 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev3Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev3Ok() (*string, bool)

GetDev3Ok returns a tuple with the Dev3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev4 added in v1.0.4

GetDev4 returns the Dev4 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev4Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev4Ok() (*string, bool)

GetDev4Ok returns a tuple with the Dev4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev5 added in v1.0.4

GetDev5 returns the Dev5 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev5Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev5Ok() (*string, bool)

GetDev5Ok returns a tuple with the Dev5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev6 added in v1.0.4

GetDev6 returns the Dev6 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev6Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev6Ok() (*string, bool)

GetDev6Ok returns a tuple with the Dev6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev7 added in v1.0.4

GetDev7 returns the Dev7 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev7Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev7Ok() (*string, bool)

GetDev7Ok returns a tuple with the Dev7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev8 added in v1.0.4

GetDev8 returns the Dev8 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev8Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev8Ok() (*string, bool)

GetDev8Ok returns a tuple with the Dev8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDev9 added in v1.0.4

GetDev9 returns the Dev9 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDev9Ok added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) GetDev9Ok() (*string, bool)

GetDev9Ok returns a tuple with the Dev9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetDigest

GetDigest returns the Digest field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetDigestOk

func (o *UpdateContainerConfigSyncRequest) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetFeatures

func (o *UpdateContainerConfigSyncRequest) GetFeatures() string

GetFeatures returns the Features field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetFeaturesOk

func (o *UpdateContainerConfigSyncRequest) GetFeaturesOk() (*string, bool)

GetFeaturesOk returns a tuple with the Features field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetHookscript

func (o *UpdateContainerConfigSyncRequest) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetHookscriptOk

func (o *UpdateContainerConfigSyncRequest) GetHookscriptOk() (*string, bool)

GetHookscriptOk returns a tuple with the Hookscript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetHostname

func (o *UpdateContainerConfigSyncRequest) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetHostnameOk

func (o *UpdateContainerConfigSyncRequest) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetLock

GetLock returns the Lock field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetLockOk

func (o *UpdateContainerConfigSyncRequest) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMemory

func (o *UpdateContainerConfigSyncRequest) GetMemory() int64

GetMemory returns the Memory field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMemoryOk

func (o *UpdateContainerConfigSyncRequest) GetMemoryOk() (*int64, bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp0

GetMp0 returns the Mp0 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp0Ok

func (o *UpdateContainerConfigSyncRequest) GetMp0Ok() (*string, bool)

GetMp0Ok returns a tuple with the Mp0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp1

GetMp1 returns the Mp1 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp10

GetMp10 returns the Mp10 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp100

GetMp100 returns the Mp100 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp100Ok

func (o *UpdateContainerConfigSyncRequest) GetMp100Ok() (*string, bool)

GetMp100Ok returns a tuple with the Mp100 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp101

GetMp101 returns the Mp101 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp101Ok

func (o *UpdateContainerConfigSyncRequest) GetMp101Ok() (*string, bool)

GetMp101Ok returns a tuple with the Mp101 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp102

GetMp102 returns the Mp102 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp102Ok

func (o *UpdateContainerConfigSyncRequest) GetMp102Ok() (*string, bool)

GetMp102Ok returns a tuple with the Mp102 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp103

GetMp103 returns the Mp103 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp103Ok

func (o *UpdateContainerConfigSyncRequest) GetMp103Ok() (*string, bool)

GetMp103Ok returns a tuple with the Mp103 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp104

GetMp104 returns the Mp104 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp104Ok

func (o *UpdateContainerConfigSyncRequest) GetMp104Ok() (*string, bool)

GetMp104Ok returns a tuple with the Mp104 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp105

GetMp105 returns the Mp105 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp105Ok

func (o *UpdateContainerConfigSyncRequest) GetMp105Ok() (*string, bool)

GetMp105Ok returns a tuple with the Mp105 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp106

GetMp106 returns the Mp106 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp106Ok

func (o *UpdateContainerConfigSyncRequest) GetMp106Ok() (*string, bool)

GetMp106Ok returns a tuple with the Mp106 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp107

GetMp107 returns the Mp107 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp107Ok

func (o *UpdateContainerConfigSyncRequest) GetMp107Ok() (*string, bool)

GetMp107Ok returns a tuple with the Mp107 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp108

GetMp108 returns the Mp108 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp108Ok

func (o *UpdateContainerConfigSyncRequest) GetMp108Ok() (*string, bool)

GetMp108Ok returns a tuple with the Mp108 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp109

GetMp109 returns the Mp109 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp109Ok

func (o *UpdateContainerConfigSyncRequest) GetMp109Ok() (*string, bool)

GetMp109Ok returns a tuple with the Mp109 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp10Ok

func (o *UpdateContainerConfigSyncRequest) GetMp10Ok() (*string, bool)

GetMp10Ok returns a tuple with the Mp10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp11

GetMp11 returns the Mp11 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp110

GetMp110 returns the Mp110 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp110Ok

func (o *UpdateContainerConfigSyncRequest) GetMp110Ok() (*string, bool)

GetMp110Ok returns a tuple with the Mp110 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp111

GetMp111 returns the Mp111 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp111Ok

func (o *UpdateContainerConfigSyncRequest) GetMp111Ok() (*string, bool)

GetMp111Ok returns a tuple with the Mp111 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp112

GetMp112 returns the Mp112 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp112Ok

func (o *UpdateContainerConfigSyncRequest) GetMp112Ok() (*string, bool)

GetMp112Ok returns a tuple with the Mp112 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp113

GetMp113 returns the Mp113 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp113Ok

func (o *UpdateContainerConfigSyncRequest) GetMp113Ok() (*string, bool)

GetMp113Ok returns a tuple with the Mp113 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp114

GetMp114 returns the Mp114 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp114Ok

func (o *UpdateContainerConfigSyncRequest) GetMp114Ok() (*string, bool)

GetMp114Ok returns a tuple with the Mp114 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp115

GetMp115 returns the Mp115 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp115Ok

func (o *UpdateContainerConfigSyncRequest) GetMp115Ok() (*string, bool)

GetMp115Ok returns a tuple with the Mp115 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp116

GetMp116 returns the Mp116 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp116Ok

func (o *UpdateContainerConfigSyncRequest) GetMp116Ok() (*string, bool)

GetMp116Ok returns a tuple with the Mp116 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp117

GetMp117 returns the Mp117 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp117Ok

func (o *UpdateContainerConfigSyncRequest) GetMp117Ok() (*string, bool)

GetMp117Ok returns a tuple with the Mp117 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp118

GetMp118 returns the Mp118 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp118Ok

func (o *UpdateContainerConfigSyncRequest) GetMp118Ok() (*string, bool)

GetMp118Ok returns a tuple with the Mp118 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp119

GetMp119 returns the Mp119 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp119Ok

func (o *UpdateContainerConfigSyncRequest) GetMp119Ok() (*string, bool)

GetMp119Ok returns a tuple with the Mp119 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp11Ok

func (o *UpdateContainerConfigSyncRequest) GetMp11Ok() (*string, bool)

GetMp11Ok returns a tuple with the Mp11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp12

GetMp12 returns the Mp12 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp120

GetMp120 returns the Mp120 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp120Ok

func (o *UpdateContainerConfigSyncRequest) GetMp120Ok() (*string, bool)

GetMp120Ok returns a tuple with the Mp120 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp121

GetMp121 returns the Mp121 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp121Ok

func (o *UpdateContainerConfigSyncRequest) GetMp121Ok() (*string, bool)

GetMp121Ok returns a tuple with the Mp121 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp122

GetMp122 returns the Mp122 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp122Ok

func (o *UpdateContainerConfigSyncRequest) GetMp122Ok() (*string, bool)

GetMp122Ok returns a tuple with the Mp122 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp123

GetMp123 returns the Mp123 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp123Ok

func (o *UpdateContainerConfigSyncRequest) GetMp123Ok() (*string, bool)

GetMp123Ok returns a tuple with the Mp123 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp124

GetMp124 returns the Mp124 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp124Ok

func (o *UpdateContainerConfigSyncRequest) GetMp124Ok() (*string, bool)

GetMp124Ok returns a tuple with the Mp124 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp125

GetMp125 returns the Mp125 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp125Ok

func (o *UpdateContainerConfigSyncRequest) GetMp125Ok() (*string, bool)

GetMp125Ok returns a tuple with the Mp125 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp126

GetMp126 returns the Mp126 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp126Ok

func (o *UpdateContainerConfigSyncRequest) GetMp126Ok() (*string, bool)

GetMp126Ok returns a tuple with the Mp126 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp127

GetMp127 returns the Mp127 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp127Ok

func (o *UpdateContainerConfigSyncRequest) GetMp127Ok() (*string, bool)

GetMp127Ok returns a tuple with the Mp127 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp128

GetMp128 returns the Mp128 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp128Ok

func (o *UpdateContainerConfigSyncRequest) GetMp128Ok() (*string, bool)

GetMp128Ok returns a tuple with the Mp128 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp129

GetMp129 returns the Mp129 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp129Ok

func (o *UpdateContainerConfigSyncRequest) GetMp129Ok() (*string, bool)

GetMp129Ok returns a tuple with the Mp129 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp12Ok

func (o *UpdateContainerConfigSyncRequest) GetMp12Ok() (*string, bool)

GetMp12Ok returns a tuple with the Mp12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp13

GetMp13 returns the Mp13 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp130

GetMp130 returns the Mp130 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp130Ok

func (o *UpdateContainerConfigSyncRequest) GetMp130Ok() (*string, bool)

GetMp130Ok returns a tuple with the Mp130 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp131

GetMp131 returns the Mp131 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp131Ok

func (o *UpdateContainerConfigSyncRequest) GetMp131Ok() (*string, bool)

GetMp131Ok returns a tuple with the Mp131 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp132

GetMp132 returns the Mp132 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp132Ok

func (o *UpdateContainerConfigSyncRequest) GetMp132Ok() (*string, bool)

GetMp132Ok returns a tuple with the Mp132 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp133

GetMp133 returns the Mp133 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp133Ok

func (o *UpdateContainerConfigSyncRequest) GetMp133Ok() (*string, bool)

GetMp133Ok returns a tuple with the Mp133 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp134

GetMp134 returns the Mp134 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp134Ok

func (o *UpdateContainerConfigSyncRequest) GetMp134Ok() (*string, bool)

GetMp134Ok returns a tuple with the Mp134 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp135

GetMp135 returns the Mp135 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp135Ok

func (o *UpdateContainerConfigSyncRequest) GetMp135Ok() (*string, bool)

GetMp135Ok returns a tuple with the Mp135 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp136

GetMp136 returns the Mp136 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp136Ok

func (o *UpdateContainerConfigSyncRequest) GetMp136Ok() (*string, bool)

GetMp136Ok returns a tuple with the Mp136 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp137

GetMp137 returns the Mp137 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp137Ok

func (o *UpdateContainerConfigSyncRequest) GetMp137Ok() (*string, bool)

GetMp137Ok returns a tuple with the Mp137 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp138

GetMp138 returns the Mp138 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp138Ok

func (o *UpdateContainerConfigSyncRequest) GetMp138Ok() (*string, bool)

GetMp138Ok returns a tuple with the Mp138 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp139

GetMp139 returns the Mp139 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp139Ok

func (o *UpdateContainerConfigSyncRequest) GetMp139Ok() (*string, bool)

GetMp139Ok returns a tuple with the Mp139 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp13Ok

func (o *UpdateContainerConfigSyncRequest) GetMp13Ok() (*string, bool)

GetMp13Ok returns a tuple with the Mp13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp14

GetMp14 returns the Mp14 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp140

GetMp140 returns the Mp140 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp140Ok

func (o *UpdateContainerConfigSyncRequest) GetMp140Ok() (*string, bool)

GetMp140Ok returns a tuple with the Mp140 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp141

GetMp141 returns the Mp141 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp141Ok

func (o *UpdateContainerConfigSyncRequest) GetMp141Ok() (*string, bool)

GetMp141Ok returns a tuple with the Mp141 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp142

GetMp142 returns the Mp142 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp142Ok

func (o *UpdateContainerConfigSyncRequest) GetMp142Ok() (*string, bool)

GetMp142Ok returns a tuple with the Mp142 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp143

GetMp143 returns the Mp143 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp143Ok

func (o *UpdateContainerConfigSyncRequest) GetMp143Ok() (*string, bool)

GetMp143Ok returns a tuple with the Mp143 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp144

GetMp144 returns the Mp144 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp144Ok

func (o *UpdateContainerConfigSyncRequest) GetMp144Ok() (*string, bool)

GetMp144Ok returns a tuple with the Mp144 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp145

GetMp145 returns the Mp145 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp145Ok

func (o *UpdateContainerConfigSyncRequest) GetMp145Ok() (*string, bool)

GetMp145Ok returns a tuple with the Mp145 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp146

GetMp146 returns the Mp146 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp146Ok

func (o *UpdateContainerConfigSyncRequest) GetMp146Ok() (*string, bool)

GetMp146Ok returns a tuple with the Mp146 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp147

GetMp147 returns the Mp147 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp147Ok

func (o *UpdateContainerConfigSyncRequest) GetMp147Ok() (*string, bool)

GetMp147Ok returns a tuple with the Mp147 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp148

GetMp148 returns the Mp148 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp148Ok

func (o *UpdateContainerConfigSyncRequest) GetMp148Ok() (*string, bool)

GetMp148Ok returns a tuple with the Mp148 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp149

GetMp149 returns the Mp149 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp149Ok

func (o *UpdateContainerConfigSyncRequest) GetMp149Ok() (*string, bool)

GetMp149Ok returns a tuple with the Mp149 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp14Ok

func (o *UpdateContainerConfigSyncRequest) GetMp14Ok() (*string, bool)

GetMp14Ok returns a tuple with the Mp14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp15

GetMp15 returns the Mp15 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp150

GetMp150 returns the Mp150 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp150Ok

func (o *UpdateContainerConfigSyncRequest) GetMp150Ok() (*string, bool)

GetMp150Ok returns a tuple with the Mp150 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp151

GetMp151 returns the Mp151 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp151Ok

func (o *UpdateContainerConfigSyncRequest) GetMp151Ok() (*string, bool)

GetMp151Ok returns a tuple with the Mp151 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp152

GetMp152 returns the Mp152 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp152Ok

func (o *UpdateContainerConfigSyncRequest) GetMp152Ok() (*string, bool)

GetMp152Ok returns a tuple with the Mp152 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp153

GetMp153 returns the Mp153 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp153Ok

func (o *UpdateContainerConfigSyncRequest) GetMp153Ok() (*string, bool)

GetMp153Ok returns a tuple with the Mp153 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp154

GetMp154 returns the Mp154 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp154Ok

func (o *UpdateContainerConfigSyncRequest) GetMp154Ok() (*string, bool)

GetMp154Ok returns a tuple with the Mp154 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp155

GetMp155 returns the Mp155 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp155Ok

func (o *UpdateContainerConfigSyncRequest) GetMp155Ok() (*string, bool)

GetMp155Ok returns a tuple with the Mp155 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp156

GetMp156 returns the Mp156 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp156Ok

func (o *UpdateContainerConfigSyncRequest) GetMp156Ok() (*string, bool)

GetMp156Ok returns a tuple with the Mp156 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp157

GetMp157 returns the Mp157 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp157Ok

func (o *UpdateContainerConfigSyncRequest) GetMp157Ok() (*string, bool)

GetMp157Ok returns a tuple with the Mp157 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp158

GetMp158 returns the Mp158 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp158Ok

func (o *UpdateContainerConfigSyncRequest) GetMp158Ok() (*string, bool)

GetMp158Ok returns a tuple with the Mp158 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp159

GetMp159 returns the Mp159 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp159Ok

func (o *UpdateContainerConfigSyncRequest) GetMp159Ok() (*string, bool)

GetMp159Ok returns a tuple with the Mp159 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp15Ok

func (o *UpdateContainerConfigSyncRequest) GetMp15Ok() (*string, bool)

GetMp15Ok returns a tuple with the Mp15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp16

GetMp16 returns the Mp16 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp160

GetMp160 returns the Mp160 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp160Ok

func (o *UpdateContainerConfigSyncRequest) GetMp160Ok() (*string, bool)

GetMp160Ok returns a tuple with the Mp160 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp161

GetMp161 returns the Mp161 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp161Ok

func (o *UpdateContainerConfigSyncRequest) GetMp161Ok() (*string, bool)

GetMp161Ok returns a tuple with the Mp161 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp162

GetMp162 returns the Mp162 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp162Ok

func (o *UpdateContainerConfigSyncRequest) GetMp162Ok() (*string, bool)

GetMp162Ok returns a tuple with the Mp162 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp163

GetMp163 returns the Mp163 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp163Ok

func (o *UpdateContainerConfigSyncRequest) GetMp163Ok() (*string, bool)

GetMp163Ok returns a tuple with the Mp163 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp164

GetMp164 returns the Mp164 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp164Ok

func (o *UpdateContainerConfigSyncRequest) GetMp164Ok() (*string, bool)

GetMp164Ok returns a tuple with the Mp164 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp165

GetMp165 returns the Mp165 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp165Ok

func (o *UpdateContainerConfigSyncRequest) GetMp165Ok() (*string, bool)

GetMp165Ok returns a tuple with the Mp165 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp166

GetMp166 returns the Mp166 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp166Ok

func (o *UpdateContainerConfigSyncRequest) GetMp166Ok() (*string, bool)

GetMp166Ok returns a tuple with the Mp166 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp167

GetMp167 returns the Mp167 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp167Ok

func (o *UpdateContainerConfigSyncRequest) GetMp167Ok() (*string, bool)

GetMp167Ok returns a tuple with the Mp167 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp168

GetMp168 returns the Mp168 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp168Ok

func (o *UpdateContainerConfigSyncRequest) GetMp168Ok() (*string, bool)

GetMp168Ok returns a tuple with the Mp168 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp169

GetMp169 returns the Mp169 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp169Ok

func (o *UpdateContainerConfigSyncRequest) GetMp169Ok() (*string, bool)

GetMp169Ok returns a tuple with the Mp169 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp16Ok

func (o *UpdateContainerConfigSyncRequest) GetMp16Ok() (*string, bool)

GetMp16Ok returns a tuple with the Mp16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp17

GetMp17 returns the Mp17 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp170

GetMp170 returns the Mp170 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp170Ok

func (o *UpdateContainerConfigSyncRequest) GetMp170Ok() (*string, bool)

GetMp170Ok returns a tuple with the Mp170 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp171

GetMp171 returns the Mp171 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp171Ok

func (o *UpdateContainerConfigSyncRequest) GetMp171Ok() (*string, bool)

GetMp171Ok returns a tuple with the Mp171 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp172

GetMp172 returns the Mp172 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp172Ok

func (o *UpdateContainerConfigSyncRequest) GetMp172Ok() (*string, bool)

GetMp172Ok returns a tuple with the Mp172 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp173

GetMp173 returns the Mp173 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp173Ok

func (o *UpdateContainerConfigSyncRequest) GetMp173Ok() (*string, bool)

GetMp173Ok returns a tuple with the Mp173 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp174

GetMp174 returns the Mp174 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp174Ok

func (o *UpdateContainerConfigSyncRequest) GetMp174Ok() (*string, bool)

GetMp174Ok returns a tuple with the Mp174 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp175

GetMp175 returns the Mp175 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp175Ok

func (o *UpdateContainerConfigSyncRequest) GetMp175Ok() (*string, bool)

GetMp175Ok returns a tuple with the Mp175 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp176

GetMp176 returns the Mp176 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp176Ok

func (o *UpdateContainerConfigSyncRequest) GetMp176Ok() (*string, bool)

GetMp176Ok returns a tuple with the Mp176 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp177

GetMp177 returns the Mp177 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp177Ok

func (o *UpdateContainerConfigSyncRequest) GetMp177Ok() (*string, bool)

GetMp177Ok returns a tuple with the Mp177 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp178

GetMp178 returns the Mp178 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp178Ok

func (o *UpdateContainerConfigSyncRequest) GetMp178Ok() (*string, bool)

GetMp178Ok returns a tuple with the Mp178 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp179

GetMp179 returns the Mp179 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp179Ok

func (o *UpdateContainerConfigSyncRequest) GetMp179Ok() (*string, bool)

GetMp179Ok returns a tuple with the Mp179 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp17Ok

func (o *UpdateContainerConfigSyncRequest) GetMp17Ok() (*string, bool)

GetMp17Ok returns a tuple with the Mp17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp18

GetMp18 returns the Mp18 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp180

GetMp180 returns the Mp180 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp180Ok

func (o *UpdateContainerConfigSyncRequest) GetMp180Ok() (*string, bool)

GetMp180Ok returns a tuple with the Mp180 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp181

GetMp181 returns the Mp181 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp181Ok

func (o *UpdateContainerConfigSyncRequest) GetMp181Ok() (*string, bool)

GetMp181Ok returns a tuple with the Mp181 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp182

GetMp182 returns the Mp182 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp182Ok

func (o *UpdateContainerConfigSyncRequest) GetMp182Ok() (*string, bool)

GetMp182Ok returns a tuple with the Mp182 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp183

GetMp183 returns the Mp183 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp183Ok

func (o *UpdateContainerConfigSyncRequest) GetMp183Ok() (*string, bool)

GetMp183Ok returns a tuple with the Mp183 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp184

GetMp184 returns the Mp184 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp184Ok

func (o *UpdateContainerConfigSyncRequest) GetMp184Ok() (*string, bool)

GetMp184Ok returns a tuple with the Mp184 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp185

GetMp185 returns the Mp185 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp185Ok

func (o *UpdateContainerConfigSyncRequest) GetMp185Ok() (*string, bool)

GetMp185Ok returns a tuple with the Mp185 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp186

GetMp186 returns the Mp186 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp186Ok

func (o *UpdateContainerConfigSyncRequest) GetMp186Ok() (*string, bool)

GetMp186Ok returns a tuple with the Mp186 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp187

GetMp187 returns the Mp187 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp187Ok

func (o *UpdateContainerConfigSyncRequest) GetMp187Ok() (*string, bool)

GetMp187Ok returns a tuple with the Mp187 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp188

GetMp188 returns the Mp188 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp188Ok

func (o *UpdateContainerConfigSyncRequest) GetMp188Ok() (*string, bool)

GetMp188Ok returns a tuple with the Mp188 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp189

GetMp189 returns the Mp189 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp189Ok

func (o *UpdateContainerConfigSyncRequest) GetMp189Ok() (*string, bool)

GetMp189Ok returns a tuple with the Mp189 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp18Ok

func (o *UpdateContainerConfigSyncRequest) GetMp18Ok() (*string, bool)

GetMp18Ok returns a tuple with the Mp18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp19

GetMp19 returns the Mp19 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp190

GetMp190 returns the Mp190 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp190Ok

func (o *UpdateContainerConfigSyncRequest) GetMp190Ok() (*string, bool)

GetMp190Ok returns a tuple with the Mp190 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp191

GetMp191 returns the Mp191 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp191Ok

func (o *UpdateContainerConfigSyncRequest) GetMp191Ok() (*string, bool)

GetMp191Ok returns a tuple with the Mp191 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp192

GetMp192 returns the Mp192 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp192Ok

func (o *UpdateContainerConfigSyncRequest) GetMp192Ok() (*string, bool)

GetMp192Ok returns a tuple with the Mp192 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp193

GetMp193 returns the Mp193 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp193Ok

func (o *UpdateContainerConfigSyncRequest) GetMp193Ok() (*string, bool)

GetMp193Ok returns a tuple with the Mp193 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp194

GetMp194 returns the Mp194 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp194Ok

func (o *UpdateContainerConfigSyncRequest) GetMp194Ok() (*string, bool)

GetMp194Ok returns a tuple with the Mp194 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp195

GetMp195 returns the Mp195 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp195Ok

func (o *UpdateContainerConfigSyncRequest) GetMp195Ok() (*string, bool)

GetMp195Ok returns a tuple with the Mp195 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp196

GetMp196 returns the Mp196 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp196Ok

func (o *UpdateContainerConfigSyncRequest) GetMp196Ok() (*string, bool)

GetMp196Ok returns a tuple with the Mp196 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp197

GetMp197 returns the Mp197 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp197Ok

func (o *UpdateContainerConfigSyncRequest) GetMp197Ok() (*string, bool)

GetMp197Ok returns a tuple with the Mp197 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp198

GetMp198 returns the Mp198 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp198Ok

func (o *UpdateContainerConfigSyncRequest) GetMp198Ok() (*string, bool)

GetMp198Ok returns a tuple with the Mp198 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp199

GetMp199 returns the Mp199 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp199Ok

func (o *UpdateContainerConfigSyncRequest) GetMp199Ok() (*string, bool)

GetMp199Ok returns a tuple with the Mp199 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp19Ok

func (o *UpdateContainerConfigSyncRequest) GetMp19Ok() (*string, bool)

GetMp19Ok returns a tuple with the Mp19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp1Ok

func (o *UpdateContainerConfigSyncRequest) GetMp1Ok() (*string, bool)

GetMp1Ok returns a tuple with the Mp1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp2

GetMp2 returns the Mp2 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp20

GetMp20 returns the Mp20 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp200

GetMp200 returns the Mp200 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp200Ok

func (o *UpdateContainerConfigSyncRequest) GetMp200Ok() (*string, bool)

GetMp200Ok returns a tuple with the Mp200 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp201

GetMp201 returns the Mp201 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp201Ok

func (o *UpdateContainerConfigSyncRequest) GetMp201Ok() (*string, bool)

GetMp201Ok returns a tuple with the Mp201 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp202

GetMp202 returns the Mp202 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp202Ok

func (o *UpdateContainerConfigSyncRequest) GetMp202Ok() (*string, bool)

GetMp202Ok returns a tuple with the Mp202 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp203

GetMp203 returns the Mp203 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp203Ok

func (o *UpdateContainerConfigSyncRequest) GetMp203Ok() (*string, bool)

GetMp203Ok returns a tuple with the Mp203 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp204

GetMp204 returns the Mp204 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp204Ok

func (o *UpdateContainerConfigSyncRequest) GetMp204Ok() (*string, bool)

GetMp204Ok returns a tuple with the Mp204 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp205

GetMp205 returns the Mp205 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp205Ok

func (o *UpdateContainerConfigSyncRequest) GetMp205Ok() (*string, bool)

GetMp205Ok returns a tuple with the Mp205 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp206

GetMp206 returns the Mp206 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp206Ok

func (o *UpdateContainerConfigSyncRequest) GetMp206Ok() (*string, bool)

GetMp206Ok returns a tuple with the Mp206 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp207

GetMp207 returns the Mp207 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp207Ok

func (o *UpdateContainerConfigSyncRequest) GetMp207Ok() (*string, bool)

GetMp207Ok returns a tuple with the Mp207 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp208

GetMp208 returns the Mp208 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp208Ok

func (o *UpdateContainerConfigSyncRequest) GetMp208Ok() (*string, bool)

GetMp208Ok returns a tuple with the Mp208 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp209

GetMp209 returns the Mp209 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp209Ok

func (o *UpdateContainerConfigSyncRequest) GetMp209Ok() (*string, bool)

GetMp209Ok returns a tuple with the Mp209 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp20Ok

func (o *UpdateContainerConfigSyncRequest) GetMp20Ok() (*string, bool)

GetMp20Ok returns a tuple with the Mp20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp21

GetMp21 returns the Mp21 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp210

GetMp210 returns the Mp210 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp210Ok

func (o *UpdateContainerConfigSyncRequest) GetMp210Ok() (*string, bool)

GetMp210Ok returns a tuple with the Mp210 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp211

GetMp211 returns the Mp211 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp211Ok

func (o *UpdateContainerConfigSyncRequest) GetMp211Ok() (*string, bool)

GetMp211Ok returns a tuple with the Mp211 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp212

GetMp212 returns the Mp212 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp212Ok

func (o *UpdateContainerConfigSyncRequest) GetMp212Ok() (*string, bool)

GetMp212Ok returns a tuple with the Mp212 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp213

GetMp213 returns the Mp213 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp213Ok

func (o *UpdateContainerConfigSyncRequest) GetMp213Ok() (*string, bool)

GetMp213Ok returns a tuple with the Mp213 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp214

GetMp214 returns the Mp214 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp214Ok

func (o *UpdateContainerConfigSyncRequest) GetMp214Ok() (*string, bool)

GetMp214Ok returns a tuple with the Mp214 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp215

GetMp215 returns the Mp215 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp215Ok

func (o *UpdateContainerConfigSyncRequest) GetMp215Ok() (*string, bool)

GetMp215Ok returns a tuple with the Mp215 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp216

GetMp216 returns the Mp216 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp216Ok

func (o *UpdateContainerConfigSyncRequest) GetMp216Ok() (*string, bool)

GetMp216Ok returns a tuple with the Mp216 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp217

GetMp217 returns the Mp217 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp217Ok

func (o *UpdateContainerConfigSyncRequest) GetMp217Ok() (*string, bool)

GetMp217Ok returns a tuple with the Mp217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp218

GetMp218 returns the Mp218 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp218Ok

func (o *UpdateContainerConfigSyncRequest) GetMp218Ok() (*string, bool)

GetMp218Ok returns a tuple with the Mp218 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp219

GetMp219 returns the Mp219 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp219Ok

func (o *UpdateContainerConfigSyncRequest) GetMp219Ok() (*string, bool)

GetMp219Ok returns a tuple with the Mp219 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp21Ok

func (o *UpdateContainerConfigSyncRequest) GetMp21Ok() (*string, bool)

GetMp21Ok returns a tuple with the Mp21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp22

GetMp22 returns the Mp22 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp220

GetMp220 returns the Mp220 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp220Ok

func (o *UpdateContainerConfigSyncRequest) GetMp220Ok() (*string, bool)

GetMp220Ok returns a tuple with the Mp220 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp221

GetMp221 returns the Mp221 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp221Ok

func (o *UpdateContainerConfigSyncRequest) GetMp221Ok() (*string, bool)

GetMp221Ok returns a tuple with the Mp221 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp222

GetMp222 returns the Mp222 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp222Ok

func (o *UpdateContainerConfigSyncRequest) GetMp222Ok() (*string, bool)

GetMp222Ok returns a tuple with the Mp222 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp223

GetMp223 returns the Mp223 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp223Ok

func (o *UpdateContainerConfigSyncRequest) GetMp223Ok() (*string, bool)

GetMp223Ok returns a tuple with the Mp223 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp224

GetMp224 returns the Mp224 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp224Ok

func (o *UpdateContainerConfigSyncRequest) GetMp224Ok() (*string, bool)

GetMp224Ok returns a tuple with the Mp224 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp225

GetMp225 returns the Mp225 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp225Ok

func (o *UpdateContainerConfigSyncRequest) GetMp225Ok() (*string, bool)

GetMp225Ok returns a tuple with the Mp225 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp226

GetMp226 returns the Mp226 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp226Ok

func (o *UpdateContainerConfigSyncRequest) GetMp226Ok() (*string, bool)

GetMp226Ok returns a tuple with the Mp226 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp227

GetMp227 returns the Mp227 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp227Ok

func (o *UpdateContainerConfigSyncRequest) GetMp227Ok() (*string, bool)

GetMp227Ok returns a tuple with the Mp227 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp228

GetMp228 returns the Mp228 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp228Ok

func (o *UpdateContainerConfigSyncRequest) GetMp228Ok() (*string, bool)

GetMp228Ok returns a tuple with the Mp228 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp229

GetMp229 returns the Mp229 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp229Ok

func (o *UpdateContainerConfigSyncRequest) GetMp229Ok() (*string, bool)

GetMp229Ok returns a tuple with the Mp229 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp22Ok

func (o *UpdateContainerConfigSyncRequest) GetMp22Ok() (*string, bool)

GetMp22Ok returns a tuple with the Mp22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp23

GetMp23 returns the Mp23 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp230

GetMp230 returns the Mp230 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp230Ok

func (o *UpdateContainerConfigSyncRequest) GetMp230Ok() (*string, bool)

GetMp230Ok returns a tuple with the Mp230 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp231

GetMp231 returns the Mp231 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp231Ok

func (o *UpdateContainerConfigSyncRequest) GetMp231Ok() (*string, bool)

GetMp231Ok returns a tuple with the Mp231 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp232

GetMp232 returns the Mp232 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp232Ok

func (o *UpdateContainerConfigSyncRequest) GetMp232Ok() (*string, bool)

GetMp232Ok returns a tuple with the Mp232 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp233

GetMp233 returns the Mp233 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp233Ok

func (o *UpdateContainerConfigSyncRequest) GetMp233Ok() (*string, bool)

GetMp233Ok returns a tuple with the Mp233 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp234

GetMp234 returns the Mp234 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp234Ok

func (o *UpdateContainerConfigSyncRequest) GetMp234Ok() (*string, bool)

GetMp234Ok returns a tuple with the Mp234 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp235

GetMp235 returns the Mp235 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp235Ok

func (o *UpdateContainerConfigSyncRequest) GetMp235Ok() (*string, bool)

GetMp235Ok returns a tuple with the Mp235 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp236

GetMp236 returns the Mp236 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp236Ok

func (o *UpdateContainerConfigSyncRequest) GetMp236Ok() (*string, bool)

GetMp236Ok returns a tuple with the Mp236 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp237

GetMp237 returns the Mp237 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp237Ok

func (o *UpdateContainerConfigSyncRequest) GetMp237Ok() (*string, bool)

GetMp237Ok returns a tuple with the Mp237 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp238

GetMp238 returns the Mp238 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp238Ok

func (o *UpdateContainerConfigSyncRequest) GetMp238Ok() (*string, bool)

GetMp238Ok returns a tuple with the Mp238 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp239

GetMp239 returns the Mp239 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp239Ok

func (o *UpdateContainerConfigSyncRequest) GetMp239Ok() (*string, bool)

GetMp239Ok returns a tuple with the Mp239 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp23Ok

func (o *UpdateContainerConfigSyncRequest) GetMp23Ok() (*string, bool)

GetMp23Ok returns a tuple with the Mp23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp24

GetMp24 returns the Mp24 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp240

GetMp240 returns the Mp240 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp240Ok

func (o *UpdateContainerConfigSyncRequest) GetMp240Ok() (*string, bool)

GetMp240Ok returns a tuple with the Mp240 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp241

GetMp241 returns the Mp241 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp241Ok

func (o *UpdateContainerConfigSyncRequest) GetMp241Ok() (*string, bool)

GetMp241Ok returns a tuple with the Mp241 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp242

GetMp242 returns the Mp242 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp242Ok

func (o *UpdateContainerConfigSyncRequest) GetMp242Ok() (*string, bool)

GetMp242Ok returns a tuple with the Mp242 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp243

GetMp243 returns the Mp243 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp243Ok

func (o *UpdateContainerConfigSyncRequest) GetMp243Ok() (*string, bool)

GetMp243Ok returns a tuple with the Mp243 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp244

GetMp244 returns the Mp244 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp244Ok

func (o *UpdateContainerConfigSyncRequest) GetMp244Ok() (*string, bool)

GetMp244Ok returns a tuple with the Mp244 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp245

GetMp245 returns the Mp245 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp245Ok

func (o *UpdateContainerConfigSyncRequest) GetMp245Ok() (*string, bool)

GetMp245Ok returns a tuple with the Mp245 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp246

GetMp246 returns the Mp246 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp246Ok

func (o *UpdateContainerConfigSyncRequest) GetMp246Ok() (*string, bool)

GetMp246Ok returns a tuple with the Mp246 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp247

GetMp247 returns the Mp247 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp247Ok

func (o *UpdateContainerConfigSyncRequest) GetMp247Ok() (*string, bool)

GetMp247Ok returns a tuple with the Mp247 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp248

GetMp248 returns the Mp248 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp248Ok

func (o *UpdateContainerConfigSyncRequest) GetMp248Ok() (*string, bool)

GetMp248Ok returns a tuple with the Mp248 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp249

GetMp249 returns the Mp249 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp249Ok

func (o *UpdateContainerConfigSyncRequest) GetMp249Ok() (*string, bool)

GetMp249Ok returns a tuple with the Mp249 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp24Ok

func (o *UpdateContainerConfigSyncRequest) GetMp24Ok() (*string, bool)

GetMp24Ok returns a tuple with the Mp24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp25

GetMp25 returns the Mp25 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp250

GetMp250 returns the Mp250 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp250Ok

func (o *UpdateContainerConfigSyncRequest) GetMp250Ok() (*string, bool)

GetMp250Ok returns a tuple with the Mp250 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp251

GetMp251 returns the Mp251 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp251Ok

func (o *UpdateContainerConfigSyncRequest) GetMp251Ok() (*string, bool)

GetMp251Ok returns a tuple with the Mp251 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp252

GetMp252 returns the Mp252 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp252Ok

func (o *UpdateContainerConfigSyncRequest) GetMp252Ok() (*string, bool)

GetMp252Ok returns a tuple with the Mp252 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp253

GetMp253 returns the Mp253 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp253Ok

func (o *UpdateContainerConfigSyncRequest) GetMp253Ok() (*string, bool)

GetMp253Ok returns a tuple with the Mp253 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp254

GetMp254 returns the Mp254 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp254Ok

func (o *UpdateContainerConfigSyncRequest) GetMp254Ok() (*string, bool)

GetMp254Ok returns a tuple with the Mp254 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp255

GetMp255 returns the Mp255 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp255Ok

func (o *UpdateContainerConfigSyncRequest) GetMp255Ok() (*string, bool)

GetMp255Ok returns a tuple with the Mp255 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp25Ok

func (o *UpdateContainerConfigSyncRequest) GetMp25Ok() (*string, bool)

GetMp25Ok returns a tuple with the Mp25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp26

GetMp26 returns the Mp26 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp26Ok

func (o *UpdateContainerConfigSyncRequest) GetMp26Ok() (*string, bool)

GetMp26Ok returns a tuple with the Mp26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp27

GetMp27 returns the Mp27 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp27Ok

func (o *UpdateContainerConfigSyncRequest) GetMp27Ok() (*string, bool)

GetMp27Ok returns a tuple with the Mp27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp28

GetMp28 returns the Mp28 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp28Ok

func (o *UpdateContainerConfigSyncRequest) GetMp28Ok() (*string, bool)

GetMp28Ok returns a tuple with the Mp28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp29

GetMp29 returns the Mp29 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp29Ok

func (o *UpdateContainerConfigSyncRequest) GetMp29Ok() (*string, bool)

GetMp29Ok returns a tuple with the Mp29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp2Ok

func (o *UpdateContainerConfigSyncRequest) GetMp2Ok() (*string, bool)

GetMp2Ok returns a tuple with the Mp2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp3

GetMp3 returns the Mp3 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp30

GetMp30 returns the Mp30 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp30Ok

func (o *UpdateContainerConfigSyncRequest) GetMp30Ok() (*string, bool)

GetMp30Ok returns a tuple with the Mp30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp31

GetMp31 returns the Mp31 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp31Ok

func (o *UpdateContainerConfigSyncRequest) GetMp31Ok() (*string, bool)

GetMp31Ok returns a tuple with the Mp31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp32

GetMp32 returns the Mp32 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp32Ok

func (o *UpdateContainerConfigSyncRequest) GetMp32Ok() (*string, bool)

GetMp32Ok returns a tuple with the Mp32 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp33

GetMp33 returns the Mp33 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp33Ok

func (o *UpdateContainerConfigSyncRequest) GetMp33Ok() (*string, bool)

GetMp33Ok returns a tuple with the Mp33 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp34

GetMp34 returns the Mp34 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp34Ok

func (o *UpdateContainerConfigSyncRequest) GetMp34Ok() (*string, bool)

GetMp34Ok returns a tuple with the Mp34 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp35

GetMp35 returns the Mp35 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp35Ok

func (o *UpdateContainerConfigSyncRequest) GetMp35Ok() (*string, bool)

GetMp35Ok returns a tuple with the Mp35 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp36

GetMp36 returns the Mp36 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp36Ok

func (o *UpdateContainerConfigSyncRequest) GetMp36Ok() (*string, bool)

GetMp36Ok returns a tuple with the Mp36 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp37

GetMp37 returns the Mp37 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp37Ok

func (o *UpdateContainerConfigSyncRequest) GetMp37Ok() (*string, bool)

GetMp37Ok returns a tuple with the Mp37 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp38

GetMp38 returns the Mp38 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp38Ok

func (o *UpdateContainerConfigSyncRequest) GetMp38Ok() (*string, bool)

GetMp38Ok returns a tuple with the Mp38 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp39

GetMp39 returns the Mp39 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp39Ok

func (o *UpdateContainerConfigSyncRequest) GetMp39Ok() (*string, bool)

GetMp39Ok returns a tuple with the Mp39 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp3Ok

func (o *UpdateContainerConfigSyncRequest) GetMp3Ok() (*string, bool)

GetMp3Ok returns a tuple with the Mp3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp4

GetMp4 returns the Mp4 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp40

GetMp40 returns the Mp40 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp40Ok

func (o *UpdateContainerConfigSyncRequest) GetMp40Ok() (*string, bool)

GetMp40Ok returns a tuple with the Mp40 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp41

GetMp41 returns the Mp41 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp41Ok

func (o *UpdateContainerConfigSyncRequest) GetMp41Ok() (*string, bool)

GetMp41Ok returns a tuple with the Mp41 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp42

GetMp42 returns the Mp42 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp42Ok

func (o *UpdateContainerConfigSyncRequest) GetMp42Ok() (*string, bool)

GetMp42Ok returns a tuple with the Mp42 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp43

GetMp43 returns the Mp43 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp43Ok

func (o *UpdateContainerConfigSyncRequest) GetMp43Ok() (*string, bool)

GetMp43Ok returns a tuple with the Mp43 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp44

GetMp44 returns the Mp44 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp44Ok

func (o *UpdateContainerConfigSyncRequest) GetMp44Ok() (*string, bool)

GetMp44Ok returns a tuple with the Mp44 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp45

GetMp45 returns the Mp45 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp45Ok

func (o *UpdateContainerConfigSyncRequest) GetMp45Ok() (*string, bool)

GetMp45Ok returns a tuple with the Mp45 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp46

GetMp46 returns the Mp46 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp46Ok

func (o *UpdateContainerConfigSyncRequest) GetMp46Ok() (*string, bool)

GetMp46Ok returns a tuple with the Mp46 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp47

GetMp47 returns the Mp47 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp47Ok

func (o *UpdateContainerConfigSyncRequest) GetMp47Ok() (*string, bool)

GetMp47Ok returns a tuple with the Mp47 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp48

GetMp48 returns the Mp48 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp48Ok

func (o *UpdateContainerConfigSyncRequest) GetMp48Ok() (*string, bool)

GetMp48Ok returns a tuple with the Mp48 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp49

GetMp49 returns the Mp49 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp49Ok

func (o *UpdateContainerConfigSyncRequest) GetMp49Ok() (*string, bool)

GetMp49Ok returns a tuple with the Mp49 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp4Ok

func (o *UpdateContainerConfigSyncRequest) GetMp4Ok() (*string, bool)

GetMp4Ok returns a tuple with the Mp4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp5

GetMp5 returns the Mp5 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp50

GetMp50 returns the Mp50 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp50Ok

func (o *UpdateContainerConfigSyncRequest) GetMp50Ok() (*string, bool)

GetMp50Ok returns a tuple with the Mp50 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp51

GetMp51 returns the Mp51 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp51Ok

func (o *UpdateContainerConfigSyncRequest) GetMp51Ok() (*string, bool)

GetMp51Ok returns a tuple with the Mp51 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp52

GetMp52 returns the Mp52 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp52Ok

func (o *UpdateContainerConfigSyncRequest) GetMp52Ok() (*string, bool)

GetMp52Ok returns a tuple with the Mp52 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp53

GetMp53 returns the Mp53 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp53Ok

func (o *UpdateContainerConfigSyncRequest) GetMp53Ok() (*string, bool)

GetMp53Ok returns a tuple with the Mp53 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp54

GetMp54 returns the Mp54 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp54Ok

func (o *UpdateContainerConfigSyncRequest) GetMp54Ok() (*string, bool)

GetMp54Ok returns a tuple with the Mp54 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp55

GetMp55 returns the Mp55 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp55Ok

func (o *UpdateContainerConfigSyncRequest) GetMp55Ok() (*string, bool)

GetMp55Ok returns a tuple with the Mp55 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp56

GetMp56 returns the Mp56 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp56Ok

func (o *UpdateContainerConfigSyncRequest) GetMp56Ok() (*string, bool)

GetMp56Ok returns a tuple with the Mp56 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp57

GetMp57 returns the Mp57 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp57Ok

func (o *UpdateContainerConfigSyncRequest) GetMp57Ok() (*string, bool)

GetMp57Ok returns a tuple with the Mp57 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp58

GetMp58 returns the Mp58 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp58Ok

func (o *UpdateContainerConfigSyncRequest) GetMp58Ok() (*string, bool)

GetMp58Ok returns a tuple with the Mp58 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp59

GetMp59 returns the Mp59 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp59Ok

func (o *UpdateContainerConfigSyncRequest) GetMp59Ok() (*string, bool)

GetMp59Ok returns a tuple with the Mp59 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp5Ok

func (o *UpdateContainerConfigSyncRequest) GetMp5Ok() (*string, bool)

GetMp5Ok returns a tuple with the Mp5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp6

GetMp6 returns the Mp6 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp60

GetMp60 returns the Mp60 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp60Ok

func (o *UpdateContainerConfigSyncRequest) GetMp60Ok() (*string, bool)

GetMp60Ok returns a tuple with the Mp60 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp61

GetMp61 returns the Mp61 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp61Ok

func (o *UpdateContainerConfigSyncRequest) GetMp61Ok() (*string, bool)

GetMp61Ok returns a tuple with the Mp61 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp62

GetMp62 returns the Mp62 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp62Ok

func (o *UpdateContainerConfigSyncRequest) GetMp62Ok() (*string, bool)

GetMp62Ok returns a tuple with the Mp62 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp63

GetMp63 returns the Mp63 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp63Ok

func (o *UpdateContainerConfigSyncRequest) GetMp63Ok() (*string, bool)

GetMp63Ok returns a tuple with the Mp63 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp64

GetMp64 returns the Mp64 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp64Ok

func (o *UpdateContainerConfigSyncRequest) GetMp64Ok() (*string, bool)

GetMp64Ok returns a tuple with the Mp64 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp65

GetMp65 returns the Mp65 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp65Ok

func (o *UpdateContainerConfigSyncRequest) GetMp65Ok() (*string, bool)

GetMp65Ok returns a tuple with the Mp65 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp66

GetMp66 returns the Mp66 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp66Ok

func (o *UpdateContainerConfigSyncRequest) GetMp66Ok() (*string, bool)

GetMp66Ok returns a tuple with the Mp66 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp67

GetMp67 returns the Mp67 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp67Ok

func (o *UpdateContainerConfigSyncRequest) GetMp67Ok() (*string, bool)

GetMp67Ok returns a tuple with the Mp67 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp68

GetMp68 returns the Mp68 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp68Ok

func (o *UpdateContainerConfigSyncRequest) GetMp68Ok() (*string, bool)

GetMp68Ok returns a tuple with the Mp68 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp69

GetMp69 returns the Mp69 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp69Ok

func (o *UpdateContainerConfigSyncRequest) GetMp69Ok() (*string, bool)

GetMp69Ok returns a tuple with the Mp69 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp6Ok

func (o *UpdateContainerConfigSyncRequest) GetMp6Ok() (*string, bool)

GetMp6Ok returns a tuple with the Mp6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp7

GetMp7 returns the Mp7 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp70

GetMp70 returns the Mp70 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp70Ok

func (o *UpdateContainerConfigSyncRequest) GetMp70Ok() (*string, bool)

GetMp70Ok returns a tuple with the Mp70 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp71

GetMp71 returns the Mp71 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp71Ok

func (o *UpdateContainerConfigSyncRequest) GetMp71Ok() (*string, bool)

GetMp71Ok returns a tuple with the Mp71 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp72

GetMp72 returns the Mp72 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp72Ok

func (o *UpdateContainerConfigSyncRequest) GetMp72Ok() (*string, bool)

GetMp72Ok returns a tuple with the Mp72 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp73

GetMp73 returns the Mp73 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp73Ok

func (o *UpdateContainerConfigSyncRequest) GetMp73Ok() (*string, bool)

GetMp73Ok returns a tuple with the Mp73 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp74

GetMp74 returns the Mp74 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp74Ok

func (o *UpdateContainerConfigSyncRequest) GetMp74Ok() (*string, bool)

GetMp74Ok returns a tuple with the Mp74 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp75

GetMp75 returns the Mp75 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp75Ok

func (o *UpdateContainerConfigSyncRequest) GetMp75Ok() (*string, bool)

GetMp75Ok returns a tuple with the Mp75 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp76

GetMp76 returns the Mp76 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp76Ok

func (o *UpdateContainerConfigSyncRequest) GetMp76Ok() (*string, bool)

GetMp76Ok returns a tuple with the Mp76 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp77

GetMp77 returns the Mp77 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp77Ok

func (o *UpdateContainerConfigSyncRequest) GetMp77Ok() (*string, bool)

GetMp77Ok returns a tuple with the Mp77 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp78

GetMp78 returns the Mp78 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp78Ok

func (o *UpdateContainerConfigSyncRequest) GetMp78Ok() (*string, bool)

GetMp78Ok returns a tuple with the Mp78 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp79

GetMp79 returns the Mp79 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp79Ok

func (o *UpdateContainerConfigSyncRequest) GetMp79Ok() (*string, bool)

GetMp79Ok returns a tuple with the Mp79 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp7Ok

func (o *UpdateContainerConfigSyncRequest) GetMp7Ok() (*string, bool)

GetMp7Ok returns a tuple with the Mp7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp8

GetMp8 returns the Mp8 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp80

GetMp80 returns the Mp80 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp80Ok

func (o *UpdateContainerConfigSyncRequest) GetMp80Ok() (*string, bool)

GetMp80Ok returns a tuple with the Mp80 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp81

GetMp81 returns the Mp81 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp81Ok

func (o *UpdateContainerConfigSyncRequest) GetMp81Ok() (*string, bool)

GetMp81Ok returns a tuple with the Mp81 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp82

GetMp82 returns the Mp82 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp82Ok

func (o *UpdateContainerConfigSyncRequest) GetMp82Ok() (*string, bool)

GetMp82Ok returns a tuple with the Mp82 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp83

GetMp83 returns the Mp83 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp83Ok

func (o *UpdateContainerConfigSyncRequest) GetMp83Ok() (*string, bool)

GetMp83Ok returns a tuple with the Mp83 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp84

GetMp84 returns the Mp84 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp84Ok

func (o *UpdateContainerConfigSyncRequest) GetMp84Ok() (*string, bool)

GetMp84Ok returns a tuple with the Mp84 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp85

GetMp85 returns the Mp85 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp85Ok

func (o *UpdateContainerConfigSyncRequest) GetMp85Ok() (*string, bool)

GetMp85Ok returns a tuple with the Mp85 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp86

GetMp86 returns the Mp86 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp86Ok

func (o *UpdateContainerConfigSyncRequest) GetMp86Ok() (*string, bool)

GetMp86Ok returns a tuple with the Mp86 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp87

GetMp87 returns the Mp87 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp87Ok

func (o *UpdateContainerConfigSyncRequest) GetMp87Ok() (*string, bool)

GetMp87Ok returns a tuple with the Mp87 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp88

GetMp88 returns the Mp88 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp88Ok

func (o *UpdateContainerConfigSyncRequest) GetMp88Ok() (*string, bool)

GetMp88Ok returns a tuple with the Mp88 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp89

GetMp89 returns the Mp89 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp89Ok

func (o *UpdateContainerConfigSyncRequest) GetMp89Ok() (*string, bool)

GetMp89Ok returns a tuple with the Mp89 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp8Ok

func (o *UpdateContainerConfigSyncRequest) GetMp8Ok() (*string, bool)

GetMp8Ok returns a tuple with the Mp8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp9

GetMp9 returns the Mp9 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp90

GetMp90 returns the Mp90 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp90Ok

func (o *UpdateContainerConfigSyncRequest) GetMp90Ok() (*string, bool)

GetMp90Ok returns a tuple with the Mp90 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp91

GetMp91 returns the Mp91 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp91Ok

func (o *UpdateContainerConfigSyncRequest) GetMp91Ok() (*string, bool)

GetMp91Ok returns a tuple with the Mp91 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp92

GetMp92 returns the Mp92 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp92Ok

func (o *UpdateContainerConfigSyncRequest) GetMp92Ok() (*string, bool)

GetMp92Ok returns a tuple with the Mp92 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp93

GetMp93 returns the Mp93 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp93Ok

func (o *UpdateContainerConfigSyncRequest) GetMp93Ok() (*string, bool)

GetMp93Ok returns a tuple with the Mp93 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp94

GetMp94 returns the Mp94 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp94Ok

func (o *UpdateContainerConfigSyncRequest) GetMp94Ok() (*string, bool)

GetMp94Ok returns a tuple with the Mp94 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp95

GetMp95 returns the Mp95 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp95Ok

func (o *UpdateContainerConfigSyncRequest) GetMp95Ok() (*string, bool)

GetMp95Ok returns a tuple with the Mp95 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp96

GetMp96 returns the Mp96 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp96Ok

func (o *UpdateContainerConfigSyncRequest) GetMp96Ok() (*string, bool)

GetMp96Ok returns a tuple with the Mp96 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp97

GetMp97 returns the Mp97 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp97Ok

func (o *UpdateContainerConfigSyncRequest) GetMp97Ok() (*string, bool)

GetMp97Ok returns a tuple with the Mp97 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp98

GetMp98 returns the Mp98 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp98Ok

func (o *UpdateContainerConfigSyncRequest) GetMp98Ok() (*string, bool)

GetMp98Ok returns a tuple with the Mp98 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp99

GetMp99 returns the Mp99 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetMp99Ok

func (o *UpdateContainerConfigSyncRequest) GetMp99Ok() (*string, bool)

GetMp99Ok returns a tuple with the Mp99 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetMp9Ok

func (o *UpdateContainerConfigSyncRequest) GetMp9Ok() (*string, bool)

GetMp9Ok returns a tuple with the Mp9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNameserver

func (o *UpdateContainerConfigSyncRequest) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNameserverOk

func (o *UpdateContainerConfigSyncRequest) GetNameserverOk() (*string, bool)

GetNameserverOk returns a tuple with the Nameserver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet0

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet0Ok

func (o *UpdateContainerConfigSyncRequest) GetNet0Ok() (*string, bool)

GetNet0Ok returns a tuple with the Net0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet1

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet10

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet10Ok

func (o *UpdateContainerConfigSyncRequest) GetNet10Ok() (*string, bool)

GetNet10Ok returns a tuple with the Net10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet11

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet11Ok

func (o *UpdateContainerConfigSyncRequest) GetNet11Ok() (*string, bool)

GetNet11Ok returns a tuple with the Net11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet12

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet12Ok

func (o *UpdateContainerConfigSyncRequest) GetNet12Ok() (*string, bool)

GetNet12Ok returns a tuple with the Net12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet13

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet13Ok

func (o *UpdateContainerConfigSyncRequest) GetNet13Ok() (*string, bool)

GetNet13Ok returns a tuple with the Net13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet14

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet14Ok

func (o *UpdateContainerConfigSyncRequest) GetNet14Ok() (*string, bool)

GetNet14Ok returns a tuple with the Net14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet15

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet15Ok

func (o *UpdateContainerConfigSyncRequest) GetNet15Ok() (*string, bool)

GetNet15Ok returns a tuple with the Net15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet16

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet16Ok

func (o *UpdateContainerConfigSyncRequest) GetNet16Ok() (*string, bool)

GetNet16Ok returns a tuple with the Net16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet17

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet17Ok

func (o *UpdateContainerConfigSyncRequest) GetNet17Ok() (*string, bool)

GetNet17Ok returns a tuple with the Net17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet18

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet18Ok

func (o *UpdateContainerConfigSyncRequest) GetNet18Ok() (*string, bool)

GetNet18Ok returns a tuple with the Net18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet19

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet19Ok

func (o *UpdateContainerConfigSyncRequest) GetNet19Ok() (*string, bool)

GetNet19Ok returns a tuple with the Net19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet1Ok

func (o *UpdateContainerConfigSyncRequest) GetNet1Ok() (*string, bool)

GetNet1Ok returns a tuple with the Net1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet2

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet20

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet20Ok

func (o *UpdateContainerConfigSyncRequest) GetNet20Ok() (*string, bool)

GetNet20Ok returns a tuple with the Net20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet21

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet21Ok

func (o *UpdateContainerConfigSyncRequest) GetNet21Ok() (*string, bool)

GetNet21Ok returns a tuple with the Net21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet22

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet22Ok

func (o *UpdateContainerConfigSyncRequest) GetNet22Ok() (*string, bool)

GetNet22Ok returns a tuple with the Net22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet23

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet23Ok

func (o *UpdateContainerConfigSyncRequest) GetNet23Ok() (*string, bool)

GetNet23Ok returns a tuple with the Net23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet24

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet24Ok

func (o *UpdateContainerConfigSyncRequest) GetNet24Ok() (*string, bool)

GetNet24Ok returns a tuple with the Net24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet25

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet25Ok

func (o *UpdateContainerConfigSyncRequest) GetNet25Ok() (*string, bool)

GetNet25Ok returns a tuple with the Net25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet26

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet26Ok

func (o *UpdateContainerConfigSyncRequest) GetNet26Ok() (*string, bool)

GetNet26Ok returns a tuple with the Net26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet27

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet27Ok

func (o *UpdateContainerConfigSyncRequest) GetNet27Ok() (*string, bool)

GetNet27Ok returns a tuple with the Net27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet28

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet28Ok

func (o *UpdateContainerConfigSyncRequest) GetNet28Ok() (*string, bool)

GetNet28Ok returns a tuple with the Net28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet29

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet29Ok

func (o *UpdateContainerConfigSyncRequest) GetNet29Ok() (*string, bool)

GetNet29Ok returns a tuple with the Net29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet2Ok

func (o *UpdateContainerConfigSyncRequest) GetNet2Ok() (*string, bool)

GetNet2Ok returns a tuple with the Net2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet3

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet30

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet30Ok

func (o *UpdateContainerConfigSyncRequest) GetNet30Ok() (*string, bool)

GetNet30Ok returns a tuple with the Net30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet31

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet31Ok

func (o *UpdateContainerConfigSyncRequest) GetNet31Ok() (*string, bool)

GetNet31Ok returns a tuple with the Net31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet3Ok

func (o *UpdateContainerConfigSyncRequest) GetNet3Ok() (*string, bool)

GetNet3Ok returns a tuple with the Net3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet4

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet4Ok

func (o *UpdateContainerConfigSyncRequest) GetNet4Ok() (*string, bool)

GetNet4Ok returns a tuple with the Net4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet5

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet5Ok

func (o *UpdateContainerConfigSyncRequest) GetNet5Ok() (*string, bool)

GetNet5Ok returns a tuple with the Net5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet6

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet6Ok

func (o *UpdateContainerConfigSyncRequest) GetNet6Ok() (*string, bool)

GetNet6Ok returns a tuple with the Net6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet7

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet7Ok

func (o *UpdateContainerConfigSyncRequest) GetNet7Ok() (*string, bool)

GetNet7Ok returns a tuple with the Net7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet8

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet8Ok

func (o *UpdateContainerConfigSyncRequest) GetNet8Ok() (*string, bool)

GetNet8Ok returns a tuple with the Net8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetNet9

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetNet9Ok

func (o *UpdateContainerConfigSyncRequest) GetNet9Ok() (*string, bool)

GetNet9Ok returns a tuple with the Net9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetOnboot

func (o *UpdateContainerConfigSyncRequest) GetOnboot() int32

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetOnbootOk

func (o *UpdateContainerConfigSyncRequest) GetOnbootOk() (*int32, bool)

GetOnbootOk returns a tuple with the Onboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetOstype

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetOstypeOk

func (o *UpdateContainerConfigSyncRequest) GetOstypeOk() (*string, bool)

GetOstypeOk returns a tuple with the Ostype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetProtection

func (o *UpdateContainerConfigSyncRequest) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetProtectionOk

func (o *UpdateContainerConfigSyncRequest) GetProtectionOk() (*int32, bool)

GetProtectionOk returns a tuple with the Protection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetRevert

GetRevert returns the Revert field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetRevertOk

func (o *UpdateContainerConfigSyncRequest) GetRevertOk() (*string, bool)

GetRevertOk returns a tuple with the Revert field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetRootfs

GetRootfs returns the Rootfs field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetRootfsOk

func (o *UpdateContainerConfigSyncRequest) GetRootfsOk() (*string, bool)

GetRootfsOk returns a tuple with the Rootfs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetSearchdomain

func (o *UpdateContainerConfigSyncRequest) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetSearchdomainOk

func (o *UpdateContainerConfigSyncRequest) GetSearchdomainOk() (*string, bool)

GetSearchdomainOk returns a tuple with the Searchdomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetStartup

func (o *UpdateContainerConfigSyncRequest) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetStartupOk

func (o *UpdateContainerConfigSyncRequest) GetStartupOk() (*string, bool)

GetStartupOk returns a tuple with the Startup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetSwap

GetSwap returns the Swap field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetSwapOk

func (o *UpdateContainerConfigSyncRequest) GetSwapOk() (*int64, bool)

GetSwapOk returns a tuple with the Swap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetTagsOk

func (o *UpdateContainerConfigSyncRequest) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetTemplate

func (o *UpdateContainerConfigSyncRequest) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetTemplateOk

func (o *UpdateContainerConfigSyncRequest) GetTemplateOk() (*int32, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetTimezone

func (o *UpdateContainerConfigSyncRequest) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetTimezoneOk

func (o *UpdateContainerConfigSyncRequest) GetTimezoneOk() (*string, bool)

GetTimezoneOk returns a tuple with the Timezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetTty

GetTty returns the Tty field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetTtyOk

func (o *UpdateContainerConfigSyncRequest) GetTtyOk() (*int64, bool)

GetTtyOk returns a tuple with the Tty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnprivileged

func (o *UpdateContainerConfigSyncRequest) GetUnprivileged() int32

GetUnprivileged returns the Unprivileged field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnprivilegedOk

func (o *UpdateContainerConfigSyncRequest) GetUnprivilegedOk() (*int32, bool)

GetUnprivilegedOk returns a tuple with the Unprivileged field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused0

func (o *UpdateContainerConfigSyncRequest) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused0Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused0Ok() (*string, bool)

GetUnused0Ok returns a tuple with the Unused0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused1

func (o *UpdateContainerConfigSyncRequest) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused10

func (o *UpdateContainerConfigSyncRequest) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused10Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused10Ok() (*string, bool)

GetUnused10Ok returns a tuple with the Unused10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused11

func (o *UpdateContainerConfigSyncRequest) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused11Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused11Ok() (*string, bool)

GetUnused11Ok returns a tuple with the Unused11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused12

func (o *UpdateContainerConfigSyncRequest) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused12Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused12Ok() (*string, bool)

GetUnused12Ok returns a tuple with the Unused12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused13

func (o *UpdateContainerConfigSyncRequest) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused13Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused13Ok() (*string, bool)

GetUnused13Ok returns a tuple with the Unused13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused14

func (o *UpdateContainerConfigSyncRequest) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused14Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused14Ok() (*string, bool)

GetUnused14Ok returns a tuple with the Unused14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused15

func (o *UpdateContainerConfigSyncRequest) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused15Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused15Ok() (*string, bool)

GetUnused15Ok returns a tuple with the Unused15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused16

func (o *UpdateContainerConfigSyncRequest) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused16Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused16Ok() (*string, bool)

GetUnused16Ok returns a tuple with the Unused16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused17

func (o *UpdateContainerConfigSyncRequest) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused17Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused17Ok() (*string, bool)

GetUnused17Ok returns a tuple with the Unused17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused18

func (o *UpdateContainerConfigSyncRequest) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused18Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused18Ok() (*string, bool)

GetUnused18Ok returns a tuple with the Unused18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused19

func (o *UpdateContainerConfigSyncRequest) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused19Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused19Ok() (*string, bool)

GetUnused19Ok returns a tuple with the Unused19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused1Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused1Ok() (*string, bool)

GetUnused1Ok returns a tuple with the Unused1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused2

func (o *UpdateContainerConfigSyncRequest) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused20

func (o *UpdateContainerConfigSyncRequest) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused20Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused20Ok() (*string, bool)

GetUnused20Ok returns a tuple with the Unused20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused21

func (o *UpdateContainerConfigSyncRequest) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused21Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused21Ok() (*string, bool)

GetUnused21Ok returns a tuple with the Unused21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused22

func (o *UpdateContainerConfigSyncRequest) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused22Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused22Ok() (*string, bool)

GetUnused22Ok returns a tuple with the Unused22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused23

func (o *UpdateContainerConfigSyncRequest) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused23Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused23Ok() (*string, bool)

GetUnused23Ok returns a tuple with the Unused23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused24

func (o *UpdateContainerConfigSyncRequest) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused24Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused24Ok() (*string, bool)

GetUnused24Ok returns a tuple with the Unused24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused25

func (o *UpdateContainerConfigSyncRequest) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused25Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused25Ok() (*string, bool)

GetUnused25Ok returns a tuple with the Unused25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused26

func (o *UpdateContainerConfigSyncRequest) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused26Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused26Ok() (*string, bool)

GetUnused26Ok returns a tuple with the Unused26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused27

func (o *UpdateContainerConfigSyncRequest) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused27Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused27Ok() (*string, bool)

GetUnused27Ok returns a tuple with the Unused27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused28

func (o *UpdateContainerConfigSyncRequest) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused28Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused28Ok() (*string, bool)

GetUnused28Ok returns a tuple with the Unused28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused29

func (o *UpdateContainerConfigSyncRequest) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused29Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused29Ok() (*string, bool)

GetUnused29Ok returns a tuple with the Unused29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused2Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused2Ok() (*string, bool)

GetUnused2Ok returns a tuple with the Unused2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused3

func (o *UpdateContainerConfigSyncRequest) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused3Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused3Ok() (*string, bool)

GetUnused3Ok returns a tuple with the Unused3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused4

func (o *UpdateContainerConfigSyncRequest) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused4Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused4Ok() (*string, bool)

GetUnused4Ok returns a tuple with the Unused4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused5

func (o *UpdateContainerConfigSyncRequest) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused5Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused5Ok() (*string, bool)

GetUnused5Ok returns a tuple with the Unused5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused6

func (o *UpdateContainerConfigSyncRequest) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused6Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused6Ok() (*string, bool)

GetUnused6Ok returns a tuple with the Unused6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused7

func (o *UpdateContainerConfigSyncRequest) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused7Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused7Ok() (*string, bool)

GetUnused7Ok returns a tuple with the Unused7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused8

func (o *UpdateContainerConfigSyncRequest) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused8Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused8Ok() (*string, bool)

GetUnused8Ok returns a tuple with the Unused8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) GetUnused9

func (o *UpdateContainerConfigSyncRequest) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*UpdateContainerConfigSyncRequest) GetUnused9Ok

func (o *UpdateContainerConfigSyncRequest) GetUnused9Ok() (*string, bool)

GetUnused9Ok returns a tuple with the Unused9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerConfigSyncRequest) HasArch

HasArch returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasCmode

func (o *UpdateContainerConfigSyncRequest) HasCmode() bool

HasCmode returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasConsole

func (o *UpdateContainerConfigSyncRequest) HasConsole() bool

HasConsole returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasCores

func (o *UpdateContainerConfigSyncRequest) HasCores() bool

HasCores returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasCpulimit

func (o *UpdateContainerConfigSyncRequest) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasCpuunits

func (o *UpdateContainerConfigSyncRequest) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDebug

func (o *UpdateContainerConfigSyncRequest) HasDebug() bool

HasDebug returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDelete

func (o *UpdateContainerConfigSyncRequest) HasDelete() bool

HasDelete returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDescription

func (o *UpdateContainerConfigSyncRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev0 added in v1.0.4

HasDev0 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev1 added in v1.0.4

HasDev1 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev10 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev10() bool

HasDev10 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev11 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev11() bool

HasDev11 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev12 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev12() bool

HasDev12 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev13 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev13() bool

HasDev13 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev14 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev14() bool

HasDev14 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev15 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev15() bool

HasDev15 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev16 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev16() bool

HasDev16 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev17 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev17() bool

HasDev17 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev18 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev18() bool

HasDev18 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev19 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev19() bool

HasDev19 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev2 added in v1.0.4

HasDev2 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev20 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev20() bool

HasDev20 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev21 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev21() bool

HasDev21 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev22 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev22() bool

HasDev22 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev23 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev23() bool

HasDev23 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev24 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev24() bool

HasDev24 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev25 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev25() bool

HasDev25 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev26 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev26() bool

HasDev26 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev27 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev27() bool

HasDev27 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev28 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev28() bool

HasDev28 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev29 added in v1.0.4

func (o *UpdateContainerConfigSyncRequest) HasDev29() bool

HasDev29 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev3 added in v1.0.4

HasDev3 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev4 added in v1.0.4

HasDev4 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev5 added in v1.0.4

HasDev5 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev6 added in v1.0.4

HasDev6 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev7 added in v1.0.4

HasDev7 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev8 added in v1.0.4

HasDev8 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDev9 added in v1.0.4

HasDev9 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasDigest

func (o *UpdateContainerConfigSyncRequest) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasFeatures

func (o *UpdateContainerConfigSyncRequest) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasHookscript

func (o *UpdateContainerConfigSyncRequest) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasHostname

func (o *UpdateContainerConfigSyncRequest) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasLock

HasLock returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMemory

func (o *UpdateContainerConfigSyncRequest) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp0

HasMp0 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp1

HasMp1 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp10

HasMp10 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp100

func (o *UpdateContainerConfigSyncRequest) HasMp100() bool

HasMp100 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp101

func (o *UpdateContainerConfigSyncRequest) HasMp101() bool

HasMp101 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp102

func (o *UpdateContainerConfigSyncRequest) HasMp102() bool

HasMp102 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp103

func (o *UpdateContainerConfigSyncRequest) HasMp103() bool

HasMp103 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp104

func (o *UpdateContainerConfigSyncRequest) HasMp104() bool

HasMp104 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp105

func (o *UpdateContainerConfigSyncRequest) HasMp105() bool

HasMp105 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp106

func (o *UpdateContainerConfigSyncRequest) HasMp106() bool

HasMp106 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp107

func (o *UpdateContainerConfigSyncRequest) HasMp107() bool

HasMp107 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp108

func (o *UpdateContainerConfigSyncRequest) HasMp108() bool

HasMp108 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp109

func (o *UpdateContainerConfigSyncRequest) HasMp109() bool

HasMp109 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp11

HasMp11 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp110

func (o *UpdateContainerConfigSyncRequest) HasMp110() bool

HasMp110 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp111

func (o *UpdateContainerConfigSyncRequest) HasMp111() bool

HasMp111 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp112

func (o *UpdateContainerConfigSyncRequest) HasMp112() bool

HasMp112 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp113

func (o *UpdateContainerConfigSyncRequest) HasMp113() bool

HasMp113 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp114

func (o *UpdateContainerConfigSyncRequest) HasMp114() bool

HasMp114 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp115

func (o *UpdateContainerConfigSyncRequest) HasMp115() bool

HasMp115 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp116

func (o *UpdateContainerConfigSyncRequest) HasMp116() bool

HasMp116 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp117

func (o *UpdateContainerConfigSyncRequest) HasMp117() bool

HasMp117 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp118

func (o *UpdateContainerConfigSyncRequest) HasMp118() bool

HasMp118 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp119

func (o *UpdateContainerConfigSyncRequest) HasMp119() bool

HasMp119 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp12

HasMp12 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp120

func (o *UpdateContainerConfigSyncRequest) HasMp120() bool

HasMp120 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp121

func (o *UpdateContainerConfigSyncRequest) HasMp121() bool

HasMp121 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp122

func (o *UpdateContainerConfigSyncRequest) HasMp122() bool

HasMp122 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp123

func (o *UpdateContainerConfigSyncRequest) HasMp123() bool

HasMp123 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp124

func (o *UpdateContainerConfigSyncRequest) HasMp124() bool

HasMp124 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp125

func (o *UpdateContainerConfigSyncRequest) HasMp125() bool

HasMp125 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp126

func (o *UpdateContainerConfigSyncRequest) HasMp126() bool

HasMp126 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp127

func (o *UpdateContainerConfigSyncRequest) HasMp127() bool

HasMp127 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp128

func (o *UpdateContainerConfigSyncRequest) HasMp128() bool

HasMp128 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp129

func (o *UpdateContainerConfigSyncRequest) HasMp129() bool

HasMp129 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp13

HasMp13 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp130

func (o *UpdateContainerConfigSyncRequest) HasMp130() bool

HasMp130 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp131

func (o *UpdateContainerConfigSyncRequest) HasMp131() bool

HasMp131 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp132

func (o *UpdateContainerConfigSyncRequest) HasMp132() bool

HasMp132 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp133

func (o *UpdateContainerConfigSyncRequest) HasMp133() bool

HasMp133 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp134

func (o *UpdateContainerConfigSyncRequest) HasMp134() bool

HasMp134 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp135

func (o *UpdateContainerConfigSyncRequest) HasMp135() bool

HasMp135 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp136

func (o *UpdateContainerConfigSyncRequest) HasMp136() bool

HasMp136 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp137

func (o *UpdateContainerConfigSyncRequest) HasMp137() bool

HasMp137 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp138

func (o *UpdateContainerConfigSyncRequest) HasMp138() bool

HasMp138 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp139

func (o *UpdateContainerConfigSyncRequest) HasMp139() bool

HasMp139 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp14

HasMp14 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp140

func (o *UpdateContainerConfigSyncRequest) HasMp140() bool

HasMp140 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp141

func (o *UpdateContainerConfigSyncRequest) HasMp141() bool

HasMp141 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp142

func (o *UpdateContainerConfigSyncRequest) HasMp142() bool

HasMp142 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp143

func (o *UpdateContainerConfigSyncRequest) HasMp143() bool

HasMp143 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp144

func (o *UpdateContainerConfigSyncRequest) HasMp144() bool

HasMp144 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp145

func (o *UpdateContainerConfigSyncRequest) HasMp145() bool

HasMp145 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp146

func (o *UpdateContainerConfigSyncRequest) HasMp146() bool

HasMp146 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp147

func (o *UpdateContainerConfigSyncRequest) HasMp147() bool

HasMp147 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp148

func (o *UpdateContainerConfigSyncRequest) HasMp148() bool

HasMp148 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp149

func (o *UpdateContainerConfigSyncRequest) HasMp149() bool

HasMp149 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp15

HasMp15 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp150

func (o *UpdateContainerConfigSyncRequest) HasMp150() bool

HasMp150 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp151

func (o *UpdateContainerConfigSyncRequest) HasMp151() bool

HasMp151 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp152

func (o *UpdateContainerConfigSyncRequest) HasMp152() bool

HasMp152 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp153

func (o *UpdateContainerConfigSyncRequest) HasMp153() bool

HasMp153 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp154

func (o *UpdateContainerConfigSyncRequest) HasMp154() bool

HasMp154 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp155

func (o *UpdateContainerConfigSyncRequest) HasMp155() bool

HasMp155 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp156

func (o *UpdateContainerConfigSyncRequest) HasMp156() bool

HasMp156 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp157

func (o *UpdateContainerConfigSyncRequest) HasMp157() bool

HasMp157 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp158

func (o *UpdateContainerConfigSyncRequest) HasMp158() bool

HasMp158 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp159

func (o *UpdateContainerConfigSyncRequest) HasMp159() bool

HasMp159 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp16

HasMp16 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp160

func (o *UpdateContainerConfigSyncRequest) HasMp160() bool

HasMp160 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp161

func (o *UpdateContainerConfigSyncRequest) HasMp161() bool

HasMp161 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp162

func (o *UpdateContainerConfigSyncRequest) HasMp162() bool

HasMp162 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp163

func (o *UpdateContainerConfigSyncRequest) HasMp163() bool

HasMp163 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp164

func (o *UpdateContainerConfigSyncRequest) HasMp164() bool

HasMp164 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp165

func (o *UpdateContainerConfigSyncRequest) HasMp165() bool

HasMp165 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp166

func (o *UpdateContainerConfigSyncRequest) HasMp166() bool

HasMp166 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp167

func (o *UpdateContainerConfigSyncRequest) HasMp167() bool

HasMp167 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp168

func (o *UpdateContainerConfigSyncRequest) HasMp168() bool

HasMp168 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp169

func (o *UpdateContainerConfigSyncRequest) HasMp169() bool

HasMp169 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp17

HasMp17 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp170

func (o *UpdateContainerConfigSyncRequest) HasMp170() bool

HasMp170 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp171

func (o *UpdateContainerConfigSyncRequest) HasMp171() bool

HasMp171 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp172

func (o *UpdateContainerConfigSyncRequest) HasMp172() bool

HasMp172 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp173

func (o *UpdateContainerConfigSyncRequest) HasMp173() bool

HasMp173 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp174

func (o *UpdateContainerConfigSyncRequest) HasMp174() bool

HasMp174 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp175

func (o *UpdateContainerConfigSyncRequest) HasMp175() bool

HasMp175 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp176

func (o *UpdateContainerConfigSyncRequest) HasMp176() bool

HasMp176 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp177

func (o *UpdateContainerConfigSyncRequest) HasMp177() bool

HasMp177 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp178

func (o *UpdateContainerConfigSyncRequest) HasMp178() bool

HasMp178 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp179

func (o *UpdateContainerConfigSyncRequest) HasMp179() bool

HasMp179 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp18

HasMp18 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp180

func (o *UpdateContainerConfigSyncRequest) HasMp180() bool

HasMp180 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp181

func (o *UpdateContainerConfigSyncRequest) HasMp181() bool

HasMp181 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp182

func (o *UpdateContainerConfigSyncRequest) HasMp182() bool

HasMp182 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp183

func (o *UpdateContainerConfigSyncRequest) HasMp183() bool

HasMp183 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp184

func (o *UpdateContainerConfigSyncRequest) HasMp184() bool

HasMp184 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp185

func (o *UpdateContainerConfigSyncRequest) HasMp185() bool

HasMp185 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp186

func (o *UpdateContainerConfigSyncRequest) HasMp186() bool

HasMp186 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp187

func (o *UpdateContainerConfigSyncRequest) HasMp187() bool

HasMp187 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp188

func (o *UpdateContainerConfigSyncRequest) HasMp188() bool

HasMp188 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp189

func (o *UpdateContainerConfigSyncRequest) HasMp189() bool

HasMp189 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp19

HasMp19 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp190

func (o *UpdateContainerConfigSyncRequest) HasMp190() bool

HasMp190 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp191

func (o *UpdateContainerConfigSyncRequest) HasMp191() bool

HasMp191 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp192

func (o *UpdateContainerConfigSyncRequest) HasMp192() bool

HasMp192 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp193

func (o *UpdateContainerConfigSyncRequest) HasMp193() bool

HasMp193 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp194

func (o *UpdateContainerConfigSyncRequest) HasMp194() bool

HasMp194 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp195

func (o *UpdateContainerConfigSyncRequest) HasMp195() bool

HasMp195 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp196

func (o *UpdateContainerConfigSyncRequest) HasMp196() bool

HasMp196 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp197

func (o *UpdateContainerConfigSyncRequest) HasMp197() bool

HasMp197 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp198

func (o *UpdateContainerConfigSyncRequest) HasMp198() bool

HasMp198 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp199

func (o *UpdateContainerConfigSyncRequest) HasMp199() bool

HasMp199 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp2

HasMp2 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp20

HasMp20 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp200

func (o *UpdateContainerConfigSyncRequest) HasMp200() bool

HasMp200 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp201

func (o *UpdateContainerConfigSyncRequest) HasMp201() bool

HasMp201 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp202

func (o *UpdateContainerConfigSyncRequest) HasMp202() bool

HasMp202 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp203

func (o *UpdateContainerConfigSyncRequest) HasMp203() bool

HasMp203 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp204

func (o *UpdateContainerConfigSyncRequest) HasMp204() bool

HasMp204 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp205

func (o *UpdateContainerConfigSyncRequest) HasMp205() bool

HasMp205 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp206

func (o *UpdateContainerConfigSyncRequest) HasMp206() bool

HasMp206 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp207

func (o *UpdateContainerConfigSyncRequest) HasMp207() bool

HasMp207 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp208

func (o *UpdateContainerConfigSyncRequest) HasMp208() bool

HasMp208 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp209

func (o *UpdateContainerConfigSyncRequest) HasMp209() bool

HasMp209 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp21

HasMp21 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp210

func (o *UpdateContainerConfigSyncRequest) HasMp210() bool

HasMp210 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp211

func (o *UpdateContainerConfigSyncRequest) HasMp211() bool

HasMp211 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp212

func (o *UpdateContainerConfigSyncRequest) HasMp212() bool

HasMp212 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp213

func (o *UpdateContainerConfigSyncRequest) HasMp213() bool

HasMp213 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp214

func (o *UpdateContainerConfigSyncRequest) HasMp214() bool

HasMp214 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp215

func (o *UpdateContainerConfigSyncRequest) HasMp215() bool

HasMp215 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp216

func (o *UpdateContainerConfigSyncRequest) HasMp216() bool

HasMp216 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp217

func (o *UpdateContainerConfigSyncRequest) HasMp217() bool

HasMp217 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp218

func (o *UpdateContainerConfigSyncRequest) HasMp218() bool

HasMp218 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp219

func (o *UpdateContainerConfigSyncRequest) HasMp219() bool

HasMp219 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp22

HasMp22 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp220

func (o *UpdateContainerConfigSyncRequest) HasMp220() bool

HasMp220 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp221

func (o *UpdateContainerConfigSyncRequest) HasMp221() bool

HasMp221 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp222

func (o *UpdateContainerConfigSyncRequest) HasMp222() bool

HasMp222 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp223

func (o *UpdateContainerConfigSyncRequest) HasMp223() bool

HasMp223 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp224

func (o *UpdateContainerConfigSyncRequest) HasMp224() bool

HasMp224 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp225

func (o *UpdateContainerConfigSyncRequest) HasMp225() bool

HasMp225 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp226

func (o *UpdateContainerConfigSyncRequest) HasMp226() bool

HasMp226 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp227

func (o *UpdateContainerConfigSyncRequest) HasMp227() bool

HasMp227 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp228

func (o *UpdateContainerConfigSyncRequest) HasMp228() bool

HasMp228 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp229

func (o *UpdateContainerConfigSyncRequest) HasMp229() bool

HasMp229 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp23

HasMp23 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp230

func (o *UpdateContainerConfigSyncRequest) HasMp230() bool

HasMp230 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp231

func (o *UpdateContainerConfigSyncRequest) HasMp231() bool

HasMp231 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp232

func (o *UpdateContainerConfigSyncRequest) HasMp232() bool

HasMp232 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp233

func (o *UpdateContainerConfigSyncRequest) HasMp233() bool

HasMp233 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp234

func (o *UpdateContainerConfigSyncRequest) HasMp234() bool

HasMp234 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp235

func (o *UpdateContainerConfigSyncRequest) HasMp235() bool

HasMp235 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp236

func (o *UpdateContainerConfigSyncRequest) HasMp236() bool

HasMp236 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp237

func (o *UpdateContainerConfigSyncRequest) HasMp237() bool

HasMp237 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp238

func (o *UpdateContainerConfigSyncRequest) HasMp238() bool

HasMp238 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp239

func (o *UpdateContainerConfigSyncRequest) HasMp239() bool

HasMp239 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp24

HasMp24 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp240

func (o *UpdateContainerConfigSyncRequest) HasMp240() bool

HasMp240 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp241

func (o *UpdateContainerConfigSyncRequest) HasMp241() bool

HasMp241 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp242

func (o *UpdateContainerConfigSyncRequest) HasMp242() bool

HasMp242 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp243

func (o *UpdateContainerConfigSyncRequest) HasMp243() bool

HasMp243 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp244

func (o *UpdateContainerConfigSyncRequest) HasMp244() bool

HasMp244 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp245

func (o *UpdateContainerConfigSyncRequest) HasMp245() bool

HasMp245 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp246

func (o *UpdateContainerConfigSyncRequest) HasMp246() bool

HasMp246 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp247

func (o *UpdateContainerConfigSyncRequest) HasMp247() bool

HasMp247 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp248

func (o *UpdateContainerConfigSyncRequest) HasMp248() bool

HasMp248 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp249

func (o *UpdateContainerConfigSyncRequest) HasMp249() bool

HasMp249 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp25

HasMp25 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp250

func (o *UpdateContainerConfigSyncRequest) HasMp250() bool

HasMp250 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp251

func (o *UpdateContainerConfigSyncRequest) HasMp251() bool

HasMp251 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp252

func (o *UpdateContainerConfigSyncRequest) HasMp252() bool

HasMp252 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp253

func (o *UpdateContainerConfigSyncRequest) HasMp253() bool

HasMp253 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp254

func (o *UpdateContainerConfigSyncRequest) HasMp254() bool

HasMp254 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp255

func (o *UpdateContainerConfigSyncRequest) HasMp255() bool

HasMp255 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp26

HasMp26 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp27

HasMp27 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp28

HasMp28 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp29

HasMp29 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp3

HasMp3 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp30

HasMp30 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp31

HasMp31 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp32

HasMp32 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp33

HasMp33 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp34

HasMp34 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp35

HasMp35 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp36

HasMp36 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp37

HasMp37 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp38

HasMp38 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp39

HasMp39 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp4

HasMp4 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp40

HasMp40 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp41

HasMp41 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp42

HasMp42 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp43

HasMp43 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp44

HasMp44 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp45

HasMp45 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp46

HasMp46 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp47

HasMp47 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp48

HasMp48 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp49

HasMp49 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp5

HasMp5 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp50

HasMp50 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp51

HasMp51 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp52

HasMp52 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp53

HasMp53 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp54

HasMp54 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp55

HasMp55 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp56

HasMp56 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp57

HasMp57 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp58

HasMp58 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp59

HasMp59 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp6

HasMp6 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp60

HasMp60 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp61

HasMp61 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp62

HasMp62 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp63

HasMp63 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp64

HasMp64 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp65

HasMp65 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp66

HasMp66 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp67

HasMp67 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp68

HasMp68 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp69

HasMp69 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp7

HasMp7 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp70

HasMp70 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp71

HasMp71 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp72

HasMp72 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp73

HasMp73 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp74

HasMp74 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp75

HasMp75 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp76

HasMp76 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp77

HasMp77 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp78

HasMp78 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp79

HasMp79 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp8

HasMp8 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp80

HasMp80 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp81

HasMp81 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp82

HasMp82 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp83

HasMp83 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp84

HasMp84 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp85

HasMp85 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp86

HasMp86 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp87

HasMp87 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp88

HasMp88 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp89

HasMp89 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp9

HasMp9 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp90

HasMp90 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp91

HasMp91 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp92

HasMp92 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp93

HasMp93 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp94

HasMp94 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp95

HasMp95 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp96

HasMp96 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp97

HasMp97 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp98

HasMp98 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasMp99

HasMp99 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNameserver

func (o *UpdateContainerConfigSyncRequest) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet0

HasNet0 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet1

HasNet1 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet10

func (o *UpdateContainerConfigSyncRequest) HasNet10() bool

HasNet10 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet11

func (o *UpdateContainerConfigSyncRequest) HasNet11() bool

HasNet11 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet12

func (o *UpdateContainerConfigSyncRequest) HasNet12() bool

HasNet12 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet13

func (o *UpdateContainerConfigSyncRequest) HasNet13() bool

HasNet13 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet14

func (o *UpdateContainerConfigSyncRequest) HasNet14() bool

HasNet14 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet15

func (o *UpdateContainerConfigSyncRequest) HasNet15() bool

HasNet15 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet16

func (o *UpdateContainerConfigSyncRequest) HasNet16() bool

HasNet16 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet17

func (o *UpdateContainerConfigSyncRequest) HasNet17() bool

HasNet17 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet18

func (o *UpdateContainerConfigSyncRequest) HasNet18() bool

HasNet18 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet19

func (o *UpdateContainerConfigSyncRequest) HasNet19() bool

HasNet19 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet2

HasNet2 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet20

func (o *UpdateContainerConfigSyncRequest) HasNet20() bool

HasNet20 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet21

func (o *UpdateContainerConfigSyncRequest) HasNet21() bool

HasNet21 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet22

func (o *UpdateContainerConfigSyncRequest) HasNet22() bool

HasNet22 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet23

func (o *UpdateContainerConfigSyncRequest) HasNet23() bool

HasNet23 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet24

func (o *UpdateContainerConfigSyncRequest) HasNet24() bool

HasNet24 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet25

func (o *UpdateContainerConfigSyncRequest) HasNet25() bool

HasNet25 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet26

func (o *UpdateContainerConfigSyncRequest) HasNet26() bool

HasNet26 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet27

func (o *UpdateContainerConfigSyncRequest) HasNet27() bool

HasNet27 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet28

func (o *UpdateContainerConfigSyncRequest) HasNet28() bool

HasNet28 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet29

func (o *UpdateContainerConfigSyncRequest) HasNet29() bool

HasNet29 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet3

HasNet3 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet30

func (o *UpdateContainerConfigSyncRequest) HasNet30() bool

HasNet30 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet31

func (o *UpdateContainerConfigSyncRequest) HasNet31() bool

HasNet31 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet4

HasNet4 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet5

HasNet5 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet6

HasNet6 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet7

HasNet7 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet8

HasNet8 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasNet9

HasNet9 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasOnboot

func (o *UpdateContainerConfigSyncRequest) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasOstype

func (o *UpdateContainerConfigSyncRequest) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasProtection

func (o *UpdateContainerConfigSyncRequest) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasRevert

func (o *UpdateContainerConfigSyncRequest) HasRevert() bool

HasRevert returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasRootfs

func (o *UpdateContainerConfigSyncRequest) HasRootfs() bool

HasRootfs returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasSearchdomain

func (o *UpdateContainerConfigSyncRequest) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasStartup

func (o *UpdateContainerConfigSyncRequest) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasSwap

HasSwap returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasTags

HasTags returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasTemplate

func (o *UpdateContainerConfigSyncRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasTimezone

func (o *UpdateContainerConfigSyncRequest) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasTty

HasTty returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnprivileged

func (o *UpdateContainerConfigSyncRequest) HasUnprivileged() bool

HasUnprivileged returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused0

func (o *UpdateContainerConfigSyncRequest) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused1

func (o *UpdateContainerConfigSyncRequest) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused10

func (o *UpdateContainerConfigSyncRequest) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused11

func (o *UpdateContainerConfigSyncRequest) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused12

func (o *UpdateContainerConfigSyncRequest) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused13

func (o *UpdateContainerConfigSyncRequest) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused14

func (o *UpdateContainerConfigSyncRequest) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused15

func (o *UpdateContainerConfigSyncRequest) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused16

func (o *UpdateContainerConfigSyncRequest) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused17

func (o *UpdateContainerConfigSyncRequest) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused18

func (o *UpdateContainerConfigSyncRequest) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused19

func (o *UpdateContainerConfigSyncRequest) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused2

func (o *UpdateContainerConfigSyncRequest) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused20

func (o *UpdateContainerConfigSyncRequest) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused21

func (o *UpdateContainerConfigSyncRequest) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused22

func (o *UpdateContainerConfigSyncRequest) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused23

func (o *UpdateContainerConfigSyncRequest) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused24

func (o *UpdateContainerConfigSyncRequest) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused25

func (o *UpdateContainerConfigSyncRequest) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused26

func (o *UpdateContainerConfigSyncRequest) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused27

func (o *UpdateContainerConfigSyncRequest) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused28

func (o *UpdateContainerConfigSyncRequest) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused29

func (o *UpdateContainerConfigSyncRequest) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused3

func (o *UpdateContainerConfigSyncRequest) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused4

func (o *UpdateContainerConfigSyncRequest) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused5

func (o *UpdateContainerConfigSyncRequest) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused6

func (o *UpdateContainerConfigSyncRequest) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused7

func (o *UpdateContainerConfigSyncRequest) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused8

func (o *UpdateContainerConfigSyncRequest) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*UpdateContainerConfigSyncRequest) HasUnused9

func (o *UpdateContainerConfigSyncRequest) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (UpdateContainerConfigSyncRequest) MarshalJSON

func (o UpdateContainerConfigSyncRequest) MarshalJSON() ([]byte, error)

func (*UpdateContainerConfigSyncRequest) SetArch

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*UpdateContainerConfigSyncRequest) SetCmode

SetCmode gets a reference to the given string and assigns it to the Cmode field.

func (*UpdateContainerConfigSyncRequest) SetConsole

func (o *UpdateContainerConfigSyncRequest) SetConsole(v int32)

SetConsole gets a reference to the given int32 and assigns it to the Console field.

func (*UpdateContainerConfigSyncRequest) SetCores

func (o *UpdateContainerConfigSyncRequest) SetCores(v int64)

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*UpdateContainerConfigSyncRequest) SetCpulimit

func (o *UpdateContainerConfigSyncRequest) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*UpdateContainerConfigSyncRequest) SetCpuunits

func (o *UpdateContainerConfigSyncRequest) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*UpdateContainerConfigSyncRequest) SetDebug

func (o *UpdateContainerConfigSyncRequest) SetDebug(v int32)

SetDebug gets a reference to the given int32 and assigns it to the Debug field.

func (*UpdateContainerConfigSyncRequest) SetDelete

func (o *UpdateContainerConfigSyncRequest) SetDelete(v string)

SetDelete gets a reference to the given string and assigns it to the Delete field.

func (*UpdateContainerConfigSyncRequest) SetDescription

func (o *UpdateContainerConfigSyncRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateContainerConfigSyncRequest) SetDev0 added in v1.0.4

SetDev0 gets a reference to the given string and assigns it to the Dev0 field.

func (*UpdateContainerConfigSyncRequest) SetDev1 added in v1.0.4

SetDev1 gets a reference to the given string and assigns it to the Dev1 field.

func (*UpdateContainerConfigSyncRequest) SetDev10 added in v1.0.4

SetDev10 gets a reference to the given string and assigns it to the Dev10 field.

func (*UpdateContainerConfigSyncRequest) SetDev11 added in v1.0.4

SetDev11 gets a reference to the given string and assigns it to the Dev11 field.

func (*UpdateContainerConfigSyncRequest) SetDev12 added in v1.0.4

SetDev12 gets a reference to the given string and assigns it to the Dev12 field.

func (*UpdateContainerConfigSyncRequest) SetDev13 added in v1.0.4

SetDev13 gets a reference to the given string and assigns it to the Dev13 field.

func (*UpdateContainerConfigSyncRequest) SetDev14 added in v1.0.4

SetDev14 gets a reference to the given string and assigns it to the Dev14 field.

func (*UpdateContainerConfigSyncRequest) SetDev15 added in v1.0.4

SetDev15 gets a reference to the given string and assigns it to the Dev15 field.

func (*UpdateContainerConfigSyncRequest) SetDev16 added in v1.0.4

SetDev16 gets a reference to the given string and assigns it to the Dev16 field.

func (*UpdateContainerConfigSyncRequest) SetDev17 added in v1.0.4

SetDev17 gets a reference to the given string and assigns it to the Dev17 field.

func (*UpdateContainerConfigSyncRequest) SetDev18 added in v1.0.4

SetDev18 gets a reference to the given string and assigns it to the Dev18 field.

func (*UpdateContainerConfigSyncRequest) SetDev19 added in v1.0.4

SetDev19 gets a reference to the given string and assigns it to the Dev19 field.

func (*UpdateContainerConfigSyncRequest) SetDev2 added in v1.0.4

SetDev2 gets a reference to the given string and assigns it to the Dev2 field.

func (*UpdateContainerConfigSyncRequest) SetDev20 added in v1.0.4

SetDev20 gets a reference to the given string and assigns it to the Dev20 field.

func (*UpdateContainerConfigSyncRequest) SetDev21 added in v1.0.4

SetDev21 gets a reference to the given string and assigns it to the Dev21 field.

func (*UpdateContainerConfigSyncRequest) SetDev22 added in v1.0.4

SetDev22 gets a reference to the given string and assigns it to the Dev22 field.

func (*UpdateContainerConfigSyncRequest) SetDev23 added in v1.0.4

SetDev23 gets a reference to the given string and assigns it to the Dev23 field.

func (*UpdateContainerConfigSyncRequest) SetDev24 added in v1.0.4

SetDev24 gets a reference to the given string and assigns it to the Dev24 field.

func (*UpdateContainerConfigSyncRequest) SetDev25 added in v1.0.4

SetDev25 gets a reference to the given string and assigns it to the Dev25 field.

func (*UpdateContainerConfigSyncRequest) SetDev26 added in v1.0.4

SetDev26 gets a reference to the given string and assigns it to the Dev26 field.

func (*UpdateContainerConfigSyncRequest) SetDev27 added in v1.0.4

SetDev27 gets a reference to the given string and assigns it to the Dev27 field.

func (*UpdateContainerConfigSyncRequest) SetDev28 added in v1.0.4

SetDev28 gets a reference to the given string and assigns it to the Dev28 field.

func (*UpdateContainerConfigSyncRequest) SetDev29 added in v1.0.4

SetDev29 gets a reference to the given string and assigns it to the Dev29 field.

func (*UpdateContainerConfigSyncRequest) SetDev3 added in v1.0.4

SetDev3 gets a reference to the given string and assigns it to the Dev3 field.

func (*UpdateContainerConfigSyncRequest) SetDev4 added in v1.0.4

SetDev4 gets a reference to the given string and assigns it to the Dev4 field.

func (*UpdateContainerConfigSyncRequest) SetDev5 added in v1.0.4

SetDev5 gets a reference to the given string and assigns it to the Dev5 field.

func (*UpdateContainerConfigSyncRequest) SetDev6 added in v1.0.4

SetDev6 gets a reference to the given string and assigns it to the Dev6 field.

func (*UpdateContainerConfigSyncRequest) SetDev7 added in v1.0.4

SetDev7 gets a reference to the given string and assigns it to the Dev7 field.

func (*UpdateContainerConfigSyncRequest) SetDev8 added in v1.0.4

SetDev8 gets a reference to the given string and assigns it to the Dev8 field.

func (*UpdateContainerConfigSyncRequest) SetDev9 added in v1.0.4

SetDev9 gets a reference to the given string and assigns it to the Dev9 field.

func (*UpdateContainerConfigSyncRequest) SetDigest

func (o *UpdateContainerConfigSyncRequest) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*UpdateContainerConfigSyncRequest) SetFeatures

func (o *UpdateContainerConfigSyncRequest) SetFeatures(v string)

SetFeatures gets a reference to the given string and assigns it to the Features field.

func (*UpdateContainerConfigSyncRequest) SetHookscript

func (o *UpdateContainerConfigSyncRequest) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*UpdateContainerConfigSyncRequest) SetHostname

func (o *UpdateContainerConfigSyncRequest) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*UpdateContainerConfigSyncRequest) SetLock

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*UpdateContainerConfigSyncRequest) SetMemory

func (o *UpdateContainerConfigSyncRequest) SetMemory(v int64)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (*UpdateContainerConfigSyncRequest) SetMp0

SetMp0 gets a reference to the given string and assigns it to the Mp0 field.

func (*UpdateContainerConfigSyncRequest) SetMp1

SetMp1 gets a reference to the given string and assigns it to the Mp1 field.

func (*UpdateContainerConfigSyncRequest) SetMp10

SetMp10 gets a reference to the given string and assigns it to the Mp10 field.

func (*UpdateContainerConfigSyncRequest) SetMp100

SetMp100 gets a reference to the given string and assigns it to the Mp100 field.

func (*UpdateContainerConfigSyncRequest) SetMp101

SetMp101 gets a reference to the given string and assigns it to the Mp101 field.

func (*UpdateContainerConfigSyncRequest) SetMp102

SetMp102 gets a reference to the given string and assigns it to the Mp102 field.

func (*UpdateContainerConfigSyncRequest) SetMp103

SetMp103 gets a reference to the given string and assigns it to the Mp103 field.

func (*UpdateContainerConfigSyncRequest) SetMp104

SetMp104 gets a reference to the given string and assigns it to the Mp104 field.

func (*UpdateContainerConfigSyncRequest) SetMp105

SetMp105 gets a reference to the given string and assigns it to the Mp105 field.

func (*UpdateContainerConfigSyncRequest) SetMp106

SetMp106 gets a reference to the given string and assigns it to the Mp106 field.

func (*UpdateContainerConfigSyncRequest) SetMp107

SetMp107 gets a reference to the given string and assigns it to the Mp107 field.

func (*UpdateContainerConfigSyncRequest) SetMp108

SetMp108 gets a reference to the given string and assigns it to the Mp108 field.

func (*UpdateContainerConfigSyncRequest) SetMp109

SetMp109 gets a reference to the given string and assigns it to the Mp109 field.

func (*UpdateContainerConfigSyncRequest) SetMp11

SetMp11 gets a reference to the given string and assigns it to the Mp11 field.

func (*UpdateContainerConfigSyncRequest) SetMp110

SetMp110 gets a reference to the given string and assigns it to the Mp110 field.

func (*UpdateContainerConfigSyncRequest) SetMp111

SetMp111 gets a reference to the given string and assigns it to the Mp111 field.

func (*UpdateContainerConfigSyncRequest) SetMp112

SetMp112 gets a reference to the given string and assigns it to the Mp112 field.

func (*UpdateContainerConfigSyncRequest) SetMp113

SetMp113 gets a reference to the given string and assigns it to the Mp113 field.

func (*UpdateContainerConfigSyncRequest) SetMp114

SetMp114 gets a reference to the given string and assigns it to the Mp114 field.

func (*UpdateContainerConfigSyncRequest) SetMp115

SetMp115 gets a reference to the given string and assigns it to the Mp115 field.

func (*UpdateContainerConfigSyncRequest) SetMp116

SetMp116 gets a reference to the given string and assigns it to the Mp116 field.

func (*UpdateContainerConfigSyncRequest) SetMp117

SetMp117 gets a reference to the given string and assigns it to the Mp117 field.

func (*UpdateContainerConfigSyncRequest) SetMp118

SetMp118 gets a reference to the given string and assigns it to the Mp118 field.

func (*UpdateContainerConfigSyncRequest) SetMp119

SetMp119 gets a reference to the given string and assigns it to the Mp119 field.

func (*UpdateContainerConfigSyncRequest) SetMp12

SetMp12 gets a reference to the given string and assigns it to the Mp12 field.

func (*UpdateContainerConfigSyncRequest) SetMp120

SetMp120 gets a reference to the given string and assigns it to the Mp120 field.

func (*UpdateContainerConfigSyncRequest) SetMp121

SetMp121 gets a reference to the given string and assigns it to the Mp121 field.

func (*UpdateContainerConfigSyncRequest) SetMp122

SetMp122 gets a reference to the given string and assigns it to the Mp122 field.

func (*UpdateContainerConfigSyncRequest) SetMp123

SetMp123 gets a reference to the given string and assigns it to the Mp123 field.

func (*UpdateContainerConfigSyncRequest) SetMp124

SetMp124 gets a reference to the given string and assigns it to the Mp124 field.

func (*UpdateContainerConfigSyncRequest) SetMp125

SetMp125 gets a reference to the given string and assigns it to the Mp125 field.

func (*UpdateContainerConfigSyncRequest) SetMp126

SetMp126 gets a reference to the given string and assigns it to the Mp126 field.

func (*UpdateContainerConfigSyncRequest) SetMp127

SetMp127 gets a reference to the given string and assigns it to the Mp127 field.

func (*UpdateContainerConfigSyncRequest) SetMp128

SetMp128 gets a reference to the given string and assigns it to the Mp128 field.

func (*UpdateContainerConfigSyncRequest) SetMp129

SetMp129 gets a reference to the given string and assigns it to the Mp129 field.

func (*UpdateContainerConfigSyncRequest) SetMp13

SetMp13 gets a reference to the given string and assigns it to the Mp13 field.

func (*UpdateContainerConfigSyncRequest) SetMp130

SetMp130 gets a reference to the given string and assigns it to the Mp130 field.

func (*UpdateContainerConfigSyncRequest) SetMp131

SetMp131 gets a reference to the given string and assigns it to the Mp131 field.

func (*UpdateContainerConfigSyncRequest) SetMp132

SetMp132 gets a reference to the given string and assigns it to the Mp132 field.

func (*UpdateContainerConfigSyncRequest) SetMp133

SetMp133 gets a reference to the given string and assigns it to the Mp133 field.

func (*UpdateContainerConfigSyncRequest) SetMp134

SetMp134 gets a reference to the given string and assigns it to the Mp134 field.

func (*UpdateContainerConfigSyncRequest) SetMp135

SetMp135 gets a reference to the given string and assigns it to the Mp135 field.

func (*UpdateContainerConfigSyncRequest) SetMp136

SetMp136 gets a reference to the given string and assigns it to the Mp136 field.

func (*UpdateContainerConfigSyncRequest) SetMp137

SetMp137 gets a reference to the given string and assigns it to the Mp137 field.

func (*UpdateContainerConfigSyncRequest) SetMp138

SetMp138 gets a reference to the given string and assigns it to the Mp138 field.

func (*UpdateContainerConfigSyncRequest) SetMp139

SetMp139 gets a reference to the given string and assigns it to the Mp139 field.

func (*UpdateContainerConfigSyncRequest) SetMp14

SetMp14 gets a reference to the given string and assigns it to the Mp14 field.

func (*UpdateContainerConfigSyncRequest) SetMp140

SetMp140 gets a reference to the given string and assigns it to the Mp140 field.

func (*UpdateContainerConfigSyncRequest) SetMp141

SetMp141 gets a reference to the given string and assigns it to the Mp141 field.

func (*UpdateContainerConfigSyncRequest) SetMp142

SetMp142 gets a reference to the given string and assigns it to the Mp142 field.

func (*UpdateContainerConfigSyncRequest) SetMp143

SetMp143 gets a reference to the given string and assigns it to the Mp143 field.

func (*UpdateContainerConfigSyncRequest) SetMp144

SetMp144 gets a reference to the given string and assigns it to the Mp144 field.

func (*UpdateContainerConfigSyncRequest) SetMp145

SetMp145 gets a reference to the given string and assigns it to the Mp145 field.

func (*UpdateContainerConfigSyncRequest) SetMp146

SetMp146 gets a reference to the given string and assigns it to the Mp146 field.

func (*UpdateContainerConfigSyncRequest) SetMp147

SetMp147 gets a reference to the given string and assigns it to the Mp147 field.

func (*UpdateContainerConfigSyncRequest) SetMp148

SetMp148 gets a reference to the given string and assigns it to the Mp148 field.

func (*UpdateContainerConfigSyncRequest) SetMp149

SetMp149 gets a reference to the given string and assigns it to the Mp149 field.

func (*UpdateContainerConfigSyncRequest) SetMp15

SetMp15 gets a reference to the given string and assigns it to the Mp15 field.

func (*UpdateContainerConfigSyncRequest) SetMp150

SetMp150 gets a reference to the given string and assigns it to the Mp150 field.

func (*UpdateContainerConfigSyncRequest) SetMp151

SetMp151 gets a reference to the given string and assigns it to the Mp151 field.

func (*UpdateContainerConfigSyncRequest) SetMp152

SetMp152 gets a reference to the given string and assigns it to the Mp152 field.

func (*UpdateContainerConfigSyncRequest) SetMp153

SetMp153 gets a reference to the given string and assigns it to the Mp153 field.

func (*UpdateContainerConfigSyncRequest) SetMp154

SetMp154 gets a reference to the given string and assigns it to the Mp154 field.

func (*UpdateContainerConfigSyncRequest) SetMp155

SetMp155 gets a reference to the given string and assigns it to the Mp155 field.

func (*UpdateContainerConfigSyncRequest) SetMp156

SetMp156 gets a reference to the given string and assigns it to the Mp156 field.

func (*UpdateContainerConfigSyncRequest) SetMp157

SetMp157 gets a reference to the given string and assigns it to the Mp157 field.

func (*UpdateContainerConfigSyncRequest) SetMp158

SetMp158 gets a reference to the given string and assigns it to the Mp158 field.

func (*UpdateContainerConfigSyncRequest) SetMp159

SetMp159 gets a reference to the given string and assigns it to the Mp159 field.

func (*UpdateContainerConfigSyncRequest) SetMp16

SetMp16 gets a reference to the given string and assigns it to the Mp16 field.

func (*UpdateContainerConfigSyncRequest) SetMp160

SetMp160 gets a reference to the given string and assigns it to the Mp160 field.

func (*UpdateContainerConfigSyncRequest) SetMp161

SetMp161 gets a reference to the given string and assigns it to the Mp161 field.

func (*UpdateContainerConfigSyncRequest) SetMp162

SetMp162 gets a reference to the given string and assigns it to the Mp162 field.

func (*UpdateContainerConfigSyncRequest) SetMp163

SetMp163 gets a reference to the given string and assigns it to the Mp163 field.

func (*UpdateContainerConfigSyncRequest) SetMp164

SetMp164 gets a reference to the given string and assigns it to the Mp164 field.

func (*UpdateContainerConfigSyncRequest) SetMp165

SetMp165 gets a reference to the given string and assigns it to the Mp165 field.

func (*UpdateContainerConfigSyncRequest) SetMp166

SetMp166 gets a reference to the given string and assigns it to the Mp166 field.

func (*UpdateContainerConfigSyncRequest) SetMp167

SetMp167 gets a reference to the given string and assigns it to the Mp167 field.

func (*UpdateContainerConfigSyncRequest) SetMp168

SetMp168 gets a reference to the given string and assigns it to the Mp168 field.

func (*UpdateContainerConfigSyncRequest) SetMp169

SetMp169 gets a reference to the given string and assigns it to the Mp169 field.

func (*UpdateContainerConfigSyncRequest) SetMp17

SetMp17 gets a reference to the given string and assigns it to the Mp17 field.

func (*UpdateContainerConfigSyncRequest) SetMp170

SetMp170 gets a reference to the given string and assigns it to the Mp170 field.

func (*UpdateContainerConfigSyncRequest) SetMp171

SetMp171 gets a reference to the given string and assigns it to the Mp171 field.

func (*UpdateContainerConfigSyncRequest) SetMp172

SetMp172 gets a reference to the given string and assigns it to the Mp172 field.

func (*UpdateContainerConfigSyncRequest) SetMp173

SetMp173 gets a reference to the given string and assigns it to the Mp173 field.

func (*UpdateContainerConfigSyncRequest) SetMp174

SetMp174 gets a reference to the given string and assigns it to the Mp174 field.

func (*UpdateContainerConfigSyncRequest) SetMp175

SetMp175 gets a reference to the given string and assigns it to the Mp175 field.

func (*UpdateContainerConfigSyncRequest) SetMp176

SetMp176 gets a reference to the given string and assigns it to the Mp176 field.

func (*UpdateContainerConfigSyncRequest) SetMp177

SetMp177 gets a reference to the given string and assigns it to the Mp177 field.

func (*UpdateContainerConfigSyncRequest) SetMp178

SetMp178 gets a reference to the given string and assigns it to the Mp178 field.

func (*UpdateContainerConfigSyncRequest) SetMp179

SetMp179 gets a reference to the given string and assigns it to the Mp179 field.

func (*UpdateContainerConfigSyncRequest) SetMp18

SetMp18 gets a reference to the given string and assigns it to the Mp18 field.

func (*UpdateContainerConfigSyncRequest) SetMp180

SetMp180 gets a reference to the given string and assigns it to the Mp180 field.

func (*UpdateContainerConfigSyncRequest) SetMp181

SetMp181 gets a reference to the given string and assigns it to the Mp181 field.

func (*UpdateContainerConfigSyncRequest) SetMp182

SetMp182 gets a reference to the given string and assigns it to the Mp182 field.

func (*UpdateContainerConfigSyncRequest) SetMp183

SetMp183 gets a reference to the given string and assigns it to the Mp183 field.

func (*UpdateContainerConfigSyncRequest) SetMp184

SetMp184 gets a reference to the given string and assigns it to the Mp184 field.

func (*UpdateContainerConfigSyncRequest) SetMp185

SetMp185 gets a reference to the given string and assigns it to the Mp185 field.

func (*UpdateContainerConfigSyncRequest) SetMp186

SetMp186 gets a reference to the given string and assigns it to the Mp186 field.

func (*UpdateContainerConfigSyncRequest) SetMp187

SetMp187 gets a reference to the given string and assigns it to the Mp187 field.

func (*UpdateContainerConfigSyncRequest) SetMp188

SetMp188 gets a reference to the given string and assigns it to the Mp188 field.

func (*UpdateContainerConfigSyncRequest) SetMp189

SetMp189 gets a reference to the given string and assigns it to the Mp189 field.

func (*UpdateContainerConfigSyncRequest) SetMp19

SetMp19 gets a reference to the given string and assigns it to the Mp19 field.

func (*UpdateContainerConfigSyncRequest) SetMp190

SetMp190 gets a reference to the given string and assigns it to the Mp190 field.

func (*UpdateContainerConfigSyncRequest) SetMp191

SetMp191 gets a reference to the given string and assigns it to the Mp191 field.

func (*UpdateContainerConfigSyncRequest) SetMp192

SetMp192 gets a reference to the given string and assigns it to the Mp192 field.

func (*UpdateContainerConfigSyncRequest) SetMp193

SetMp193 gets a reference to the given string and assigns it to the Mp193 field.

func (*UpdateContainerConfigSyncRequest) SetMp194

SetMp194 gets a reference to the given string and assigns it to the Mp194 field.

func (*UpdateContainerConfigSyncRequest) SetMp195

SetMp195 gets a reference to the given string and assigns it to the Mp195 field.

func (*UpdateContainerConfigSyncRequest) SetMp196

SetMp196 gets a reference to the given string and assigns it to the Mp196 field.

func (*UpdateContainerConfigSyncRequest) SetMp197

SetMp197 gets a reference to the given string and assigns it to the Mp197 field.

func (*UpdateContainerConfigSyncRequest) SetMp198

SetMp198 gets a reference to the given string and assigns it to the Mp198 field.

func (*UpdateContainerConfigSyncRequest) SetMp199

SetMp199 gets a reference to the given string and assigns it to the Mp199 field.

func (*UpdateContainerConfigSyncRequest) SetMp2

SetMp2 gets a reference to the given string and assigns it to the Mp2 field.

func (*UpdateContainerConfigSyncRequest) SetMp20

SetMp20 gets a reference to the given string and assigns it to the Mp20 field.

func (*UpdateContainerConfigSyncRequest) SetMp200

SetMp200 gets a reference to the given string and assigns it to the Mp200 field.

func (*UpdateContainerConfigSyncRequest) SetMp201

SetMp201 gets a reference to the given string and assigns it to the Mp201 field.

func (*UpdateContainerConfigSyncRequest) SetMp202

SetMp202 gets a reference to the given string and assigns it to the Mp202 field.

func (*UpdateContainerConfigSyncRequest) SetMp203

SetMp203 gets a reference to the given string and assigns it to the Mp203 field.

func (*UpdateContainerConfigSyncRequest) SetMp204

SetMp204 gets a reference to the given string and assigns it to the Mp204 field.

func (*UpdateContainerConfigSyncRequest) SetMp205

SetMp205 gets a reference to the given string and assigns it to the Mp205 field.

func (*UpdateContainerConfigSyncRequest) SetMp206

SetMp206 gets a reference to the given string and assigns it to the Mp206 field.

func (*UpdateContainerConfigSyncRequest) SetMp207

SetMp207 gets a reference to the given string and assigns it to the Mp207 field.

func (*UpdateContainerConfigSyncRequest) SetMp208

SetMp208 gets a reference to the given string and assigns it to the Mp208 field.

func (*UpdateContainerConfigSyncRequest) SetMp209

SetMp209 gets a reference to the given string and assigns it to the Mp209 field.

func (*UpdateContainerConfigSyncRequest) SetMp21

SetMp21 gets a reference to the given string and assigns it to the Mp21 field.

func (*UpdateContainerConfigSyncRequest) SetMp210

SetMp210 gets a reference to the given string and assigns it to the Mp210 field.

func (*UpdateContainerConfigSyncRequest) SetMp211

SetMp211 gets a reference to the given string and assigns it to the Mp211 field.

func (*UpdateContainerConfigSyncRequest) SetMp212

SetMp212 gets a reference to the given string and assigns it to the Mp212 field.

func (*UpdateContainerConfigSyncRequest) SetMp213

SetMp213 gets a reference to the given string and assigns it to the Mp213 field.

func (*UpdateContainerConfigSyncRequest) SetMp214

SetMp214 gets a reference to the given string and assigns it to the Mp214 field.

func (*UpdateContainerConfigSyncRequest) SetMp215

SetMp215 gets a reference to the given string and assigns it to the Mp215 field.

func (*UpdateContainerConfigSyncRequest) SetMp216

SetMp216 gets a reference to the given string and assigns it to the Mp216 field.

func (*UpdateContainerConfigSyncRequest) SetMp217

SetMp217 gets a reference to the given string and assigns it to the Mp217 field.

func (*UpdateContainerConfigSyncRequest) SetMp218

SetMp218 gets a reference to the given string and assigns it to the Mp218 field.

func (*UpdateContainerConfigSyncRequest) SetMp219

SetMp219 gets a reference to the given string and assigns it to the Mp219 field.

func (*UpdateContainerConfigSyncRequest) SetMp22

SetMp22 gets a reference to the given string and assigns it to the Mp22 field.

func (*UpdateContainerConfigSyncRequest) SetMp220

SetMp220 gets a reference to the given string and assigns it to the Mp220 field.

func (*UpdateContainerConfigSyncRequest) SetMp221

SetMp221 gets a reference to the given string and assigns it to the Mp221 field.

func (*UpdateContainerConfigSyncRequest) SetMp222

SetMp222 gets a reference to the given string and assigns it to the Mp222 field.

func (*UpdateContainerConfigSyncRequest) SetMp223

SetMp223 gets a reference to the given string and assigns it to the Mp223 field.

func (*UpdateContainerConfigSyncRequest) SetMp224

SetMp224 gets a reference to the given string and assigns it to the Mp224 field.

func (*UpdateContainerConfigSyncRequest) SetMp225

SetMp225 gets a reference to the given string and assigns it to the Mp225 field.

func (*UpdateContainerConfigSyncRequest) SetMp226

SetMp226 gets a reference to the given string and assigns it to the Mp226 field.

func (*UpdateContainerConfigSyncRequest) SetMp227

SetMp227 gets a reference to the given string and assigns it to the Mp227 field.

func (*UpdateContainerConfigSyncRequest) SetMp228

SetMp228 gets a reference to the given string and assigns it to the Mp228 field.

func (*UpdateContainerConfigSyncRequest) SetMp229

SetMp229 gets a reference to the given string and assigns it to the Mp229 field.

func (*UpdateContainerConfigSyncRequest) SetMp23

SetMp23 gets a reference to the given string and assigns it to the Mp23 field.

func (*UpdateContainerConfigSyncRequest) SetMp230

SetMp230 gets a reference to the given string and assigns it to the Mp230 field.

func (*UpdateContainerConfigSyncRequest) SetMp231

SetMp231 gets a reference to the given string and assigns it to the Mp231 field.

func (*UpdateContainerConfigSyncRequest) SetMp232

SetMp232 gets a reference to the given string and assigns it to the Mp232 field.

func (*UpdateContainerConfigSyncRequest) SetMp233

SetMp233 gets a reference to the given string and assigns it to the Mp233 field.

func (*UpdateContainerConfigSyncRequest) SetMp234

SetMp234 gets a reference to the given string and assigns it to the Mp234 field.

func (*UpdateContainerConfigSyncRequest) SetMp235

SetMp235 gets a reference to the given string and assigns it to the Mp235 field.

func (*UpdateContainerConfigSyncRequest) SetMp236

SetMp236 gets a reference to the given string and assigns it to the Mp236 field.

func (*UpdateContainerConfigSyncRequest) SetMp237

SetMp237 gets a reference to the given string and assigns it to the Mp237 field.

func (*UpdateContainerConfigSyncRequest) SetMp238

SetMp238 gets a reference to the given string and assigns it to the Mp238 field.

func (*UpdateContainerConfigSyncRequest) SetMp239

SetMp239 gets a reference to the given string and assigns it to the Mp239 field.

func (*UpdateContainerConfigSyncRequest) SetMp24

SetMp24 gets a reference to the given string and assigns it to the Mp24 field.

func (*UpdateContainerConfigSyncRequest) SetMp240

SetMp240 gets a reference to the given string and assigns it to the Mp240 field.

func (*UpdateContainerConfigSyncRequest) SetMp241

SetMp241 gets a reference to the given string and assigns it to the Mp241 field.

func (*UpdateContainerConfigSyncRequest) SetMp242

SetMp242 gets a reference to the given string and assigns it to the Mp242 field.

func (*UpdateContainerConfigSyncRequest) SetMp243

SetMp243 gets a reference to the given string and assigns it to the Mp243 field.

func (*UpdateContainerConfigSyncRequest) SetMp244

SetMp244 gets a reference to the given string and assigns it to the Mp244 field.

func (*UpdateContainerConfigSyncRequest) SetMp245

SetMp245 gets a reference to the given string and assigns it to the Mp245 field.

func (*UpdateContainerConfigSyncRequest) SetMp246

SetMp246 gets a reference to the given string and assigns it to the Mp246 field.

func (*UpdateContainerConfigSyncRequest) SetMp247

SetMp247 gets a reference to the given string and assigns it to the Mp247 field.

func (*UpdateContainerConfigSyncRequest) SetMp248

SetMp248 gets a reference to the given string and assigns it to the Mp248 field.

func (*UpdateContainerConfigSyncRequest) SetMp249

SetMp249 gets a reference to the given string and assigns it to the Mp249 field.

func (*UpdateContainerConfigSyncRequest) SetMp25

SetMp25 gets a reference to the given string and assigns it to the Mp25 field.

func (*UpdateContainerConfigSyncRequest) SetMp250

SetMp250 gets a reference to the given string and assigns it to the Mp250 field.

func (*UpdateContainerConfigSyncRequest) SetMp251

SetMp251 gets a reference to the given string and assigns it to the Mp251 field.

func (*UpdateContainerConfigSyncRequest) SetMp252

SetMp252 gets a reference to the given string and assigns it to the Mp252 field.

func (*UpdateContainerConfigSyncRequest) SetMp253

SetMp253 gets a reference to the given string and assigns it to the Mp253 field.

func (*UpdateContainerConfigSyncRequest) SetMp254

SetMp254 gets a reference to the given string and assigns it to the Mp254 field.

func (*UpdateContainerConfigSyncRequest) SetMp255

SetMp255 gets a reference to the given string and assigns it to the Mp255 field.

func (*UpdateContainerConfigSyncRequest) SetMp26

SetMp26 gets a reference to the given string and assigns it to the Mp26 field.

func (*UpdateContainerConfigSyncRequest) SetMp27

SetMp27 gets a reference to the given string and assigns it to the Mp27 field.

func (*UpdateContainerConfigSyncRequest) SetMp28

SetMp28 gets a reference to the given string and assigns it to the Mp28 field.

func (*UpdateContainerConfigSyncRequest) SetMp29

SetMp29 gets a reference to the given string and assigns it to the Mp29 field.

func (*UpdateContainerConfigSyncRequest) SetMp3

SetMp3 gets a reference to the given string and assigns it to the Mp3 field.

func (*UpdateContainerConfigSyncRequest) SetMp30

SetMp30 gets a reference to the given string and assigns it to the Mp30 field.

func (*UpdateContainerConfigSyncRequest) SetMp31

SetMp31 gets a reference to the given string and assigns it to the Mp31 field.

func (*UpdateContainerConfigSyncRequest) SetMp32

SetMp32 gets a reference to the given string and assigns it to the Mp32 field.

func (*UpdateContainerConfigSyncRequest) SetMp33

SetMp33 gets a reference to the given string and assigns it to the Mp33 field.

func (*UpdateContainerConfigSyncRequest) SetMp34

SetMp34 gets a reference to the given string and assigns it to the Mp34 field.

func (*UpdateContainerConfigSyncRequest) SetMp35

SetMp35 gets a reference to the given string and assigns it to the Mp35 field.

func (*UpdateContainerConfigSyncRequest) SetMp36

SetMp36 gets a reference to the given string and assigns it to the Mp36 field.

func (*UpdateContainerConfigSyncRequest) SetMp37

SetMp37 gets a reference to the given string and assigns it to the Mp37 field.

func (*UpdateContainerConfigSyncRequest) SetMp38

SetMp38 gets a reference to the given string and assigns it to the Mp38 field.

func (*UpdateContainerConfigSyncRequest) SetMp39

SetMp39 gets a reference to the given string and assigns it to the Mp39 field.

func (*UpdateContainerConfigSyncRequest) SetMp4

SetMp4 gets a reference to the given string and assigns it to the Mp4 field.

func (*UpdateContainerConfigSyncRequest) SetMp40

SetMp40 gets a reference to the given string and assigns it to the Mp40 field.

func (*UpdateContainerConfigSyncRequest) SetMp41

SetMp41 gets a reference to the given string and assigns it to the Mp41 field.

func (*UpdateContainerConfigSyncRequest) SetMp42

SetMp42 gets a reference to the given string and assigns it to the Mp42 field.

func (*UpdateContainerConfigSyncRequest) SetMp43

SetMp43 gets a reference to the given string and assigns it to the Mp43 field.

func (*UpdateContainerConfigSyncRequest) SetMp44

SetMp44 gets a reference to the given string and assigns it to the Mp44 field.

func (*UpdateContainerConfigSyncRequest) SetMp45

SetMp45 gets a reference to the given string and assigns it to the Mp45 field.

func (*UpdateContainerConfigSyncRequest) SetMp46

SetMp46 gets a reference to the given string and assigns it to the Mp46 field.

func (*UpdateContainerConfigSyncRequest) SetMp47

SetMp47 gets a reference to the given string and assigns it to the Mp47 field.

func (*UpdateContainerConfigSyncRequest) SetMp48

SetMp48 gets a reference to the given string and assigns it to the Mp48 field.

func (*UpdateContainerConfigSyncRequest) SetMp49

SetMp49 gets a reference to the given string and assigns it to the Mp49 field.

func (*UpdateContainerConfigSyncRequest) SetMp5

SetMp5 gets a reference to the given string and assigns it to the Mp5 field.

func (*UpdateContainerConfigSyncRequest) SetMp50

SetMp50 gets a reference to the given string and assigns it to the Mp50 field.

func (*UpdateContainerConfigSyncRequest) SetMp51

SetMp51 gets a reference to the given string and assigns it to the Mp51 field.

func (*UpdateContainerConfigSyncRequest) SetMp52

SetMp52 gets a reference to the given string and assigns it to the Mp52 field.

func (*UpdateContainerConfigSyncRequest) SetMp53

SetMp53 gets a reference to the given string and assigns it to the Mp53 field.

func (*UpdateContainerConfigSyncRequest) SetMp54

SetMp54 gets a reference to the given string and assigns it to the Mp54 field.

func (*UpdateContainerConfigSyncRequest) SetMp55

SetMp55 gets a reference to the given string and assigns it to the Mp55 field.

func (*UpdateContainerConfigSyncRequest) SetMp56

SetMp56 gets a reference to the given string and assigns it to the Mp56 field.

func (*UpdateContainerConfigSyncRequest) SetMp57

SetMp57 gets a reference to the given string and assigns it to the Mp57 field.

func (*UpdateContainerConfigSyncRequest) SetMp58

SetMp58 gets a reference to the given string and assigns it to the Mp58 field.

func (*UpdateContainerConfigSyncRequest) SetMp59

SetMp59 gets a reference to the given string and assigns it to the Mp59 field.

func (*UpdateContainerConfigSyncRequest) SetMp6

SetMp6 gets a reference to the given string and assigns it to the Mp6 field.

func (*UpdateContainerConfigSyncRequest) SetMp60

SetMp60 gets a reference to the given string and assigns it to the Mp60 field.

func (*UpdateContainerConfigSyncRequest) SetMp61

SetMp61 gets a reference to the given string and assigns it to the Mp61 field.

func (*UpdateContainerConfigSyncRequest) SetMp62

SetMp62 gets a reference to the given string and assigns it to the Mp62 field.

func (*UpdateContainerConfigSyncRequest) SetMp63

SetMp63 gets a reference to the given string and assigns it to the Mp63 field.

func (*UpdateContainerConfigSyncRequest) SetMp64

SetMp64 gets a reference to the given string and assigns it to the Mp64 field.

func (*UpdateContainerConfigSyncRequest) SetMp65

SetMp65 gets a reference to the given string and assigns it to the Mp65 field.

func (*UpdateContainerConfigSyncRequest) SetMp66

SetMp66 gets a reference to the given string and assigns it to the Mp66 field.

func (*UpdateContainerConfigSyncRequest) SetMp67

SetMp67 gets a reference to the given string and assigns it to the Mp67 field.

func (*UpdateContainerConfigSyncRequest) SetMp68

SetMp68 gets a reference to the given string and assigns it to the Mp68 field.

func (*UpdateContainerConfigSyncRequest) SetMp69

SetMp69 gets a reference to the given string and assigns it to the Mp69 field.

func (*UpdateContainerConfigSyncRequest) SetMp7

SetMp7 gets a reference to the given string and assigns it to the Mp7 field.

func (*UpdateContainerConfigSyncRequest) SetMp70

SetMp70 gets a reference to the given string and assigns it to the Mp70 field.

func (*UpdateContainerConfigSyncRequest) SetMp71

SetMp71 gets a reference to the given string and assigns it to the Mp71 field.

func (*UpdateContainerConfigSyncRequest) SetMp72

SetMp72 gets a reference to the given string and assigns it to the Mp72 field.

func (*UpdateContainerConfigSyncRequest) SetMp73

SetMp73 gets a reference to the given string and assigns it to the Mp73 field.

func (*UpdateContainerConfigSyncRequest) SetMp74

SetMp74 gets a reference to the given string and assigns it to the Mp74 field.

func (*UpdateContainerConfigSyncRequest) SetMp75

SetMp75 gets a reference to the given string and assigns it to the Mp75 field.

func (*UpdateContainerConfigSyncRequest) SetMp76

SetMp76 gets a reference to the given string and assigns it to the Mp76 field.

func (*UpdateContainerConfigSyncRequest) SetMp77

SetMp77 gets a reference to the given string and assigns it to the Mp77 field.

func (*UpdateContainerConfigSyncRequest) SetMp78

SetMp78 gets a reference to the given string and assigns it to the Mp78 field.

func (*UpdateContainerConfigSyncRequest) SetMp79

SetMp79 gets a reference to the given string and assigns it to the Mp79 field.

func (*UpdateContainerConfigSyncRequest) SetMp8

SetMp8 gets a reference to the given string and assigns it to the Mp8 field.

func (*UpdateContainerConfigSyncRequest) SetMp80

SetMp80 gets a reference to the given string and assigns it to the Mp80 field.

func (*UpdateContainerConfigSyncRequest) SetMp81

SetMp81 gets a reference to the given string and assigns it to the Mp81 field.

func (*UpdateContainerConfigSyncRequest) SetMp82

SetMp82 gets a reference to the given string and assigns it to the Mp82 field.

func (*UpdateContainerConfigSyncRequest) SetMp83

SetMp83 gets a reference to the given string and assigns it to the Mp83 field.

func (*UpdateContainerConfigSyncRequest) SetMp84

SetMp84 gets a reference to the given string and assigns it to the Mp84 field.

func (*UpdateContainerConfigSyncRequest) SetMp85

SetMp85 gets a reference to the given string and assigns it to the Mp85 field.

func (*UpdateContainerConfigSyncRequest) SetMp86

SetMp86 gets a reference to the given string and assigns it to the Mp86 field.

func (*UpdateContainerConfigSyncRequest) SetMp87

SetMp87 gets a reference to the given string and assigns it to the Mp87 field.

func (*UpdateContainerConfigSyncRequest) SetMp88

SetMp88 gets a reference to the given string and assigns it to the Mp88 field.

func (*UpdateContainerConfigSyncRequest) SetMp89

SetMp89 gets a reference to the given string and assigns it to the Mp89 field.

func (*UpdateContainerConfigSyncRequest) SetMp9

SetMp9 gets a reference to the given string and assigns it to the Mp9 field.

func (*UpdateContainerConfigSyncRequest) SetMp90

SetMp90 gets a reference to the given string and assigns it to the Mp90 field.

func (*UpdateContainerConfigSyncRequest) SetMp91

SetMp91 gets a reference to the given string and assigns it to the Mp91 field.

func (*UpdateContainerConfigSyncRequest) SetMp92

SetMp92 gets a reference to the given string and assigns it to the Mp92 field.

func (*UpdateContainerConfigSyncRequest) SetMp93

SetMp93 gets a reference to the given string and assigns it to the Mp93 field.

func (*UpdateContainerConfigSyncRequest) SetMp94

SetMp94 gets a reference to the given string and assigns it to the Mp94 field.

func (*UpdateContainerConfigSyncRequest) SetMp95

SetMp95 gets a reference to the given string and assigns it to the Mp95 field.

func (*UpdateContainerConfigSyncRequest) SetMp96

SetMp96 gets a reference to the given string and assigns it to the Mp96 field.

func (*UpdateContainerConfigSyncRequest) SetMp97

SetMp97 gets a reference to the given string and assigns it to the Mp97 field.

func (*UpdateContainerConfigSyncRequest) SetMp98

SetMp98 gets a reference to the given string and assigns it to the Mp98 field.

func (*UpdateContainerConfigSyncRequest) SetMp99

SetMp99 gets a reference to the given string and assigns it to the Mp99 field.

func (*UpdateContainerConfigSyncRequest) SetNameserver

func (o *UpdateContainerConfigSyncRequest) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*UpdateContainerConfigSyncRequest) SetNet0

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*UpdateContainerConfigSyncRequest) SetNet1

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*UpdateContainerConfigSyncRequest) SetNet10

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*UpdateContainerConfigSyncRequest) SetNet11

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*UpdateContainerConfigSyncRequest) SetNet12

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*UpdateContainerConfigSyncRequest) SetNet13

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*UpdateContainerConfigSyncRequest) SetNet14

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*UpdateContainerConfigSyncRequest) SetNet15

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*UpdateContainerConfigSyncRequest) SetNet16

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*UpdateContainerConfigSyncRequest) SetNet17

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*UpdateContainerConfigSyncRequest) SetNet18

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*UpdateContainerConfigSyncRequest) SetNet19

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*UpdateContainerConfigSyncRequest) SetNet2

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*UpdateContainerConfigSyncRequest) SetNet20

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*UpdateContainerConfigSyncRequest) SetNet21

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*UpdateContainerConfigSyncRequest) SetNet22

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*UpdateContainerConfigSyncRequest) SetNet23

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*UpdateContainerConfigSyncRequest) SetNet24

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*UpdateContainerConfigSyncRequest) SetNet25

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*UpdateContainerConfigSyncRequest) SetNet26

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*UpdateContainerConfigSyncRequest) SetNet27

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*UpdateContainerConfigSyncRequest) SetNet28

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*UpdateContainerConfigSyncRequest) SetNet29

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*UpdateContainerConfigSyncRequest) SetNet3

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*UpdateContainerConfigSyncRequest) SetNet30

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*UpdateContainerConfigSyncRequest) SetNet31

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*UpdateContainerConfigSyncRequest) SetNet4

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*UpdateContainerConfigSyncRequest) SetNet5

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*UpdateContainerConfigSyncRequest) SetNet6

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*UpdateContainerConfigSyncRequest) SetNet7

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*UpdateContainerConfigSyncRequest) SetNet8

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*UpdateContainerConfigSyncRequest) SetNet9

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*UpdateContainerConfigSyncRequest) SetOnboot

func (o *UpdateContainerConfigSyncRequest) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*UpdateContainerConfigSyncRequest) SetOstype

func (o *UpdateContainerConfigSyncRequest) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*UpdateContainerConfigSyncRequest) SetProtection

func (o *UpdateContainerConfigSyncRequest) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*UpdateContainerConfigSyncRequest) SetRevert

func (o *UpdateContainerConfigSyncRequest) SetRevert(v string)

SetRevert gets a reference to the given string and assigns it to the Revert field.

func (*UpdateContainerConfigSyncRequest) SetRootfs

func (o *UpdateContainerConfigSyncRequest) SetRootfs(v string)

SetRootfs gets a reference to the given string and assigns it to the Rootfs field.

func (*UpdateContainerConfigSyncRequest) SetSearchdomain

func (o *UpdateContainerConfigSyncRequest) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*UpdateContainerConfigSyncRequest) SetStartup

func (o *UpdateContainerConfigSyncRequest) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*UpdateContainerConfigSyncRequest) SetSwap

SetSwap gets a reference to the given int64 and assigns it to the Swap field.

func (*UpdateContainerConfigSyncRequest) SetTags

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*UpdateContainerConfigSyncRequest) SetTemplate

func (o *UpdateContainerConfigSyncRequest) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*UpdateContainerConfigSyncRequest) SetTimezone

func (o *UpdateContainerConfigSyncRequest) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*UpdateContainerConfigSyncRequest) SetTty

SetTty gets a reference to the given int64 and assigns it to the Tty field.

func (*UpdateContainerConfigSyncRequest) SetUnprivileged

func (o *UpdateContainerConfigSyncRequest) SetUnprivileged(v int32)

SetUnprivileged gets a reference to the given int32 and assigns it to the Unprivileged field.

func (*UpdateContainerConfigSyncRequest) SetUnused0

func (o *UpdateContainerConfigSyncRequest) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*UpdateContainerConfigSyncRequest) SetUnused1

func (o *UpdateContainerConfigSyncRequest) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*UpdateContainerConfigSyncRequest) SetUnused10

func (o *UpdateContainerConfigSyncRequest) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*UpdateContainerConfigSyncRequest) SetUnused11

func (o *UpdateContainerConfigSyncRequest) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*UpdateContainerConfigSyncRequest) SetUnused12

func (o *UpdateContainerConfigSyncRequest) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*UpdateContainerConfigSyncRequest) SetUnused13

func (o *UpdateContainerConfigSyncRequest) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*UpdateContainerConfigSyncRequest) SetUnused14

func (o *UpdateContainerConfigSyncRequest) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*UpdateContainerConfigSyncRequest) SetUnused15

func (o *UpdateContainerConfigSyncRequest) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*UpdateContainerConfigSyncRequest) SetUnused16

func (o *UpdateContainerConfigSyncRequest) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*UpdateContainerConfigSyncRequest) SetUnused17

func (o *UpdateContainerConfigSyncRequest) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*UpdateContainerConfigSyncRequest) SetUnused18

func (o *UpdateContainerConfigSyncRequest) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*UpdateContainerConfigSyncRequest) SetUnused19

func (o *UpdateContainerConfigSyncRequest) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*UpdateContainerConfigSyncRequest) SetUnused2

func (o *UpdateContainerConfigSyncRequest) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*UpdateContainerConfigSyncRequest) SetUnused20

func (o *UpdateContainerConfigSyncRequest) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*UpdateContainerConfigSyncRequest) SetUnused21

func (o *UpdateContainerConfigSyncRequest) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*UpdateContainerConfigSyncRequest) SetUnused22

func (o *UpdateContainerConfigSyncRequest) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*UpdateContainerConfigSyncRequest) SetUnused23

func (o *UpdateContainerConfigSyncRequest) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*UpdateContainerConfigSyncRequest) SetUnused24

func (o *UpdateContainerConfigSyncRequest) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*UpdateContainerConfigSyncRequest) SetUnused25

func (o *UpdateContainerConfigSyncRequest) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*UpdateContainerConfigSyncRequest) SetUnused26

func (o *UpdateContainerConfigSyncRequest) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*UpdateContainerConfigSyncRequest) SetUnused27

func (o *UpdateContainerConfigSyncRequest) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*UpdateContainerConfigSyncRequest) SetUnused28

func (o *UpdateContainerConfigSyncRequest) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*UpdateContainerConfigSyncRequest) SetUnused29

func (o *UpdateContainerConfigSyncRequest) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*UpdateContainerConfigSyncRequest) SetUnused3

func (o *UpdateContainerConfigSyncRequest) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*UpdateContainerConfigSyncRequest) SetUnused4

func (o *UpdateContainerConfigSyncRequest) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*UpdateContainerConfigSyncRequest) SetUnused5

func (o *UpdateContainerConfigSyncRequest) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*UpdateContainerConfigSyncRequest) SetUnused6

func (o *UpdateContainerConfigSyncRequest) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*UpdateContainerConfigSyncRequest) SetUnused7

func (o *UpdateContainerConfigSyncRequest) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*UpdateContainerConfigSyncRequest) SetUnused8

func (o *UpdateContainerConfigSyncRequest) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*UpdateContainerConfigSyncRequest) SetUnused9

func (o *UpdateContainerConfigSyncRequest) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (UpdateContainerConfigSyncRequest) ToMap

func (o UpdateContainerConfigSyncRequest) ToMap() (map[string]interface{}, error)

type UpdateContainerSnapshotConfigRequest

type UpdateContainerSnapshotConfigRequest struct {
	// A textual description or comment.
	Description *string `json:"description,omitempty"`
}

UpdateContainerSnapshotConfigRequest struct for UpdateContainerSnapshotConfigRequest

func NewUpdateContainerSnapshotConfigRequest

func NewUpdateContainerSnapshotConfigRequest() *UpdateContainerSnapshotConfigRequest

NewUpdateContainerSnapshotConfigRequest instantiates a new UpdateContainerSnapshotConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateContainerSnapshotConfigRequestWithDefaults

func NewUpdateContainerSnapshotConfigRequestWithDefaults() *UpdateContainerSnapshotConfigRequest

NewUpdateContainerSnapshotConfigRequestWithDefaults instantiates a new UpdateContainerSnapshotConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateContainerSnapshotConfigRequest) GetDescription

func (o *UpdateContainerSnapshotConfigRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateContainerSnapshotConfigRequest) GetDescriptionOk

func (o *UpdateContainerSnapshotConfigRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateContainerSnapshotConfigRequest) HasDescription

func (o *UpdateContainerSnapshotConfigRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (UpdateContainerSnapshotConfigRequest) MarshalJSON

func (o UpdateContainerSnapshotConfigRequest) MarshalJSON() ([]byte, error)

func (*UpdateContainerSnapshotConfigRequest) SetDescription

func (o *UpdateContainerSnapshotConfigRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (UpdateContainerSnapshotConfigRequest) ToMap

func (o UpdateContainerSnapshotConfigRequest) ToMap() (map[string]interface{}, error)

type UpdateVMConfigRequest

type UpdateVMConfigRequest struct {
	// Enable/disable ACPI.
	Acpi *int32 `json:"acpi,omitempty"`
	// List of host cores used to execute guest processes, for example: 0,5,8-11
	Affinity *string `json:"affinity,omitempty"`
	// Enable/disable communication with the QEMU Guest Agent and its properties.
	Agent *string `json:"agent,omitempty"`
	// Virtual processor architecture. Defaults to the host.
	Arch *string `json:"arch,omitempty"`
	// Arbitrary arguments passed to kvm.
	Args *string `json:"args,omitempty"`
	// Configure a audio device, useful in combination with QXL/Spice.
	Audio0 *string `json:"audio0,omitempty"`
	// Automatic restart after crash (currently ignored).
	Autostart *int32 `json:"autostart,omitempty"`
	// Time to wait for the task to finish. We return 'null' if the task finish within that time.
	BackgroundDelay *int64 `json:"background_delay,omitempty"`
	// Amount of target RAM for the VM in MiB. Using zero disables the ballon driver.
	Balloon *int64 `json:"balloon,omitempty"`
	// Select BIOS implementation.
	Bios *string `json:"bios,omitempty"`
	// Specify guest boot order. Use the 'order=' sub-property as usage with no key or 'legacy=' is deprecated.
	Boot *string `json:"boot,omitempty"`
	// Enable booting from specified disk. Deprecated: Use 'boot: order=foo;bar' instead.
	Bootdisk *string `json:"bootdisk,omitempty"`
	// This is an alias for option -ide2
	Cdrom *string `json:"cdrom,omitempty"`
	// cloud-init: Specify custom files to replace the automatically generated ones at start.
	Cicustom *string `json:"cicustom,omitempty"`
	// cloud-init: Password to assign the user. Using this is generally not recommended. Use ssh keys instead. Also note that older cloud-init versions do not support hashed passwords.
	Cipassword *string `json:"cipassword,omitempty"`
	// Specifies the cloud-init configuration format. The default depends on the configured operating system type (`ostype`. We use the `nocloud` format for Linux, and `configdrive2` for windows.
	Citype *string `json:"citype,omitempty"`
	// cloud-init: do an automatic package upgrade after the first boot.
	Ciupgrade *int32 `json:"ciupgrade,omitempty"`
	// cloud-init: User name to change ssh keys and password for instead of the image's configured default user.
	Ciuser *string `json:"ciuser,omitempty"`
	// The number of cores per socket.
	Cores *int64 `json:"cores,omitempty"`
	// Emulated CPU type.
	Cpu *string `json:"cpu,omitempty"`
	// Limit of CPU usage.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a VM, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// A list of settings you want to delete.
	Delete *string `json:"delete,omitempty"`
	// Description for the VM. Shown in the web-interface VM's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// Configure a disk for storing EFI vars. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Note that SIZE_IN_GiB is ignored here and that the default EFI vars are copied to the volume instead. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Efidisk0 *string `json:"efidisk0,omitempty"`
	// Force physical removal. Without this, we simple remove the disk from the config file and create an additional configuration entry called 'unused[n]', which contains the volume ID. Unlink of unused[n] always cause physical removal.
	Force *int32 `json:"force,omitempty"`
	// Freeze CPU at startup (use 'c' monitor command to start execution).
	Freeze *int32 `json:"freeze,omitempty"`
	// Script that will be executed during various steps in the vms lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Map host PCI devices into guest.
	Hostpci0 *string `json:"hostpci0,omitempty"`
	// Map host PCI devices into guest.
	Hostpci1 *string `json:"hostpci1,omitempty"`
	// Map host PCI devices into guest.
	Hostpci2 *string `json:"hostpci2,omitempty"`
	// Map host PCI devices into guest.
	Hostpci3 *string `json:"hostpci3,omitempty"`
	// Map host PCI devices into guest.
	Hostpci4 *string `json:"hostpci4,omitempty"`
	// Map host PCI devices into guest.
	Hostpci5 *string `json:"hostpci5,omitempty"`
	// Map host PCI devices into guest.
	Hostpci6 *string `json:"hostpci6,omitempty"`
	// Map host PCI devices into guest.
	Hostpci7 *string `json:"hostpci7,omitempty"`
	// Map host PCI devices into guest.
	Hostpci8 *string `json:"hostpci8,omitempty"`
	// Map host PCI devices into guest.
	Hostpci9 *string `json:"hostpci9,omitempty"`
	// Map host PCI devices into guest.
	Hostpci10 *string `json:"hostpci10,omitempty"`
	// Map host PCI devices into guest.
	Hostpci11 *string `json:"hostpci11,omitempty"`
	// Map host PCI devices into guest.
	Hostpci12 *string `json:"hostpci12,omitempty"`
	// Map host PCI devices into guest.
	Hostpci13 *string `json:"hostpci13,omitempty"`
	// Map host PCI devices into guest.
	Hostpci14 *string `json:"hostpci14,omitempty"`
	// Map host PCI devices into guest.
	Hostpci15 *string `json:"hostpci15,omitempty"`
	// Map host PCI devices into guest.
	Hostpci16 *string `json:"hostpci16,omitempty"`
	// Map host PCI devices into guest.
	Hostpci17 *string `json:"hostpci17,omitempty"`
	// Map host PCI devices into guest.
	Hostpci18 *string `json:"hostpci18,omitempty"`
	// Map host PCI devices into guest.
	Hostpci19 *string `json:"hostpci19,omitempty"`
	// Map host PCI devices into guest.
	Hostpci20 *string `json:"hostpci20,omitempty"`
	// Map host PCI devices into guest.
	Hostpci21 *string `json:"hostpci21,omitempty"`
	// Map host PCI devices into guest.
	Hostpci22 *string `json:"hostpci22,omitempty"`
	// Map host PCI devices into guest.
	Hostpci23 *string `json:"hostpci23,omitempty"`
	// Map host PCI devices into guest.
	Hostpci24 *string `json:"hostpci24,omitempty"`
	// Map host PCI devices into guest.
	Hostpci25 *string `json:"hostpci25,omitempty"`
	// Map host PCI devices into guest.
	Hostpci26 *string `json:"hostpci26,omitempty"`
	// Map host PCI devices into guest.
	Hostpci27 *string `json:"hostpci27,omitempty"`
	// Map host PCI devices into guest.
	Hostpci28 *string `json:"hostpci28,omitempty"`
	// Map host PCI devices into guest.
	Hostpci29 *string `json:"hostpci29,omitempty"`
	// Selectively enable hotplug features. This is a comma separated list of hotplug features: 'network', 'disk', 'cpu', 'memory', 'usb' and 'cloudinit'. Use '0' to disable hotplug completely. Using '1' as value is an alias for the default `network,disk,usb`. USB hotplugging is possible for guests with machine version >= 7.1 and ostype l26 or windows > 7.
	Hotplug *string `json:"hotplug,omitempty"`
	// Enable/disable hugepages memory.
	Hugepages *string `json:"hugepages,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide0 *string `json:"ide0,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide1 *string `json:"ide1,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide2 *string `json:"ide2,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide3 *string `json:"ide3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig0 *string `json:"ipconfig0,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig1 *string `json:"ipconfig1,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig2 *string `json:"ipconfig2,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig3 *string `json:"ipconfig3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig4 *string `json:"ipconfig4,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig5 *string `json:"ipconfig5,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig6 *string `json:"ipconfig6,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig7 *string `json:"ipconfig7,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig8 *string `json:"ipconfig8,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig9 *string `json:"ipconfig9,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig10 *string `json:"ipconfig10,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig11 *string `json:"ipconfig11,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig12 *string `json:"ipconfig12,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig13 *string `json:"ipconfig13,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig14 *string `json:"ipconfig14,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig15 *string `json:"ipconfig15,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig16 *string `json:"ipconfig16,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig17 *string `json:"ipconfig17,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig18 *string `json:"ipconfig18,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig19 *string `json:"ipconfig19,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig20 *string `json:"ipconfig20,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig21 *string `json:"ipconfig21,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig22 *string `json:"ipconfig22,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig23 *string `json:"ipconfig23,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig24 *string `json:"ipconfig24,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig25 *string `json:"ipconfig25,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig26 *string `json:"ipconfig26,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig27 *string `json:"ipconfig27,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig28 *string `json:"ipconfig28,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig29 *string `json:"ipconfig29,omitempty"`
	// Inter-VM shared memory. Useful for direct communication between VMs, or to the host.
	Ivshmem *string `json:"ivshmem,omitempty"`
	// Use together with hugepages. If enabled, hugepages will not not be deleted after VM shutdown and can be used for subsequent starts.
	Keephugepages *int32 `json:"keephugepages,omitempty"`
	// Keyboard layout for VNC server. This option is generally not required and is often better handled from within the guest OS.
	Keyboard *string `json:"keyboard,omitempty"`
	// Enable/disable KVM hardware virtualization.
	Kvm *int32 `json:"kvm,omitempty"`
	// Set the real time clock (RTC) to local time. This is enabled by default if the `ostype` indicates a Microsoft Windows OS.
	Localtime *int32 `json:"localtime,omitempty"`
	// Lock/unlock the VM.
	Lock *string `json:"lock,omitempty"`
	// Specifies the QEMU machine type.
	Machine *string `json:"machine,omitempty"`
	// Memory
	Memory *int64 `json:"memory,omitempty"`
	// Set maximum tolerated downtime (in seconds) for migrations.
	MigrateDowntime *float32 `json:"migrate_downtime,omitempty"`
	// Set maximum speed (in MB/s) for migrations. Value 0 is no limit.
	MigrateSpeed *int64 `json:"migrate_speed,omitempty"`
	// Set a name for the VM. Only used on the configuration web interface.
	Name *string `json:"name,omitempty"`
	// cloud-init: Sets DNS server IP address for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specify network devices.
	Net0 *string `json:"net0,omitempty"`
	// Specify network devices.
	Net1 *string `json:"net1,omitempty"`
	// Specify network devices.
	Net2 *string `json:"net2,omitempty"`
	// Specify network devices.
	Net3 *string `json:"net3,omitempty"`
	// Specify network devices.
	Net4 *string `json:"net4,omitempty"`
	// Specify network devices.
	Net5 *string `json:"net5,omitempty"`
	// Specify network devices.
	Net6 *string `json:"net6,omitempty"`
	// Specify network devices.
	Net7 *string `json:"net7,omitempty"`
	// Specify network devices.
	Net8 *string `json:"net8,omitempty"`
	// Specify network devices.
	Net9 *string `json:"net9,omitempty"`
	// Specify network devices.
	Net10 *string `json:"net10,omitempty"`
	// Specify network devices.
	Net11 *string `json:"net11,omitempty"`
	// Specify network devices.
	Net12 *string `json:"net12,omitempty"`
	// Specify network devices.
	Net13 *string `json:"net13,omitempty"`
	// Specify network devices.
	Net14 *string `json:"net14,omitempty"`
	// Specify network devices.
	Net15 *string `json:"net15,omitempty"`
	// Specify network devices.
	Net16 *string `json:"net16,omitempty"`
	// Specify network devices.
	Net17 *string `json:"net17,omitempty"`
	// Specify network devices.
	Net18 *string `json:"net18,omitempty"`
	// Specify network devices.
	Net19 *string `json:"net19,omitempty"`
	// Specify network devices.
	Net20 *string `json:"net20,omitempty"`
	// Specify network devices.
	Net21 *string `json:"net21,omitempty"`
	// Specify network devices.
	Net22 *string `json:"net22,omitempty"`
	// Specify network devices.
	Net23 *string `json:"net23,omitempty"`
	// Specify network devices.
	Net24 *string `json:"net24,omitempty"`
	// Specify network devices.
	Net25 *string `json:"net25,omitempty"`
	// Specify network devices.
	Net26 *string `json:"net26,omitempty"`
	// Specify network devices.
	Net27 *string `json:"net27,omitempty"`
	// Specify network devices.
	Net28 *string `json:"net28,omitempty"`
	// Specify network devices.
	Net29 *string `json:"net29,omitempty"`
	// Specify network devices.
	Net30 *string `json:"net30,omitempty"`
	// Specify network devices.
	Net31 *string `json:"net31,omitempty"`
	// Enable/disable NUMA.
	Numa *int32 `json:"numa,omitempty"`
	// NUMA topology.
	Numa0 *string `json:"numa0,omitempty"`
	// NUMA topology.
	Numa1 *string `json:"numa1,omitempty"`
	// NUMA topology.
	Numa2 *string `json:"numa2,omitempty"`
	// NUMA topology.
	Numa3 *string `json:"numa3,omitempty"`
	// NUMA topology.
	Numa4 *string `json:"numa4,omitempty"`
	// NUMA topology.
	Numa5 *string `json:"numa5,omitempty"`
	// NUMA topology.
	Numa6 *string `json:"numa6,omitempty"`
	// NUMA topology.
	Numa7 *string `json:"numa7,omitempty"`
	// NUMA topology.
	Numa8 *string `json:"numa8,omitempty"`
	// NUMA topology.
	Numa9 *string `json:"numa9,omitempty"`
	// NUMA topology.
	Numa10 *string `json:"numa10,omitempty"`
	// NUMA topology.
	Numa11 *string `json:"numa11,omitempty"`
	// NUMA topology.
	Numa12 *string `json:"numa12,omitempty"`
	// NUMA topology.
	Numa13 *string `json:"numa13,omitempty"`
	// NUMA topology.
	Numa14 *string `json:"numa14,omitempty"`
	// NUMA topology.
	Numa15 *string `json:"numa15,omitempty"`
	// NUMA topology.
	Numa16 *string `json:"numa16,omitempty"`
	// NUMA topology.
	Numa17 *string `json:"numa17,omitempty"`
	// NUMA topology.
	Numa18 *string `json:"numa18,omitempty"`
	// NUMA topology.
	Numa19 *string `json:"numa19,omitempty"`
	// NUMA topology.
	Numa20 *string `json:"numa20,omitempty"`
	// NUMA topology.
	Numa21 *string `json:"numa21,omitempty"`
	// NUMA topology.
	Numa22 *string `json:"numa22,omitempty"`
	// NUMA topology.
	Numa23 *string `json:"numa23,omitempty"`
	// NUMA topology.
	Numa24 *string `json:"numa24,omitempty"`
	// NUMA topology.
	Numa25 *string `json:"numa25,omitempty"`
	// NUMA topology.
	Numa26 *string `json:"numa26,omitempty"`
	// NUMA topology.
	Numa27 *string `json:"numa27,omitempty"`
	// NUMA topology.
	Numa28 *string `json:"numa28,omitempty"`
	// NUMA topology.
	Numa29 *string `json:"numa29,omitempty"`
	// Specifies whether a VM will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// Specify guest operating system.
	Ostype *string `json:"ostype,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel0 *string `json:"parallel0,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel1 *string `json:"parallel1,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel2 *string `json:"parallel2,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel3 *string `json:"parallel3,omitempty"`
	// Sets the protection flag of the VM. This will disable the remove VM and remove disk operations.
	Protection *int32 `json:"protection,omitempty"`
	// Allow reboot. If set to '0' the VM exit on reboot.
	Reboot *int32 `json:"reboot,omitempty"`
	// Revert a pending change.
	Revert *string `json:"revert,omitempty"`
	// Configure a VirtIO-based Random Number Generator.
	Rng0 *string `json:"rng0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata0 *string `json:"sata0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata1 *string `json:"sata1,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata2 *string `json:"sata2,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata3 *string `json:"sata3,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata4 *string `json:"sata4,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata5 *string `json:"sata5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi0 *string `json:"scsi0,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi1 *string `json:"scsi1,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi2 *string `json:"scsi2,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi3 *string `json:"scsi3,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi4 *string `json:"scsi4,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi5 *string `json:"scsi5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi6 *string `json:"scsi6,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi7 *string `json:"scsi7,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi8 *string `json:"scsi8,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi9 *string `json:"scsi9,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi10 *string `json:"scsi10,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi11 *string `json:"scsi11,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi12 *string `json:"scsi12,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi13 *string `json:"scsi13,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi14 *string `json:"scsi14,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi15 *string `json:"scsi15,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi16 *string `json:"scsi16,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi17 *string `json:"scsi17,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi18 *string `json:"scsi18,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi19 *string `json:"scsi19,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi20 *string `json:"scsi20,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi21 *string `json:"scsi21,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi22 *string `json:"scsi22,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi23 *string `json:"scsi23,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi24 *string `json:"scsi24,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi25 *string `json:"scsi25,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi26 *string `json:"scsi26,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi27 *string `json:"scsi27,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi28 *string `json:"scsi28,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi29 *string `json:"scsi29,omitempty"`
	// SCSI controller model
	Scsihw *string `json:"scsihw,omitempty"`
	// cloud-init: Sets DNS search domains for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial0 *string `json:"serial0,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial1 *string `json:"serial1,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial2 *string `json:"serial2,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial3 *string `json:"serial3,omitempty"`
	// Amount of memory shares for auto-ballooning. The larger the number is, the more memory this VM gets. Number is relative to weights of all other running VMs. Using zero disables auto-ballooning. Auto-ballooning is done by pvestatd.
	Shares *int64 `json:"shares,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
	// Specify SMBIOS type 1 fields.
	Smbios1 *string `json:"smbios1,omitempty"`
	// The number of CPUs. Please use option -sockets instead.
	Smp *int64 `json:"smp,omitempty"`
	// The number of CPU sockets.
	Sockets *int64 `json:"sockets,omitempty"`
	// Configure additional enhancements for SPICE.
	SpiceEnhancements *string `json:"spice_enhancements,omitempty"`
	// cloud-init: Setup public SSH keys (one key per line, OpenSSH format).
	Sshkeys *string `json:"sshkeys,omitempty"`
	// Set the initial date of the real time clock. Valid format for date are:'now' or '2006-06-17T16:01:21' or '2006-06-17'.
	Startdate *string `json:"startdate,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Enable/disable the USB tablet device.
	Tablet *int32 `json:"tablet,omitempty"`
	// Tags of the VM. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable time drift fix.
	Tdf *int32 `json:"tdf,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Configure a Disk for storing TPM state. The format is fixed to 'raw'. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Note that SIZE_IN_GiB is ignored here and 4 MiB will be used instead. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Tpmstate0 *string `json:"tpmstate0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb0 *string `json:"usb0,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb1 *string `json:"usb1,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb2 *string `json:"usb2,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb3 *string `json:"usb3,omitempty"`
	// Number of hotplugged vcpus.
	Vcpus *int64 `json:"vcpus,omitempty"`
	// Configure the VGA hardware.
	Vga *string `json:"vga,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio0 *string `json:"virtio0,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio1 *string `json:"virtio1,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio2 *string `json:"virtio2,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio3 *string `json:"virtio3,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio4 *string `json:"virtio4,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio5 *string `json:"virtio5,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio6 *string `json:"virtio6,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio7 *string `json:"virtio7,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio8 *string `json:"virtio8,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio9 *string `json:"virtio9,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio10 *string `json:"virtio10,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio11 *string `json:"virtio11,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio12 *string `json:"virtio12,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio13 *string `json:"virtio13,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio14 *string `json:"virtio14,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio15 *string `json:"virtio15,omitempty"`
	// Set VM Generation ID. Use '1' to autogenerate on create or update, pass '0' to disable explicitly.
	Vmgenid *string `json:"vmgenid,omitempty"`
	// Default storage for VM state volumes/files.
	Vmstatestorage *string `json:"vmstatestorage,omitempty"`
	// Create a virtual hardware watchdog device.
	Watchdog *string `json:"watchdog,omitempty"`
}

UpdateVMConfigRequest struct for UpdateVMConfigRequest

func NewUpdateVMConfigRequest

func NewUpdateVMConfigRequest() *UpdateVMConfigRequest

NewUpdateVMConfigRequest instantiates a new UpdateVMConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateVMConfigRequestWithDefaults

func NewUpdateVMConfigRequestWithDefaults() *UpdateVMConfigRequest

NewUpdateVMConfigRequestWithDefaults instantiates a new UpdateVMConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateVMConfigRequest) GetAcpi

func (o *UpdateVMConfigRequest) GetAcpi() int32

GetAcpi returns the Acpi field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetAcpiOk

func (o *UpdateVMConfigRequest) GetAcpiOk() (*int32, bool)

GetAcpiOk returns a tuple with the Acpi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetAffinity

func (o *UpdateVMConfigRequest) GetAffinity() string

GetAffinity returns the Affinity field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetAffinityOk

func (o *UpdateVMConfigRequest) GetAffinityOk() (*string, bool)

GetAffinityOk returns a tuple with the Affinity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetAgent

func (o *UpdateVMConfigRequest) GetAgent() string

GetAgent returns the Agent field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetAgentOk

func (o *UpdateVMConfigRequest) GetAgentOk() (*string, bool)

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetArch

func (o *UpdateVMConfigRequest) GetArch() string

GetArch returns the Arch field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetArchOk

func (o *UpdateVMConfigRequest) GetArchOk() (*string, bool)

GetArchOk returns a tuple with the Arch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetArgs

func (o *UpdateVMConfigRequest) GetArgs() string

GetArgs returns the Args field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetArgsOk

func (o *UpdateVMConfigRequest) GetArgsOk() (*string, bool)

GetArgsOk returns a tuple with the Args field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetAudio0

func (o *UpdateVMConfigRequest) GetAudio0() string

GetAudio0 returns the Audio0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetAudio0Ok

func (o *UpdateVMConfigRequest) GetAudio0Ok() (*string, bool)

GetAudio0Ok returns a tuple with the Audio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetAutostart

func (o *UpdateVMConfigRequest) GetAutostart() int32

GetAutostart returns the Autostart field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetAutostartOk

func (o *UpdateVMConfigRequest) GetAutostartOk() (*int32, bool)

GetAutostartOk returns a tuple with the Autostart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetBackgroundDelay

func (o *UpdateVMConfigRequest) GetBackgroundDelay() int64

GetBackgroundDelay returns the BackgroundDelay field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetBackgroundDelayOk

func (o *UpdateVMConfigRequest) GetBackgroundDelayOk() (*int64, bool)

GetBackgroundDelayOk returns a tuple with the BackgroundDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetBalloon

func (o *UpdateVMConfigRequest) GetBalloon() int64

GetBalloon returns the Balloon field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetBalloonOk

func (o *UpdateVMConfigRequest) GetBalloonOk() (*int64, bool)

GetBalloonOk returns a tuple with the Balloon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetBios

func (o *UpdateVMConfigRequest) GetBios() string

GetBios returns the Bios field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetBiosOk

func (o *UpdateVMConfigRequest) GetBiosOk() (*string, bool)

GetBiosOk returns a tuple with the Bios field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetBoot

func (o *UpdateVMConfigRequest) GetBoot() string

GetBoot returns the Boot field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetBootOk

func (o *UpdateVMConfigRequest) GetBootOk() (*string, bool)

GetBootOk returns a tuple with the Boot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetBootdisk

func (o *UpdateVMConfigRequest) GetBootdisk() string

GetBootdisk returns the Bootdisk field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetBootdiskOk

func (o *UpdateVMConfigRequest) GetBootdiskOk() (*string, bool)

GetBootdiskOk returns a tuple with the Bootdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCdrom

func (o *UpdateVMConfigRequest) GetCdrom() string

GetCdrom returns the Cdrom field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCdromOk

func (o *UpdateVMConfigRequest) GetCdromOk() (*string, bool)

GetCdromOk returns a tuple with the Cdrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCicustom

func (o *UpdateVMConfigRequest) GetCicustom() string

GetCicustom returns the Cicustom field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCicustomOk

func (o *UpdateVMConfigRequest) GetCicustomOk() (*string, bool)

GetCicustomOk returns a tuple with the Cicustom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCipassword

func (o *UpdateVMConfigRequest) GetCipassword() string

GetCipassword returns the Cipassword field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCipasswordOk

func (o *UpdateVMConfigRequest) GetCipasswordOk() (*string, bool)

GetCipasswordOk returns a tuple with the Cipassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCitype

func (o *UpdateVMConfigRequest) GetCitype() string

GetCitype returns the Citype field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCitypeOk

func (o *UpdateVMConfigRequest) GetCitypeOk() (*string, bool)

GetCitypeOk returns a tuple with the Citype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCiupgrade

func (o *UpdateVMConfigRequest) GetCiupgrade() int32

GetCiupgrade returns the Ciupgrade field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCiupgradeOk

func (o *UpdateVMConfigRequest) GetCiupgradeOk() (*int32, bool)

GetCiupgradeOk returns a tuple with the Ciupgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCiuser

func (o *UpdateVMConfigRequest) GetCiuser() string

GetCiuser returns the Ciuser field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCiuserOk

func (o *UpdateVMConfigRequest) GetCiuserOk() (*string, bool)

GetCiuserOk returns a tuple with the Ciuser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCores

func (o *UpdateVMConfigRequest) GetCores() int64

GetCores returns the Cores field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCoresOk

func (o *UpdateVMConfigRequest) GetCoresOk() (*int64, bool)

GetCoresOk returns a tuple with the Cores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCpu

func (o *UpdateVMConfigRequest) GetCpu() string

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCpuOk

func (o *UpdateVMConfigRequest) GetCpuOk() (*string, bool)

GetCpuOk returns a tuple with the Cpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCpulimit

func (o *UpdateVMConfigRequest) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCpulimitOk

func (o *UpdateVMConfigRequest) GetCpulimitOk() (*float32, bool)

GetCpulimitOk returns a tuple with the Cpulimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetCpuunits

func (o *UpdateVMConfigRequest) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetCpuunitsOk

func (o *UpdateVMConfigRequest) GetCpuunitsOk() (*int64, bool)

GetCpuunitsOk returns a tuple with the Cpuunits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetDelete

func (o *UpdateVMConfigRequest) GetDelete() string

GetDelete returns the Delete field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetDeleteOk

func (o *UpdateVMConfigRequest) GetDeleteOk() (*string, bool)

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetDescription

func (o *UpdateVMConfigRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetDescriptionOk

func (o *UpdateVMConfigRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetDigest

func (o *UpdateVMConfigRequest) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetDigestOk

func (o *UpdateVMConfigRequest) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetEfidisk0

func (o *UpdateVMConfigRequest) GetEfidisk0() string

GetEfidisk0 returns the Efidisk0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetEfidisk0Ok

func (o *UpdateVMConfigRequest) GetEfidisk0Ok() (*string, bool)

GetEfidisk0Ok returns a tuple with the Efidisk0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetForce

func (o *UpdateVMConfigRequest) GetForce() int32

GetForce returns the Force field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetForceOk

func (o *UpdateVMConfigRequest) GetForceOk() (*int32, bool)

GetForceOk returns a tuple with the Force field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetFreeze

func (o *UpdateVMConfigRequest) GetFreeze() int32

GetFreeze returns the Freeze field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetFreezeOk

func (o *UpdateVMConfigRequest) GetFreezeOk() (*int32, bool)

GetFreezeOk returns a tuple with the Freeze field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHookscript

func (o *UpdateVMConfigRequest) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHookscriptOk

func (o *UpdateVMConfigRequest) GetHookscriptOk() (*string, bool)

GetHookscriptOk returns a tuple with the Hookscript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci0

func (o *UpdateVMConfigRequest) GetHostpci0() string

GetHostpci0 returns the Hostpci0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci0Ok

func (o *UpdateVMConfigRequest) GetHostpci0Ok() (*string, bool)

GetHostpci0Ok returns a tuple with the Hostpci0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci1

func (o *UpdateVMConfigRequest) GetHostpci1() string

GetHostpci1 returns the Hostpci1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci10

func (o *UpdateVMConfigRequest) GetHostpci10() string

GetHostpci10 returns the Hostpci10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci10Ok

func (o *UpdateVMConfigRequest) GetHostpci10Ok() (*string, bool)

GetHostpci10Ok returns a tuple with the Hostpci10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci11

func (o *UpdateVMConfigRequest) GetHostpci11() string

GetHostpci11 returns the Hostpci11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci11Ok

func (o *UpdateVMConfigRequest) GetHostpci11Ok() (*string, bool)

GetHostpci11Ok returns a tuple with the Hostpci11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci12

func (o *UpdateVMConfigRequest) GetHostpci12() string

GetHostpci12 returns the Hostpci12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci12Ok

func (o *UpdateVMConfigRequest) GetHostpci12Ok() (*string, bool)

GetHostpci12Ok returns a tuple with the Hostpci12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci13

func (o *UpdateVMConfigRequest) GetHostpci13() string

GetHostpci13 returns the Hostpci13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci13Ok

func (o *UpdateVMConfigRequest) GetHostpci13Ok() (*string, bool)

GetHostpci13Ok returns a tuple with the Hostpci13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci14

func (o *UpdateVMConfigRequest) GetHostpci14() string

GetHostpci14 returns the Hostpci14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci14Ok

func (o *UpdateVMConfigRequest) GetHostpci14Ok() (*string, bool)

GetHostpci14Ok returns a tuple with the Hostpci14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci15

func (o *UpdateVMConfigRequest) GetHostpci15() string

GetHostpci15 returns the Hostpci15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci15Ok

func (o *UpdateVMConfigRequest) GetHostpci15Ok() (*string, bool)

GetHostpci15Ok returns a tuple with the Hostpci15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci16

func (o *UpdateVMConfigRequest) GetHostpci16() string

GetHostpci16 returns the Hostpci16 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci16Ok

func (o *UpdateVMConfigRequest) GetHostpci16Ok() (*string, bool)

GetHostpci16Ok returns a tuple with the Hostpci16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci17

func (o *UpdateVMConfigRequest) GetHostpci17() string

GetHostpci17 returns the Hostpci17 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci17Ok

func (o *UpdateVMConfigRequest) GetHostpci17Ok() (*string, bool)

GetHostpci17Ok returns a tuple with the Hostpci17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci18

func (o *UpdateVMConfigRequest) GetHostpci18() string

GetHostpci18 returns the Hostpci18 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci18Ok

func (o *UpdateVMConfigRequest) GetHostpci18Ok() (*string, bool)

GetHostpci18Ok returns a tuple with the Hostpci18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci19

func (o *UpdateVMConfigRequest) GetHostpci19() string

GetHostpci19 returns the Hostpci19 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci19Ok

func (o *UpdateVMConfigRequest) GetHostpci19Ok() (*string, bool)

GetHostpci19Ok returns a tuple with the Hostpci19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci1Ok

func (o *UpdateVMConfigRequest) GetHostpci1Ok() (*string, bool)

GetHostpci1Ok returns a tuple with the Hostpci1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci2

func (o *UpdateVMConfigRequest) GetHostpci2() string

GetHostpci2 returns the Hostpci2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci20

func (o *UpdateVMConfigRequest) GetHostpci20() string

GetHostpci20 returns the Hostpci20 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci20Ok

func (o *UpdateVMConfigRequest) GetHostpci20Ok() (*string, bool)

GetHostpci20Ok returns a tuple with the Hostpci20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci21

func (o *UpdateVMConfigRequest) GetHostpci21() string

GetHostpci21 returns the Hostpci21 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci21Ok

func (o *UpdateVMConfigRequest) GetHostpci21Ok() (*string, bool)

GetHostpci21Ok returns a tuple with the Hostpci21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci22

func (o *UpdateVMConfigRequest) GetHostpci22() string

GetHostpci22 returns the Hostpci22 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci22Ok

func (o *UpdateVMConfigRequest) GetHostpci22Ok() (*string, bool)

GetHostpci22Ok returns a tuple with the Hostpci22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci23

func (o *UpdateVMConfigRequest) GetHostpci23() string

GetHostpci23 returns the Hostpci23 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci23Ok

func (o *UpdateVMConfigRequest) GetHostpci23Ok() (*string, bool)

GetHostpci23Ok returns a tuple with the Hostpci23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci24

func (o *UpdateVMConfigRequest) GetHostpci24() string

GetHostpci24 returns the Hostpci24 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci24Ok

func (o *UpdateVMConfigRequest) GetHostpci24Ok() (*string, bool)

GetHostpci24Ok returns a tuple with the Hostpci24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci25

func (o *UpdateVMConfigRequest) GetHostpci25() string

GetHostpci25 returns the Hostpci25 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci25Ok

func (o *UpdateVMConfigRequest) GetHostpci25Ok() (*string, bool)

GetHostpci25Ok returns a tuple with the Hostpci25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci26

func (o *UpdateVMConfigRequest) GetHostpci26() string

GetHostpci26 returns the Hostpci26 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci26Ok

func (o *UpdateVMConfigRequest) GetHostpci26Ok() (*string, bool)

GetHostpci26Ok returns a tuple with the Hostpci26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci27

func (o *UpdateVMConfigRequest) GetHostpci27() string

GetHostpci27 returns the Hostpci27 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci27Ok

func (o *UpdateVMConfigRequest) GetHostpci27Ok() (*string, bool)

GetHostpci27Ok returns a tuple with the Hostpci27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci28

func (o *UpdateVMConfigRequest) GetHostpci28() string

GetHostpci28 returns the Hostpci28 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci28Ok

func (o *UpdateVMConfigRequest) GetHostpci28Ok() (*string, bool)

GetHostpci28Ok returns a tuple with the Hostpci28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci29

func (o *UpdateVMConfigRequest) GetHostpci29() string

GetHostpci29 returns the Hostpci29 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci29Ok

func (o *UpdateVMConfigRequest) GetHostpci29Ok() (*string, bool)

GetHostpci29Ok returns a tuple with the Hostpci29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci2Ok

func (o *UpdateVMConfigRequest) GetHostpci2Ok() (*string, bool)

GetHostpci2Ok returns a tuple with the Hostpci2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci3

func (o *UpdateVMConfigRequest) GetHostpci3() string

GetHostpci3 returns the Hostpci3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci3Ok

func (o *UpdateVMConfigRequest) GetHostpci3Ok() (*string, bool)

GetHostpci3Ok returns a tuple with the Hostpci3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci4

func (o *UpdateVMConfigRequest) GetHostpci4() string

GetHostpci4 returns the Hostpci4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci4Ok

func (o *UpdateVMConfigRequest) GetHostpci4Ok() (*string, bool)

GetHostpci4Ok returns a tuple with the Hostpci4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci5

func (o *UpdateVMConfigRequest) GetHostpci5() string

GetHostpci5 returns the Hostpci5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci5Ok

func (o *UpdateVMConfigRequest) GetHostpci5Ok() (*string, bool)

GetHostpci5Ok returns a tuple with the Hostpci5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci6

func (o *UpdateVMConfigRequest) GetHostpci6() string

GetHostpci6 returns the Hostpci6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci6Ok

func (o *UpdateVMConfigRequest) GetHostpci6Ok() (*string, bool)

GetHostpci6Ok returns a tuple with the Hostpci6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci7

func (o *UpdateVMConfigRequest) GetHostpci7() string

GetHostpci7 returns the Hostpci7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci7Ok

func (o *UpdateVMConfigRequest) GetHostpci7Ok() (*string, bool)

GetHostpci7Ok returns a tuple with the Hostpci7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci8

func (o *UpdateVMConfigRequest) GetHostpci8() string

GetHostpci8 returns the Hostpci8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci8Ok

func (o *UpdateVMConfigRequest) GetHostpci8Ok() (*string, bool)

GetHostpci8Ok returns a tuple with the Hostpci8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHostpci9

func (o *UpdateVMConfigRequest) GetHostpci9() string

GetHostpci9 returns the Hostpci9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHostpci9Ok

func (o *UpdateVMConfigRequest) GetHostpci9Ok() (*string, bool)

GetHostpci9Ok returns a tuple with the Hostpci9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHotplug

func (o *UpdateVMConfigRequest) GetHotplug() string

GetHotplug returns the Hotplug field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHotplugOk

func (o *UpdateVMConfigRequest) GetHotplugOk() (*string, bool)

GetHotplugOk returns a tuple with the Hotplug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetHugepages

func (o *UpdateVMConfigRequest) GetHugepages() string

GetHugepages returns the Hugepages field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetHugepagesOk

func (o *UpdateVMConfigRequest) GetHugepagesOk() (*string, bool)

GetHugepagesOk returns a tuple with the Hugepages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIde0

func (o *UpdateVMConfigRequest) GetIde0() string

GetIde0 returns the Ide0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIde0Ok

func (o *UpdateVMConfigRequest) GetIde0Ok() (*string, bool)

GetIde0Ok returns a tuple with the Ide0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIde1

func (o *UpdateVMConfigRequest) GetIde1() string

GetIde1 returns the Ide1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIde1Ok

func (o *UpdateVMConfigRequest) GetIde1Ok() (*string, bool)

GetIde1Ok returns a tuple with the Ide1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIde2

func (o *UpdateVMConfigRequest) GetIde2() string

GetIde2 returns the Ide2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIde2Ok

func (o *UpdateVMConfigRequest) GetIde2Ok() (*string, bool)

GetIde2Ok returns a tuple with the Ide2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIde3

func (o *UpdateVMConfigRequest) GetIde3() string

GetIde3 returns the Ide3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIde3Ok

func (o *UpdateVMConfigRequest) GetIde3Ok() (*string, bool)

GetIde3Ok returns a tuple with the Ide3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig0

func (o *UpdateVMConfigRequest) GetIpconfig0() string

GetIpconfig0 returns the Ipconfig0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig0Ok

func (o *UpdateVMConfigRequest) GetIpconfig0Ok() (*string, bool)

GetIpconfig0Ok returns a tuple with the Ipconfig0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig1

func (o *UpdateVMConfigRequest) GetIpconfig1() string

GetIpconfig1 returns the Ipconfig1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig10

func (o *UpdateVMConfigRequest) GetIpconfig10() string

GetIpconfig10 returns the Ipconfig10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig10Ok

func (o *UpdateVMConfigRequest) GetIpconfig10Ok() (*string, bool)

GetIpconfig10Ok returns a tuple with the Ipconfig10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig11

func (o *UpdateVMConfigRequest) GetIpconfig11() string

GetIpconfig11 returns the Ipconfig11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig11Ok

func (o *UpdateVMConfigRequest) GetIpconfig11Ok() (*string, bool)

GetIpconfig11Ok returns a tuple with the Ipconfig11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig12

func (o *UpdateVMConfigRequest) GetIpconfig12() string

GetIpconfig12 returns the Ipconfig12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig12Ok

func (o *UpdateVMConfigRequest) GetIpconfig12Ok() (*string, bool)

GetIpconfig12Ok returns a tuple with the Ipconfig12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig13

func (o *UpdateVMConfigRequest) GetIpconfig13() string

GetIpconfig13 returns the Ipconfig13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig13Ok

func (o *UpdateVMConfigRequest) GetIpconfig13Ok() (*string, bool)

GetIpconfig13Ok returns a tuple with the Ipconfig13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig14

func (o *UpdateVMConfigRequest) GetIpconfig14() string

GetIpconfig14 returns the Ipconfig14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig14Ok

func (o *UpdateVMConfigRequest) GetIpconfig14Ok() (*string, bool)

GetIpconfig14Ok returns a tuple with the Ipconfig14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig15

func (o *UpdateVMConfigRequest) GetIpconfig15() string

GetIpconfig15 returns the Ipconfig15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig15Ok

func (o *UpdateVMConfigRequest) GetIpconfig15Ok() (*string, bool)

GetIpconfig15Ok returns a tuple with the Ipconfig15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig16

func (o *UpdateVMConfigRequest) GetIpconfig16() string

GetIpconfig16 returns the Ipconfig16 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig16Ok

func (o *UpdateVMConfigRequest) GetIpconfig16Ok() (*string, bool)

GetIpconfig16Ok returns a tuple with the Ipconfig16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig17

func (o *UpdateVMConfigRequest) GetIpconfig17() string

GetIpconfig17 returns the Ipconfig17 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig17Ok

func (o *UpdateVMConfigRequest) GetIpconfig17Ok() (*string, bool)

GetIpconfig17Ok returns a tuple with the Ipconfig17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig18

func (o *UpdateVMConfigRequest) GetIpconfig18() string

GetIpconfig18 returns the Ipconfig18 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig18Ok

func (o *UpdateVMConfigRequest) GetIpconfig18Ok() (*string, bool)

GetIpconfig18Ok returns a tuple with the Ipconfig18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig19

func (o *UpdateVMConfigRequest) GetIpconfig19() string

GetIpconfig19 returns the Ipconfig19 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig19Ok

func (o *UpdateVMConfigRequest) GetIpconfig19Ok() (*string, bool)

GetIpconfig19Ok returns a tuple with the Ipconfig19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig1Ok

func (o *UpdateVMConfigRequest) GetIpconfig1Ok() (*string, bool)

GetIpconfig1Ok returns a tuple with the Ipconfig1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig2

func (o *UpdateVMConfigRequest) GetIpconfig2() string

GetIpconfig2 returns the Ipconfig2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig20

func (o *UpdateVMConfigRequest) GetIpconfig20() string

GetIpconfig20 returns the Ipconfig20 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig20Ok

func (o *UpdateVMConfigRequest) GetIpconfig20Ok() (*string, bool)

GetIpconfig20Ok returns a tuple with the Ipconfig20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig21

func (o *UpdateVMConfigRequest) GetIpconfig21() string

GetIpconfig21 returns the Ipconfig21 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig21Ok

func (o *UpdateVMConfigRequest) GetIpconfig21Ok() (*string, bool)

GetIpconfig21Ok returns a tuple with the Ipconfig21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig22

func (o *UpdateVMConfigRequest) GetIpconfig22() string

GetIpconfig22 returns the Ipconfig22 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig22Ok

func (o *UpdateVMConfigRequest) GetIpconfig22Ok() (*string, bool)

GetIpconfig22Ok returns a tuple with the Ipconfig22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig23

func (o *UpdateVMConfigRequest) GetIpconfig23() string

GetIpconfig23 returns the Ipconfig23 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig23Ok

func (o *UpdateVMConfigRequest) GetIpconfig23Ok() (*string, bool)

GetIpconfig23Ok returns a tuple with the Ipconfig23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig24

func (o *UpdateVMConfigRequest) GetIpconfig24() string

GetIpconfig24 returns the Ipconfig24 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig24Ok

func (o *UpdateVMConfigRequest) GetIpconfig24Ok() (*string, bool)

GetIpconfig24Ok returns a tuple with the Ipconfig24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig25

func (o *UpdateVMConfigRequest) GetIpconfig25() string

GetIpconfig25 returns the Ipconfig25 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig25Ok

func (o *UpdateVMConfigRequest) GetIpconfig25Ok() (*string, bool)

GetIpconfig25Ok returns a tuple with the Ipconfig25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig26

func (o *UpdateVMConfigRequest) GetIpconfig26() string

GetIpconfig26 returns the Ipconfig26 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig26Ok

func (o *UpdateVMConfigRequest) GetIpconfig26Ok() (*string, bool)

GetIpconfig26Ok returns a tuple with the Ipconfig26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig27

func (o *UpdateVMConfigRequest) GetIpconfig27() string

GetIpconfig27 returns the Ipconfig27 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig27Ok

func (o *UpdateVMConfigRequest) GetIpconfig27Ok() (*string, bool)

GetIpconfig27Ok returns a tuple with the Ipconfig27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig28

func (o *UpdateVMConfigRequest) GetIpconfig28() string

GetIpconfig28 returns the Ipconfig28 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig28Ok

func (o *UpdateVMConfigRequest) GetIpconfig28Ok() (*string, bool)

GetIpconfig28Ok returns a tuple with the Ipconfig28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig29

func (o *UpdateVMConfigRequest) GetIpconfig29() string

GetIpconfig29 returns the Ipconfig29 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig29Ok

func (o *UpdateVMConfigRequest) GetIpconfig29Ok() (*string, bool)

GetIpconfig29Ok returns a tuple with the Ipconfig29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig2Ok

func (o *UpdateVMConfigRequest) GetIpconfig2Ok() (*string, bool)

GetIpconfig2Ok returns a tuple with the Ipconfig2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig3

func (o *UpdateVMConfigRequest) GetIpconfig3() string

GetIpconfig3 returns the Ipconfig3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig3Ok

func (o *UpdateVMConfigRequest) GetIpconfig3Ok() (*string, bool)

GetIpconfig3Ok returns a tuple with the Ipconfig3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig4

func (o *UpdateVMConfigRequest) GetIpconfig4() string

GetIpconfig4 returns the Ipconfig4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig4Ok

func (o *UpdateVMConfigRequest) GetIpconfig4Ok() (*string, bool)

GetIpconfig4Ok returns a tuple with the Ipconfig4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig5

func (o *UpdateVMConfigRequest) GetIpconfig5() string

GetIpconfig5 returns the Ipconfig5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig5Ok

func (o *UpdateVMConfigRequest) GetIpconfig5Ok() (*string, bool)

GetIpconfig5Ok returns a tuple with the Ipconfig5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig6

func (o *UpdateVMConfigRequest) GetIpconfig6() string

GetIpconfig6 returns the Ipconfig6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig6Ok

func (o *UpdateVMConfigRequest) GetIpconfig6Ok() (*string, bool)

GetIpconfig6Ok returns a tuple with the Ipconfig6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig7

func (o *UpdateVMConfigRequest) GetIpconfig7() string

GetIpconfig7 returns the Ipconfig7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig7Ok

func (o *UpdateVMConfigRequest) GetIpconfig7Ok() (*string, bool)

GetIpconfig7Ok returns a tuple with the Ipconfig7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig8

func (o *UpdateVMConfigRequest) GetIpconfig8() string

GetIpconfig8 returns the Ipconfig8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig8Ok

func (o *UpdateVMConfigRequest) GetIpconfig8Ok() (*string, bool)

GetIpconfig8Ok returns a tuple with the Ipconfig8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIpconfig9

func (o *UpdateVMConfigRequest) GetIpconfig9() string

GetIpconfig9 returns the Ipconfig9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIpconfig9Ok

func (o *UpdateVMConfigRequest) GetIpconfig9Ok() (*string, bool)

GetIpconfig9Ok returns a tuple with the Ipconfig9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetIvshmem

func (o *UpdateVMConfigRequest) GetIvshmem() string

GetIvshmem returns the Ivshmem field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetIvshmemOk

func (o *UpdateVMConfigRequest) GetIvshmemOk() (*string, bool)

GetIvshmemOk returns a tuple with the Ivshmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetKeephugepages

func (o *UpdateVMConfigRequest) GetKeephugepages() int32

GetKeephugepages returns the Keephugepages field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetKeephugepagesOk

func (o *UpdateVMConfigRequest) GetKeephugepagesOk() (*int32, bool)

GetKeephugepagesOk returns a tuple with the Keephugepages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetKeyboard

func (o *UpdateVMConfigRequest) GetKeyboard() string

GetKeyboard returns the Keyboard field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetKeyboardOk

func (o *UpdateVMConfigRequest) GetKeyboardOk() (*string, bool)

GetKeyboardOk returns a tuple with the Keyboard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetKvm

func (o *UpdateVMConfigRequest) GetKvm() int32

GetKvm returns the Kvm field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetKvmOk

func (o *UpdateVMConfigRequest) GetKvmOk() (*int32, bool)

GetKvmOk returns a tuple with the Kvm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetLocaltime

func (o *UpdateVMConfigRequest) GetLocaltime() int32

GetLocaltime returns the Localtime field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetLocaltimeOk

func (o *UpdateVMConfigRequest) GetLocaltimeOk() (*int32, bool)

GetLocaltimeOk returns a tuple with the Localtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetLock

func (o *UpdateVMConfigRequest) GetLock() string

GetLock returns the Lock field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetLockOk

func (o *UpdateVMConfigRequest) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetMachine

func (o *UpdateVMConfigRequest) GetMachine() string

GetMachine returns the Machine field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetMachineOk

func (o *UpdateVMConfigRequest) GetMachineOk() (*string, bool)

GetMachineOk returns a tuple with the Machine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetMemory

func (o *UpdateVMConfigRequest) GetMemory() int64

GetMemory returns the Memory field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetMemoryOk

func (o *UpdateVMConfigRequest) GetMemoryOk() (*int64, bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetMigrateDowntime

func (o *UpdateVMConfigRequest) GetMigrateDowntime() float32

GetMigrateDowntime returns the MigrateDowntime field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetMigrateDowntimeOk

func (o *UpdateVMConfigRequest) GetMigrateDowntimeOk() (*float32, bool)

GetMigrateDowntimeOk returns a tuple with the MigrateDowntime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetMigrateSpeed

func (o *UpdateVMConfigRequest) GetMigrateSpeed() int64

GetMigrateSpeed returns the MigrateSpeed field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetMigrateSpeedOk

func (o *UpdateVMConfigRequest) GetMigrateSpeedOk() (*int64, bool)

GetMigrateSpeedOk returns a tuple with the MigrateSpeed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetName

func (o *UpdateVMConfigRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNameOk

func (o *UpdateVMConfigRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNameserver

func (o *UpdateVMConfigRequest) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNameserverOk

func (o *UpdateVMConfigRequest) GetNameserverOk() (*string, bool)

GetNameserverOk returns a tuple with the Nameserver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet0

func (o *UpdateVMConfigRequest) GetNet0() string

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet0Ok

func (o *UpdateVMConfigRequest) GetNet0Ok() (*string, bool)

GetNet0Ok returns a tuple with the Net0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet1

func (o *UpdateVMConfigRequest) GetNet1() string

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet10

func (o *UpdateVMConfigRequest) GetNet10() string

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet10Ok

func (o *UpdateVMConfigRequest) GetNet10Ok() (*string, bool)

GetNet10Ok returns a tuple with the Net10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet11

func (o *UpdateVMConfigRequest) GetNet11() string

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet11Ok

func (o *UpdateVMConfigRequest) GetNet11Ok() (*string, bool)

GetNet11Ok returns a tuple with the Net11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet12

func (o *UpdateVMConfigRequest) GetNet12() string

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet12Ok

func (o *UpdateVMConfigRequest) GetNet12Ok() (*string, bool)

GetNet12Ok returns a tuple with the Net12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet13

func (o *UpdateVMConfigRequest) GetNet13() string

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet13Ok

func (o *UpdateVMConfigRequest) GetNet13Ok() (*string, bool)

GetNet13Ok returns a tuple with the Net13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet14

func (o *UpdateVMConfigRequest) GetNet14() string

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet14Ok

func (o *UpdateVMConfigRequest) GetNet14Ok() (*string, bool)

GetNet14Ok returns a tuple with the Net14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet15

func (o *UpdateVMConfigRequest) GetNet15() string

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet15Ok

func (o *UpdateVMConfigRequest) GetNet15Ok() (*string, bool)

GetNet15Ok returns a tuple with the Net15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet16

func (o *UpdateVMConfigRequest) GetNet16() string

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet16Ok

func (o *UpdateVMConfigRequest) GetNet16Ok() (*string, bool)

GetNet16Ok returns a tuple with the Net16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet17

func (o *UpdateVMConfigRequest) GetNet17() string

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet17Ok

func (o *UpdateVMConfigRequest) GetNet17Ok() (*string, bool)

GetNet17Ok returns a tuple with the Net17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet18

func (o *UpdateVMConfigRequest) GetNet18() string

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet18Ok

func (o *UpdateVMConfigRequest) GetNet18Ok() (*string, bool)

GetNet18Ok returns a tuple with the Net18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet19

func (o *UpdateVMConfigRequest) GetNet19() string

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet19Ok

func (o *UpdateVMConfigRequest) GetNet19Ok() (*string, bool)

GetNet19Ok returns a tuple with the Net19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet1Ok

func (o *UpdateVMConfigRequest) GetNet1Ok() (*string, bool)

GetNet1Ok returns a tuple with the Net1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet2

func (o *UpdateVMConfigRequest) GetNet2() string

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet20

func (o *UpdateVMConfigRequest) GetNet20() string

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet20Ok

func (o *UpdateVMConfigRequest) GetNet20Ok() (*string, bool)

GetNet20Ok returns a tuple with the Net20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet21

func (o *UpdateVMConfigRequest) GetNet21() string

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet21Ok

func (o *UpdateVMConfigRequest) GetNet21Ok() (*string, bool)

GetNet21Ok returns a tuple with the Net21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet22

func (o *UpdateVMConfigRequest) GetNet22() string

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet22Ok

func (o *UpdateVMConfigRequest) GetNet22Ok() (*string, bool)

GetNet22Ok returns a tuple with the Net22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet23

func (o *UpdateVMConfigRequest) GetNet23() string

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet23Ok

func (o *UpdateVMConfigRequest) GetNet23Ok() (*string, bool)

GetNet23Ok returns a tuple with the Net23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet24

func (o *UpdateVMConfigRequest) GetNet24() string

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet24Ok

func (o *UpdateVMConfigRequest) GetNet24Ok() (*string, bool)

GetNet24Ok returns a tuple with the Net24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet25

func (o *UpdateVMConfigRequest) GetNet25() string

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet25Ok

func (o *UpdateVMConfigRequest) GetNet25Ok() (*string, bool)

GetNet25Ok returns a tuple with the Net25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet26

func (o *UpdateVMConfigRequest) GetNet26() string

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet26Ok

func (o *UpdateVMConfigRequest) GetNet26Ok() (*string, bool)

GetNet26Ok returns a tuple with the Net26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet27

func (o *UpdateVMConfigRequest) GetNet27() string

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet27Ok

func (o *UpdateVMConfigRequest) GetNet27Ok() (*string, bool)

GetNet27Ok returns a tuple with the Net27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet28

func (o *UpdateVMConfigRequest) GetNet28() string

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet28Ok

func (o *UpdateVMConfigRequest) GetNet28Ok() (*string, bool)

GetNet28Ok returns a tuple with the Net28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet29

func (o *UpdateVMConfigRequest) GetNet29() string

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet29Ok

func (o *UpdateVMConfigRequest) GetNet29Ok() (*string, bool)

GetNet29Ok returns a tuple with the Net29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet2Ok

func (o *UpdateVMConfigRequest) GetNet2Ok() (*string, bool)

GetNet2Ok returns a tuple with the Net2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet3

func (o *UpdateVMConfigRequest) GetNet3() string

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet30

func (o *UpdateVMConfigRequest) GetNet30() string

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet30Ok

func (o *UpdateVMConfigRequest) GetNet30Ok() (*string, bool)

GetNet30Ok returns a tuple with the Net30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet31

func (o *UpdateVMConfigRequest) GetNet31() string

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet31Ok

func (o *UpdateVMConfigRequest) GetNet31Ok() (*string, bool)

GetNet31Ok returns a tuple with the Net31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet3Ok

func (o *UpdateVMConfigRequest) GetNet3Ok() (*string, bool)

GetNet3Ok returns a tuple with the Net3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet4

func (o *UpdateVMConfigRequest) GetNet4() string

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet4Ok

func (o *UpdateVMConfigRequest) GetNet4Ok() (*string, bool)

GetNet4Ok returns a tuple with the Net4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet5

func (o *UpdateVMConfigRequest) GetNet5() string

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet5Ok

func (o *UpdateVMConfigRequest) GetNet5Ok() (*string, bool)

GetNet5Ok returns a tuple with the Net5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet6

func (o *UpdateVMConfigRequest) GetNet6() string

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet6Ok

func (o *UpdateVMConfigRequest) GetNet6Ok() (*string, bool)

GetNet6Ok returns a tuple with the Net6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet7

func (o *UpdateVMConfigRequest) GetNet7() string

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet7Ok

func (o *UpdateVMConfigRequest) GetNet7Ok() (*string, bool)

GetNet7Ok returns a tuple with the Net7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet8

func (o *UpdateVMConfigRequest) GetNet8() string

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet8Ok

func (o *UpdateVMConfigRequest) GetNet8Ok() (*string, bool)

GetNet8Ok returns a tuple with the Net8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNet9

func (o *UpdateVMConfigRequest) GetNet9() string

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNet9Ok

func (o *UpdateVMConfigRequest) GetNet9Ok() (*string, bool)

GetNet9Ok returns a tuple with the Net9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma

func (o *UpdateVMConfigRequest) GetNuma() int32

GetNuma returns the Numa field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma0

func (o *UpdateVMConfigRequest) GetNuma0() string

GetNuma0 returns the Numa0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma0Ok

func (o *UpdateVMConfigRequest) GetNuma0Ok() (*string, bool)

GetNuma0Ok returns a tuple with the Numa0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma1

func (o *UpdateVMConfigRequest) GetNuma1() string

GetNuma1 returns the Numa1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma10

func (o *UpdateVMConfigRequest) GetNuma10() string

GetNuma10 returns the Numa10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma10Ok

func (o *UpdateVMConfigRequest) GetNuma10Ok() (*string, bool)

GetNuma10Ok returns a tuple with the Numa10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma11

func (o *UpdateVMConfigRequest) GetNuma11() string

GetNuma11 returns the Numa11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma11Ok

func (o *UpdateVMConfigRequest) GetNuma11Ok() (*string, bool)

GetNuma11Ok returns a tuple with the Numa11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma12

func (o *UpdateVMConfigRequest) GetNuma12() string

GetNuma12 returns the Numa12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma12Ok

func (o *UpdateVMConfigRequest) GetNuma12Ok() (*string, bool)

GetNuma12Ok returns a tuple with the Numa12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma13

func (o *UpdateVMConfigRequest) GetNuma13() string

GetNuma13 returns the Numa13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma13Ok

func (o *UpdateVMConfigRequest) GetNuma13Ok() (*string, bool)

GetNuma13Ok returns a tuple with the Numa13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma14

func (o *UpdateVMConfigRequest) GetNuma14() string

GetNuma14 returns the Numa14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma14Ok

func (o *UpdateVMConfigRequest) GetNuma14Ok() (*string, bool)

GetNuma14Ok returns a tuple with the Numa14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma15

func (o *UpdateVMConfigRequest) GetNuma15() string

GetNuma15 returns the Numa15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma15Ok

func (o *UpdateVMConfigRequest) GetNuma15Ok() (*string, bool)

GetNuma15Ok returns a tuple with the Numa15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma16

func (o *UpdateVMConfigRequest) GetNuma16() string

GetNuma16 returns the Numa16 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma16Ok

func (o *UpdateVMConfigRequest) GetNuma16Ok() (*string, bool)

GetNuma16Ok returns a tuple with the Numa16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma17

func (o *UpdateVMConfigRequest) GetNuma17() string

GetNuma17 returns the Numa17 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma17Ok

func (o *UpdateVMConfigRequest) GetNuma17Ok() (*string, bool)

GetNuma17Ok returns a tuple with the Numa17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma18

func (o *UpdateVMConfigRequest) GetNuma18() string

GetNuma18 returns the Numa18 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma18Ok

func (o *UpdateVMConfigRequest) GetNuma18Ok() (*string, bool)

GetNuma18Ok returns a tuple with the Numa18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma19

func (o *UpdateVMConfigRequest) GetNuma19() string

GetNuma19 returns the Numa19 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma19Ok

func (o *UpdateVMConfigRequest) GetNuma19Ok() (*string, bool)

GetNuma19Ok returns a tuple with the Numa19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma1Ok

func (o *UpdateVMConfigRequest) GetNuma1Ok() (*string, bool)

GetNuma1Ok returns a tuple with the Numa1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma2

func (o *UpdateVMConfigRequest) GetNuma2() string

GetNuma2 returns the Numa2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma20

func (o *UpdateVMConfigRequest) GetNuma20() string

GetNuma20 returns the Numa20 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma20Ok

func (o *UpdateVMConfigRequest) GetNuma20Ok() (*string, bool)

GetNuma20Ok returns a tuple with the Numa20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma21

func (o *UpdateVMConfigRequest) GetNuma21() string

GetNuma21 returns the Numa21 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma21Ok

func (o *UpdateVMConfigRequest) GetNuma21Ok() (*string, bool)

GetNuma21Ok returns a tuple with the Numa21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma22

func (o *UpdateVMConfigRequest) GetNuma22() string

GetNuma22 returns the Numa22 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma22Ok

func (o *UpdateVMConfigRequest) GetNuma22Ok() (*string, bool)

GetNuma22Ok returns a tuple with the Numa22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma23

func (o *UpdateVMConfigRequest) GetNuma23() string

GetNuma23 returns the Numa23 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma23Ok

func (o *UpdateVMConfigRequest) GetNuma23Ok() (*string, bool)

GetNuma23Ok returns a tuple with the Numa23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma24

func (o *UpdateVMConfigRequest) GetNuma24() string

GetNuma24 returns the Numa24 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma24Ok

func (o *UpdateVMConfigRequest) GetNuma24Ok() (*string, bool)

GetNuma24Ok returns a tuple with the Numa24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma25

func (o *UpdateVMConfigRequest) GetNuma25() string

GetNuma25 returns the Numa25 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma25Ok

func (o *UpdateVMConfigRequest) GetNuma25Ok() (*string, bool)

GetNuma25Ok returns a tuple with the Numa25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma26

func (o *UpdateVMConfigRequest) GetNuma26() string

GetNuma26 returns the Numa26 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma26Ok

func (o *UpdateVMConfigRequest) GetNuma26Ok() (*string, bool)

GetNuma26Ok returns a tuple with the Numa26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma27

func (o *UpdateVMConfigRequest) GetNuma27() string

GetNuma27 returns the Numa27 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma27Ok

func (o *UpdateVMConfigRequest) GetNuma27Ok() (*string, bool)

GetNuma27Ok returns a tuple with the Numa27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma28

func (o *UpdateVMConfigRequest) GetNuma28() string

GetNuma28 returns the Numa28 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma28Ok

func (o *UpdateVMConfigRequest) GetNuma28Ok() (*string, bool)

GetNuma28Ok returns a tuple with the Numa28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma29

func (o *UpdateVMConfigRequest) GetNuma29() string

GetNuma29 returns the Numa29 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma29Ok

func (o *UpdateVMConfigRequest) GetNuma29Ok() (*string, bool)

GetNuma29Ok returns a tuple with the Numa29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma2Ok

func (o *UpdateVMConfigRequest) GetNuma2Ok() (*string, bool)

GetNuma2Ok returns a tuple with the Numa2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma3

func (o *UpdateVMConfigRequest) GetNuma3() string

GetNuma3 returns the Numa3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma3Ok

func (o *UpdateVMConfigRequest) GetNuma3Ok() (*string, bool)

GetNuma3Ok returns a tuple with the Numa3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma4

func (o *UpdateVMConfigRequest) GetNuma4() string

GetNuma4 returns the Numa4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma4Ok

func (o *UpdateVMConfigRequest) GetNuma4Ok() (*string, bool)

GetNuma4Ok returns a tuple with the Numa4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma5

func (o *UpdateVMConfigRequest) GetNuma5() string

GetNuma5 returns the Numa5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma5Ok

func (o *UpdateVMConfigRequest) GetNuma5Ok() (*string, bool)

GetNuma5Ok returns a tuple with the Numa5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma6

func (o *UpdateVMConfigRequest) GetNuma6() string

GetNuma6 returns the Numa6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma6Ok

func (o *UpdateVMConfigRequest) GetNuma6Ok() (*string, bool)

GetNuma6Ok returns a tuple with the Numa6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma7

func (o *UpdateVMConfigRequest) GetNuma7() string

GetNuma7 returns the Numa7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma7Ok

func (o *UpdateVMConfigRequest) GetNuma7Ok() (*string, bool)

GetNuma7Ok returns a tuple with the Numa7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma8

func (o *UpdateVMConfigRequest) GetNuma8() string

GetNuma8 returns the Numa8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma8Ok

func (o *UpdateVMConfigRequest) GetNuma8Ok() (*string, bool)

GetNuma8Ok returns a tuple with the Numa8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNuma9

func (o *UpdateVMConfigRequest) GetNuma9() string

GetNuma9 returns the Numa9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetNuma9Ok

func (o *UpdateVMConfigRequest) GetNuma9Ok() (*string, bool)

GetNuma9Ok returns a tuple with the Numa9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetNumaOk

func (o *UpdateVMConfigRequest) GetNumaOk() (*int32, bool)

GetNumaOk returns a tuple with the Numa field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetOnboot

func (o *UpdateVMConfigRequest) GetOnboot() int32

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetOnbootOk

func (o *UpdateVMConfigRequest) GetOnbootOk() (*int32, bool)

GetOnbootOk returns a tuple with the Onboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetOstype

func (o *UpdateVMConfigRequest) GetOstype() string

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetOstypeOk

func (o *UpdateVMConfigRequest) GetOstypeOk() (*string, bool)

GetOstypeOk returns a tuple with the Ostype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetParallel0

func (o *UpdateVMConfigRequest) GetParallel0() string

GetParallel0 returns the Parallel0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetParallel0Ok

func (o *UpdateVMConfigRequest) GetParallel0Ok() (*string, bool)

GetParallel0Ok returns a tuple with the Parallel0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetParallel1

func (o *UpdateVMConfigRequest) GetParallel1() string

GetParallel1 returns the Parallel1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetParallel1Ok

func (o *UpdateVMConfigRequest) GetParallel1Ok() (*string, bool)

GetParallel1Ok returns a tuple with the Parallel1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetParallel2

func (o *UpdateVMConfigRequest) GetParallel2() string

GetParallel2 returns the Parallel2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetParallel2Ok

func (o *UpdateVMConfigRequest) GetParallel2Ok() (*string, bool)

GetParallel2Ok returns a tuple with the Parallel2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetParallel3

func (o *UpdateVMConfigRequest) GetParallel3() string

GetParallel3 returns the Parallel3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetParallel3Ok

func (o *UpdateVMConfigRequest) GetParallel3Ok() (*string, bool)

GetParallel3Ok returns a tuple with the Parallel3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetProtection

func (o *UpdateVMConfigRequest) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetProtectionOk

func (o *UpdateVMConfigRequest) GetProtectionOk() (*int32, bool)

GetProtectionOk returns a tuple with the Protection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetReboot

func (o *UpdateVMConfigRequest) GetReboot() int32

GetReboot returns the Reboot field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetRebootOk

func (o *UpdateVMConfigRequest) GetRebootOk() (*int32, bool)

GetRebootOk returns a tuple with the Reboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetRevert

func (o *UpdateVMConfigRequest) GetRevert() string

GetRevert returns the Revert field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetRevertOk

func (o *UpdateVMConfigRequest) GetRevertOk() (*string, bool)

GetRevertOk returns a tuple with the Revert field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetRng0

func (o *UpdateVMConfigRequest) GetRng0() string

GetRng0 returns the Rng0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetRng0Ok

func (o *UpdateVMConfigRequest) GetRng0Ok() (*string, bool)

GetRng0Ok returns a tuple with the Rng0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSata0

func (o *UpdateVMConfigRequest) GetSata0() string

GetSata0 returns the Sata0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSata0Ok

func (o *UpdateVMConfigRequest) GetSata0Ok() (*string, bool)

GetSata0Ok returns a tuple with the Sata0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSata1

func (o *UpdateVMConfigRequest) GetSata1() string

GetSata1 returns the Sata1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSata1Ok

func (o *UpdateVMConfigRequest) GetSata1Ok() (*string, bool)

GetSata1Ok returns a tuple with the Sata1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSata2

func (o *UpdateVMConfigRequest) GetSata2() string

GetSata2 returns the Sata2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSata2Ok

func (o *UpdateVMConfigRequest) GetSata2Ok() (*string, bool)

GetSata2Ok returns a tuple with the Sata2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSata3

func (o *UpdateVMConfigRequest) GetSata3() string

GetSata3 returns the Sata3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSata3Ok

func (o *UpdateVMConfigRequest) GetSata3Ok() (*string, bool)

GetSata3Ok returns a tuple with the Sata3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSata4

func (o *UpdateVMConfigRequest) GetSata4() string

GetSata4 returns the Sata4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSata4Ok

func (o *UpdateVMConfigRequest) GetSata4Ok() (*string, bool)

GetSata4Ok returns a tuple with the Sata4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSata5

func (o *UpdateVMConfigRequest) GetSata5() string

GetSata5 returns the Sata5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSata5Ok

func (o *UpdateVMConfigRequest) GetSata5Ok() (*string, bool)

GetSata5Ok returns a tuple with the Sata5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi0

func (o *UpdateVMConfigRequest) GetScsi0() string

GetScsi0 returns the Scsi0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi0Ok

func (o *UpdateVMConfigRequest) GetScsi0Ok() (*string, bool)

GetScsi0Ok returns a tuple with the Scsi0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi1

func (o *UpdateVMConfigRequest) GetScsi1() string

GetScsi1 returns the Scsi1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi10

func (o *UpdateVMConfigRequest) GetScsi10() string

GetScsi10 returns the Scsi10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi10Ok

func (o *UpdateVMConfigRequest) GetScsi10Ok() (*string, bool)

GetScsi10Ok returns a tuple with the Scsi10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi11

func (o *UpdateVMConfigRequest) GetScsi11() string

GetScsi11 returns the Scsi11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi11Ok

func (o *UpdateVMConfigRequest) GetScsi11Ok() (*string, bool)

GetScsi11Ok returns a tuple with the Scsi11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi12

func (o *UpdateVMConfigRequest) GetScsi12() string

GetScsi12 returns the Scsi12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi12Ok

func (o *UpdateVMConfigRequest) GetScsi12Ok() (*string, bool)

GetScsi12Ok returns a tuple with the Scsi12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi13

func (o *UpdateVMConfigRequest) GetScsi13() string

GetScsi13 returns the Scsi13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi13Ok

func (o *UpdateVMConfigRequest) GetScsi13Ok() (*string, bool)

GetScsi13Ok returns a tuple with the Scsi13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi14

func (o *UpdateVMConfigRequest) GetScsi14() string

GetScsi14 returns the Scsi14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi14Ok

func (o *UpdateVMConfigRequest) GetScsi14Ok() (*string, bool)

GetScsi14Ok returns a tuple with the Scsi14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi15

func (o *UpdateVMConfigRequest) GetScsi15() string

GetScsi15 returns the Scsi15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi15Ok

func (o *UpdateVMConfigRequest) GetScsi15Ok() (*string, bool)

GetScsi15Ok returns a tuple with the Scsi15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi16

func (o *UpdateVMConfigRequest) GetScsi16() string

GetScsi16 returns the Scsi16 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi16Ok

func (o *UpdateVMConfigRequest) GetScsi16Ok() (*string, bool)

GetScsi16Ok returns a tuple with the Scsi16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi17

func (o *UpdateVMConfigRequest) GetScsi17() string

GetScsi17 returns the Scsi17 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi17Ok

func (o *UpdateVMConfigRequest) GetScsi17Ok() (*string, bool)

GetScsi17Ok returns a tuple with the Scsi17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi18

func (o *UpdateVMConfigRequest) GetScsi18() string

GetScsi18 returns the Scsi18 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi18Ok

func (o *UpdateVMConfigRequest) GetScsi18Ok() (*string, bool)

GetScsi18Ok returns a tuple with the Scsi18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi19

func (o *UpdateVMConfigRequest) GetScsi19() string

GetScsi19 returns the Scsi19 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi19Ok

func (o *UpdateVMConfigRequest) GetScsi19Ok() (*string, bool)

GetScsi19Ok returns a tuple with the Scsi19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi1Ok

func (o *UpdateVMConfigRequest) GetScsi1Ok() (*string, bool)

GetScsi1Ok returns a tuple with the Scsi1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi2

func (o *UpdateVMConfigRequest) GetScsi2() string

GetScsi2 returns the Scsi2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi20

func (o *UpdateVMConfigRequest) GetScsi20() string

GetScsi20 returns the Scsi20 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi20Ok

func (o *UpdateVMConfigRequest) GetScsi20Ok() (*string, bool)

GetScsi20Ok returns a tuple with the Scsi20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi21

func (o *UpdateVMConfigRequest) GetScsi21() string

GetScsi21 returns the Scsi21 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi21Ok

func (o *UpdateVMConfigRequest) GetScsi21Ok() (*string, bool)

GetScsi21Ok returns a tuple with the Scsi21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi22

func (o *UpdateVMConfigRequest) GetScsi22() string

GetScsi22 returns the Scsi22 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi22Ok

func (o *UpdateVMConfigRequest) GetScsi22Ok() (*string, bool)

GetScsi22Ok returns a tuple with the Scsi22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi23

func (o *UpdateVMConfigRequest) GetScsi23() string

GetScsi23 returns the Scsi23 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi23Ok

func (o *UpdateVMConfigRequest) GetScsi23Ok() (*string, bool)

GetScsi23Ok returns a tuple with the Scsi23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi24

func (o *UpdateVMConfigRequest) GetScsi24() string

GetScsi24 returns the Scsi24 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi24Ok

func (o *UpdateVMConfigRequest) GetScsi24Ok() (*string, bool)

GetScsi24Ok returns a tuple with the Scsi24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi25

func (o *UpdateVMConfigRequest) GetScsi25() string

GetScsi25 returns the Scsi25 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi25Ok

func (o *UpdateVMConfigRequest) GetScsi25Ok() (*string, bool)

GetScsi25Ok returns a tuple with the Scsi25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi26

func (o *UpdateVMConfigRequest) GetScsi26() string

GetScsi26 returns the Scsi26 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi26Ok

func (o *UpdateVMConfigRequest) GetScsi26Ok() (*string, bool)

GetScsi26Ok returns a tuple with the Scsi26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi27

func (o *UpdateVMConfigRequest) GetScsi27() string

GetScsi27 returns the Scsi27 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi27Ok

func (o *UpdateVMConfigRequest) GetScsi27Ok() (*string, bool)

GetScsi27Ok returns a tuple with the Scsi27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi28

func (o *UpdateVMConfigRequest) GetScsi28() string

GetScsi28 returns the Scsi28 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi28Ok

func (o *UpdateVMConfigRequest) GetScsi28Ok() (*string, bool)

GetScsi28Ok returns a tuple with the Scsi28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi29

func (o *UpdateVMConfigRequest) GetScsi29() string

GetScsi29 returns the Scsi29 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi29Ok

func (o *UpdateVMConfigRequest) GetScsi29Ok() (*string, bool)

GetScsi29Ok returns a tuple with the Scsi29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi2Ok

func (o *UpdateVMConfigRequest) GetScsi2Ok() (*string, bool)

GetScsi2Ok returns a tuple with the Scsi2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi3

func (o *UpdateVMConfigRequest) GetScsi3() string

GetScsi3 returns the Scsi3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi3Ok

func (o *UpdateVMConfigRequest) GetScsi3Ok() (*string, bool)

GetScsi3Ok returns a tuple with the Scsi3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi4

func (o *UpdateVMConfigRequest) GetScsi4() string

GetScsi4 returns the Scsi4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi4Ok

func (o *UpdateVMConfigRequest) GetScsi4Ok() (*string, bool)

GetScsi4Ok returns a tuple with the Scsi4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi5

func (o *UpdateVMConfigRequest) GetScsi5() string

GetScsi5 returns the Scsi5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi5Ok

func (o *UpdateVMConfigRequest) GetScsi5Ok() (*string, bool)

GetScsi5Ok returns a tuple with the Scsi5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi6

func (o *UpdateVMConfigRequest) GetScsi6() string

GetScsi6 returns the Scsi6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi6Ok

func (o *UpdateVMConfigRequest) GetScsi6Ok() (*string, bool)

GetScsi6Ok returns a tuple with the Scsi6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi7

func (o *UpdateVMConfigRequest) GetScsi7() string

GetScsi7 returns the Scsi7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi7Ok

func (o *UpdateVMConfigRequest) GetScsi7Ok() (*string, bool)

GetScsi7Ok returns a tuple with the Scsi7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi8

func (o *UpdateVMConfigRequest) GetScsi8() string

GetScsi8 returns the Scsi8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi8Ok

func (o *UpdateVMConfigRequest) GetScsi8Ok() (*string, bool)

GetScsi8Ok returns a tuple with the Scsi8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsi9

func (o *UpdateVMConfigRequest) GetScsi9() string

GetScsi9 returns the Scsi9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsi9Ok

func (o *UpdateVMConfigRequest) GetScsi9Ok() (*string, bool)

GetScsi9Ok returns a tuple with the Scsi9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetScsihw

func (o *UpdateVMConfigRequest) GetScsihw() string

GetScsihw returns the Scsihw field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetScsihwOk

func (o *UpdateVMConfigRequest) GetScsihwOk() (*string, bool)

GetScsihwOk returns a tuple with the Scsihw field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSearchdomain

func (o *UpdateVMConfigRequest) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSearchdomainOk

func (o *UpdateVMConfigRequest) GetSearchdomainOk() (*string, bool)

GetSearchdomainOk returns a tuple with the Searchdomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSerial0

func (o *UpdateVMConfigRequest) GetSerial0() string

GetSerial0 returns the Serial0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSerial0Ok

func (o *UpdateVMConfigRequest) GetSerial0Ok() (*string, bool)

GetSerial0Ok returns a tuple with the Serial0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSerial1

func (o *UpdateVMConfigRequest) GetSerial1() string

GetSerial1 returns the Serial1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSerial1Ok

func (o *UpdateVMConfigRequest) GetSerial1Ok() (*string, bool)

GetSerial1Ok returns a tuple with the Serial1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSerial2

func (o *UpdateVMConfigRequest) GetSerial2() string

GetSerial2 returns the Serial2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSerial2Ok

func (o *UpdateVMConfigRequest) GetSerial2Ok() (*string, bool)

GetSerial2Ok returns a tuple with the Serial2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSerial3

func (o *UpdateVMConfigRequest) GetSerial3() string

GetSerial3 returns the Serial3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSerial3Ok

func (o *UpdateVMConfigRequest) GetSerial3Ok() (*string, bool)

GetSerial3Ok returns a tuple with the Serial3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetShares

func (o *UpdateVMConfigRequest) GetShares() int64

GetShares returns the Shares field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSharesOk

func (o *UpdateVMConfigRequest) GetSharesOk() (*int64, bool)

GetSharesOk returns a tuple with the Shares field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSkiplock

func (o *UpdateVMConfigRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSkiplockOk

func (o *UpdateVMConfigRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSmbios1

func (o *UpdateVMConfigRequest) GetSmbios1() string

GetSmbios1 returns the Smbios1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSmbios1Ok

func (o *UpdateVMConfigRequest) GetSmbios1Ok() (*string, bool)

GetSmbios1Ok returns a tuple with the Smbios1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSmp

func (o *UpdateVMConfigRequest) GetSmp() int64

GetSmp returns the Smp field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSmpOk

func (o *UpdateVMConfigRequest) GetSmpOk() (*int64, bool)

GetSmpOk returns a tuple with the Smp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSockets

func (o *UpdateVMConfigRequest) GetSockets() int64

GetSockets returns the Sockets field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSocketsOk

func (o *UpdateVMConfigRequest) GetSocketsOk() (*int64, bool)

GetSocketsOk returns a tuple with the Sockets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSpiceEnhancements

func (o *UpdateVMConfigRequest) GetSpiceEnhancements() string

GetSpiceEnhancements returns the SpiceEnhancements field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSpiceEnhancementsOk

func (o *UpdateVMConfigRequest) GetSpiceEnhancementsOk() (*string, bool)

GetSpiceEnhancementsOk returns a tuple with the SpiceEnhancements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetSshkeys

func (o *UpdateVMConfigRequest) GetSshkeys() string

GetSshkeys returns the Sshkeys field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetSshkeysOk

func (o *UpdateVMConfigRequest) GetSshkeysOk() (*string, bool)

GetSshkeysOk returns a tuple with the Sshkeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetStartdate

func (o *UpdateVMConfigRequest) GetStartdate() string

GetStartdate returns the Startdate field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetStartdateOk

func (o *UpdateVMConfigRequest) GetStartdateOk() (*string, bool)

GetStartdateOk returns a tuple with the Startdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetStartup

func (o *UpdateVMConfigRequest) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetStartupOk

func (o *UpdateVMConfigRequest) GetStartupOk() (*string, bool)

GetStartupOk returns a tuple with the Startup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetTablet

func (o *UpdateVMConfigRequest) GetTablet() int32

GetTablet returns the Tablet field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetTabletOk

func (o *UpdateVMConfigRequest) GetTabletOk() (*int32, bool)

GetTabletOk returns a tuple with the Tablet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetTags

func (o *UpdateVMConfigRequest) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetTagsOk

func (o *UpdateVMConfigRequest) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetTdf

func (o *UpdateVMConfigRequest) GetTdf() int32

GetTdf returns the Tdf field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetTdfOk

func (o *UpdateVMConfigRequest) GetTdfOk() (*int32, bool)

GetTdfOk returns a tuple with the Tdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetTemplate

func (o *UpdateVMConfigRequest) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetTemplateOk

func (o *UpdateVMConfigRequest) GetTemplateOk() (*int32, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetTpmstate0

func (o *UpdateVMConfigRequest) GetTpmstate0() string

GetTpmstate0 returns the Tpmstate0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetTpmstate0Ok

func (o *UpdateVMConfigRequest) GetTpmstate0Ok() (*string, bool)

GetTpmstate0Ok returns a tuple with the Tpmstate0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused0

func (o *UpdateVMConfigRequest) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused0Ok

func (o *UpdateVMConfigRequest) GetUnused0Ok() (*string, bool)

GetUnused0Ok returns a tuple with the Unused0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused1

func (o *UpdateVMConfigRequest) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused10

func (o *UpdateVMConfigRequest) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused10Ok

func (o *UpdateVMConfigRequest) GetUnused10Ok() (*string, bool)

GetUnused10Ok returns a tuple with the Unused10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused11

func (o *UpdateVMConfigRequest) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused11Ok

func (o *UpdateVMConfigRequest) GetUnused11Ok() (*string, bool)

GetUnused11Ok returns a tuple with the Unused11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused12

func (o *UpdateVMConfigRequest) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused12Ok

func (o *UpdateVMConfigRequest) GetUnused12Ok() (*string, bool)

GetUnused12Ok returns a tuple with the Unused12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused13

func (o *UpdateVMConfigRequest) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused13Ok

func (o *UpdateVMConfigRequest) GetUnused13Ok() (*string, bool)

GetUnused13Ok returns a tuple with the Unused13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused14

func (o *UpdateVMConfigRequest) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused14Ok

func (o *UpdateVMConfigRequest) GetUnused14Ok() (*string, bool)

GetUnused14Ok returns a tuple with the Unused14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused15

func (o *UpdateVMConfigRequest) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused15Ok

func (o *UpdateVMConfigRequest) GetUnused15Ok() (*string, bool)

GetUnused15Ok returns a tuple with the Unused15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused16

func (o *UpdateVMConfigRequest) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused16Ok

func (o *UpdateVMConfigRequest) GetUnused16Ok() (*string, bool)

GetUnused16Ok returns a tuple with the Unused16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused17

func (o *UpdateVMConfigRequest) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused17Ok

func (o *UpdateVMConfigRequest) GetUnused17Ok() (*string, bool)

GetUnused17Ok returns a tuple with the Unused17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused18

func (o *UpdateVMConfigRequest) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused18Ok

func (o *UpdateVMConfigRequest) GetUnused18Ok() (*string, bool)

GetUnused18Ok returns a tuple with the Unused18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused19

func (o *UpdateVMConfigRequest) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused19Ok

func (o *UpdateVMConfigRequest) GetUnused19Ok() (*string, bool)

GetUnused19Ok returns a tuple with the Unused19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused1Ok

func (o *UpdateVMConfigRequest) GetUnused1Ok() (*string, bool)

GetUnused1Ok returns a tuple with the Unused1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused2

func (o *UpdateVMConfigRequest) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused20

func (o *UpdateVMConfigRequest) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused20Ok

func (o *UpdateVMConfigRequest) GetUnused20Ok() (*string, bool)

GetUnused20Ok returns a tuple with the Unused20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused21

func (o *UpdateVMConfigRequest) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused21Ok

func (o *UpdateVMConfigRequest) GetUnused21Ok() (*string, bool)

GetUnused21Ok returns a tuple with the Unused21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused22

func (o *UpdateVMConfigRequest) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused22Ok

func (o *UpdateVMConfigRequest) GetUnused22Ok() (*string, bool)

GetUnused22Ok returns a tuple with the Unused22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused23

func (o *UpdateVMConfigRequest) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused23Ok

func (o *UpdateVMConfigRequest) GetUnused23Ok() (*string, bool)

GetUnused23Ok returns a tuple with the Unused23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused24

func (o *UpdateVMConfigRequest) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused24Ok

func (o *UpdateVMConfigRequest) GetUnused24Ok() (*string, bool)

GetUnused24Ok returns a tuple with the Unused24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused25

func (o *UpdateVMConfigRequest) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused25Ok

func (o *UpdateVMConfigRequest) GetUnused25Ok() (*string, bool)

GetUnused25Ok returns a tuple with the Unused25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused26

func (o *UpdateVMConfigRequest) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused26Ok

func (o *UpdateVMConfigRequest) GetUnused26Ok() (*string, bool)

GetUnused26Ok returns a tuple with the Unused26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused27

func (o *UpdateVMConfigRequest) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused27Ok

func (o *UpdateVMConfigRequest) GetUnused27Ok() (*string, bool)

GetUnused27Ok returns a tuple with the Unused27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused28

func (o *UpdateVMConfigRequest) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused28Ok

func (o *UpdateVMConfigRequest) GetUnused28Ok() (*string, bool)

GetUnused28Ok returns a tuple with the Unused28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused29

func (o *UpdateVMConfigRequest) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused29Ok

func (o *UpdateVMConfigRequest) GetUnused29Ok() (*string, bool)

GetUnused29Ok returns a tuple with the Unused29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused2Ok

func (o *UpdateVMConfigRequest) GetUnused2Ok() (*string, bool)

GetUnused2Ok returns a tuple with the Unused2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused3

func (o *UpdateVMConfigRequest) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused3Ok

func (o *UpdateVMConfigRequest) GetUnused3Ok() (*string, bool)

GetUnused3Ok returns a tuple with the Unused3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused4

func (o *UpdateVMConfigRequest) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused4Ok

func (o *UpdateVMConfigRequest) GetUnused4Ok() (*string, bool)

GetUnused4Ok returns a tuple with the Unused4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused5

func (o *UpdateVMConfigRequest) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused5Ok

func (o *UpdateVMConfigRequest) GetUnused5Ok() (*string, bool)

GetUnused5Ok returns a tuple with the Unused5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused6

func (o *UpdateVMConfigRequest) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused6Ok

func (o *UpdateVMConfigRequest) GetUnused6Ok() (*string, bool)

GetUnused6Ok returns a tuple with the Unused6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused7

func (o *UpdateVMConfigRequest) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused7Ok

func (o *UpdateVMConfigRequest) GetUnused7Ok() (*string, bool)

GetUnused7Ok returns a tuple with the Unused7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused8

func (o *UpdateVMConfigRequest) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused8Ok

func (o *UpdateVMConfigRequest) GetUnused8Ok() (*string, bool)

GetUnused8Ok returns a tuple with the Unused8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUnused9

func (o *UpdateVMConfigRequest) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUnused9Ok

func (o *UpdateVMConfigRequest) GetUnused9Ok() (*string, bool)

GetUnused9Ok returns a tuple with the Unused9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUsb0

func (o *UpdateVMConfigRequest) GetUsb0() string

GetUsb0 returns the Usb0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUsb0Ok

func (o *UpdateVMConfigRequest) GetUsb0Ok() (*string, bool)

GetUsb0Ok returns a tuple with the Usb0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUsb1

func (o *UpdateVMConfigRequest) GetUsb1() string

GetUsb1 returns the Usb1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUsb1Ok

func (o *UpdateVMConfigRequest) GetUsb1Ok() (*string, bool)

GetUsb1Ok returns a tuple with the Usb1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUsb2

func (o *UpdateVMConfigRequest) GetUsb2() string

GetUsb2 returns the Usb2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUsb2Ok

func (o *UpdateVMConfigRequest) GetUsb2Ok() (*string, bool)

GetUsb2Ok returns a tuple with the Usb2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetUsb3

func (o *UpdateVMConfigRequest) GetUsb3() string

GetUsb3 returns the Usb3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetUsb3Ok

func (o *UpdateVMConfigRequest) GetUsb3Ok() (*string, bool)

GetUsb3Ok returns a tuple with the Usb3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVcpus

func (o *UpdateVMConfigRequest) GetVcpus() int64

GetVcpus returns the Vcpus field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVcpusOk

func (o *UpdateVMConfigRequest) GetVcpusOk() (*int64, bool)

GetVcpusOk returns a tuple with the Vcpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVga

func (o *UpdateVMConfigRequest) GetVga() string

GetVga returns the Vga field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVgaOk

func (o *UpdateVMConfigRequest) GetVgaOk() (*string, bool)

GetVgaOk returns a tuple with the Vga field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio0

func (o *UpdateVMConfigRequest) GetVirtio0() string

GetVirtio0 returns the Virtio0 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio0Ok

func (o *UpdateVMConfigRequest) GetVirtio0Ok() (*string, bool)

GetVirtio0Ok returns a tuple with the Virtio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio1

func (o *UpdateVMConfigRequest) GetVirtio1() string

GetVirtio1 returns the Virtio1 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio10

func (o *UpdateVMConfigRequest) GetVirtio10() string

GetVirtio10 returns the Virtio10 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio10Ok

func (o *UpdateVMConfigRequest) GetVirtio10Ok() (*string, bool)

GetVirtio10Ok returns a tuple with the Virtio10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio11

func (o *UpdateVMConfigRequest) GetVirtio11() string

GetVirtio11 returns the Virtio11 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio11Ok

func (o *UpdateVMConfigRequest) GetVirtio11Ok() (*string, bool)

GetVirtio11Ok returns a tuple with the Virtio11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio12

func (o *UpdateVMConfigRequest) GetVirtio12() string

GetVirtio12 returns the Virtio12 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio12Ok

func (o *UpdateVMConfigRequest) GetVirtio12Ok() (*string, bool)

GetVirtio12Ok returns a tuple with the Virtio12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio13

func (o *UpdateVMConfigRequest) GetVirtio13() string

GetVirtio13 returns the Virtio13 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio13Ok

func (o *UpdateVMConfigRequest) GetVirtio13Ok() (*string, bool)

GetVirtio13Ok returns a tuple with the Virtio13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio14

func (o *UpdateVMConfigRequest) GetVirtio14() string

GetVirtio14 returns the Virtio14 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio14Ok

func (o *UpdateVMConfigRequest) GetVirtio14Ok() (*string, bool)

GetVirtio14Ok returns a tuple with the Virtio14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio15

func (o *UpdateVMConfigRequest) GetVirtio15() string

GetVirtio15 returns the Virtio15 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio15Ok

func (o *UpdateVMConfigRequest) GetVirtio15Ok() (*string, bool)

GetVirtio15Ok returns a tuple with the Virtio15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio1Ok

func (o *UpdateVMConfigRequest) GetVirtio1Ok() (*string, bool)

GetVirtio1Ok returns a tuple with the Virtio1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio2

func (o *UpdateVMConfigRequest) GetVirtio2() string

GetVirtio2 returns the Virtio2 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio2Ok

func (o *UpdateVMConfigRequest) GetVirtio2Ok() (*string, bool)

GetVirtio2Ok returns a tuple with the Virtio2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio3

func (o *UpdateVMConfigRequest) GetVirtio3() string

GetVirtio3 returns the Virtio3 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio3Ok

func (o *UpdateVMConfigRequest) GetVirtio3Ok() (*string, bool)

GetVirtio3Ok returns a tuple with the Virtio3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio4

func (o *UpdateVMConfigRequest) GetVirtio4() string

GetVirtio4 returns the Virtio4 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio4Ok

func (o *UpdateVMConfigRequest) GetVirtio4Ok() (*string, bool)

GetVirtio4Ok returns a tuple with the Virtio4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio5

func (o *UpdateVMConfigRequest) GetVirtio5() string

GetVirtio5 returns the Virtio5 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio5Ok

func (o *UpdateVMConfigRequest) GetVirtio5Ok() (*string, bool)

GetVirtio5Ok returns a tuple with the Virtio5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio6

func (o *UpdateVMConfigRequest) GetVirtio6() string

GetVirtio6 returns the Virtio6 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio6Ok

func (o *UpdateVMConfigRequest) GetVirtio6Ok() (*string, bool)

GetVirtio6Ok returns a tuple with the Virtio6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio7

func (o *UpdateVMConfigRequest) GetVirtio7() string

GetVirtio7 returns the Virtio7 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio7Ok

func (o *UpdateVMConfigRequest) GetVirtio7Ok() (*string, bool)

GetVirtio7Ok returns a tuple with the Virtio7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio8

func (o *UpdateVMConfigRequest) GetVirtio8() string

GetVirtio8 returns the Virtio8 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio8Ok

func (o *UpdateVMConfigRequest) GetVirtio8Ok() (*string, bool)

GetVirtio8Ok returns a tuple with the Virtio8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVirtio9

func (o *UpdateVMConfigRequest) GetVirtio9() string

GetVirtio9 returns the Virtio9 field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVirtio9Ok

func (o *UpdateVMConfigRequest) GetVirtio9Ok() (*string, bool)

GetVirtio9Ok returns a tuple with the Virtio9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVmgenid

func (o *UpdateVMConfigRequest) GetVmgenid() string

GetVmgenid returns the Vmgenid field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVmgenidOk

func (o *UpdateVMConfigRequest) GetVmgenidOk() (*string, bool)

GetVmgenidOk returns a tuple with the Vmgenid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetVmstatestorage

func (o *UpdateVMConfigRequest) GetVmstatestorage() string

GetVmstatestorage returns the Vmstatestorage field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetVmstatestorageOk

func (o *UpdateVMConfigRequest) GetVmstatestorageOk() (*string, bool)

GetVmstatestorageOk returns a tuple with the Vmstatestorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) GetWatchdog

func (o *UpdateVMConfigRequest) GetWatchdog() string

GetWatchdog returns the Watchdog field value if set, zero value otherwise.

func (*UpdateVMConfigRequest) GetWatchdogOk

func (o *UpdateVMConfigRequest) GetWatchdogOk() (*string, bool)

GetWatchdogOk returns a tuple with the Watchdog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigRequest) HasAcpi

func (o *UpdateVMConfigRequest) HasAcpi() bool

HasAcpi returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasAffinity

func (o *UpdateVMConfigRequest) HasAffinity() bool

HasAffinity returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasAgent

func (o *UpdateVMConfigRequest) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasArch

func (o *UpdateVMConfigRequest) HasArch() bool

HasArch returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasArgs

func (o *UpdateVMConfigRequest) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasAudio0

func (o *UpdateVMConfigRequest) HasAudio0() bool

HasAudio0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasAutostart

func (o *UpdateVMConfigRequest) HasAutostart() bool

HasAutostart returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasBackgroundDelay

func (o *UpdateVMConfigRequest) HasBackgroundDelay() bool

HasBackgroundDelay returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasBalloon

func (o *UpdateVMConfigRequest) HasBalloon() bool

HasBalloon returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasBios

func (o *UpdateVMConfigRequest) HasBios() bool

HasBios returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasBoot

func (o *UpdateVMConfigRequest) HasBoot() bool

HasBoot returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasBootdisk

func (o *UpdateVMConfigRequest) HasBootdisk() bool

HasBootdisk returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCdrom

func (o *UpdateVMConfigRequest) HasCdrom() bool

HasCdrom returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCicustom

func (o *UpdateVMConfigRequest) HasCicustom() bool

HasCicustom returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCipassword

func (o *UpdateVMConfigRequest) HasCipassword() bool

HasCipassword returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCitype

func (o *UpdateVMConfigRequest) HasCitype() bool

HasCitype returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCiupgrade

func (o *UpdateVMConfigRequest) HasCiupgrade() bool

HasCiupgrade returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCiuser

func (o *UpdateVMConfigRequest) HasCiuser() bool

HasCiuser returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCores

func (o *UpdateVMConfigRequest) HasCores() bool

HasCores returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCpu

func (o *UpdateVMConfigRequest) HasCpu() bool

HasCpu returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCpulimit

func (o *UpdateVMConfigRequest) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasCpuunits

func (o *UpdateVMConfigRequest) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasDelete

func (o *UpdateVMConfigRequest) HasDelete() bool

HasDelete returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasDescription

func (o *UpdateVMConfigRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasDigest

func (o *UpdateVMConfigRequest) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasEfidisk0

func (o *UpdateVMConfigRequest) HasEfidisk0() bool

HasEfidisk0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasForce

func (o *UpdateVMConfigRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasFreeze

func (o *UpdateVMConfigRequest) HasFreeze() bool

HasFreeze returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHookscript

func (o *UpdateVMConfigRequest) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci0

func (o *UpdateVMConfigRequest) HasHostpci0() bool

HasHostpci0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci1

func (o *UpdateVMConfigRequest) HasHostpci1() bool

HasHostpci1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci10

func (o *UpdateVMConfigRequest) HasHostpci10() bool

HasHostpci10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci11

func (o *UpdateVMConfigRequest) HasHostpci11() bool

HasHostpci11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci12

func (o *UpdateVMConfigRequest) HasHostpci12() bool

HasHostpci12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci13

func (o *UpdateVMConfigRequest) HasHostpci13() bool

HasHostpci13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci14

func (o *UpdateVMConfigRequest) HasHostpci14() bool

HasHostpci14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci15

func (o *UpdateVMConfigRequest) HasHostpci15() bool

HasHostpci15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci16

func (o *UpdateVMConfigRequest) HasHostpci16() bool

HasHostpci16 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci17

func (o *UpdateVMConfigRequest) HasHostpci17() bool

HasHostpci17 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci18

func (o *UpdateVMConfigRequest) HasHostpci18() bool

HasHostpci18 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci19

func (o *UpdateVMConfigRequest) HasHostpci19() bool

HasHostpci19 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci2

func (o *UpdateVMConfigRequest) HasHostpci2() bool

HasHostpci2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci20

func (o *UpdateVMConfigRequest) HasHostpci20() bool

HasHostpci20 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci21

func (o *UpdateVMConfigRequest) HasHostpci21() bool

HasHostpci21 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci22

func (o *UpdateVMConfigRequest) HasHostpci22() bool

HasHostpci22 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci23

func (o *UpdateVMConfigRequest) HasHostpci23() bool

HasHostpci23 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci24

func (o *UpdateVMConfigRequest) HasHostpci24() bool

HasHostpci24 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci25

func (o *UpdateVMConfigRequest) HasHostpci25() bool

HasHostpci25 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci26

func (o *UpdateVMConfigRequest) HasHostpci26() bool

HasHostpci26 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci27

func (o *UpdateVMConfigRequest) HasHostpci27() bool

HasHostpci27 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci28

func (o *UpdateVMConfigRequest) HasHostpci28() bool

HasHostpci28 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci29

func (o *UpdateVMConfigRequest) HasHostpci29() bool

HasHostpci29 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci3

func (o *UpdateVMConfigRequest) HasHostpci3() bool

HasHostpci3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci4

func (o *UpdateVMConfigRequest) HasHostpci4() bool

HasHostpci4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci5

func (o *UpdateVMConfigRequest) HasHostpci5() bool

HasHostpci5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci6

func (o *UpdateVMConfigRequest) HasHostpci6() bool

HasHostpci6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci7

func (o *UpdateVMConfigRequest) HasHostpci7() bool

HasHostpci7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci8

func (o *UpdateVMConfigRequest) HasHostpci8() bool

HasHostpci8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHostpci9

func (o *UpdateVMConfigRequest) HasHostpci9() bool

HasHostpci9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHotplug

func (o *UpdateVMConfigRequest) HasHotplug() bool

HasHotplug returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasHugepages

func (o *UpdateVMConfigRequest) HasHugepages() bool

HasHugepages returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIde0

func (o *UpdateVMConfigRequest) HasIde0() bool

HasIde0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIde1

func (o *UpdateVMConfigRequest) HasIde1() bool

HasIde1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIde2

func (o *UpdateVMConfigRequest) HasIde2() bool

HasIde2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIde3

func (o *UpdateVMConfigRequest) HasIde3() bool

HasIde3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig0

func (o *UpdateVMConfigRequest) HasIpconfig0() bool

HasIpconfig0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig1

func (o *UpdateVMConfigRequest) HasIpconfig1() bool

HasIpconfig1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig10

func (o *UpdateVMConfigRequest) HasIpconfig10() bool

HasIpconfig10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig11

func (o *UpdateVMConfigRequest) HasIpconfig11() bool

HasIpconfig11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig12

func (o *UpdateVMConfigRequest) HasIpconfig12() bool

HasIpconfig12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig13

func (o *UpdateVMConfigRequest) HasIpconfig13() bool

HasIpconfig13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig14

func (o *UpdateVMConfigRequest) HasIpconfig14() bool

HasIpconfig14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig15

func (o *UpdateVMConfigRequest) HasIpconfig15() bool

HasIpconfig15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig16

func (o *UpdateVMConfigRequest) HasIpconfig16() bool

HasIpconfig16 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig17

func (o *UpdateVMConfigRequest) HasIpconfig17() bool

HasIpconfig17 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig18

func (o *UpdateVMConfigRequest) HasIpconfig18() bool

HasIpconfig18 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig19

func (o *UpdateVMConfigRequest) HasIpconfig19() bool

HasIpconfig19 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig2

func (o *UpdateVMConfigRequest) HasIpconfig2() bool

HasIpconfig2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig20

func (o *UpdateVMConfigRequest) HasIpconfig20() bool

HasIpconfig20 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig21

func (o *UpdateVMConfigRequest) HasIpconfig21() bool

HasIpconfig21 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig22

func (o *UpdateVMConfigRequest) HasIpconfig22() bool

HasIpconfig22 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig23

func (o *UpdateVMConfigRequest) HasIpconfig23() bool

HasIpconfig23 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig24

func (o *UpdateVMConfigRequest) HasIpconfig24() bool

HasIpconfig24 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig25

func (o *UpdateVMConfigRequest) HasIpconfig25() bool

HasIpconfig25 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig26

func (o *UpdateVMConfigRequest) HasIpconfig26() bool

HasIpconfig26 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig27

func (o *UpdateVMConfigRequest) HasIpconfig27() bool

HasIpconfig27 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig28

func (o *UpdateVMConfigRequest) HasIpconfig28() bool

HasIpconfig28 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig29

func (o *UpdateVMConfigRequest) HasIpconfig29() bool

HasIpconfig29 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig3

func (o *UpdateVMConfigRequest) HasIpconfig3() bool

HasIpconfig3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig4

func (o *UpdateVMConfigRequest) HasIpconfig4() bool

HasIpconfig4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig5

func (o *UpdateVMConfigRequest) HasIpconfig5() bool

HasIpconfig5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig6

func (o *UpdateVMConfigRequest) HasIpconfig6() bool

HasIpconfig6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig7

func (o *UpdateVMConfigRequest) HasIpconfig7() bool

HasIpconfig7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig8

func (o *UpdateVMConfigRequest) HasIpconfig8() bool

HasIpconfig8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIpconfig9

func (o *UpdateVMConfigRequest) HasIpconfig9() bool

HasIpconfig9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasIvshmem

func (o *UpdateVMConfigRequest) HasIvshmem() bool

HasIvshmem returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasKeephugepages

func (o *UpdateVMConfigRequest) HasKeephugepages() bool

HasKeephugepages returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasKeyboard

func (o *UpdateVMConfigRequest) HasKeyboard() bool

HasKeyboard returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasKvm

func (o *UpdateVMConfigRequest) HasKvm() bool

HasKvm returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasLocaltime

func (o *UpdateVMConfigRequest) HasLocaltime() bool

HasLocaltime returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasLock

func (o *UpdateVMConfigRequest) HasLock() bool

HasLock returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasMachine

func (o *UpdateVMConfigRequest) HasMachine() bool

HasMachine returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasMemory

func (o *UpdateVMConfigRequest) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasMigrateDowntime

func (o *UpdateVMConfigRequest) HasMigrateDowntime() bool

HasMigrateDowntime returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasMigrateSpeed

func (o *UpdateVMConfigRequest) HasMigrateSpeed() bool

HasMigrateSpeed returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasName

func (o *UpdateVMConfigRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNameserver

func (o *UpdateVMConfigRequest) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet0

func (o *UpdateVMConfigRequest) HasNet0() bool

HasNet0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet1

func (o *UpdateVMConfigRequest) HasNet1() bool

HasNet1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet10

func (o *UpdateVMConfigRequest) HasNet10() bool

HasNet10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet11

func (o *UpdateVMConfigRequest) HasNet11() bool

HasNet11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet12

func (o *UpdateVMConfigRequest) HasNet12() bool

HasNet12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet13

func (o *UpdateVMConfigRequest) HasNet13() bool

HasNet13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet14

func (o *UpdateVMConfigRequest) HasNet14() bool

HasNet14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet15

func (o *UpdateVMConfigRequest) HasNet15() bool

HasNet15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet16

func (o *UpdateVMConfigRequest) HasNet16() bool

HasNet16 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet17

func (o *UpdateVMConfigRequest) HasNet17() bool

HasNet17 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet18

func (o *UpdateVMConfigRequest) HasNet18() bool

HasNet18 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet19

func (o *UpdateVMConfigRequest) HasNet19() bool

HasNet19 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet2

func (o *UpdateVMConfigRequest) HasNet2() bool

HasNet2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet20

func (o *UpdateVMConfigRequest) HasNet20() bool

HasNet20 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet21

func (o *UpdateVMConfigRequest) HasNet21() bool

HasNet21 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet22

func (o *UpdateVMConfigRequest) HasNet22() bool

HasNet22 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet23

func (o *UpdateVMConfigRequest) HasNet23() bool

HasNet23 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet24

func (o *UpdateVMConfigRequest) HasNet24() bool

HasNet24 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet25

func (o *UpdateVMConfigRequest) HasNet25() bool

HasNet25 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet26

func (o *UpdateVMConfigRequest) HasNet26() bool

HasNet26 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet27

func (o *UpdateVMConfigRequest) HasNet27() bool

HasNet27 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet28

func (o *UpdateVMConfigRequest) HasNet28() bool

HasNet28 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet29

func (o *UpdateVMConfigRequest) HasNet29() bool

HasNet29 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet3

func (o *UpdateVMConfigRequest) HasNet3() bool

HasNet3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet30

func (o *UpdateVMConfigRequest) HasNet30() bool

HasNet30 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet31

func (o *UpdateVMConfigRequest) HasNet31() bool

HasNet31 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet4

func (o *UpdateVMConfigRequest) HasNet4() bool

HasNet4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet5

func (o *UpdateVMConfigRequest) HasNet5() bool

HasNet5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet6

func (o *UpdateVMConfigRequest) HasNet6() bool

HasNet6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet7

func (o *UpdateVMConfigRequest) HasNet7() bool

HasNet7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet8

func (o *UpdateVMConfigRequest) HasNet8() bool

HasNet8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNet9

func (o *UpdateVMConfigRequest) HasNet9() bool

HasNet9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma

func (o *UpdateVMConfigRequest) HasNuma() bool

HasNuma returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma0

func (o *UpdateVMConfigRequest) HasNuma0() bool

HasNuma0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma1

func (o *UpdateVMConfigRequest) HasNuma1() bool

HasNuma1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma10

func (o *UpdateVMConfigRequest) HasNuma10() bool

HasNuma10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma11

func (o *UpdateVMConfigRequest) HasNuma11() bool

HasNuma11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma12

func (o *UpdateVMConfigRequest) HasNuma12() bool

HasNuma12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma13

func (o *UpdateVMConfigRequest) HasNuma13() bool

HasNuma13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma14

func (o *UpdateVMConfigRequest) HasNuma14() bool

HasNuma14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma15

func (o *UpdateVMConfigRequest) HasNuma15() bool

HasNuma15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma16

func (o *UpdateVMConfigRequest) HasNuma16() bool

HasNuma16 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma17

func (o *UpdateVMConfigRequest) HasNuma17() bool

HasNuma17 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma18

func (o *UpdateVMConfigRequest) HasNuma18() bool

HasNuma18 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma19

func (o *UpdateVMConfigRequest) HasNuma19() bool

HasNuma19 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma2

func (o *UpdateVMConfigRequest) HasNuma2() bool

HasNuma2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma20

func (o *UpdateVMConfigRequest) HasNuma20() bool

HasNuma20 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma21

func (o *UpdateVMConfigRequest) HasNuma21() bool

HasNuma21 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma22

func (o *UpdateVMConfigRequest) HasNuma22() bool

HasNuma22 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma23

func (o *UpdateVMConfigRequest) HasNuma23() bool

HasNuma23 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma24

func (o *UpdateVMConfigRequest) HasNuma24() bool

HasNuma24 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma25

func (o *UpdateVMConfigRequest) HasNuma25() bool

HasNuma25 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma26

func (o *UpdateVMConfigRequest) HasNuma26() bool

HasNuma26 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma27

func (o *UpdateVMConfigRequest) HasNuma27() bool

HasNuma27 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma28

func (o *UpdateVMConfigRequest) HasNuma28() bool

HasNuma28 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma29

func (o *UpdateVMConfigRequest) HasNuma29() bool

HasNuma29 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma3

func (o *UpdateVMConfigRequest) HasNuma3() bool

HasNuma3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma4

func (o *UpdateVMConfigRequest) HasNuma4() bool

HasNuma4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma5

func (o *UpdateVMConfigRequest) HasNuma5() bool

HasNuma5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma6

func (o *UpdateVMConfigRequest) HasNuma6() bool

HasNuma6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma7

func (o *UpdateVMConfigRequest) HasNuma7() bool

HasNuma7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma8

func (o *UpdateVMConfigRequest) HasNuma8() bool

HasNuma8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasNuma9

func (o *UpdateVMConfigRequest) HasNuma9() bool

HasNuma9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasOnboot

func (o *UpdateVMConfigRequest) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasOstype

func (o *UpdateVMConfigRequest) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasParallel0

func (o *UpdateVMConfigRequest) HasParallel0() bool

HasParallel0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasParallel1

func (o *UpdateVMConfigRequest) HasParallel1() bool

HasParallel1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasParallel2

func (o *UpdateVMConfigRequest) HasParallel2() bool

HasParallel2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasParallel3

func (o *UpdateVMConfigRequest) HasParallel3() bool

HasParallel3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasProtection

func (o *UpdateVMConfigRequest) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasReboot

func (o *UpdateVMConfigRequest) HasReboot() bool

HasReboot returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasRevert

func (o *UpdateVMConfigRequest) HasRevert() bool

HasRevert returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasRng0

func (o *UpdateVMConfigRequest) HasRng0() bool

HasRng0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSata0

func (o *UpdateVMConfigRequest) HasSata0() bool

HasSata0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSata1

func (o *UpdateVMConfigRequest) HasSata1() bool

HasSata1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSata2

func (o *UpdateVMConfigRequest) HasSata2() bool

HasSata2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSata3

func (o *UpdateVMConfigRequest) HasSata3() bool

HasSata3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSata4

func (o *UpdateVMConfigRequest) HasSata4() bool

HasSata4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSata5

func (o *UpdateVMConfigRequest) HasSata5() bool

HasSata5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi0

func (o *UpdateVMConfigRequest) HasScsi0() bool

HasScsi0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi1

func (o *UpdateVMConfigRequest) HasScsi1() bool

HasScsi1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi10

func (o *UpdateVMConfigRequest) HasScsi10() bool

HasScsi10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi11

func (o *UpdateVMConfigRequest) HasScsi11() bool

HasScsi11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi12

func (o *UpdateVMConfigRequest) HasScsi12() bool

HasScsi12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi13

func (o *UpdateVMConfigRequest) HasScsi13() bool

HasScsi13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi14

func (o *UpdateVMConfigRequest) HasScsi14() bool

HasScsi14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi15

func (o *UpdateVMConfigRequest) HasScsi15() bool

HasScsi15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi16

func (o *UpdateVMConfigRequest) HasScsi16() bool

HasScsi16 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi17

func (o *UpdateVMConfigRequest) HasScsi17() bool

HasScsi17 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi18

func (o *UpdateVMConfigRequest) HasScsi18() bool

HasScsi18 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi19

func (o *UpdateVMConfigRequest) HasScsi19() bool

HasScsi19 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi2

func (o *UpdateVMConfigRequest) HasScsi2() bool

HasScsi2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi20

func (o *UpdateVMConfigRequest) HasScsi20() bool

HasScsi20 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi21

func (o *UpdateVMConfigRequest) HasScsi21() bool

HasScsi21 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi22

func (o *UpdateVMConfigRequest) HasScsi22() bool

HasScsi22 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi23

func (o *UpdateVMConfigRequest) HasScsi23() bool

HasScsi23 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi24

func (o *UpdateVMConfigRequest) HasScsi24() bool

HasScsi24 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi25

func (o *UpdateVMConfigRequest) HasScsi25() bool

HasScsi25 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi26

func (o *UpdateVMConfigRequest) HasScsi26() bool

HasScsi26 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi27

func (o *UpdateVMConfigRequest) HasScsi27() bool

HasScsi27 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi28

func (o *UpdateVMConfigRequest) HasScsi28() bool

HasScsi28 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi29

func (o *UpdateVMConfigRequest) HasScsi29() bool

HasScsi29 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi3

func (o *UpdateVMConfigRequest) HasScsi3() bool

HasScsi3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi4

func (o *UpdateVMConfigRequest) HasScsi4() bool

HasScsi4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi5

func (o *UpdateVMConfigRequest) HasScsi5() bool

HasScsi5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi6

func (o *UpdateVMConfigRequest) HasScsi6() bool

HasScsi6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi7

func (o *UpdateVMConfigRequest) HasScsi7() bool

HasScsi7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi8

func (o *UpdateVMConfigRequest) HasScsi8() bool

HasScsi8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsi9

func (o *UpdateVMConfigRequest) HasScsi9() bool

HasScsi9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasScsihw

func (o *UpdateVMConfigRequest) HasScsihw() bool

HasScsihw returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSearchdomain

func (o *UpdateVMConfigRequest) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSerial0

func (o *UpdateVMConfigRequest) HasSerial0() bool

HasSerial0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSerial1

func (o *UpdateVMConfigRequest) HasSerial1() bool

HasSerial1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSerial2

func (o *UpdateVMConfigRequest) HasSerial2() bool

HasSerial2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSerial3

func (o *UpdateVMConfigRequest) HasSerial3() bool

HasSerial3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasShares

func (o *UpdateVMConfigRequest) HasShares() bool

HasShares returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSkiplock

func (o *UpdateVMConfigRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSmbios1

func (o *UpdateVMConfigRequest) HasSmbios1() bool

HasSmbios1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSmp

func (o *UpdateVMConfigRequest) HasSmp() bool

HasSmp returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSockets

func (o *UpdateVMConfigRequest) HasSockets() bool

HasSockets returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSpiceEnhancements

func (o *UpdateVMConfigRequest) HasSpiceEnhancements() bool

HasSpiceEnhancements returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasSshkeys

func (o *UpdateVMConfigRequest) HasSshkeys() bool

HasSshkeys returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasStartdate

func (o *UpdateVMConfigRequest) HasStartdate() bool

HasStartdate returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasStartup

func (o *UpdateVMConfigRequest) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasTablet

func (o *UpdateVMConfigRequest) HasTablet() bool

HasTablet returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasTags

func (o *UpdateVMConfigRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasTdf

func (o *UpdateVMConfigRequest) HasTdf() bool

HasTdf returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasTemplate

func (o *UpdateVMConfigRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasTpmstate0

func (o *UpdateVMConfigRequest) HasTpmstate0() bool

HasTpmstate0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused0

func (o *UpdateVMConfigRequest) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused1

func (o *UpdateVMConfigRequest) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused10

func (o *UpdateVMConfigRequest) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused11

func (o *UpdateVMConfigRequest) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused12

func (o *UpdateVMConfigRequest) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused13

func (o *UpdateVMConfigRequest) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused14

func (o *UpdateVMConfigRequest) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused15

func (o *UpdateVMConfigRequest) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused16

func (o *UpdateVMConfigRequest) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused17

func (o *UpdateVMConfigRequest) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused18

func (o *UpdateVMConfigRequest) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused19

func (o *UpdateVMConfigRequest) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused2

func (o *UpdateVMConfigRequest) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused20

func (o *UpdateVMConfigRequest) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused21

func (o *UpdateVMConfigRequest) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused22

func (o *UpdateVMConfigRequest) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused23

func (o *UpdateVMConfigRequest) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused24

func (o *UpdateVMConfigRequest) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused25

func (o *UpdateVMConfigRequest) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused26

func (o *UpdateVMConfigRequest) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused27

func (o *UpdateVMConfigRequest) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused28

func (o *UpdateVMConfigRequest) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused29

func (o *UpdateVMConfigRequest) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused3

func (o *UpdateVMConfigRequest) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused4

func (o *UpdateVMConfigRequest) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused5

func (o *UpdateVMConfigRequest) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused6

func (o *UpdateVMConfigRequest) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused7

func (o *UpdateVMConfigRequest) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused8

func (o *UpdateVMConfigRequest) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUnused9

func (o *UpdateVMConfigRequest) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUsb0

func (o *UpdateVMConfigRequest) HasUsb0() bool

HasUsb0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUsb1

func (o *UpdateVMConfigRequest) HasUsb1() bool

HasUsb1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUsb2

func (o *UpdateVMConfigRequest) HasUsb2() bool

HasUsb2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasUsb3

func (o *UpdateVMConfigRequest) HasUsb3() bool

HasUsb3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVcpus

func (o *UpdateVMConfigRequest) HasVcpus() bool

HasVcpus returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVga

func (o *UpdateVMConfigRequest) HasVga() bool

HasVga returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio0

func (o *UpdateVMConfigRequest) HasVirtio0() bool

HasVirtio0 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio1

func (o *UpdateVMConfigRequest) HasVirtio1() bool

HasVirtio1 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio10

func (o *UpdateVMConfigRequest) HasVirtio10() bool

HasVirtio10 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio11

func (o *UpdateVMConfigRequest) HasVirtio11() bool

HasVirtio11 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio12

func (o *UpdateVMConfigRequest) HasVirtio12() bool

HasVirtio12 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio13

func (o *UpdateVMConfigRequest) HasVirtio13() bool

HasVirtio13 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio14

func (o *UpdateVMConfigRequest) HasVirtio14() bool

HasVirtio14 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio15

func (o *UpdateVMConfigRequest) HasVirtio15() bool

HasVirtio15 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio2

func (o *UpdateVMConfigRequest) HasVirtio2() bool

HasVirtio2 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio3

func (o *UpdateVMConfigRequest) HasVirtio3() bool

HasVirtio3 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio4

func (o *UpdateVMConfigRequest) HasVirtio4() bool

HasVirtio4 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio5

func (o *UpdateVMConfigRequest) HasVirtio5() bool

HasVirtio5 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio6

func (o *UpdateVMConfigRequest) HasVirtio6() bool

HasVirtio6 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio7

func (o *UpdateVMConfigRequest) HasVirtio7() bool

HasVirtio7 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio8

func (o *UpdateVMConfigRequest) HasVirtio8() bool

HasVirtio8 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVirtio9

func (o *UpdateVMConfigRequest) HasVirtio9() bool

HasVirtio9 returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVmgenid

func (o *UpdateVMConfigRequest) HasVmgenid() bool

HasVmgenid returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasVmstatestorage

func (o *UpdateVMConfigRequest) HasVmstatestorage() bool

HasVmstatestorage returns a boolean if a field has been set.

func (*UpdateVMConfigRequest) HasWatchdog

func (o *UpdateVMConfigRequest) HasWatchdog() bool

HasWatchdog returns a boolean if a field has been set.

func (UpdateVMConfigRequest) MarshalJSON

func (o UpdateVMConfigRequest) MarshalJSON() ([]byte, error)

func (*UpdateVMConfigRequest) SetAcpi

func (o *UpdateVMConfigRequest) SetAcpi(v int32)

SetAcpi gets a reference to the given int32 and assigns it to the Acpi field.

func (*UpdateVMConfigRequest) SetAffinity

func (o *UpdateVMConfigRequest) SetAffinity(v string)

SetAffinity gets a reference to the given string and assigns it to the Affinity field.

func (*UpdateVMConfigRequest) SetAgent

func (o *UpdateVMConfigRequest) SetAgent(v string)

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*UpdateVMConfigRequest) SetArch

func (o *UpdateVMConfigRequest) SetArch(v string)

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*UpdateVMConfigRequest) SetArgs

func (o *UpdateVMConfigRequest) SetArgs(v string)

SetArgs gets a reference to the given string and assigns it to the Args field.

func (*UpdateVMConfigRequest) SetAudio0

func (o *UpdateVMConfigRequest) SetAudio0(v string)

SetAudio0 gets a reference to the given string and assigns it to the Audio0 field.

func (*UpdateVMConfigRequest) SetAutostart

func (o *UpdateVMConfigRequest) SetAutostart(v int32)

SetAutostart gets a reference to the given int32 and assigns it to the Autostart field.

func (*UpdateVMConfigRequest) SetBackgroundDelay

func (o *UpdateVMConfigRequest) SetBackgroundDelay(v int64)

SetBackgroundDelay gets a reference to the given int64 and assigns it to the BackgroundDelay field.

func (*UpdateVMConfigRequest) SetBalloon

func (o *UpdateVMConfigRequest) SetBalloon(v int64)

SetBalloon gets a reference to the given int64 and assigns it to the Balloon field.

func (*UpdateVMConfigRequest) SetBios

func (o *UpdateVMConfigRequest) SetBios(v string)

SetBios gets a reference to the given string and assigns it to the Bios field.

func (*UpdateVMConfigRequest) SetBoot

func (o *UpdateVMConfigRequest) SetBoot(v string)

SetBoot gets a reference to the given string and assigns it to the Boot field.

func (*UpdateVMConfigRequest) SetBootdisk

func (o *UpdateVMConfigRequest) SetBootdisk(v string)

SetBootdisk gets a reference to the given string and assigns it to the Bootdisk field.

func (*UpdateVMConfigRequest) SetCdrom

func (o *UpdateVMConfigRequest) SetCdrom(v string)

SetCdrom gets a reference to the given string and assigns it to the Cdrom field.

func (*UpdateVMConfigRequest) SetCicustom

func (o *UpdateVMConfigRequest) SetCicustom(v string)

SetCicustom gets a reference to the given string and assigns it to the Cicustom field.

func (*UpdateVMConfigRequest) SetCipassword

func (o *UpdateVMConfigRequest) SetCipassword(v string)

SetCipassword gets a reference to the given string and assigns it to the Cipassword field.

func (*UpdateVMConfigRequest) SetCitype

func (o *UpdateVMConfigRequest) SetCitype(v string)

SetCitype gets a reference to the given string and assigns it to the Citype field.

func (*UpdateVMConfigRequest) SetCiupgrade

func (o *UpdateVMConfigRequest) SetCiupgrade(v int32)

SetCiupgrade gets a reference to the given int32 and assigns it to the Ciupgrade field.

func (*UpdateVMConfigRequest) SetCiuser

func (o *UpdateVMConfigRequest) SetCiuser(v string)

SetCiuser gets a reference to the given string and assigns it to the Ciuser field.

func (*UpdateVMConfigRequest) SetCores

func (o *UpdateVMConfigRequest) SetCores(v int64)

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*UpdateVMConfigRequest) SetCpu

func (o *UpdateVMConfigRequest) SetCpu(v string)

SetCpu gets a reference to the given string and assigns it to the Cpu field.

func (*UpdateVMConfigRequest) SetCpulimit

func (o *UpdateVMConfigRequest) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*UpdateVMConfigRequest) SetCpuunits

func (o *UpdateVMConfigRequest) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*UpdateVMConfigRequest) SetDelete

func (o *UpdateVMConfigRequest) SetDelete(v string)

SetDelete gets a reference to the given string and assigns it to the Delete field.

func (*UpdateVMConfigRequest) SetDescription

func (o *UpdateVMConfigRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateVMConfigRequest) SetDigest

func (o *UpdateVMConfigRequest) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*UpdateVMConfigRequest) SetEfidisk0

func (o *UpdateVMConfigRequest) SetEfidisk0(v string)

SetEfidisk0 gets a reference to the given string and assigns it to the Efidisk0 field.

func (*UpdateVMConfigRequest) SetForce

func (o *UpdateVMConfigRequest) SetForce(v int32)

SetForce gets a reference to the given int32 and assigns it to the Force field.

func (*UpdateVMConfigRequest) SetFreeze

func (o *UpdateVMConfigRequest) SetFreeze(v int32)

SetFreeze gets a reference to the given int32 and assigns it to the Freeze field.

func (*UpdateVMConfigRequest) SetHookscript

func (o *UpdateVMConfigRequest) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*UpdateVMConfigRequest) SetHostpci0

func (o *UpdateVMConfigRequest) SetHostpci0(v string)

SetHostpci0 gets a reference to the given string and assigns it to the Hostpci0 field.

func (*UpdateVMConfigRequest) SetHostpci1

func (o *UpdateVMConfigRequest) SetHostpci1(v string)

SetHostpci1 gets a reference to the given string and assigns it to the Hostpci1 field.

func (*UpdateVMConfigRequest) SetHostpci10

func (o *UpdateVMConfigRequest) SetHostpci10(v string)

SetHostpci10 gets a reference to the given string and assigns it to the Hostpci10 field.

func (*UpdateVMConfigRequest) SetHostpci11

func (o *UpdateVMConfigRequest) SetHostpci11(v string)

SetHostpci11 gets a reference to the given string and assigns it to the Hostpci11 field.

func (*UpdateVMConfigRequest) SetHostpci12

func (o *UpdateVMConfigRequest) SetHostpci12(v string)

SetHostpci12 gets a reference to the given string and assigns it to the Hostpci12 field.

func (*UpdateVMConfigRequest) SetHostpci13

func (o *UpdateVMConfigRequest) SetHostpci13(v string)

SetHostpci13 gets a reference to the given string and assigns it to the Hostpci13 field.

func (*UpdateVMConfigRequest) SetHostpci14

func (o *UpdateVMConfigRequest) SetHostpci14(v string)

SetHostpci14 gets a reference to the given string and assigns it to the Hostpci14 field.

func (*UpdateVMConfigRequest) SetHostpci15

func (o *UpdateVMConfigRequest) SetHostpci15(v string)

SetHostpci15 gets a reference to the given string and assigns it to the Hostpci15 field.

func (*UpdateVMConfigRequest) SetHostpci16

func (o *UpdateVMConfigRequest) SetHostpci16(v string)

SetHostpci16 gets a reference to the given string and assigns it to the Hostpci16 field.

func (*UpdateVMConfigRequest) SetHostpci17

func (o *UpdateVMConfigRequest) SetHostpci17(v string)

SetHostpci17 gets a reference to the given string and assigns it to the Hostpci17 field.

func (*UpdateVMConfigRequest) SetHostpci18

func (o *UpdateVMConfigRequest) SetHostpci18(v string)

SetHostpci18 gets a reference to the given string and assigns it to the Hostpci18 field.

func (*UpdateVMConfigRequest) SetHostpci19

func (o *UpdateVMConfigRequest) SetHostpci19(v string)

SetHostpci19 gets a reference to the given string and assigns it to the Hostpci19 field.

func (*UpdateVMConfigRequest) SetHostpci2

func (o *UpdateVMConfigRequest) SetHostpci2(v string)

SetHostpci2 gets a reference to the given string and assigns it to the Hostpci2 field.

func (*UpdateVMConfigRequest) SetHostpci20

func (o *UpdateVMConfigRequest) SetHostpci20(v string)

SetHostpci20 gets a reference to the given string and assigns it to the Hostpci20 field.

func (*UpdateVMConfigRequest) SetHostpci21

func (o *UpdateVMConfigRequest) SetHostpci21(v string)

SetHostpci21 gets a reference to the given string and assigns it to the Hostpci21 field.

func (*UpdateVMConfigRequest) SetHostpci22

func (o *UpdateVMConfigRequest) SetHostpci22(v string)

SetHostpci22 gets a reference to the given string and assigns it to the Hostpci22 field.

func (*UpdateVMConfigRequest) SetHostpci23

func (o *UpdateVMConfigRequest) SetHostpci23(v string)

SetHostpci23 gets a reference to the given string and assigns it to the Hostpci23 field.

func (*UpdateVMConfigRequest) SetHostpci24

func (o *UpdateVMConfigRequest) SetHostpci24(v string)

SetHostpci24 gets a reference to the given string and assigns it to the Hostpci24 field.

func (*UpdateVMConfigRequest) SetHostpci25

func (o *UpdateVMConfigRequest) SetHostpci25(v string)

SetHostpci25 gets a reference to the given string and assigns it to the Hostpci25 field.

func (*UpdateVMConfigRequest) SetHostpci26

func (o *UpdateVMConfigRequest) SetHostpci26(v string)

SetHostpci26 gets a reference to the given string and assigns it to the Hostpci26 field.

func (*UpdateVMConfigRequest) SetHostpci27

func (o *UpdateVMConfigRequest) SetHostpci27(v string)

SetHostpci27 gets a reference to the given string and assigns it to the Hostpci27 field.

func (*UpdateVMConfigRequest) SetHostpci28

func (o *UpdateVMConfigRequest) SetHostpci28(v string)

SetHostpci28 gets a reference to the given string and assigns it to the Hostpci28 field.

func (*UpdateVMConfigRequest) SetHostpci29

func (o *UpdateVMConfigRequest) SetHostpci29(v string)

SetHostpci29 gets a reference to the given string and assigns it to the Hostpci29 field.

func (*UpdateVMConfigRequest) SetHostpci3

func (o *UpdateVMConfigRequest) SetHostpci3(v string)

SetHostpci3 gets a reference to the given string and assigns it to the Hostpci3 field.

func (*UpdateVMConfigRequest) SetHostpci4

func (o *UpdateVMConfigRequest) SetHostpci4(v string)

SetHostpci4 gets a reference to the given string and assigns it to the Hostpci4 field.

func (*UpdateVMConfigRequest) SetHostpci5

func (o *UpdateVMConfigRequest) SetHostpci5(v string)

SetHostpci5 gets a reference to the given string and assigns it to the Hostpci5 field.

func (*UpdateVMConfigRequest) SetHostpci6

func (o *UpdateVMConfigRequest) SetHostpci6(v string)

SetHostpci6 gets a reference to the given string and assigns it to the Hostpci6 field.

func (*UpdateVMConfigRequest) SetHostpci7

func (o *UpdateVMConfigRequest) SetHostpci7(v string)

SetHostpci7 gets a reference to the given string and assigns it to the Hostpci7 field.

func (*UpdateVMConfigRequest) SetHostpci8

func (o *UpdateVMConfigRequest) SetHostpci8(v string)

SetHostpci8 gets a reference to the given string and assigns it to the Hostpci8 field.

func (*UpdateVMConfigRequest) SetHostpci9

func (o *UpdateVMConfigRequest) SetHostpci9(v string)

SetHostpci9 gets a reference to the given string and assigns it to the Hostpci9 field.

func (*UpdateVMConfigRequest) SetHotplug

func (o *UpdateVMConfigRequest) SetHotplug(v string)

SetHotplug gets a reference to the given string and assigns it to the Hotplug field.

func (*UpdateVMConfigRequest) SetHugepages

func (o *UpdateVMConfigRequest) SetHugepages(v string)

SetHugepages gets a reference to the given string and assigns it to the Hugepages field.

func (*UpdateVMConfigRequest) SetIde0

func (o *UpdateVMConfigRequest) SetIde0(v string)

SetIde0 gets a reference to the given string and assigns it to the Ide0 field.

func (*UpdateVMConfigRequest) SetIde1

func (o *UpdateVMConfigRequest) SetIde1(v string)

SetIde1 gets a reference to the given string and assigns it to the Ide1 field.

func (*UpdateVMConfigRequest) SetIde2

func (o *UpdateVMConfigRequest) SetIde2(v string)

SetIde2 gets a reference to the given string and assigns it to the Ide2 field.

func (*UpdateVMConfigRequest) SetIde3

func (o *UpdateVMConfigRequest) SetIde3(v string)

SetIde3 gets a reference to the given string and assigns it to the Ide3 field.

func (*UpdateVMConfigRequest) SetIpconfig0

func (o *UpdateVMConfigRequest) SetIpconfig0(v string)

SetIpconfig0 gets a reference to the given string and assigns it to the Ipconfig0 field.

func (*UpdateVMConfigRequest) SetIpconfig1

func (o *UpdateVMConfigRequest) SetIpconfig1(v string)

SetIpconfig1 gets a reference to the given string and assigns it to the Ipconfig1 field.

func (*UpdateVMConfigRequest) SetIpconfig10

func (o *UpdateVMConfigRequest) SetIpconfig10(v string)

SetIpconfig10 gets a reference to the given string and assigns it to the Ipconfig10 field.

func (*UpdateVMConfigRequest) SetIpconfig11

func (o *UpdateVMConfigRequest) SetIpconfig11(v string)

SetIpconfig11 gets a reference to the given string and assigns it to the Ipconfig11 field.

func (*UpdateVMConfigRequest) SetIpconfig12

func (o *UpdateVMConfigRequest) SetIpconfig12(v string)

SetIpconfig12 gets a reference to the given string and assigns it to the Ipconfig12 field.

func (*UpdateVMConfigRequest) SetIpconfig13

func (o *UpdateVMConfigRequest) SetIpconfig13(v string)

SetIpconfig13 gets a reference to the given string and assigns it to the Ipconfig13 field.

func (*UpdateVMConfigRequest) SetIpconfig14

func (o *UpdateVMConfigRequest) SetIpconfig14(v string)

SetIpconfig14 gets a reference to the given string and assigns it to the Ipconfig14 field.

func (*UpdateVMConfigRequest) SetIpconfig15

func (o *UpdateVMConfigRequest) SetIpconfig15(v string)

SetIpconfig15 gets a reference to the given string and assigns it to the Ipconfig15 field.

func (*UpdateVMConfigRequest) SetIpconfig16

func (o *UpdateVMConfigRequest) SetIpconfig16(v string)

SetIpconfig16 gets a reference to the given string and assigns it to the Ipconfig16 field.

func (*UpdateVMConfigRequest) SetIpconfig17

func (o *UpdateVMConfigRequest) SetIpconfig17(v string)

SetIpconfig17 gets a reference to the given string and assigns it to the Ipconfig17 field.

func (*UpdateVMConfigRequest) SetIpconfig18

func (o *UpdateVMConfigRequest) SetIpconfig18(v string)

SetIpconfig18 gets a reference to the given string and assigns it to the Ipconfig18 field.

func (*UpdateVMConfigRequest) SetIpconfig19

func (o *UpdateVMConfigRequest) SetIpconfig19(v string)

SetIpconfig19 gets a reference to the given string and assigns it to the Ipconfig19 field.

func (*UpdateVMConfigRequest) SetIpconfig2

func (o *UpdateVMConfigRequest) SetIpconfig2(v string)

SetIpconfig2 gets a reference to the given string and assigns it to the Ipconfig2 field.

func (*UpdateVMConfigRequest) SetIpconfig20

func (o *UpdateVMConfigRequest) SetIpconfig20(v string)

SetIpconfig20 gets a reference to the given string and assigns it to the Ipconfig20 field.

func (*UpdateVMConfigRequest) SetIpconfig21

func (o *UpdateVMConfigRequest) SetIpconfig21(v string)

SetIpconfig21 gets a reference to the given string and assigns it to the Ipconfig21 field.

func (*UpdateVMConfigRequest) SetIpconfig22

func (o *UpdateVMConfigRequest) SetIpconfig22(v string)

SetIpconfig22 gets a reference to the given string and assigns it to the Ipconfig22 field.

func (*UpdateVMConfigRequest) SetIpconfig23

func (o *UpdateVMConfigRequest) SetIpconfig23(v string)

SetIpconfig23 gets a reference to the given string and assigns it to the Ipconfig23 field.

func (*UpdateVMConfigRequest) SetIpconfig24

func (o *UpdateVMConfigRequest) SetIpconfig24(v string)

SetIpconfig24 gets a reference to the given string and assigns it to the Ipconfig24 field.

func (*UpdateVMConfigRequest) SetIpconfig25

func (o *UpdateVMConfigRequest) SetIpconfig25(v string)

SetIpconfig25 gets a reference to the given string and assigns it to the Ipconfig25 field.

func (*UpdateVMConfigRequest) SetIpconfig26

func (o *UpdateVMConfigRequest) SetIpconfig26(v string)

SetIpconfig26 gets a reference to the given string and assigns it to the Ipconfig26 field.

func (*UpdateVMConfigRequest) SetIpconfig27

func (o *UpdateVMConfigRequest) SetIpconfig27(v string)

SetIpconfig27 gets a reference to the given string and assigns it to the Ipconfig27 field.

func (*UpdateVMConfigRequest) SetIpconfig28

func (o *UpdateVMConfigRequest) SetIpconfig28(v string)

SetIpconfig28 gets a reference to the given string and assigns it to the Ipconfig28 field.

func (*UpdateVMConfigRequest) SetIpconfig29

func (o *UpdateVMConfigRequest) SetIpconfig29(v string)

SetIpconfig29 gets a reference to the given string and assigns it to the Ipconfig29 field.

func (*UpdateVMConfigRequest) SetIpconfig3

func (o *UpdateVMConfigRequest) SetIpconfig3(v string)

SetIpconfig3 gets a reference to the given string and assigns it to the Ipconfig3 field.

func (*UpdateVMConfigRequest) SetIpconfig4

func (o *UpdateVMConfigRequest) SetIpconfig4(v string)

SetIpconfig4 gets a reference to the given string and assigns it to the Ipconfig4 field.

func (*UpdateVMConfigRequest) SetIpconfig5

func (o *UpdateVMConfigRequest) SetIpconfig5(v string)

SetIpconfig5 gets a reference to the given string and assigns it to the Ipconfig5 field.

func (*UpdateVMConfigRequest) SetIpconfig6

func (o *UpdateVMConfigRequest) SetIpconfig6(v string)

SetIpconfig6 gets a reference to the given string and assigns it to the Ipconfig6 field.

func (*UpdateVMConfigRequest) SetIpconfig7

func (o *UpdateVMConfigRequest) SetIpconfig7(v string)

SetIpconfig7 gets a reference to the given string and assigns it to the Ipconfig7 field.

func (*UpdateVMConfigRequest) SetIpconfig8

func (o *UpdateVMConfigRequest) SetIpconfig8(v string)

SetIpconfig8 gets a reference to the given string and assigns it to the Ipconfig8 field.

func (*UpdateVMConfigRequest) SetIpconfig9

func (o *UpdateVMConfigRequest) SetIpconfig9(v string)

SetIpconfig9 gets a reference to the given string and assigns it to the Ipconfig9 field.

func (*UpdateVMConfigRequest) SetIvshmem

func (o *UpdateVMConfigRequest) SetIvshmem(v string)

SetIvshmem gets a reference to the given string and assigns it to the Ivshmem field.

func (*UpdateVMConfigRequest) SetKeephugepages

func (o *UpdateVMConfigRequest) SetKeephugepages(v int32)

SetKeephugepages gets a reference to the given int32 and assigns it to the Keephugepages field.

func (*UpdateVMConfigRequest) SetKeyboard

func (o *UpdateVMConfigRequest) SetKeyboard(v string)

SetKeyboard gets a reference to the given string and assigns it to the Keyboard field.

func (*UpdateVMConfigRequest) SetKvm

func (o *UpdateVMConfigRequest) SetKvm(v int32)

SetKvm gets a reference to the given int32 and assigns it to the Kvm field.

func (*UpdateVMConfigRequest) SetLocaltime

func (o *UpdateVMConfigRequest) SetLocaltime(v int32)

SetLocaltime gets a reference to the given int32 and assigns it to the Localtime field.

func (*UpdateVMConfigRequest) SetLock

func (o *UpdateVMConfigRequest) SetLock(v string)

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*UpdateVMConfigRequest) SetMachine

func (o *UpdateVMConfigRequest) SetMachine(v string)

SetMachine gets a reference to the given string and assigns it to the Machine field.

func (*UpdateVMConfigRequest) SetMemory

func (o *UpdateVMConfigRequest) SetMemory(v int64)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (*UpdateVMConfigRequest) SetMigrateDowntime

func (o *UpdateVMConfigRequest) SetMigrateDowntime(v float32)

SetMigrateDowntime gets a reference to the given float32 and assigns it to the MigrateDowntime field.

func (*UpdateVMConfigRequest) SetMigrateSpeed

func (o *UpdateVMConfigRequest) SetMigrateSpeed(v int64)

SetMigrateSpeed gets a reference to the given int64 and assigns it to the MigrateSpeed field.

func (*UpdateVMConfigRequest) SetName

func (o *UpdateVMConfigRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateVMConfigRequest) SetNameserver

func (o *UpdateVMConfigRequest) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*UpdateVMConfigRequest) SetNet0

func (o *UpdateVMConfigRequest) SetNet0(v string)

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*UpdateVMConfigRequest) SetNet1

func (o *UpdateVMConfigRequest) SetNet1(v string)

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*UpdateVMConfigRequest) SetNet10

func (o *UpdateVMConfigRequest) SetNet10(v string)

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*UpdateVMConfigRequest) SetNet11

func (o *UpdateVMConfigRequest) SetNet11(v string)

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*UpdateVMConfigRequest) SetNet12

func (o *UpdateVMConfigRequest) SetNet12(v string)

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*UpdateVMConfigRequest) SetNet13

func (o *UpdateVMConfigRequest) SetNet13(v string)

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*UpdateVMConfigRequest) SetNet14

func (o *UpdateVMConfigRequest) SetNet14(v string)

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*UpdateVMConfigRequest) SetNet15

func (o *UpdateVMConfigRequest) SetNet15(v string)

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*UpdateVMConfigRequest) SetNet16

func (o *UpdateVMConfigRequest) SetNet16(v string)

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*UpdateVMConfigRequest) SetNet17

func (o *UpdateVMConfigRequest) SetNet17(v string)

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*UpdateVMConfigRequest) SetNet18

func (o *UpdateVMConfigRequest) SetNet18(v string)

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*UpdateVMConfigRequest) SetNet19

func (o *UpdateVMConfigRequest) SetNet19(v string)

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*UpdateVMConfigRequest) SetNet2

func (o *UpdateVMConfigRequest) SetNet2(v string)

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*UpdateVMConfigRequest) SetNet20

func (o *UpdateVMConfigRequest) SetNet20(v string)

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*UpdateVMConfigRequest) SetNet21

func (o *UpdateVMConfigRequest) SetNet21(v string)

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*UpdateVMConfigRequest) SetNet22

func (o *UpdateVMConfigRequest) SetNet22(v string)

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*UpdateVMConfigRequest) SetNet23

func (o *UpdateVMConfigRequest) SetNet23(v string)

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*UpdateVMConfigRequest) SetNet24

func (o *UpdateVMConfigRequest) SetNet24(v string)

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*UpdateVMConfigRequest) SetNet25

func (o *UpdateVMConfigRequest) SetNet25(v string)

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*UpdateVMConfigRequest) SetNet26

func (o *UpdateVMConfigRequest) SetNet26(v string)

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*UpdateVMConfigRequest) SetNet27

func (o *UpdateVMConfigRequest) SetNet27(v string)

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*UpdateVMConfigRequest) SetNet28

func (o *UpdateVMConfigRequest) SetNet28(v string)

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*UpdateVMConfigRequest) SetNet29

func (o *UpdateVMConfigRequest) SetNet29(v string)

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*UpdateVMConfigRequest) SetNet3

func (o *UpdateVMConfigRequest) SetNet3(v string)

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*UpdateVMConfigRequest) SetNet30

func (o *UpdateVMConfigRequest) SetNet30(v string)

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*UpdateVMConfigRequest) SetNet31

func (o *UpdateVMConfigRequest) SetNet31(v string)

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*UpdateVMConfigRequest) SetNet4

func (o *UpdateVMConfigRequest) SetNet4(v string)

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*UpdateVMConfigRequest) SetNet5

func (o *UpdateVMConfigRequest) SetNet5(v string)

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*UpdateVMConfigRequest) SetNet6

func (o *UpdateVMConfigRequest) SetNet6(v string)

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*UpdateVMConfigRequest) SetNet7

func (o *UpdateVMConfigRequest) SetNet7(v string)

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*UpdateVMConfigRequest) SetNet8

func (o *UpdateVMConfigRequest) SetNet8(v string)

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*UpdateVMConfigRequest) SetNet9

func (o *UpdateVMConfigRequest) SetNet9(v string)

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*UpdateVMConfigRequest) SetNuma

func (o *UpdateVMConfigRequest) SetNuma(v int32)

SetNuma gets a reference to the given int32 and assigns it to the Numa field.

func (*UpdateVMConfigRequest) SetNuma0

func (o *UpdateVMConfigRequest) SetNuma0(v string)

SetNuma0 gets a reference to the given string and assigns it to the Numa0 field.

func (*UpdateVMConfigRequest) SetNuma1

func (o *UpdateVMConfigRequest) SetNuma1(v string)

SetNuma1 gets a reference to the given string and assigns it to the Numa1 field.

func (*UpdateVMConfigRequest) SetNuma10

func (o *UpdateVMConfigRequest) SetNuma10(v string)

SetNuma10 gets a reference to the given string and assigns it to the Numa10 field.

func (*UpdateVMConfigRequest) SetNuma11

func (o *UpdateVMConfigRequest) SetNuma11(v string)

SetNuma11 gets a reference to the given string and assigns it to the Numa11 field.

func (*UpdateVMConfigRequest) SetNuma12

func (o *UpdateVMConfigRequest) SetNuma12(v string)

SetNuma12 gets a reference to the given string and assigns it to the Numa12 field.

func (*UpdateVMConfigRequest) SetNuma13

func (o *UpdateVMConfigRequest) SetNuma13(v string)

SetNuma13 gets a reference to the given string and assigns it to the Numa13 field.

func (*UpdateVMConfigRequest) SetNuma14

func (o *UpdateVMConfigRequest) SetNuma14(v string)

SetNuma14 gets a reference to the given string and assigns it to the Numa14 field.

func (*UpdateVMConfigRequest) SetNuma15

func (o *UpdateVMConfigRequest) SetNuma15(v string)

SetNuma15 gets a reference to the given string and assigns it to the Numa15 field.

func (*UpdateVMConfigRequest) SetNuma16

func (o *UpdateVMConfigRequest) SetNuma16(v string)

SetNuma16 gets a reference to the given string and assigns it to the Numa16 field.

func (*UpdateVMConfigRequest) SetNuma17

func (o *UpdateVMConfigRequest) SetNuma17(v string)

SetNuma17 gets a reference to the given string and assigns it to the Numa17 field.

func (*UpdateVMConfigRequest) SetNuma18

func (o *UpdateVMConfigRequest) SetNuma18(v string)

SetNuma18 gets a reference to the given string and assigns it to the Numa18 field.

func (*UpdateVMConfigRequest) SetNuma19

func (o *UpdateVMConfigRequest) SetNuma19(v string)

SetNuma19 gets a reference to the given string and assigns it to the Numa19 field.

func (*UpdateVMConfigRequest) SetNuma2

func (o *UpdateVMConfigRequest) SetNuma2(v string)

SetNuma2 gets a reference to the given string and assigns it to the Numa2 field.

func (*UpdateVMConfigRequest) SetNuma20

func (o *UpdateVMConfigRequest) SetNuma20(v string)

SetNuma20 gets a reference to the given string and assigns it to the Numa20 field.

func (*UpdateVMConfigRequest) SetNuma21

func (o *UpdateVMConfigRequest) SetNuma21(v string)

SetNuma21 gets a reference to the given string and assigns it to the Numa21 field.

func (*UpdateVMConfigRequest) SetNuma22

func (o *UpdateVMConfigRequest) SetNuma22(v string)

SetNuma22 gets a reference to the given string and assigns it to the Numa22 field.

func (*UpdateVMConfigRequest) SetNuma23

func (o *UpdateVMConfigRequest) SetNuma23(v string)

SetNuma23 gets a reference to the given string and assigns it to the Numa23 field.

func (*UpdateVMConfigRequest) SetNuma24

func (o *UpdateVMConfigRequest) SetNuma24(v string)

SetNuma24 gets a reference to the given string and assigns it to the Numa24 field.

func (*UpdateVMConfigRequest) SetNuma25

func (o *UpdateVMConfigRequest) SetNuma25(v string)

SetNuma25 gets a reference to the given string and assigns it to the Numa25 field.

func (*UpdateVMConfigRequest) SetNuma26

func (o *UpdateVMConfigRequest) SetNuma26(v string)

SetNuma26 gets a reference to the given string and assigns it to the Numa26 field.

func (*UpdateVMConfigRequest) SetNuma27

func (o *UpdateVMConfigRequest) SetNuma27(v string)

SetNuma27 gets a reference to the given string and assigns it to the Numa27 field.

func (*UpdateVMConfigRequest) SetNuma28

func (o *UpdateVMConfigRequest) SetNuma28(v string)

SetNuma28 gets a reference to the given string and assigns it to the Numa28 field.

func (*UpdateVMConfigRequest) SetNuma29

func (o *UpdateVMConfigRequest) SetNuma29(v string)

SetNuma29 gets a reference to the given string and assigns it to the Numa29 field.

func (*UpdateVMConfigRequest) SetNuma3

func (o *UpdateVMConfigRequest) SetNuma3(v string)

SetNuma3 gets a reference to the given string and assigns it to the Numa3 field.

func (*UpdateVMConfigRequest) SetNuma4

func (o *UpdateVMConfigRequest) SetNuma4(v string)

SetNuma4 gets a reference to the given string and assigns it to the Numa4 field.

func (*UpdateVMConfigRequest) SetNuma5

func (o *UpdateVMConfigRequest) SetNuma5(v string)

SetNuma5 gets a reference to the given string and assigns it to the Numa5 field.

func (*UpdateVMConfigRequest) SetNuma6

func (o *UpdateVMConfigRequest) SetNuma6(v string)

SetNuma6 gets a reference to the given string and assigns it to the Numa6 field.

func (*UpdateVMConfigRequest) SetNuma7

func (o *UpdateVMConfigRequest) SetNuma7(v string)

SetNuma7 gets a reference to the given string and assigns it to the Numa7 field.

func (*UpdateVMConfigRequest) SetNuma8

func (o *UpdateVMConfigRequest) SetNuma8(v string)

SetNuma8 gets a reference to the given string and assigns it to the Numa8 field.

func (*UpdateVMConfigRequest) SetNuma9

func (o *UpdateVMConfigRequest) SetNuma9(v string)

SetNuma9 gets a reference to the given string and assigns it to the Numa9 field.

func (*UpdateVMConfigRequest) SetOnboot

func (o *UpdateVMConfigRequest) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*UpdateVMConfigRequest) SetOstype

func (o *UpdateVMConfigRequest) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*UpdateVMConfigRequest) SetParallel0

func (o *UpdateVMConfigRequest) SetParallel0(v string)

SetParallel0 gets a reference to the given string and assigns it to the Parallel0 field.

func (*UpdateVMConfigRequest) SetParallel1

func (o *UpdateVMConfigRequest) SetParallel1(v string)

SetParallel1 gets a reference to the given string and assigns it to the Parallel1 field.

func (*UpdateVMConfigRequest) SetParallel2

func (o *UpdateVMConfigRequest) SetParallel2(v string)

SetParallel2 gets a reference to the given string and assigns it to the Parallel2 field.

func (*UpdateVMConfigRequest) SetParallel3

func (o *UpdateVMConfigRequest) SetParallel3(v string)

SetParallel3 gets a reference to the given string and assigns it to the Parallel3 field.

func (*UpdateVMConfigRequest) SetProtection

func (o *UpdateVMConfigRequest) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*UpdateVMConfigRequest) SetReboot

func (o *UpdateVMConfigRequest) SetReboot(v int32)

SetReboot gets a reference to the given int32 and assigns it to the Reboot field.

func (*UpdateVMConfigRequest) SetRevert

func (o *UpdateVMConfigRequest) SetRevert(v string)

SetRevert gets a reference to the given string and assigns it to the Revert field.

func (*UpdateVMConfigRequest) SetRng0

func (o *UpdateVMConfigRequest) SetRng0(v string)

SetRng0 gets a reference to the given string and assigns it to the Rng0 field.

func (*UpdateVMConfigRequest) SetSata0

func (o *UpdateVMConfigRequest) SetSata0(v string)

SetSata0 gets a reference to the given string and assigns it to the Sata0 field.

func (*UpdateVMConfigRequest) SetSata1

func (o *UpdateVMConfigRequest) SetSata1(v string)

SetSata1 gets a reference to the given string and assigns it to the Sata1 field.

func (*UpdateVMConfigRequest) SetSata2

func (o *UpdateVMConfigRequest) SetSata2(v string)

SetSata2 gets a reference to the given string and assigns it to the Sata2 field.

func (*UpdateVMConfigRequest) SetSata3

func (o *UpdateVMConfigRequest) SetSata3(v string)

SetSata3 gets a reference to the given string and assigns it to the Sata3 field.

func (*UpdateVMConfigRequest) SetSata4

func (o *UpdateVMConfigRequest) SetSata4(v string)

SetSata4 gets a reference to the given string and assigns it to the Sata4 field.

func (*UpdateVMConfigRequest) SetSata5

func (o *UpdateVMConfigRequest) SetSata5(v string)

SetSata5 gets a reference to the given string and assigns it to the Sata5 field.

func (*UpdateVMConfigRequest) SetScsi0

func (o *UpdateVMConfigRequest) SetScsi0(v string)

SetScsi0 gets a reference to the given string and assigns it to the Scsi0 field.

func (*UpdateVMConfigRequest) SetScsi1

func (o *UpdateVMConfigRequest) SetScsi1(v string)

SetScsi1 gets a reference to the given string and assigns it to the Scsi1 field.

func (*UpdateVMConfigRequest) SetScsi10

func (o *UpdateVMConfigRequest) SetScsi10(v string)

SetScsi10 gets a reference to the given string and assigns it to the Scsi10 field.

func (*UpdateVMConfigRequest) SetScsi11

func (o *UpdateVMConfigRequest) SetScsi11(v string)

SetScsi11 gets a reference to the given string and assigns it to the Scsi11 field.

func (*UpdateVMConfigRequest) SetScsi12

func (o *UpdateVMConfigRequest) SetScsi12(v string)

SetScsi12 gets a reference to the given string and assigns it to the Scsi12 field.

func (*UpdateVMConfigRequest) SetScsi13

func (o *UpdateVMConfigRequest) SetScsi13(v string)

SetScsi13 gets a reference to the given string and assigns it to the Scsi13 field.

func (*UpdateVMConfigRequest) SetScsi14

func (o *UpdateVMConfigRequest) SetScsi14(v string)

SetScsi14 gets a reference to the given string and assigns it to the Scsi14 field.

func (*UpdateVMConfigRequest) SetScsi15

func (o *UpdateVMConfigRequest) SetScsi15(v string)

SetScsi15 gets a reference to the given string and assigns it to the Scsi15 field.

func (*UpdateVMConfigRequest) SetScsi16

func (o *UpdateVMConfigRequest) SetScsi16(v string)

SetScsi16 gets a reference to the given string and assigns it to the Scsi16 field.

func (*UpdateVMConfigRequest) SetScsi17

func (o *UpdateVMConfigRequest) SetScsi17(v string)

SetScsi17 gets a reference to the given string and assigns it to the Scsi17 field.

func (*UpdateVMConfigRequest) SetScsi18

func (o *UpdateVMConfigRequest) SetScsi18(v string)

SetScsi18 gets a reference to the given string and assigns it to the Scsi18 field.

func (*UpdateVMConfigRequest) SetScsi19

func (o *UpdateVMConfigRequest) SetScsi19(v string)

SetScsi19 gets a reference to the given string and assigns it to the Scsi19 field.

func (*UpdateVMConfigRequest) SetScsi2

func (o *UpdateVMConfigRequest) SetScsi2(v string)

SetScsi2 gets a reference to the given string and assigns it to the Scsi2 field.

func (*UpdateVMConfigRequest) SetScsi20

func (o *UpdateVMConfigRequest) SetScsi20(v string)

SetScsi20 gets a reference to the given string and assigns it to the Scsi20 field.

func (*UpdateVMConfigRequest) SetScsi21

func (o *UpdateVMConfigRequest) SetScsi21(v string)

SetScsi21 gets a reference to the given string and assigns it to the Scsi21 field.

func (*UpdateVMConfigRequest) SetScsi22

func (o *UpdateVMConfigRequest) SetScsi22(v string)

SetScsi22 gets a reference to the given string and assigns it to the Scsi22 field.

func (*UpdateVMConfigRequest) SetScsi23

func (o *UpdateVMConfigRequest) SetScsi23(v string)

SetScsi23 gets a reference to the given string and assigns it to the Scsi23 field.

func (*UpdateVMConfigRequest) SetScsi24

func (o *UpdateVMConfigRequest) SetScsi24(v string)

SetScsi24 gets a reference to the given string and assigns it to the Scsi24 field.

func (*UpdateVMConfigRequest) SetScsi25

func (o *UpdateVMConfigRequest) SetScsi25(v string)

SetScsi25 gets a reference to the given string and assigns it to the Scsi25 field.

func (*UpdateVMConfigRequest) SetScsi26

func (o *UpdateVMConfigRequest) SetScsi26(v string)

SetScsi26 gets a reference to the given string and assigns it to the Scsi26 field.

func (*UpdateVMConfigRequest) SetScsi27

func (o *UpdateVMConfigRequest) SetScsi27(v string)

SetScsi27 gets a reference to the given string and assigns it to the Scsi27 field.

func (*UpdateVMConfigRequest) SetScsi28

func (o *UpdateVMConfigRequest) SetScsi28(v string)

SetScsi28 gets a reference to the given string and assigns it to the Scsi28 field.

func (*UpdateVMConfigRequest) SetScsi29

func (o *UpdateVMConfigRequest) SetScsi29(v string)

SetScsi29 gets a reference to the given string and assigns it to the Scsi29 field.

func (*UpdateVMConfigRequest) SetScsi3

func (o *UpdateVMConfigRequest) SetScsi3(v string)

SetScsi3 gets a reference to the given string and assigns it to the Scsi3 field.

func (*UpdateVMConfigRequest) SetScsi4

func (o *UpdateVMConfigRequest) SetScsi4(v string)

SetScsi4 gets a reference to the given string and assigns it to the Scsi4 field.

func (*UpdateVMConfigRequest) SetScsi5

func (o *UpdateVMConfigRequest) SetScsi5(v string)

SetScsi5 gets a reference to the given string and assigns it to the Scsi5 field.

func (*UpdateVMConfigRequest) SetScsi6

func (o *UpdateVMConfigRequest) SetScsi6(v string)

SetScsi6 gets a reference to the given string and assigns it to the Scsi6 field.

func (*UpdateVMConfigRequest) SetScsi7

func (o *UpdateVMConfigRequest) SetScsi7(v string)

SetScsi7 gets a reference to the given string and assigns it to the Scsi7 field.

func (*UpdateVMConfigRequest) SetScsi8

func (o *UpdateVMConfigRequest) SetScsi8(v string)

SetScsi8 gets a reference to the given string and assigns it to the Scsi8 field.

func (*UpdateVMConfigRequest) SetScsi9

func (o *UpdateVMConfigRequest) SetScsi9(v string)

SetScsi9 gets a reference to the given string and assigns it to the Scsi9 field.

func (*UpdateVMConfigRequest) SetScsihw

func (o *UpdateVMConfigRequest) SetScsihw(v string)

SetScsihw gets a reference to the given string and assigns it to the Scsihw field.

func (*UpdateVMConfigRequest) SetSearchdomain

func (o *UpdateVMConfigRequest) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*UpdateVMConfigRequest) SetSerial0

func (o *UpdateVMConfigRequest) SetSerial0(v string)

SetSerial0 gets a reference to the given string and assigns it to the Serial0 field.

func (*UpdateVMConfigRequest) SetSerial1

func (o *UpdateVMConfigRequest) SetSerial1(v string)

SetSerial1 gets a reference to the given string and assigns it to the Serial1 field.

func (*UpdateVMConfigRequest) SetSerial2

func (o *UpdateVMConfigRequest) SetSerial2(v string)

SetSerial2 gets a reference to the given string and assigns it to the Serial2 field.

func (*UpdateVMConfigRequest) SetSerial3

func (o *UpdateVMConfigRequest) SetSerial3(v string)

SetSerial3 gets a reference to the given string and assigns it to the Serial3 field.

func (*UpdateVMConfigRequest) SetShares

func (o *UpdateVMConfigRequest) SetShares(v int64)

SetShares gets a reference to the given int64 and assigns it to the Shares field.

func (*UpdateVMConfigRequest) SetSkiplock

func (o *UpdateVMConfigRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (*UpdateVMConfigRequest) SetSmbios1

func (o *UpdateVMConfigRequest) SetSmbios1(v string)

SetSmbios1 gets a reference to the given string and assigns it to the Smbios1 field.

func (*UpdateVMConfigRequest) SetSmp

func (o *UpdateVMConfigRequest) SetSmp(v int64)

SetSmp gets a reference to the given int64 and assigns it to the Smp field.

func (*UpdateVMConfigRequest) SetSockets

func (o *UpdateVMConfigRequest) SetSockets(v int64)

SetSockets gets a reference to the given int64 and assigns it to the Sockets field.

func (*UpdateVMConfigRequest) SetSpiceEnhancements

func (o *UpdateVMConfigRequest) SetSpiceEnhancements(v string)

SetSpiceEnhancements gets a reference to the given string and assigns it to the SpiceEnhancements field.

func (*UpdateVMConfigRequest) SetSshkeys

func (o *UpdateVMConfigRequest) SetSshkeys(v string)

SetSshkeys gets a reference to the given string and assigns it to the Sshkeys field.

func (*UpdateVMConfigRequest) SetStartdate

func (o *UpdateVMConfigRequest) SetStartdate(v string)

SetStartdate gets a reference to the given string and assigns it to the Startdate field.

func (*UpdateVMConfigRequest) SetStartup

func (o *UpdateVMConfigRequest) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*UpdateVMConfigRequest) SetTablet

func (o *UpdateVMConfigRequest) SetTablet(v int32)

SetTablet gets a reference to the given int32 and assigns it to the Tablet field.

func (*UpdateVMConfigRequest) SetTags

func (o *UpdateVMConfigRequest) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*UpdateVMConfigRequest) SetTdf

func (o *UpdateVMConfigRequest) SetTdf(v int32)

SetTdf gets a reference to the given int32 and assigns it to the Tdf field.

func (*UpdateVMConfigRequest) SetTemplate

func (o *UpdateVMConfigRequest) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*UpdateVMConfigRequest) SetTpmstate0

func (o *UpdateVMConfigRequest) SetTpmstate0(v string)

SetTpmstate0 gets a reference to the given string and assigns it to the Tpmstate0 field.

func (*UpdateVMConfigRequest) SetUnused0

func (o *UpdateVMConfigRequest) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*UpdateVMConfigRequest) SetUnused1

func (o *UpdateVMConfigRequest) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*UpdateVMConfigRequest) SetUnused10

func (o *UpdateVMConfigRequest) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*UpdateVMConfigRequest) SetUnused11

func (o *UpdateVMConfigRequest) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*UpdateVMConfigRequest) SetUnused12

func (o *UpdateVMConfigRequest) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*UpdateVMConfigRequest) SetUnused13

func (o *UpdateVMConfigRequest) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*UpdateVMConfigRequest) SetUnused14

func (o *UpdateVMConfigRequest) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*UpdateVMConfigRequest) SetUnused15

func (o *UpdateVMConfigRequest) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*UpdateVMConfigRequest) SetUnused16

func (o *UpdateVMConfigRequest) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*UpdateVMConfigRequest) SetUnused17

func (o *UpdateVMConfigRequest) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*UpdateVMConfigRequest) SetUnused18

func (o *UpdateVMConfigRequest) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*UpdateVMConfigRequest) SetUnused19

func (o *UpdateVMConfigRequest) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*UpdateVMConfigRequest) SetUnused2

func (o *UpdateVMConfigRequest) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*UpdateVMConfigRequest) SetUnused20

func (o *UpdateVMConfigRequest) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*UpdateVMConfigRequest) SetUnused21

func (o *UpdateVMConfigRequest) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*UpdateVMConfigRequest) SetUnused22

func (o *UpdateVMConfigRequest) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*UpdateVMConfigRequest) SetUnused23

func (o *UpdateVMConfigRequest) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*UpdateVMConfigRequest) SetUnused24

func (o *UpdateVMConfigRequest) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*UpdateVMConfigRequest) SetUnused25

func (o *UpdateVMConfigRequest) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*UpdateVMConfigRequest) SetUnused26

func (o *UpdateVMConfigRequest) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*UpdateVMConfigRequest) SetUnused27

func (o *UpdateVMConfigRequest) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*UpdateVMConfigRequest) SetUnused28

func (o *UpdateVMConfigRequest) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*UpdateVMConfigRequest) SetUnused29

func (o *UpdateVMConfigRequest) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*UpdateVMConfigRequest) SetUnused3

func (o *UpdateVMConfigRequest) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*UpdateVMConfigRequest) SetUnused4

func (o *UpdateVMConfigRequest) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*UpdateVMConfigRequest) SetUnused5

func (o *UpdateVMConfigRequest) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*UpdateVMConfigRequest) SetUnused6

func (o *UpdateVMConfigRequest) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*UpdateVMConfigRequest) SetUnused7

func (o *UpdateVMConfigRequest) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*UpdateVMConfigRequest) SetUnused8

func (o *UpdateVMConfigRequest) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*UpdateVMConfigRequest) SetUnused9

func (o *UpdateVMConfigRequest) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (*UpdateVMConfigRequest) SetUsb0

func (o *UpdateVMConfigRequest) SetUsb0(v string)

SetUsb0 gets a reference to the given string and assigns it to the Usb0 field.

func (*UpdateVMConfigRequest) SetUsb1

func (o *UpdateVMConfigRequest) SetUsb1(v string)

SetUsb1 gets a reference to the given string and assigns it to the Usb1 field.

func (*UpdateVMConfigRequest) SetUsb2

func (o *UpdateVMConfigRequest) SetUsb2(v string)

SetUsb2 gets a reference to the given string and assigns it to the Usb2 field.

func (*UpdateVMConfigRequest) SetUsb3

func (o *UpdateVMConfigRequest) SetUsb3(v string)

SetUsb3 gets a reference to the given string and assigns it to the Usb3 field.

func (*UpdateVMConfigRequest) SetVcpus

func (o *UpdateVMConfigRequest) SetVcpus(v int64)

SetVcpus gets a reference to the given int64 and assigns it to the Vcpus field.

func (*UpdateVMConfigRequest) SetVga

func (o *UpdateVMConfigRequest) SetVga(v string)

SetVga gets a reference to the given string and assigns it to the Vga field.

func (*UpdateVMConfigRequest) SetVirtio0

func (o *UpdateVMConfigRequest) SetVirtio0(v string)

SetVirtio0 gets a reference to the given string and assigns it to the Virtio0 field.

func (*UpdateVMConfigRequest) SetVirtio1

func (o *UpdateVMConfigRequest) SetVirtio1(v string)

SetVirtio1 gets a reference to the given string and assigns it to the Virtio1 field.

func (*UpdateVMConfigRequest) SetVirtio10

func (o *UpdateVMConfigRequest) SetVirtio10(v string)

SetVirtio10 gets a reference to the given string and assigns it to the Virtio10 field.

func (*UpdateVMConfigRequest) SetVirtio11

func (o *UpdateVMConfigRequest) SetVirtio11(v string)

SetVirtio11 gets a reference to the given string and assigns it to the Virtio11 field.

func (*UpdateVMConfigRequest) SetVirtio12

func (o *UpdateVMConfigRequest) SetVirtio12(v string)

SetVirtio12 gets a reference to the given string and assigns it to the Virtio12 field.

func (*UpdateVMConfigRequest) SetVirtio13

func (o *UpdateVMConfigRequest) SetVirtio13(v string)

SetVirtio13 gets a reference to the given string and assigns it to the Virtio13 field.

func (*UpdateVMConfigRequest) SetVirtio14

func (o *UpdateVMConfigRequest) SetVirtio14(v string)

SetVirtio14 gets a reference to the given string and assigns it to the Virtio14 field.

func (*UpdateVMConfigRequest) SetVirtio15

func (o *UpdateVMConfigRequest) SetVirtio15(v string)

SetVirtio15 gets a reference to the given string and assigns it to the Virtio15 field.

func (*UpdateVMConfigRequest) SetVirtio2

func (o *UpdateVMConfigRequest) SetVirtio2(v string)

SetVirtio2 gets a reference to the given string and assigns it to the Virtio2 field.

func (*UpdateVMConfigRequest) SetVirtio3

func (o *UpdateVMConfigRequest) SetVirtio3(v string)

SetVirtio3 gets a reference to the given string and assigns it to the Virtio3 field.

func (*UpdateVMConfigRequest) SetVirtio4

func (o *UpdateVMConfigRequest) SetVirtio4(v string)

SetVirtio4 gets a reference to the given string and assigns it to the Virtio4 field.

func (*UpdateVMConfigRequest) SetVirtio5

func (o *UpdateVMConfigRequest) SetVirtio5(v string)

SetVirtio5 gets a reference to the given string and assigns it to the Virtio5 field.

func (*UpdateVMConfigRequest) SetVirtio6

func (o *UpdateVMConfigRequest) SetVirtio6(v string)

SetVirtio6 gets a reference to the given string and assigns it to the Virtio6 field.

func (*UpdateVMConfigRequest) SetVirtio7

func (o *UpdateVMConfigRequest) SetVirtio7(v string)

SetVirtio7 gets a reference to the given string and assigns it to the Virtio7 field.

func (*UpdateVMConfigRequest) SetVirtio8

func (o *UpdateVMConfigRequest) SetVirtio8(v string)

SetVirtio8 gets a reference to the given string and assigns it to the Virtio8 field.

func (*UpdateVMConfigRequest) SetVirtio9

func (o *UpdateVMConfigRequest) SetVirtio9(v string)

SetVirtio9 gets a reference to the given string and assigns it to the Virtio9 field.

func (*UpdateVMConfigRequest) SetVmgenid

func (o *UpdateVMConfigRequest) SetVmgenid(v string)

SetVmgenid gets a reference to the given string and assigns it to the Vmgenid field.

func (*UpdateVMConfigRequest) SetVmstatestorage

func (o *UpdateVMConfigRequest) SetVmstatestorage(v string)

SetVmstatestorage gets a reference to the given string and assigns it to the Vmstatestorage field.

func (*UpdateVMConfigRequest) SetWatchdog

func (o *UpdateVMConfigRequest) SetWatchdog(v string)

SetWatchdog gets a reference to the given string and assigns it to the Watchdog field.

func (UpdateVMConfigRequest) ToMap

func (o UpdateVMConfigRequest) ToMap() (map[string]interface{}, error)

type UpdateVMConfigSyncRequest

type UpdateVMConfigSyncRequest struct {
	// Enable/disable ACPI.
	Acpi *int32 `json:"acpi,omitempty"`
	// List of host cores used to execute guest processes, for example: 0,5,8-11
	Affinity *string `json:"affinity,omitempty"`
	// Enable/disable communication with the QEMU Guest Agent and its properties.
	Agent *string `json:"agent,omitempty"`
	// Virtual processor architecture. Defaults to the host.
	Arch *string `json:"arch,omitempty"`
	// Arbitrary arguments passed to kvm.
	Args *string `json:"args,omitempty"`
	// Configure a audio device, useful in combination with QXL/Spice.
	Audio0 *string `json:"audio0,omitempty"`
	// Automatic restart after crash (currently ignored).
	Autostart *int32 `json:"autostart,omitempty"`
	// Amount of target RAM for the VM in MiB. Using zero disables the ballon driver.
	Balloon *int64 `json:"balloon,omitempty"`
	// Select BIOS implementation.
	Bios *string `json:"bios,omitempty"`
	// Specify guest boot order. Use the 'order=' sub-property as usage with no key or 'legacy=' is deprecated.
	Boot *string `json:"boot,omitempty"`
	// Enable booting from specified disk. Deprecated: Use 'boot: order=foo;bar' instead.
	Bootdisk *string `json:"bootdisk,omitempty"`
	// This is an alias for option -ide2
	Cdrom *string `json:"cdrom,omitempty"`
	// cloud-init: Specify custom files to replace the automatically generated ones at start.
	Cicustom *string `json:"cicustom,omitempty"`
	// cloud-init: Password to assign the user. Using this is generally not recommended. Use ssh keys instead. Also note that older cloud-init versions do not support hashed passwords.
	Cipassword *string `json:"cipassword,omitempty"`
	// Specifies the cloud-init configuration format. The default depends on the configured operating system type (`ostype`. We use the `nocloud` format for Linux, and `configdrive2` for windows.
	Citype *string `json:"citype,omitempty"`
	// cloud-init: do an automatic package upgrade after the first boot.
	Ciupgrade *int32 `json:"ciupgrade,omitempty"`
	// cloud-init: User name to change ssh keys and password for instead of the image's configured default user.
	Ciuser *string `json:"ciuser,omitempty"`
	// The number of cores per socket.
	Cores *int64 `json:"cores,omitempty"`
	// Emulated CPU type.
	Cpu *string `json:"cpu,omitempty"`
	// Limit of CPU usage.
	Cpulimit *float32 `json:"cpulimit,omitempty"`
	// CPU weight for a VM, will be clamped to [1, 10000] in cgroup v2.
	Cpuunits *int64 `json:"cpuunits,omitempty"`
	// A list of settings you want to delete.
	Delete *string `json:"delete,omitempty"`
	// Description for the VM. Shown in the web-interface VM's summary. This is saved as comment inside the configuration file.
	Description *string `json:"description,omitempty"`
	// Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
	Digest *string `json:"digest,omitempty"`
	// Configure a disk for storing EFI vars. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Note that SIZE_IN_GiB is ignored here and that the default EFI vars are copied to the volume instead. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Efidisk0 *string `json:"efidisk0,omitempty"`
	// Force physical removal. Without this, we simple remove the disk from the config file and create an additional configuration entry called 'unused[n]', which contains the volume ID. Unlink of unused[n] always cause physical removal.
	Force *int32 `json:"force,omitempty"`
	// Freeze CPU at startup (use 'c' monitor command to start execution).
	Freeze *int32 `json:"freeze,omitempty"`
	// Script that will be executed during various steps in the vms lifetime.
	Hookscript *string `json:"hookscript,omitempty"`
	// Map host PCI devices into guest.
	Hostpci0 *string `json:"hostpci0,omitempty"`
	// Map host PCI devices into guest.
	Hostpci1 *string `json:"hostpci1,omitempty"`
	// Map host PCI devices into guest.
	Hostpci2 *string `json:"hostpci2,omitempty"`
	// Map host PCI devices into guest.
	Hostpci3 *string `json:"hostpci3,omitempty"`
	// Map host PCI devices into guest.
	Hostpci4 *string `json:"hostpci4,omitempty"`
	// Map host PCI devices into guest.
	Hostpci5 *string `json:"hostpci5,omitempty"`
	// Map host PCI devices into guest.
	Hostpci6 *string `json:"hostpci6,omitempty"`
	// Map host PCI devices into guest.
	Hostpci7 *string `json:"hostpci7,omitempty"`
	// Map host PCI devices into guest.
	Hostpci8 *string `json:"hostpci8,omitempty"`
	// Map host PCI devices into guest.
	Hostpci9 *string `json:"hostpci9,omitempty"`
	// Map host PCI devices into guest.
	Hostpci10 *string `json:"hostpci10,omitempty"`
	// Map host PCI devices into guest.
	Hostpci11 *string `json:"hostpci11,omitempty"`
	// Map host PCI devices into guest.
	Hostpci12 *string `json:"hostpci12,omitempty"`
	// Map host PCI devices into guest.
	Hostpci13 *string `json:"hostpci13,omitempty"`
	// Map host PCI devices into guest.
	Hostpci14 *string `json:"hostpci14,omitempty"`
	// Map host PCI devices into guest.
	Hostpci15 *string `json:"hostpci15,omitempty"`
	// Map host PCI devices into guest.
	Hostpci16 *string `json:"hostpci16,omitempty"`
	// Map host PCI devices into guest.
	Hostpci17 *string `json:"hostpci17,omitempty"`
	// Map host PCI devices into guest.
	Hostpci18 *string `json:"hostpci18,omitempty"`
	// Map host PCI devices into guest.
	Hostpci19 *string `json:"hostpci19,omitempty"`
	// Map host PCI devices into guest.
	Hostpci20 *string `json:"hostpci20,omitempty"`
	// Map host PCI devices into guest.
	Hostpci21 *string `json:"hostpci21,omitempty"`
	// Map host PCI devices into guest.
	Hostpci22 *string `json:"hostpci22,omitempty"`
	// Map host PCI devices into guest.
	Hostpci23 *string `json:"hostpci23,omitempty"`
	// Map host PCI devices into guest.
	Hostpci24 *string `json:"hostpci24,omitempty"`
	// Map host PCI devices into guest.
	Hostpci25 *string `json:"hostpci25,omitempty"`
	// Map host PCI devices into guest.
	Hostpci26 *string `json:"hostpci26,omitempty"`
	// Map host PCI devices into guest.
	Hostpci27 *string `json:"hostpci27,omitempty"`
	// Map host PCI devices into guest.
	Hostpci28 *string `json:"hostpci28,omitempty"`
	// Map host PCI devices into guest.
	Hostpci29 *string `json:"hostpci29,omitempty"`
	// Selectively enable hotplug features. This is a comma separated list of hotplug features: 'network', 'disk', 'cpu', 'memory', 'usb' and 'cloudinit'. Use '0' to disable hotplug completely. Using '1' as value is an alias for the default `network,disk,usb`. USB hotplugging is possible for guests with machine version >= 7.1 and ostype l26 or windows > 7.
	Hotplug *string `json:"hotplug,omitempty"`
	// Enable/disable hugepages memory.
	Hugepages *string `json:"hugepages,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide0 *string `json:"ide0,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide1 *string `json:"ide1,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide2 *string `json:"ide2,omitempty"`
	// Use volume as IDE hard disk or CD-ROM (n is 0 to 3). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Ide3 *string `json:"ide3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig0 *string `json:"ipconfig0,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig1 *string `json:"ipconfig1,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig2 *string `json:"ipconfig2,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig3 *string `json:"ipconfig3,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig4 *string `json:"ipconfig4,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig5 *string `json:"ipconfig5,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig6 *string `json:"ipconfig6,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig7 *string `json:"ipconfig7,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig8 *string `json:"ipconfig8,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig9 *string `json:"ipconfig9,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig10 *string `json:"ipconfig10,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig11 *string `json:"ipconfig11,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig12 *string `json:"ipconfig12,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig13 *string `json:"ipconfig13,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig14 *string `json:"ipconfig14,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig15 *string `json:"ipconfig15,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig16 *string `json:"ipconfig16,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig17 *string `json:"ipconfig17,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig18 *string `json:"ipconfig18,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig19 *string `json:"ipconfig19,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig20 *string `json:"ipconfig20,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig21 *string `json:"ipconfig21,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig22 *string `json:"ipconfig22,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig23 *string `json:"ipconfig23,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig24 *string `json:"ipconfig24,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig25 *string `json:"ipconfig25,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig26 *string `json:"ipconfig26,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig27 *string `json:"ipconfig27,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig28 *string `json:"ipconfig28,omitempty"`
	// cloud-init: Specify IP addresses and gateways for the corresponding interface.  IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.  The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit gateway should be provided. For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires cloud-init 19.4 or newer.  If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using dhcp on IPv4.
	Ipconfig29 *string `json:"ipconfig29,omitempty"`
	// Inter-VM shared memory. Useful for direct communication between VMs, or to the host.
	Ivshmem *string `json:"ivshmem,omitempty"`
	// Use together with hugepages. If enabled, hugepages will not not be deleted after VM shutdown and can be used for subsequent starts.
	Keephugepages *int32 `json:"keephugepages,omitempty"`
	// Keyboard layout for VNC server. This option is generally not required and is often better handled from within the guest OS.
	Keyboard *string `json:"keyboard,omitempty"`
	// Enable/disable KVM hardware virtualization.
	Kvm *int32 `json:"kvm,omitempty"`
	// Set the real time clock (RTC) to local time. This is enabled by default if the `ostype` indicates a Microsoft Windows OS.
	Localtime *int32 `json:"localtime,omitempty"`
	// Lock/unlock the VM.
	Lock *string `json:"lock,omitempty"`
	// Specifies the QEMU machine type.
	Machine *string `json:"machine,omitempty"`
	// Memory
	Memory *int64 `json:"memory,omitempty"`
	// Set maximum tolerated downtime (in seconds) for migrations.
	MigrateDowntime *float32 `json:"migrate_downtime,omitempty"`
	// Set maximum speed (in MB/s) for migrations. Value 0 is no limit.
	MigrateSpeed *int64 `json:"migrate_speed,omitempty"`
	// Set a name for the VM. Only used on the configuration web interface.
	Name *string `json:"name,omitempty"`
	// cloud-init: Sets DNS server IP address for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Nameserver *string `json:"nameserver,omitempty"`
	// Specify network devices.
	Net0 *string `json:"net0,omitempty"`
	// Specify network devices.
	Net1 *string `json:"net1,omitempty"`
	// Specify network devices.
	Net2 *string `json:"net2,omitempty"`
	// Specify network devices.
	Net3 *string `json:"net3,omitempty"`
	// Specify network devices.
	Net4 *string `json:"net4,omitempty"`
	// Specify network devices.
	Net5 *string `json:"net5,omitempty"`
	// Specify network devices.
	Net6 *string `json:"net6,omitempty"`
	// Specify network devices.
	Net7 *string `json:"net7,omitempty"`
	// Specify network devices.
	Net8 *string `json:"net8,omitempty"`
	// Specify network devices.
	Net9 *string `json:"net9,omitempty"`
	// Specify network devices.
	Net10 *string `json:"net10,omitempty"`
	// Specify network devices.
	Net11 *string `json:"net11,omitempty"`
	// Specify network devices.
	Net12 *string `json:"net12,omitempty"`
	// Specify network devices.
	Net13 *string `json:"net13,omitempty"`
	// Specify network devices.
	Net14 *string `json:"net14,omitempty"`
	// Specify network devices.
	Net15 *string `json:"net15,omitempty"`
	// Specify network devices.
	Net16 *string `json:"net16,omitempty"`
	// Specify network devices.
	Net17 *string `json:"net17,omitempty"`
	// Specify network devices.
	Net18 *string `json:"net18,omitempty"`
	// Specify network devices.
	Net19 *string `json:"net19,omitempty"`
	// Specify network devices.
	Net20 *string `json:"net20,omitempty"`
	// Specify network devices.
	Net21 *string `json:"net21,omitempty"`
	// Specify network devices.
	Net22 *string `json:"net22,omitempty"`
	// Specify network devices.
	Net23 *string `json:"net23,omitempty"`
	// Specify network devices.
	Net24 *string `json:"net24,omitempty"`
	// Specify network devices.
	Net25 *string `json:"net25,omitempty"`
	// Specify network devices.
	Net26 *string `json:"net26,omitempty"`
	// Specify network devices.
	Net27 *string `json:"net27,omitempty"`
	// Specify network devices.
	Net28 *string `json:"net28,omitempty"`
	// Specify network devices.
	Net29 *string `json:"net29,omitempty"`
	// Specify network devices.
	Net30 *string `json:"net30,omitempty"`
	// Specify network devices.
	Net31 *string `json:"net31,omitempty"`
	// Enable/disable NUMA.
	Numa *int32 `json:"numa,omitempty"`
	// NUMA topology.
	Numa0 *string `json:"numa0,omitempty"`
	// NUMA topology.
	Numa1 *string `json:"numa1,omitempty"`
	// NUMA topology.
	Numa2 *string `json:"numa2,omitempty"`
	// NUMA topology.
	Numa3 *string `json:"numa3,omitempty"`
	// NUMA topology.
	Numa4 *string `json:"numa4,omitempty"`
	// NUMA topology.
	Numa5 *string `json:"numa5,omitempty"`
	// NUMA topology.
	Numa6 *string `json:"numa6,omitempty"`
	// NUMA topology.
	Numa7 *string `json:"numa7,omitempty"`
	// NUMA topology.
	Numa8 *string `json:"numa8,omitempty"`
	// NUMA topology.
	Numa9 *string `json:"numa9,omitempty"`
	// NUMA topology.
	Numa10 *string `json:"numa10,omitempty"`
	// NUMA topology.
	Numa11 *string `json:"numa11,omitempty"`
	// NUMA topology.
	Numa12 *string `json:"numa12,omitempty"`
	// NUMA topology.
	Numa13 *string `json:"numa13,omitempty"`
	// NUMA topology.
	Numa14 *string `json:"numa14,omitempty"`
	// NUMA topology.
	Numa15 *string `json:"numa15,omitempty"`
	// NUMA topology.
	Numa16 *string `json:"numa16,omitempty"`
	// NUMA topology.
	Numa17 *string `json:"numa17,omitempty"`
	// NUMA topology.
	Numa18 *string `json:"numa18,omitempty"`
	// NUMA topology.
	Numa19 *string `json:"numa19,omitempty"`
	// NUMA topology.
	Numa20 *string `json:"numa20,omitempty"`
	// NUMA topology.
	Numa21 *string `json:"numa21,omitempty"`
	// NUMA topology.
	Numa22 *string `json:"numa22,omitempty"`
	// NUMA topology.
	Numa23 *string `json:"numa23,omitempty"`
	// NUMA topology.
	Numa24 *string `json:"numa24,omitempty"`
	// NUMA topology.
	Numa25 *string `json:"numa25,omitempty"`
	// NUMA topology.
	Numa26 *string `json:"numa26,omitempty"`
	// NUMA topology.
	Numa27 *string `json:"numa27,omitempty"`
	// NUMA topology.
	Numa28 *string `json:"numa28,omitempty"`
	// NUMA topology.
	Numa29 *string `json:"numa29,omitempty"`
	// Specifies whether a VM will be started during system bootup.
	Onboot *int32 `json:"onboot,omitempty"`
	// Specify guest operating system.
	Ostype *string `json:"ostype,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel0 *string `json:"parallel0,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel1 *string `json:"parallel1,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel2 *string `json:"parallel2,omitempty"`
	// Map host parallel devices (n is 0 to 2).
	Parallel3 *string `json:"parallel3,omitempty"`
	// Sets the protection flag of the VM. This will disable the remove VM and remove disk operations.
	Protection *int32 `json:"protection,omitempty"`
	// Allow reboot. If set to '0' the VM exit on reboot.
	Reboot *int32 `json:"reboot,omitempty"`
	// Revert a pending change.
	Revert *string `json:"revert,omitempty"`
	// Configure a VirtIO-based Random Number Generator.
	Rng0 *string `json:"rng0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata0 *string `json:"sata0,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata1 *string `json:"sata1,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata2 *string `json:"sata2,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata3 *string `json:"sata3,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata4 *string `json:"sata4,omitempty"`
	// Use volume as SATA hard disk or CD-ROM (n is 0 to 5). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Sata5 *string `json:"sata5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi0 *string `json:"scsi0,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi1 *string `json:"scsi1,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi2 *string `json:"scsi2,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi3 *string `json:"scsi3,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi4 *string `json:"scsi4,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi5 *string `json:"scsi5,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi6 *string `json:"scsi6,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi7 *string `json:"scsi7,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi8 *string `json:"scsi8,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi9 *string `json:"scsi9,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi10 *string `json:"scsi10,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi11 *string `json:"scsi11,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi12 *string `json:"scsi12,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi13 *string `json:"scsi13,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi14 *string `json:"scsi14,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi15 *string `json:"scsi15,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi16 *string `json:"scsi16,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi17 *string `json:"scsi17,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi18 *string `json:"scsi18,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi19 *string `json:"scsi19,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi20 *string `json:"scsi20,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi21 *string `json:"scsi21,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi22 *string `json:"scsi22,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi23 *string `json:"scsi23,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi24 *string `json:"scsi24,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi25 *string `json:"scsi25,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi26 *string `json:"scsi26,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi27 *string `json:"scsi27,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi28 *string `json:"scsi28,omitempty"`
	// Use volume as SCSI hard disk or CD-ROM (n is 0 to 30). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Scsi29 *string `json:"scsi29,omitempty"`
	// SCSI controller model
	Scsihw *string `json:"scsihw,omitempty"`
	// cloud-init: Sets DNS search domains for a container. Create will automatically use the setting from the host if neither searchdomain nor nameserver are set.
	Searchdomain *string `json:"searchdomain,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial0 *string `json:"serial0,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial1 *string `json:"serial1,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial2 *string `json:"serial2,omitempty"`
	// Create a serial device inside the VM (n is 0 to 3)
	Serial3 *string `json:"serial3,omitempty"`
	// Amount of memory shares for auto-ballooning. The larger the number is, the more memory this VM gets. Number is relative to weights of all other running VMs. Using zero disables auto-ballooning. Auto-ballooning is done by pvestatd.
	Shares *int64 `json:"shares,omitempty"`
	// Ignore locks - only root is allowed to use this option.
	Skiplock *int32 `json:"skiplock,omitempty"`
	// Specify SMBIOS type 1 fields.
	Smbios1 *string `json:"smbios1,omitempty"`
	// The number of CPUs. Please use option -sockets instead.
	Smp *int64 `json:"smp,omitempty"`
	// The number of CPU sockets.
	Sockets *int64 `json:"sockets,omitempty"`
	// Configure additional enhancements for SPICE.
	SpiceEnhancements *string `json:"spice_enhancements,omitempty"`
	// cloud-init: Setup public SSH keys (one key per line, OpenSSH format).
	Sshkeys *string `json:"sshkeys,omitempty"`
	// Set the initial date of the real time clock. Valid format for date are:'now' or '2006-06-17T16:01:21' or '2006-06-17'.
	Startdate *string `json:"startdate,omitempty"`
	// Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.
	Startup *string `json:"startup,omitempty"`
	// Enable/disable the USB tablet device.
	Tablet *int32 `json:"tablet,omitempty"`
	// Tags of the VM. This is only meta information.
	Tags *string `json:"tags,omitempty"`
	// Enable/disable time drift fix.
	Tdf *int32 `json:"tdf,omitempty"`
	// Enable/disable Template.
	Template *int32 `json:"template,omitempty"`
	// Configure a Disk for storing TPM state. The format is fixed to 'raw'. Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Note that SIZE_IN_GiB is ignored here and 4 MiB will be used instead. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Tpmstate0 *string `json:"tpmstate0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused0 *string `json:"unused0,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused1 *string `json:"unused1,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused2 *string `json:"unused2,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused3 *string `json:"unused3,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused4 *string `json:"unused4,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused5 *string `json:"unused5,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused6 *string `json:"unused6,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused7 *string `json:"unused7,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused8 *string `json:"unused8,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused9 *string `json:"unused9,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused10 *string `json:"unused10,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused11 *string `json:"unused11,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused12 *string `json:"unused12,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused13 *string `json:"unused13,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused14 *string `json:"unused14,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused15 *string `json:"unused15,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused16 *string `json:"unused16,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused17 *string `json:"unused17,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused18 *string `json:"unused18,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused19 *string `json:"unused19,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused20 *string `json:"unused20,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused21 *string `json:"unused21,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused22 *string `json:"unused22,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused23 *string `json:"unused23,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused24 *string `json:"unused24,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused25 *string `json:"unused25,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused26 *string `json:"unused26,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused27 *string `json:"unused27,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused28 *string `json:"unused28,omitempty"`
	// Reference to unused volumes. This is used internally, and should not be modified manually.
	Unused29 *string `json:"unused29,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb0 *string `json:"usb0,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb1 *string `json:"usb1,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb2 *string `json:"usb2,omitempty"`
	// Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype l26 or windows > 7, n can be up to 14).
	Usb3 *string `json:"usb3,omitempty"`
	// Number of hotplugged vcpus.
	Vcpus *int64 `json:"vcpus,omitempty"`
	// Configure the VGA hardware.
	Vga *string `json:"vga,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio0 *string `json:"virtio0,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio1 *string `json:"virtio1,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio2 *string `json:"virtio2,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio3 *string `json:"virtio3,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio4 *string `json:"virtio4,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio5 *string `json:"virtio5,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio6 *string `json:"virtio6,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio7 *string `json:"virtio7,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio8 *string `json:"virtio8,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio9 *string `json:"virtio9,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio10 *string `json:"virtio10,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio11 *string `json:"virtio11,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio12 *string `json:"virtio12,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio13 *string `json:"virtio13,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio14 *string `json:"virtio14,omitempty"`
	// Use volume as VIRTIO hard disk (n is 0 to 15). Use the special syntax STORAGE_ID:SIZE_IN_GiB to allocate a new volume. Use STORAGE_ID:0 and the 'import-from' parameter to import from an existing volume.
	Virtio15 *string `json:"virtio15,omitempty"`
	// Set VM Generation ID. Use '1' to autogenerate on create or update, pass '0' to disable explicitly.
	Vmgenid *string `json:"vmgenid,omitempty"`
	// Default storage for VM state volumes/files.
	Vmstatestorage *string `json:"vmstatestorage,omitempty"`
	// Create a virtual hardware watchdog device.
	Watchdog *string `json:"watchdog,omitempty"`
}

UpdateVMConfigSyncRequest struct for UpdateVMConfigSyncRequest

func NewUpdateVMConfigSyncRequest

func NewUpdateVMConfigSyncRequest() *UpdateVMConfigSyncRequest

NewUpdateVMConfigSyncRequest instantiates a new UpdateVMConfigSyncRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateVMConfigSyncRequestWithDefaults

func NewUpdateVMConfigSyncRequestWithDefaults() *UpdateVMConfigSyncRequest

NewUpdateVMConfigSyncRequestWithDefaults instantiates a new UpdateVMConfigSyncRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateVMConfigSyncRequest) GetAcpi

func (o *UpdateVMConfigSyncRequest) GetAcpi() int32

GetAcpi returns the Acpi field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetAcpiOk

func (o *UpdateVMConfigSyncRequest) GetAcpiOk() (*int32, bool)

GetAcpiOk returns a tuple with the Acpi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetAffinity

func (o *UpdateVMConfigSyncRequest) GetAffinity() string

GetAffinity returns the Affinity field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetAffinityOk

func (o *UpdateVMConfigSyncRequest) GetAffinityOk() (*string, bool)

GetAffinityOk returns a tuple with the Affinity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetAgent

func (o *UpdateVMConfigSyncRequest) GetAgent() string

GetAgent returns the Agent field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetAgentOk

func (o *UpdateVMConfigSyncRequest) GetAgentOk() (*string, bool)

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetArch

func (o *UpdateVMConfigSyncRequest) GetArch() string

GetArch returns the Arch field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetArchOk

func (o *UpdateVMConfigSyncRequest) GetArchOk() (*string, bool)

GetArchOk returns a tuple with the Arch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetArgs

func (o *UpdateVMConfigSyncRequest) GetArgs() string

GetArgs returns the Args field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetArgsOk

func (o *UpdateVMConfigSyncRequest) GetArgsOk() (*string, bool)

GetArgsOk returns a tuple with the Args field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetAudio0

func (o *UpdateVMConfigSyncRequest) GetAudio0() string

GetAudio0 returns the Audio0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetAudio0Ok

func (o *UpdateVMConfigSyncRequest) GetAudio0Ok() (*string, bool)

GetAudio0Ok returns a tuple with the Audio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetAutostart

func (o *UpdateVMConfigSyncRequest) GetAutostart() int32

GetAutostart returns the Autostart field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetAutostartOk

func (o *UpdateVMConfigSyncRequest) GetAutostartOk() (*int32, bool)

GetAutostartOk returns a tuple with the Autostart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetBalloon

func (o *UpdateVMConfigSyncRequest) GetBalloon() int64

GetBalloon returns the Balloon field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetBalloonOk

func (o *UpdateVMConfigSyncRequest) GetBalloonOk() (*int64, bool)

GetBalloonOk returns a tuple with the Balloon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetBios

func (o *UpdateVMConfigSyncRequest) GetBios() string

GetBios returns the Bios field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetBiosOk

func (o *UpdateVMConfigSyncRequest) GetBiosOk() (*string, bool)

GetBiosOk returns a tuple with the Bios field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetBoot

func (o *UpdateVMConfigSyncRequest) GetBoot() string

GetBoot returns the Boot field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetBootOk

func (o *UpdateVMConfigSyncRequest) GetBootOk() (*string, bool)

GetBootOk returns a tuple with the Boot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetBootdisk

func (o *UpdateVMConfigSyncRequest) GetBootdisk() string

GetBootdisk returns the Bootdisk field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetBootdiskOk

func (o *UpdateVMConfigSyncRequest) GetBootdiskOk() (*string, bool)

GetBootdiskOk returns a tuple with the Bootdisk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCdrom

func (o *UpdateVMConfigSyncRequest) GetCdrom() string

GetCdrom returns the Cdrom field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCdromOk

func (o *UpdateVMConfigSyncRequest) GetCdromOk() (*string, bool)

GetCdromOk returns a tuple with the Cdrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCicustom

func (o *UpdateVMConfigSyncRequest) GetCicustom() string

GetCicustom returns the Cicustom field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCicustomOk

func (o *UpdateVMConfigSyncRequest) GetCicustomOk() (*string, bool)

GetCicustomOk returns a tuple with the Cicustom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCipassword

func (o *UpdateVMConfigSyncRequest) GetCipassword() string

GetCipassword returns the Cipassword field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCipasswordOk

func (o *UpdateVMConfigSyncRequest) GetCipasswordOk() (*string, bool)

GetCipasswordOk returns a tuple with the Cipassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCitype

func (o *UpdateVMConfigSyncRequest) GetCitype() string

GetCitype returns the Citype field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCitypeOk

func (o *UpdateVMConfigSyncRequest) GetCitypeOk() (*string, bool)

GetCitypeOk returns a tuple with the Citype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCiupgrade

func (o *UpdateVMConfigSyncRequest) GetCiupgrade() int32

GetCiupgrade returns the Ciupgrade field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCiupgradeOk

func (o *UpdateVMConfigSyncRequest) GetCiupgradeOk() (*int32, bool)

GetCiupgradeOk returns a tuple with the Ciupgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCiuser

func (o *UpdateVMConfigSyncRequest) GetCiuser() string

GetCiuser returns the Ciuser field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCiuserOk

func (o *UpdateVMConfigSyncRequest) GetCiuserOk() (*string, bool)

GetCiuserOk returns a tuple with the Ciuser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCores

func (o *UpdateVMConfigSyncRequest) GetCores() int64

GetCores returns the Cores field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCoresOk

func (o *UpdateVMConfigSyncRequest) GetCoresOk() (*int64, bool)

GetCoresOk returns a tuple with the Cores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCpu

func (o *UpdateVMConfigSyncRequest) GetCpu() string

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCpuOk

func (o *UpdateVMConfigSyncRequest) GetCpuOk() (*string, bool)

GetCpuOk returns a tuple with the Cpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCpulimit

func (o *UpdateVMConfigSyncRequest) GetCpulimit() float32

GetCpulimit returns the Cpulimit field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCpulimitOk

func (o *UpdateVMConfigSyncRequest) GetCpulimitOk() (*float32, bool)

GetCpulimitOk returns a tuple with the Cpulimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetCpuunits

func (o *UpdateVMConfigSyncRequest) GetCpuunits() int64

GetCpuunits returns the Cpuunits field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetCpuunitsOk

func (o *UpdateVMConfigSyncRequest) GetCpuunitsOk() (*int64, bool)

GetCpuunitsOk returns a tuple with the Cpuunits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetDelete

func (o *UpdateVMConfigSyncRequest) GetDelete() string

GetDelete returns the Delete field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetDeleteOk

func (o *UpdateVMConfigSyncRequest) GetDeleteOk() (*string, bool)

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetDescription

func (o *UpdateVMConfigSyncRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetDescriptionOk

func (o *UpdateVMConfigSyncRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetDigest

func (o *UpdateVMConfigSyncRequest) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetDigestOk

func (o *UpdateVMConfigSyncRequest) GetDigestOk() (*string, bool)

GetDigestOk returns a tuple with the Digest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetEfidisk0

func (o *UpdateVMConfigSyncRequest) GetEfidisk0() string

GetEfidisk0 returns the Efidisk0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetEfidisk0Ok

func (o *UpdateVMConfigSyncRequest) GetEfidisk0Ok() (*string, bool)

GetEfidisk0Ok returns a tuple with the Efidisk0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetForce

func (o *UpdateVMConfigSyncRequest) GetForce() int32

GetForce returns the Force field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetForceOk

func (o *UpdateVMConfigSyncRequest) GetForceOk() (*int32, bool)

GetForceOk returns a tuple with the Force field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetFreeze

func (o *UpdateVMConfigSyncRequest) GetFreeze() int32

GetFreeze returns the Freeze field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetFreezeOk

func (o *UpdateVMConfigSyncRequest) GetFreezeOk() (*int32, bool)

GetFreezeOk returns a tuple with the Freeze field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHookscript

func (o *UpdateVMConfigSyncRequest) GetHookscript() string

GetHookscript returns the Hookscript field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHookscriptOk

func (o *UpdateVMConfigSyncRequest) GetHookscriptOk() (*string, bool)

GetHookscriptOk returns a tuple with the Hookscript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci0

func (o *UpdateVMConfigSyncRequest) GetHostpci0() string

GetHostpci0 returns the Hostpci0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci0Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci0Ok() (*string, bool)

GetHostpci0Ok returns a tuple with the Hostpci0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci1

func (o *UpdateVMConfigSyncRequest) GetHostpci1() string

GetHostpci1 returns the Hostpci1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci10

func (o *UpdateVMConfigSyncRequest) GetHostpci10() string

GetHostpci10 returns the Hostpci10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci10Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci10Ok() (*string, bool)

GetHostpci10Ok returns a tuple with the Hostpci10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci11

func (o *UpdateVMConfigSyncRequest) GetHostpci11() string

GetHostpci11 returns the Hostpci11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci11Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci11Ok() (*string, bool)

GetHostpci11Ok returns a tuple with the Hostpci11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci12

func (o *UpdateVMConfigSyncRequest) GetHostpci12() string

GetHostpci12 returns the Hostpci12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci12Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci12Ok() (*string, bool)

GetHostpci12Ok returns a tuple with the Hostpci12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci13

func (o *UpdateVMConfigSyncRequest) GetHostpci13() string

GetHostpci13 returns the Hostpci13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci13Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci13Ok() (*string, bool)

GetHostpci13Ok returns a tuple with the Hostpci13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci14

func (o *UpdateVMConfigSyncRequest) GetHostpci14() string

GetHostpci14 returns the Hostpci14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci14Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci14Ok() (*string, bool)

GetHostpci14Ok returns a tuple with the Hostpci14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci15

func (o *UpdateVMConfigSyncRequest) GetHostpci15() string

GetHostpci15 returns the Hostpci15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci15Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci15Ok() (*string, bool)

GetHostpci15Ok returns a tuple with the Hostpci15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci16

func (o *UpdateVMConfigSyncRequest) GetHostpci16() string

GetHostpci16 returns the Hostpci16 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci16Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci16Ok() (*string, bool)

GetHostpci16Ok returns a tuple with the Hostpci16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci17

func (o *UpdateVMConfigSyncRequest) GetHostpci17() string

GetHostpci17 returns the Hostpci17 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci17Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci17Ok() (*string, bool)

GetHostpci17Ok returns a tuple with the Hostpci17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci18

func (o *UpdateVMConfigSyncRequest) GetHostpci18() string

GetHostpci18 returns the Hostpci18 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci18Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci18Ok() (*string, bool)

GetHostpci18Ok returns a tuple with the Hostpci18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci19

func (o *UpdateVMConfigSyncRequest) GetHostpci19() string

GetHostpci19 returns the Hostpci19 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci19Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci19Ok() (*string, bool)

GetHostpci19Ok returns a tuple with the Hostpci19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci1Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci1Ok() (*string, bool)

GetHostpci1Ok returns a tuple with the Hostpci1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci2

func (o *UpdateVMConfigSyncRequest) GetHostpci2() string

GetHostpci2 returns the Hostpci2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci20

func (o *UpdateVMConfigSyncRequest) GetHostpci20() string

GetHostpci20 returns the Hostpci20 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci20Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci20Ok() (*string, bool)

GetHostpci20Ok returns a tuple with the Hostpci20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci21

func (o *UpdateVMConfigSyncRequest) GetHostpci21() string

GetHostpci21 returns the Hostpci21 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci21Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci21Ok() (*string, bool)

GetHostpci21Ok returns a tuple with the Hostpci21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci22

func (o *UpdateVMConfigSyncRequest) GetHostpci22() string

GetHostpci22 returns the Hostpci22 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci22Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci22Ok() (*string, bool)

GetHostpci22Ok returns a tuple with the Hostpci22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci23

func (o *UpdateVMConfigSyncRequest) GetHostpci23() string

GetHostpci23 returns the Hostpci23 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci23Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci23Ok() (*string, bool)

GetHostpci23Ok returns a tuple with the Hostpci23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci24

func (o *UpdateVMConfigSyncRequest) GetHostpci24() string

GetHostpci24 returns the Hostpci24 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci24Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci24Ok() (*string, bool)

GetHostpci24Ok returns a tuple with the Hostpci24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci25

func (o *UpdateVMConfigSyncRequest) GetHostpci25() string

GetHostpci25 returns the Hostpci25 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci25Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci25Ok() (*string, bool)

GetHostpci25Ok returns a tuple with the Hostpci25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci26

func (o *UpdateVMConfigSyncRequest) GetHostpci26() string

GetHostpci26 returns the Hostpci26 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci26Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci26Ok() (*string, bool)

GetHostpci26Ok returns a tuple with the Hostpci26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci27

func (o *UpdateVMConfigSyncRequest) GetHostpci27() string

GetHostpci27 returns the Hostpci27 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci27Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci27Ok() (*string, bool)

GetHostpci27Ok returns a tuple with the Hostpci27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci28

func (o *UpdateVMConfigSyncRequest) GetHostpci28() string

GetHostpci28 returns the Hostpci28 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci28Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci28Ok() (*string, bool)

GetHostpci28Ok returns a tuple with the Hostpci28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci29

func (o *UpdateVMConfigSyncRequest) GetHostpci29() string

GetHostpci29 returns the Hostpci29 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci29Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci29Ok() (*string, bool)

GetHostpci29Ok returns a tuple with the Hostpci29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci2Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci2Ok() (*string, bool)

GetHostpci2Ok returns a tuple with the Hostpci2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci3

func (o *UpdateVMConfigSyncRequest) GetHostpci3() string

GetHostpci3 returns the Hostpci3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci3Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci3Ok() (*string, bool)

GetHostpci3Ok returns a tuple with the Hostpci3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci4

func (o *UpdateVMConfigSyncRequest) GetHostpci4() string

GetHostpci4 returns the Hostpci4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci4Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci4Ok() (*string, bool)

GetHostpci4Ok returns a tuple with the Hostpci4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci5

func (o *UpdateVMConfigSyncRequest) GetHostpci5() string

GetHostpci5 returns the Hostpci5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci5Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci5Ok() (*string, bool)

GetHostpci5Ok returns a tuple with the Hostpci5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci6

func (o *UpdateVMConfigSyncRequest) GetHostpci6() string

GetHostpci6 returns the Hostpci6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci6Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci6Ok() (*string, bool)

GetHostpci6Ok returns a tuple with the Hostpci6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci7

func (o *UpdateVMConfigSyncRequest) GetHostpci7() string

GetHostpci7 returns the Hostpci7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci7Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci7Ok() (*string, bool)

GetHostpci7Ok returns a tuple with the Hostpci7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci8

func (o *UpdateVMConfigSyncRequest) GetHostpci8() string

GetHostpci8 returns the Hostpci8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci8Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci8Ok() (*string, bool)

GetHostpci8Ok returns a tuple with the Hostpci8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHostpci9

func (o *UpdateVMConfigSyncRequest) GetHostpci9() string

GetHostpci9 returns the Hostpci9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHostpci9Ok

func (o *UpdateVMConfigSyncRequest) GetHostpci9Ok() (*string, bool)

GetHostpci9Ok returns a tuple with the Hostpci9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHotplug

func (o *UpdateVMConfigSyncRequest) GetHotplug() string

GetHotplug returns the Hotplug field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHotplugOk

func (o *UpdateVMConfigSyncRequest) GetHotplugOk() (*string, bool)

GetHotplugOk returns a tuple with the Hotplug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetHugepages

func (o *UpdateVMConfigSyncRequest) GetHugepages() string

GetHugepages returns the Hugepages field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetHugepagesOk

func (o *UpdateVMConfigSyncRequest) GetHugepagesOk() (*string, bool)

GetHugepagesOk returns a tuple with the Hugepages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIde0

func (o *UpdateVMConfigSyncRequest) GetIde0() string

GetIde0 returns the Ide0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIde0Ok

func (o *UpdateVMConfigSyncRequest) GetIde0Ok() (*string, bool)

GetIde0Ok returns a tuple with the Ide0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIde1

func (o *UpdateVMConfigSyncRequest) GetIde1() string

GetIde1 returns the Ide1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIde1Ok

func (o *UpdateVMConfigSyncRequest) GetIde1Ok() (*string, bool)

GetIde1Ok returns a tuple with the Ide1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIde2

func (o *UpdateVMConfigSyncRequest) GetIde2() string

GetIde2 returns the Ide2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIde2Ok

func (o *UpdateVMConfigSyncRequest) GetIde2Ok() (*string, bool)

GetIde2Ok returns a tuple with the Ide2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIde3

func (o *UpdateVMConfigSyncRequest) GetIde3() string

GetIde3 returns the Ide3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIde3Ok

func (o *UpdateVMConfigSyncRequest) GetIde3Ok() (*string, bool)

GetIde3Ok returns a tuple with the Ide3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig0

func (o *UpdateVMConfigSyncRequest) GetIpconfig0() string

GetIpconfig0 returns the Ipconfig0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig0Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig0Ok() (*string, bool)

GetIpconfig0Ok returns a tuple with the Ipconfig0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig1

func (o *UpdateVMConfigSyncRequest) GetIpconfig1() string

GetIpconfig1 returns the Ipconfig1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig10

func (o *UpdateVMConfigSyncRequest) GetIpconfig10() string

GetIpconfig10 returns the Ipconfig10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig10Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig10Ok() (*string, bool)

GetIpconfig10Ok returns a tuple with the Ipconfig10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig11

func (o *UpdateVMConfigSyncRequest) GetIpconfig11() string

GetIpconfig11 returns the Ipconfig11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig11Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig11Ok() (*string, bool)

GetIpconfig11Ok returns a tuple with the Ipconfig11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig12

func (o *UpdateVMConfigSyncRequest) GetIpconfig12() string

GetIpconfig12 returns the Ipconfig12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig12Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig12Ok() (*string, bool)

GetIpconfig12Ok returns a tuple with the Ipconfig12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig13

func (o *UpdateVMConfigSyncRequest) GetIpconfig13() string

GetIpconfig13 returns the Ipconfig13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig13Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig13Ok() (*string, bool)

GetIpconfig13Ok returns a tuple with the Ipconfig13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig14

func (o *UpdateVMConfigSyncRequest) GetIpconfig14() string

GetIpconfig14 returns the Ipconfig14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig14Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig14Ok() (*string, bool)

GetIpconfig14Ok returns a tuple with the Ipconfig14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig15

func (o *UpdateVMConfigSyncRequest) GetIpconfig15() string

GetIpconfig15 returns the Ipconfig15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig15Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig15Ok() (*string, bool)

GetIpconfig15Ok returns a tuple with the Ipconfig15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig16

func (o *UpdateVMConfigSyncRequest) GetIpconfig16() string

GetIpconfig16 returns the Ipconfig16 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig16Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig16Ok() (*string, bool)

GetIpconfig16Ok returns a tuple with the Ipconfig16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig17

func (o *UpdateVMConfigSyncRequest) GetIpconfig17() string

GetIpconfig17 returns the Ipconfig17 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig17Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig17Ok() (*string, bool)

GetIpconfig17Ok returns a tuple with the Ipconfig17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig18

func (o *UpdateVMConfigSyncRequest) GetIpconfig18() string

GetIpconfig18 returns the Ipconfig18 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig18Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig18Ok() (*string, bool)

GetIpconfig18Ok returns a tuple with the Ipconfig18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig19

func (o *UpdateVMConfigSyncRequest) GetIpconfig19() string

GetIpconfig19 returns the Ipconfig19 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig19Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig19Ok() (*string, bool)

GetIpconfig19Ok returns a tuple with the Ipconfig19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig1Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig1Ok() (*string, bool)

GetIpconfig1Ok returns a tuple with the Ipconfig1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig2

func (o *UpdateVMConfigSyncRequest) GetIpconfig2() string

GetIpconfig2 returns the Ipconfig2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig20

func (o *UpdateVMConfigSyncRequest) GetIpconfig20() string

GetIpconfig20 returns the Ipconfig20 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig20Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig20Ok() (*string, bool)

GetIpconfig20Ok returns a tuple with the Ipconfig20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig21

func (o *UpdateVMConfigSyncRequest) GetIpconfig21() string

GetIpconfig21 returns the Ipconfig21 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig21Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig21Ok() (*string, bool)

GetIpconfig21Ok returns a tuple with the Ipconfig21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig22

func (o *UpdateVMConfigSyncRequest) GetIpconfig22() string

GetIpconfig22 returns the Ipconfig22 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig22Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig22Ok() (*string, bool)

GetIpconfig22Ok returns a tuple with the Ipconfig22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig23

func (o *UpdateVMConfigSyncRequest) GetIpconfig23() string

GetIpconfig23 returns the Ipconfig23 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig23Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig23Ok() (*string, bool)

GetIpconfig23Ok returns a tuple with the Ipconfig23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig24

func (o *UpdateVMConfigSyncRequest) GetIpconfig24() string

GetIpconfig24 returns the Ipconfig24 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig24Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig24Ok() (*string, bool)

GetIpconfig24Ok returns a tuple with the Ipconfig24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig25

func (o *UpdateVMConfigSyncRequest) GetIpconfig25() string

GetIpconfig25 returns the Ipconfig25 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig25Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig25Ok() (*string, bool)

GetIpconfig25Ok returns a tuple with the Ipconfig25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig26

func (o *UpdateVMConfigSyncRequest) GetIpconfig26() string

GetIpconfig26 returns the Ipconfig26 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig26Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig26Ok() (*string, bool)

GetIpconfig26Ok returns a tuple with the Ipconfig26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig27

func (o *UpdateVMConfigSyncRequest) GetIpconfig27() string

GetIpconfig27 returns the Ipconfig27 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig27Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig27Ok() (*string, bool)

GetIpconfig27Ok returns a tuple with the Ipconfig27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig28

func (o *UpdateVMConfigSyncRequest) GetIpconfig28() string

GetIpconfig28 returns the Ipconfig28 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig28Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig28Ok() (*string, bool)

GetIpconfig28Ok returns a tuple with the Ipconfig28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig29

func (o *UpdateVMConfigSyncRequest) GetIpconfig29() string

GetIpconfig29 returns the Ipconfig29 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig29Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig29Ok() (*string, bool)

GetIpconfig29Ok returns a tuple with the Ipconfig29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig2Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig2Ok() (*string, bool)

GetIpconfig2Ok returns a tuple with the Ipconfig2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig3

func (o *UpdateVMConfigSyncRequest) GetIpconfig3() string

GetIpconfig3 returns the Ipconfig3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig3Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig3Ok() (*string, bool)

GetIpconfig3Ok returns a tuple with the Ipconfig3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig4

func (o *UpdateVMConfigSyncRequest) GetIpconfig4() string

GetIpconfig4 returns the Ipconfig4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig4Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig4Ok() (*string, bool)

GetIpconfig4Ok returns a tuple with the Ipconfig4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig5

func (o *UpdateVMConfigSyncRequest) GetIpconfig5() string

GetIpconfig5 returns the Ipconfig5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig5Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig5Ok() (*string, bool)

GetIpconfig5Ok returns a tuple with the Ipconfig5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig6

func (o *UpdateVMConfigSyncRequest) GetIpconfig6() string

GetIpconfig6 returns the Ipconfig6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig6Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig6Ok() (*string, bool)

GetIpconfig6Ok returns a tuple with the Ipconfig6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig7

func (o *UpdateVMConfigSyncRequest) GetIpconfig7() string

GetIpconfig7 returns the Ipconfig7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig7Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig7Ok() (*string, bool)

GetIpconfig7Ok returns a tuple with the Ipconfig7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig8

func (o *UpdateVMConfigSyncRequest) GetIpconfig8() string

GetIpconfig8 returns the Ipconfig8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig8Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig8Ok() (*string, bool)

GetIpconfig8Ok returns a tuple with the Ipconfig8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIpconfig9

func (o *UpdateVMConfigSyncRequest) GetIpconfig9() string

GetIpconfig9 returns the Ipconfig9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIpconfig9Ok

func (o *UpdateVMConfigSyncRequest) GetIpconfig9Ok() (*string, bool)

GetIpconfig9Ok returns a tuple with the Ipconfig9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetIvshmem

func (o *UpdateVMConfigSyncRequest) GetIvshmem() string

GetIvshmem returns the Ivshmem field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetIvshmemOk

func (o *UpdateVMConfigSyncRequest) GetIvshmemOk() (*string, bool)

GetIvshmemOk returns a tuple with the Ivshmem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetKeephugepages

func (o *UpdateVMConfigSyncRequest) GetKeephugepages() int32

GetKeephugepages returns the Keephugepages field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetKeephugepagesOk

func (o *UpdateVMConfigSyncRequest) GetKeephugepagesOk() (*int32, bool)

GetKeephugepagesOk returns a tuple with the Keephugepages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetKeyboard

func (o *UpdateVMConfigSyncRequest) GetKeyboard() string

GetKeyboard returns the Keyboard field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetKeyboardOk

func (o *UpdateVMConfigSyncRequest) GetKeyboardOk() (*string, bool)

GetKeyboardOk returns a tuple with the Keyboard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetKvm

func (o *UpdateVMConfigSyncRequest) GetKvm() int32

GetKvm returns the Kvm field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetKvmOk

func (o *UpdateVMConfigSyncRequest) GetKvmOk() (*int32, bool)

GetKvmOk returns a tuple with the Kvm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetLocaltime

func (o *UpdateVMConfigSyncRequest) GetLocaltime() int32

GetLocaltime returns the Localtime field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetLocaltimeOk

func (o *UpdateVMConfigSyncRequest) GetLocaltimeOk() (*int32, bool)

GetLocaltimeOk returns a tuple with the Localtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetLock

func (o *UpdateVMConfigSyncRequest) GetLock() string

GetLock returns the Lock field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetLockOk

func (o *UpdateVMConfigSyncRequest) GetLockOk() (*string, bool)

GetLockOk returns a tuple with the Lock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetMachine

func (o *UpdateVMConfigSyncRequest) GetMachine() string

GetMachine returns the Machine field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetMachineOk

func (o *UpdateVMConfigSyncRequest) GetMachineOk() (*string, bool)

GetMachineOk returns a tuple with the Machine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetMemory

func (o *UpdateVMConfigSyncRequest) GetMemory() int64

GetMemory returns the Memory field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetMemoryOk

func (o *UpdateVMConfigSyncRequest) GetMemoryOk() (*int64, bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetMigrateDowntime

func (o *UpdateVMConfigSyncRequest) GetMigrateDowntime() float32

GetMigrateDowntime returns the MigrateDowntime field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetMigrateDowntimeOk

func (o *UpdateVMConfigSyncRequest) GetMigrateDowntimeOk() (*float32, bool)

GetMigrateDowntimeOk returns a tuple with the MigrateDowntime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetMigrateSpeed

func (o *UpdateVMConfigSyncRequest) GetMigrateSpeed() int64

GetMigrateSpeed returns the MigrateSpeed field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetMigrateSpeedOk

func (o *UpdateVMConfigSyncRequest) GetMigrateSpeedOk() (*int64, bool)

GetMigrateSpeedOk returns a tuple with the MigrateSpeed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetName

func (o *UpdateVMConfigSyncRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNameOk

func (o *UpdateVMConfigSyncRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNameserver

func (o *UpdateVMConfigSyncRequest) GetNameserver() string

GetNameserver returns the Nameserver field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNameserverOk

func (o *UpdateVMConfigSyncRequest) GetNameserverOk() (*string, bool)

GetNameserverOk returns a tuple with the Nameserver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet0

func (o *UpdateVMConfigSyncRequest) GetNet0() string

GetNet0 returns the Net0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet0Ok

func (o *UpdateVMConfigSyncRequest) GetNet0Ok() (*string, bool)

GetNet0Ok returns a tuple with the Net0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet1

func (o *UpdateVMConfigSyncRequest) GetNet1() string

GetNet1 returns the Net1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet10

func (o *UpdateVMConfigSyncRequest) GetNet10() string

GetNet10 returns the Net10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet10Ok

func (o *UpdateVMConfigSyncRequest) GetNet10Ok() (*string, bool)

GetNet10Ok returns a tuple with the Net10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet11

func (o *UpdateVMConfigSyncRequest) GetNet11() string

GetNet11 returns the Net11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet11Ok

func (o *UpdateVMConfigSyncRequest) GetNet11Ok() (*string, bool)

GetNet11Ok returns a tuple with the Net11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet12

func (o *UpdateVMConfigSyncRequest) GetNet12() string

GetNet12 returns the Net12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet12Ok

func (o *UpdateVMConfigSyncRequest) GetNet12Ok() (*string, bool)

GetNet12Ok returns a tuple with the Net12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet13

func (o *UpdateVMConfigSyncRequest) GetNet13() string

GetNet13 returns the Net13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet13Ok

func (o *UpdateVMConfigSyncRequest) GetNet13Ok() (*string, bool)

GetNet13Ok returns a tuple with the Net13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet14

func (o *UpdateVMConfigSyncRequest) GetNet14() string

GetNet14 returns the Net14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet14Ok

func (o *UpdateVMConfigSyncRequest) GetNet14Ok() (*string, bool)

GetNet14Ok returns a tuple with the Net14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet15

func (o *UpdateVMConfigSyncRequest) GetNet15() string

GetNet15 returns the Net15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet15Ok

func (o *UpdateVMConfigSyncRequest) GetNet15Ok() (*string, bool)

GetNet15Ok returns a tuple with the Net15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet16

func (o *UpdateVMConfigSyncRequest) GetNet16() string

GetNet16 returns the Net16 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet16Ok

func (o *UpdateVMConfigSyncRequest) GetNet16Ok() (*string, bool)

GetNet16Ok returns a tuple with the Net16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet17

func (o *UpdateVMConfigSyncRequest) GetNet17() string

GetNet17 returns the Net17 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet17Ok

func (o *UpdateVMConfigSyncRequest) GetNet17Ok() (*string, bool)

GetNet17Ok returns a tuple with the Net17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet18

func (o *UpdateVMConfigSyncRequest) GetNet18() string

GetNet18 returns the Net18 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet18Ok

func (o *UpdateVMConfigSyncRequest) GetNet18Ok() (*string, bool)

GetNet18Ok returns a tuple with the Net18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet19

func (o *UpdateVMConfigSyncRequest) GetNet19() string

GetNet19 returns the Net19 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet19Ok

func (o *UpdateVMConfigSyncRequest) GetNet19Ok() (*string, bool)

GetNet19Ok returns a tuple with the Net19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet1Ok

func (o *UpdateVMConfigSyncRequest) GetNet1Ok() (*string, bool)

GetNet1Ok returns a tuple with the Net1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet2

func (o *UpdateVMConfigSyncRequest) GetNet2() string

GetNet2 returns the Net2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet20

func (o *UpdateVMConfigSyncRequest) GetNet20() string

GetNet20 returns the Net20 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet20Ok

func (o *UpdateVMConfigSyncRequest) GetNet20Ok() (*string, bool)

GetNet20Ok returns a tuple with the Net20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet21

func (o *UpdateVMConfigSyncRequest) GetNet21() string

GetNet21 returns the Net21 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet21Ok

func (o *UpdateVMConfigSyncRequest) GetNet21Ok() (*string, bool)

GetNet21Ok returns a tuple with the Net21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet22

func (o *UpdateVMConfigSyncRequest) GetNet22() string

GetNet22 returns the Net22 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet22Ok

func (o *UpdateVMConfigSyncRequest) GetNet22Ok() (*string, bool)

GetNet22Ok returns a tuple with the Net22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet23

func (o *UpdateVMConfigSyncRequest) GetNet23() string

GetNet23 returns the Net23 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet23Ok

func (o *UpdateVMConfigSyncRequest) GetNet23Ok() (*string, bool)

GetNet23Ok returns a tuple with the Net23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet24

func (o *UpdateVMConfigSyncRequest) GetNet24() string

GetNet24 returns the Net24 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet24Ok

func (o *UpdateVMConfigSyncRequest) GetNet24Ok() (*string, bool)

GetNet24Ok returns a tuple with the Net24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet25

func (o *UpdateVMConfigSyncRequest) GetNet25() string

GetNet25 returns the Net25 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet25Ok

func (o *UpdateVMConfigSyncRequest) GetNet25Ok() (*string, bool)

GetNet25Ok returns a tuple with the Net25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet26

func (o *UpdateVMConfigSyncRequest) GetNet26() string

GetNet26 returns the Net26 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet26Ok

func (o *UpdateVMConfigSyncRequest) GetNet26Ok() (*string, bool)

GetNet26Ok returns a tuple with the Net26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet27

func (o *UpdateVMConfigSyncRequest) GetNet27() string

GetNet27 returns the Net27 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet27Ok

func (o *UpdateVMConfigSyncRequest) GetNet27Ok() (*string, bool)

GetNet27Ok returns a tuple with the Net27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet28

func (o *UpdateVMConfigSyncRequest) GetNet28() string

GetNet28 returns the Net28 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet28Ok

func (o *UpdateVMConfigSyncRequest) GetNet28Ok() (*string, bool)

GetNet28Ok returns a tuple with the Net28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet29

func (o *UpdateVMConfigSyncRequest) GetNet29() string

GetNet29 returns the Net29 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet29Ok

func (o *UpdateVMConfigSyncRequest) GetNet29Ok() (*string, bool)

GetNet29Ok returns a tuple with the Net29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet2Ok

func (o *UpdateVMConfigSyncRequest) GetNet2Ok() (*string, bool)

GetNet2Ok returns a tuple with the Net2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet3

func (o *UpdateVMConfigSyncRequest) GetNet3() string

GetNet3 returns the Net3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet30

func (o *UpdateVMConfigSyncRequest) GetNet30() string

GetNet30 returns the Net30 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet30Ok

func (o *UpdateVMConfigSyncRequest) GetNet30Ok() (*string, bool)

GetNet30Ok returns a tuple with the Net30 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet31

func (o *UpdateVMConfigSyncRequest) GetNet31() string

GetNet31 returns the Net31 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet31Ok

func (o *UpdateVMConfigSyncRequest) GetNet31Ok() (*string, bool)

GetNet31Ok returns a tuple with the Net31 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet3Ok

func (o *UpdateVMConfigSyncRequest) GetNet3Ok() (*string, bool)

GetNet3Ok returns a tuple with the Net3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet4

func (o *UpdateVMConfigSyncRequest) GetNet4() string

GetNet4 returns the Net4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet4Ok

func (o *UpdateVMConfigSyncRequest) GetNet4Ok() (*string, bool)

GetNet4Ok returns a tuple with the Net4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet5

func (o *UpdateVMConfigSyncRequest) GetNet5() string

GetNet5 returns the Net5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet5Ok

func (o *UpdateVMConfigSyncRequest) GetNet5Ok() (*string, bool)

GetNet5Ok returns a tuple with the Net5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet6

func (o *UpdateVMConfigSyncRequest) GetNet6() string

GetNet6 returns the Net6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet6Ok

func (o *UpdateVMConfigSyncRequest) GetNet6Ok() (*string, bool)

GetNet6Ok returns a tuple with the Net6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet7

func (o *UpdateVMConfigSyncRequest) GetNet7() string

GetNet7 returns the Net7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet7Ok

func (o *UpdateVMConfigSyncRequest) GetNet7Ok() (*string, bool)

GetNet7Ok returns a tuple with the Net7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet8

func (o *UpdateVMConfigSyncRequest) GetNet8() string

GetNet8 returns the Net8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet8Ok

func (o *UpdateVMConfigSyncRequest) GetNet8Ok() (*string, bool)

GetNet8Ok returns a tuple with the Net8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNet9

func (o *UpdateVMConfigSyncRequest) GetNet9() string

GetNet9 returns the Net9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNet9Ok

func (o *UpdateVMConfigSyncRequest) GetNet9Ok() (*string, bool)

GetNet9Ok returns a tuple with the Net9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma

func (o *UpdateVMConfigSyncRequest) GetNuma() int32

GetNuma returns the Numa field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma0

func (o *UpdateVMConfigSyncRequest) GetNuma0() string

GetNuma0 returns the Numa0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma0Ok

func (o *UpdateVMConfigSyncRequest) GetNuma0Ok() (*string, bool)

GetNuma0Ok returns a tuple with the Numa0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma1

func (o *UpdateVMConfigSyncRequest) GetNuma1() string

GetNuma1 returns the Numa1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma10

func (o *UpdateVMConfigSyncRequest) GetNuma10() string

GetNuma10 returns the Numa10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma10Ok

func (o *UpdateVMConfigSyncRequest) GetNuma10Ok() (*string, bool)

GetNuma10Ok returns a tuple with the Numa10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma11

func (o *UpdateVMConfigSyncRequest) GetNuma11() string

GetNuma11 returns the Numa11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma11Ok

func (o *UpdateVMConfigSyncRequest) GetNuma11Ok() (*string, bool)

GetNuma11Ok returns a tuple with the Numa11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma12

func (o *UpdateVMConfigSyncRequest) GetNuma12() string

GetNuma12 returns the Numa12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma12Ok

func (o *UpdateVMConfigSyncRequest) GetNuma12Ok() (*string, bool)

GetNuma12Ok returns a tuple with the Numa12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma13

func (o *UpdateVMConfigSyncRequest) GetNuma13() string

GetNuma13 returns the Numa13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma13Ok

func (o *UpdateVMConfigSyncRequest) GetNuma13Ok() (*string, bool)

GetNuma13Ok returns a tuple with the Numa13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma14

func (o *UpdateVMConfigSyncRequest) GetNuma14() string

GetNuma14 returns the Numa14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma14Ok

func (o *UpdateVMConfigSyncRequest) GetNuma14Ok() (*string, bool)

GetNuma14Ok returns a tuple with the Numa14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma15

func (o *UpdateVMConfigSyncRequest) GetNuma15() string

GetNuma15 returns the Numa15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma15Ok

func (o *UpdateVMConfigSyncRequest) GetNuma15Ok() (*string, bool)

GetNuma15Ok returns a tuple with the Numa15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma16

func (o *UpdateVMConfigSyncRequest) GetNuma16() string

GetNuma16 returns the Numa16 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma16Ok

func (o *UpdateVMConfigSyncRequest) GetNuma16Ok() (*string, bool)

GetNuma16Ok returns a tuple with the Numa16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma17

func (o *UpdateVMConfigSyncRequest) GetNuma17() string

GetNuma17 returns the Numa17 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma17Ok

func (o *UpdateVMConfigSyncRequest) GetNuma17Ok() (*string, bool)

GetNuma17Ok returns a tuple with the Numa17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma18

func (o *UpdateVMConfigSyncRequest) GetNuma18() string

GetNuma18 returns the Numa18 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma18Ok

func (o *UpdateVMConfigSyncRequest) GetNuma18Ok() (*string, bool)

GetNuma18Ok returns a tuple with the Numa18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma19

func (o *UpdateVMConfigSyncRequest) GetNuma19() string

GetNuma19 returns the Numa19 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma19Ok

func (o *UpdateVMConfigSyncRequest) GetNuma19Ok() (*string, bool)

GetNuma19Ok returns a tuple with the Numa19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma1Ok

func (o *UpdateVMConfigSyncRequest) GetNuma1Ok() (*string, bool)

GetNuma1Ok returns a tuple with the Numa1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma2

func (o *UpdateVMConfigSyncRequest) GetNuma2() string

GetNuma2 returns the Numa2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma20

func (o *UpdateVMConfigSyncRequest) GetNuma20() string

GetNuma20 returns the Numa20 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma20Ok

func (o *UpdateVMConfigSyncRequest) GetNuma20Ok() (*string, bool)

GetNuma20Ok returns a tuple with the Numa20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma21

func (o *UpdateVMConfigSyncRequest) GetNuma21() string

GetNuma21 returns the Numa21 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma21Ok

func (o *UpdateVMConfigSyncRequest) GetNuma21Ok() (*string, bool)

GetNuma21Ok returns a tuple with the Numa21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma22

func (o *UpdateVMConfigSyncRequest) GetNuma22() string

GetNuma22 returns the Numa22 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma22Ok

func (o *UpdateVMConfigSyncRequest) GetNuma22Ok() (*string, bool)

GetNuma22Ok returns a tuple with the Numa22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma23

func (o *UpdateVMConfigSyncRequest) GetNuma23() string

GetNuma23 returns the Numa23 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma23Ok

func (o *UpdateVMConfigSyncRequest) GetNuma23Ok() (*string, bool)

GetNuma23Ok returns a tuple with the Numa23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma24

func (o *UpdateVMConfigSyncRequest) GetNuma24() string

GetNuma24 returns the Numa24 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma24Ok

func (o *UpdateVMConfigSyncRequest) GetNuma24Ok() (*string, bool)

GetNuma24Ok returns a tuple with the Numa24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma25

func (o *UpdateVMConfigSyncRequest) GetNuma25() string

GetNuma25 returns the Numa25 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma25Ok

func (o *UpdateVMConfigSyncRequest) GetNuma25Ok() (*string, bool)

GetNuma25Ok returns a tuple with the Numa25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma26

func (o *UpdateVMConfigSyncRequest) GetNuma26() string

GetNuma26 returns the Numa26 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma26Ok

func (o *UpdateVMConfigSyncRequest) GetNuma26Ok() (*string, bool)

GetNuma26Ok returns a tuple with the Numa26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma27

func (o *UpdateVMConfigSyncRequest) GetNuma27() string

GetNuma27 returns the Numa27 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma27Ok

func (o *UpdateVMConfigSyncRequest) GetNuma27Ok() (*string, bool)

GetNuma27Ok returns a tuple with the Numa27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma28

func (o *UpdateVMConfigSyncRequest) GetNuma28() string

GetNuma28 returns the Numa28 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma28Ok

func (o *UpdateVMConfigSyncRequest) GetNuma28Ok() (*string, bool)

GetNuma28Ok returns a tuple with the Numa28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma29

func (o *UpdateVMConfigSyncRequest) GetNuma29() string

GetNuma29 returns the Numa29 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma29Ok

func (o *UpdateVMConfigSyncRequest) GetNuma29Ok() (*string, bool)

GetNuma29Ok returns a tuple with the Numa29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma2Ok

func (o *UpdateVMConfigSyncRequest) GetNuma2Ok() (*string, bool)

GetNuma2Ok returns a tuple with the Numa2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma3

func (o *UpdateVMConfigSyncRequest) GetNuma3() string

GetNuma3 returns the Numa3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma3Ok

func (o *UpdateVMConfigSyncRequest) GetNuma3Ok() (*string, bool)

GetNuma3Ok returns a tuple with the Numa3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma4

func (o *UpdateVMConfigSyncRequest) GetNuma4() string

GetNuma4 returns the Numa4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma4Ok

func (o *UpdateVMConfigSyncRequest) GetNuma4Ok() (*string, bool)

GetNuma4Ok returns a tuple with the Numa4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma5

func (o *UpdateVMConfigSyncRequest) GetNuma5() string

GetNuma5 returns the Numa5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma5Ok

func (o *UpdateVMConfigSyncRequest) GetNuma5Ok() (*string, bool)

GetNuma5Ok returns a tuple with the Numa5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma6

func (o *UpdateVMConfigSyncRequest) GetNuma6() string

GetNuma6 returns the Numa6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma6Ok

func (o *UpdateVMConfigSyncRequest) GetNuma6Ok() (*string, bool)

GetNuma6Ok returns a tuple with the Numa6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma7

func (o *UpdateVMConfigSyncRequest) GetNuma7() string

GetNuma7 returns the Numa7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma7Ok

func (o *UpdateVMConfigSyncRequest) GetNuma7Ok() (*string, bool)

GetNuma7Ok returns a tuple with the Numa7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma8

func (o *UpdateVMConfigSyncRequest) GetNuma8() string

GetNuma8 returns the Numa8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma8Ok

func (o *UpdateVMConfigSyncRequest) GetNuma8Ok() (*string, bool)

GetNuma8Ok returns a tuple with the Numa8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNuma9

func (o *UpdateVMConfigSyncRequest) GetNuma9() string

GetNuma9 returns the Numa9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetNuma9Ok

func (o *UpdateVMConfigSyncRequest) GetNuma9Ok() (*string, bool)

GetNuma9Ok returns a tuple with the Numa9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetNumaOk

func (o *UpdateVMConfigSyncRequest) GetNumaOk() (*int32, bool)

GetNumaOk returns a tuple with the Numa field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetOnboot

func (o *UpdateVMConfigSyncRequest) GetOnboot() int32

GetOnboot returns the Onboot field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetOnbootOk

func (o *UpdateVMConfigSyncRequest) GetOnbootOk() (*int32, bool)

GetOnbootOk returns a tuple with the Onboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetOstype

func (o *UpdateVMConfigSyncRequest) GetOstype() string

GetOstype returns the Ostype field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetOstypeOk

func (o *UpdateVMConfigSyncRequest) GetOstypeOk() (*string, bool)

GetOstypeOk returns a tuple with the Ostype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetParallel0

func (o *UpdateVMConfigSyncRequest) GetParallel0() string

GetParallel0 returns the Parallel0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetParallel0Ok

func (o *UpdateVMConfigSyncRequest) GetParallel0Ok() (*string, bool)

GetParallel0Ok returns a tuple with the Parallel0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetParallel1

func (o *UpdateVMConfigSyncRequest) GetParallel1() string

GetParallel1 returns the Parallel1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetParallel1Ok

func (o *UpdateVMConfigSyncRequest) GetParallel1Ok() (*string, bool)

GetParallel1Ok returns a tuple with the Parallel1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetParallel2

func (o *UpdateVMConfigSyncRequest) GetParallel2() string

GetParallel2 returns the Parallel2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetParallel2Ok

func (o *UpdateVMConfigSyncRequest) GetParallel2Ok() (*string, bool)

GetParallel2Ok returns a tuple with the Parallel2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetParallel3

func (o *UpdateVMConfigSyncRequest) GetParallel3() string

GetParallel3 returns the Parallel3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetParallel3Ok

func (o *UpdateVMConfigSyncRequest) GetParallel3Ok() (*string, bool)

GetParallel3Ok returns a tuple with the Parallel3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetProtection

func (o *UpdateVMConfigSyncRequest) GetProtection() int32

GetProtection returns the Protection field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetProtectionOk

func (o *UpdateVMConfigSyncRequest) GetProtectionOk() (*int32, bool)

GetProtectionOk returns a tuple with the Protection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetReboot

func (o *UpdateVMConfigSyncRequest) GetReboot() int32

GetReboot returns the Reboot field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetRebootOk

func (o *UpdateVMConfigSyncRequest) GetRebootOk() (*int32, bool)

GetRebootOk returns a tuple with the Reboot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetRevert

func (o *UpdateVMConfigSyncRequest) GetRevert() string

GetRevert returns the Revert field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetRevertOk

func (o *UpdateVMConfigSyncRequest) GetRevertOk() (*string, bool)

GetRevertOk returns a tuple with the Revert field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetRng0

func (o *UpdateVMConfigSyncRequest) GetRng0() string

GetRng0 returns the Rng0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetRng0Ok

func (o *UpdateVMConfigSyncRequest) GetRng0Ok() (*string, bool)

GetRng0Ok returns a tuple with the Rng0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSata0

func (o *UpdateVMConfigSyncRequest) GetSata0() string

GetSata0 returns the Sata0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSata0Ok

func (o *UpdateVMConfigSyncRequest) GetSata0Ok() (*string, bool)

GetSata0Ok returns a tuple with the Sata0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSata1

func (o *UpdateVMConfigSyncRequest) GetSata1() string

GetSata1 returns the Sata1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSata1Ok

func (o *UpdateVMConfigSyncRequest) GetSata1Ok() (*string, bool)

GetSata1Ok returns a tuple with the Sata1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSata2

func (o *UpdateVMConfigSyncRequest) GetSata2() string

GetSata2 returns the Sata2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSata2Ok

func (o *UpdateVMConfigSyncRequest) GetSata2Ok() (*string, bool)

GetSata2Ok returns a tuple with the Sata2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSata3

func (o *UpdateVMConfigSyncRequest) GetSata3() string

GetSata3 returns the Sata3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSata3Ok

func (o *UpdateVMConfigSyncRequest) GetSata3Ok() (*string, bool)

GetSata3Ok returns a tuple with the Sata3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSata4

func (o *UpdateVMConfigSyncRequest) GetSata4() string

GetSata4 returns the Sata4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSata4Ok

func (o *UpdateVMConfigSyncRequest) GetSata4Ok() (*string, bool)

GetSata4Ok returns a tuple with the Sata4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSata5

func (o *UpdateVMConfigSyncRequest) GetSata5() string

GetSata5 returns the Sata5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSata5Ok

func (o *UpdateVMConfigSyncRequest) GetSata5Ok() (*string, bool)

GetSata5Ok returns a tuple with the Sata5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi0

func (o *UpdateVMConfigSyncRequest) GetScsi0() string

GetScsi0 returns the Scsi0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi0Ok

func (o *UpdateVMConfigSyncRequest) GetScsi0Ok() (*string, bool)

GetScsi0Ok returns a tuple with the Scsi0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi1

func (o *UpdateVMConfigSyncRequest) GetScsi1() string

GetScsi1 returns the Scsi1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi10

func (o *UpdateVMConfigSyncRequest) GetScsi10() string

GetScsi10 returns the Scsi10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi10Ok

func (o *UpdateVMConfigSyncRequest) GetScsi10Ok() (*string, bool)

GetScsi10Ok returns a tuple with the Scsi10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi11

func (o *UpdateVMConfigSyncRequest) GetScsi11() string

GetScsi11 returns the Scsi11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi11Ok

func (o *UpdateVMConfigSyncRequest) GetScsi11Ok() (*string, bool)

GetScsi11Ok returns a tuple with the Scsi11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi12

func (o *UpdateVMConfigSyncRequest) GetScsi12() string

GetScsi12 returns the Scsi12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi12Ok

func (o *UpdateVMConfigSyncRequest) GetScsi12Ok() (*string, bool)

GetScsi12Ok returns a tuple with the Scsi12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi13

func (o *UpdateVMConfigSyncRequest) GetScsi13() string

GetScsi13 returns the Scsi13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi13Ok

func (o *UpdateVMConfigSyncRequest) GetScsi13Ok() (*string, bool)

GetScsi13Ok returns a tuple with the Scsi13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi14

func (o *UpdateVMConfigSyncRequest) GetScsi14() string

GetScsi14 returns the Scsi14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi14Ok

func (o *UpdateVMConfigSyncRequest) GetScsi14Ok() (*string, bool)

GetScsi14Ok returns a tuple with the Scsi14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi15

func (o *UpdateVMConfigSyncRequest) GetScsi15() string

GetScsi15 returns the Scsi15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi15Ok

func (o *UpdateVMConfigSyncRequest) GetScsi15Ok() (*string, bool)

GetScsi15Ok returns a tuple with the Scsi15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi16

func (o *UpdateVMConfigSyncRequest) GetScsi16() string

GetScsi16 returns the Scsi16 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi16Ok

func (o *UpdateVMConfigSyncRequest) GetScsi16Ok() (*string, bool)

GetScsi16Ok returns a tuple with the Scsi16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi17

func (o *UpdateVMConfigSyncRequest) GetScsi17() string

GetScsi17 returns the Scsi17 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi17Ok

func (o *UpdateVMConfigSyncRequest) GetScsi17Ok() (*string, bool)

GetScsi17Ok returns a tuple with the Scsi17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi18

func (o *UpdateVMConfigSyncRequest) GetScsi18() string

GetScsi18 returns the Scsi18 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi18Ok

func (o *UpdateVMConfigSyncRequest) GetScsi18Ok() (*string, bool)

GetScsi18Ok returns a tuple with the Scsi18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi19

func (o *UpdateVMConfigSyncRequest) GetScsi19() string

GetScsi19 returns the Scsi19 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi19Ok

func (o *UpdateVMConfigSyncRequest) GetScsi19Ok() (*string, bool)

GetScsi19Ok returns a tuple with the Scsi19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi1Ok

func (o *UpdateVMConfigSyncRequest) GetScsi1Ok() (*string, bool)

GetScsi1Ok returns a tuple with the Scsi1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi2

func (o *UpdateVMConfigSyncRequest) GetScsi2() string

GetScsi2 returns the Scsi2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi20

func (o *UpdateVMConfigSyncRequest) GetScsi20() string

GetScsi20 returns the Scsi20 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi20Ok

func (o *UpdateVMConfigSyncRequest) GetScsi20Ok() (*string, bool)

GetScsi20Ok returns a tuple with the Scsi20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi21

func (o *UpdateVMConfigSyncRequest) GetScsi21() string

GetScsi21 returns the Scsi21 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi21Ok

func (o *UpdateVMConfigSyncRequest) GetScsi21Ok() (*string, bool)

GetScsi21Ok returns a tuple with the Scsi21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi22

func (o *UpdateVMConfigSyncRequest) GetScsi22() string

GetScsi22 returns the Scsi22 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi22Ok

func (o *UpdateVMConfigSyncRequest) GetScsi22Ok() (*string, bool)

GetScsi22Ok returns a tuple with the Scsi22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi23

func (o *UpdateVMConfigSyncRequest) GetScsi23() string

GetScsi23 returns the Scsi23 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi23Ok

func (o *UpdateVMConfigSyncRequest) GetScsi23Ok() (*string, bool)

GetScsi23Ok returns a tuple with the Scsi23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi24

func (o *UpdateVMConfigSyncRequest) GetScsi24() string

GetScsi24 returns the Scsi24 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi24Ok

func (o *UpdateVMConfigSyncRequest) GetScsi24Ok() (*string, bool)

GetScsi24Ok returns a tuple with the Scsi24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi25

func (o *UpdateVMConfigSyncRequest) GetScsi25() string

GetScsi25 returns the Scsi25 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi25Ok

func (o *UpdateVMConfigSyncRequest) GetScsi25Ok() (*string, bool)

GetScsi25Ok returns a tuple with the Scsi25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi26

func (o *UpdateVMConfigSyncRequest) GetScsi26() string

GetScsi26 returns the Scsi26 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi26Ok

func (o *UpdateVMConfigSyncRequest) GetScsi26Ok() (*string, bool)

GetScsi26Ok returns a tuple with the Scsi26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi27

func (o *UpdateVMConfigSyncRequest) GetScsi27() string

GetScsi27 returns the Scsi27 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi27Ok

func (o *UpdateVMConfigSyncRequest) GetScsi27Ok() (*string, bool)

GetScsi27Ok returns a tuple with the Scsi27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi28

func (o *UpdateVMConfigSyncRequest) GetScsi28() string

GetScsi28 returns the Scsi28 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi28Ok

func (o *UpdateVMConfigSyncRequest) GetScsi28Ok() (*string, bool)

GetScsi28Ok returns a tuple with the Scsi28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi29

func (o *UpdateVMConfigSyncRequest) GetScsi29() string

GetScsi29 returns the Scsi29 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi29Ok

func (o *UpdateVMConfigSyncRequest) GetScsi29Ok() (*string, bool)

GetScsi29Ok returns a tuple with the Scsi29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi2Ok

func (o *UpdateVMConfigSyncRequest) GetScsi2Ok() (*string, bool)

GetScsi2Ok returns a tuple with the Scsi2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi3

func (o *UpdateVMConfigSyncRequest) GetScsi3() string

GetScsi3 returns the Scsi3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi3Ok

func (o *UpdateVMConfigSyncRequest) GetScsi3Ok() (*string, bool)

GetScsi3Ok returns a tuple with the Scsi3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi4

func (o *UpdateVMConfigSyncRequest) GetScsi4() string

GetScsi4 returns the Scsi4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi4Ok

func (o *UpdateVMConfigSyncRequest) GetScsi4Ok() (*string, bool)

GetScsi4Ok returns a tuple with the Scsi4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi5

func (o *UpdateVMConfigSyncRequest) GetScsi5() string

GetScsi5 returns the Scsi5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi5Ok

func (o *UpdateVMConfigSyncRequest) GetScsi5Ok() (*string, bool)

GetScsi5Ok returns a tuple with the Scsi5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi6

func (o *UpdateVMConfigSyncRequest) GetScsi6() string

GetScsi6 returns the Scsi6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi6Ok

func (o *UpdateVMConfigSyncRequest) GetScsi6Ok() (*string, bool)

GetScsi6Ok returns a tuple with the Scsi6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi7

func (o *UpdateVMConfigSyncRequest) GetScsi7() string

GetScsi7 returns the Scsi7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi7Ok

func (o *UpdateVMConfigSyncRequest) GetScsi7Ok() (*string, bool)

GetScsi7Ok returns a tuple with the Scsi7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi8

func (o *UpdateVMConfigSyncRequest) GetScsi8() string

GetScsi8 returns the Scsi8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi8Ok

func (o *UpdateVMConfigSyncRequest) GetScsi8Ok() (*string, bool)

GetScsi8Ok returns a tuple with the Scsi8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsi9

func (o *UpdateVMConfigSyncRequest) GetScsi9() string

GetScsi9 returns the Scsi9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsi9Ok

func (o *UpdateVMConfigSyncRequest) GetScsi9Ok() (*string, bool)

GetScsi9Ok returns a tuple with the Scsi9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetScsihw

func (o *UpdateVMConfigSyncRequest) GetScsihw() string

GetScsihw returns the Scsihw field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetScsihwOk

func (o *UpdateVMConfigSyncRequest) GetScsihwOk() (*string, bool)

GetScsihwOk returns a tuple with the Scsihw field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSearchdomain

func (o *UpdateVMConfigSyncRequest) GetSearchdomain() string

GetSearchdomain returns the Searchdomain field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSearchdomainOk

func (o *UpdateVMConfigSyncRequest) GetSearchdomainOk() (*string, bool)

GetSearchdomainOk returns a tuple with the Searchdomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSerial0

func (o *UpdateVMConfigSyncRequest) GetSerial0() string

GetSerial0 returns the Serial0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSerial0Ok

func (o *UpdateVMConfigSyncRequest) GetSerial0Ok() (*string, bool)

GetSerial0Ok returns a tuple with the Serial0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSerial1

func (o *UpdateVMConfigSyncRequest) GetSerial1() string

GetSerial1 returns the Serial1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSerial1Ok

func (o *UpdateVMConfigSyncRequest) GetSerial1Ok() (*string, bool)

GetSerial1Ok returns a tuple with the Serial1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSerial2

func (o *UpdateVMConfigSyncRequest) GetSerial2() string

GetSerial2 returns the Serial2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSerial2Ok

func (o *UpdateVMConfigSyncRequest) GetSerial2Ok() (*string, bool)

GetSerial2Ok returns a tuple with the Serial2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSerial3

func (o *UpdateVMConfigSyncRequest) GetSerial3() string

GetSerial3 returns the Serial3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSerial3Ok

func (o *UpdateVMConfigSyncRequest) GetSerial3Ok() (*string, bool)

GetSerial3Ok returns a tuple with the Serial3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetShares

func (o *UpdateVMConfigSyncRequest) GetShares() int64

GetShares returns the Shares field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSharesOk

func (o *UpdateVMConfigSyncRequest) GetSharesOk() (*int64, bool)

GetSharesOk returns a tuple with the Shares field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSkiplock

func (o *UpdateVMConfigSyncRequest) GetSkiplock() int32

GetSkiplock returns the Skiplock field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSkiplockOk

func (o *UpdateVMConfigSyncRequest) GetSkiplockOk() (*int32, bool)

GetSkiplockOk returns a tuple with the Skiplock field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSmbios1

func (o *UpdateVMConfigSyncRequest) GetSmbios1() string

GetSmbios1 returns the Smbios1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSmbios1Ok

func (o *UpdateVMConfigSyncRequest) GetSmbios1Ok() (*string, bool)

GetSmbios1Ok returns a tuple with the Smbios1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSmp

func (o *UpdateVMConfigSyncRequest) GetSmp() int64

GetSmp returns the Smp field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSmpOk

func (o *UpdateVMConfigSyncRequest) GetSmpOk() (*int64, bool)

GetSmpOk returns a tuple with the Smp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSockets

func (o *UpdateVMConfigSyncRequest) GetSockets() int64

GetSockets returns the Sockets field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSocketsOk

func (o *UpdateVMConfigSyncRequest) GetSocketsOk() (*int64, bool)

GetSocketsOk returns a tuple with the Sockets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSpiceEnhancements

func (o *UpdateVMConfigSyncRequest) GetSpiceEnhancements() string

GetSpiceEnhancements returns the SpiceEnhancements field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSpiceEnhancementsOk

func (o *UpdateVMConfigSyncRequest) GetSpiceEnhancementsOk() (*string, bool)

GetSpiceEnhancementsOk returns a tuple with the SpiceEnhancements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetSshkeys

func (o *UpdateVMConfigSyncRequest) GetSshkeys() string

GetSshkeys returns the Sshkeys field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetSshkeysOk

func (o *UpdateVMConfigSyncRequest) GetSshkeysOk() (*string, bool)

GetSshkeysOk returns a tuple with the Sshkeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetStartdate

func (o *UpdateVMConfigSyncRequest) GetStartdate() string

GetStartdate returns the Startdate field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetStartdateOk

func (o *UpdateVMConfigSyncRequest) GetStartdateOk() (*string, bool)

GetStartdateOk returns a tuple with the Startdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetStartup

func (o *UpdateVMConfigSyncRequest) GetStartup() string

GetStartup returns the Startup field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetStartupOk

func (o *UpdateVMConfigSyncRequest) GetStartupOk() (*string, bool)

GetStartupOk returns a tuple with the Startup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetTablet

func (o *UpdateVMConfigSyncRequest) GetTablet() int32

GetTablet returns the Tablet field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetTabletOk

func (o *UpdateVMConfigSyncRequest) GetTabletOk() (*int32, bool)

GetTabletOk returns a tuple with the Tablet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetTags

func (o *UpdateVMConfigSyncRequest) GetTags() string

GetTags returns the Tags field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetTagsOk

func (o *UpdateVMConfigSyncRequest) GetTagsOk() (*string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetTdf

func (o *UpdateVMConfigSyncRequest) GetTdf() int32

GetTdf returns the Tdf field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetTdfOk

func (o *UpdateVMConfigSyncRequest) GetTdfOk() (*int32, bool)

GetTdfOk returns a tuple with the Tdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetTemplate

func (o *UpdateVMConfigSyncRequest) GetTemplate() int32

GetTemplate returns the Template field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetTemplateOk

func (o *UpdateVMConfigSyncRequest) GetTemplateOk() (*int32, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetTpmstate0

func (o *UpdateVMConfigSyncRequest) GetTpmstate0() string

GetTpmstate0 returns the Tpmstate0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetTpmstate0Ok

func (o *UpdateVMConfigSyncRequest) GetTpmstate0Ok() (*string, bool)

GetTpmstate0Ok returns a tuple with the Tpmstate0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused0

func (o *UpdateVMConfigSyncRequest) GetUnused0() string

GetUnused0 returns the Unused0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused0Ok

func (o *UpdateVMConfigSyncRequest) GetUnused0Ok() (*string, bool)

GetUnused0Ok returns a tuple with the Unused0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused1

func (o *UpdateVMConfigSyncRequest) GetUnused1() string

GetUnused1 returns the Unused1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused10

func (o *UpdateVMConfigSyncRequest) GetUnused10() string

GetUnused10 returns the Unused10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused10Ok

func (o *UpdateVMConfigSyncRequest) GetUnused10Ok() (*string, bool)

GetUnused10Ok returns a tuple with the Unused10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused11

func (o *UpdateVMConfigSyncRequest) GetUnused11() string

GetUnused11 returns the Unused11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused11Ok

func (o *UpdateVMConfigSyncRequest) GetUnused11Ok() (*string, bool)

GetUnused11Ok returns a tuple with the Unused11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused12

func (o *UpdateVMConfigSyncRequest) GetUnused12() string

GetUnused12 returns the Unused12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused12Ok

func (o *UpdateVMConfigSyncRequest) GetUnused12Ok() (*string, bool)

GetUnused12Ok returns a tuple with the Unused12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused13

func (o *UpdateVMConfigSyncRequest) GetUnused13() string

GetUnused13 returns the Unused13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused13Ok

func (o *UpdateVMConfigSyncRequest) GetUnused13Ok() (*string, bool)

GetUnused13Ok returns a tuple with the Unused13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused14

func (o *UpdateVMConfigSyncRequest) GetUnused14() string

GetUnused14 returns the Unused14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused14Ok

func (o *UpdateVMConfigSyncRequest) GetUnused14Ok() (*string, bool)

GetUnused14Ok returns a tuple with the Unused14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused15

func (o *UpdateVMConfigSyncRequest) GetUnused15() string

GetUnused15 returns the Unused15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused15Ok

func (o *UpdateVMConfigSyncRequest) GetUnused15Ok() (*string, bool)

GetUnused15Ok returns a tuple with the Unused15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused16

func (o *UpdateVMConfigSyncRequest) GetUnused16() string

GetUnused16 returns the Unused16 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused16Ok

func (o *UpdateVMConfigSyncRequest) GetUnused16Ok() (*string, bool)

GetUnused16Ok returns a tuple with the Unused16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused17

func (o *UpdateVMConfigSyncRequest) GetUnused17() string

GetUnused17 returns the Unused17 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused17Ok

func (o *UpdateVMConfigSyncRequest) GetUnused17Ok() (*string, bool)

GetUnused17Ok returns a tuple with the Unused17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused18

func (o *UpdateVMConfigSyncRequest) GetUnused18() string

GetUnused18 returns the Unused18 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused18Ok

func (o *UpdateVMConfigSyncRequest) GetUnused18Ok() (*string, bool)

GetUnused18Ok returns a tuple with the Unused18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused19

func (o *UpdateVMConfigSyncRequest) GetUnused19() string

GetUnused19 returns the Unused19 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused19Ok

func (o *UpdateVMConfigSyncRequest) GetUnused19Ok() (*string, bool)

GetUnused19Ok returns a tuple with the Unused19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused1Ok

func (o *UpdateVMConfigSyncRequest) GetUnused1Ok() (*string, bool)

GetUnused1Ok returns a tuple with the Unused1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused2

func (o *UpdateVMConfigSyncRequest) GetUnused2() string

GetUnused2 returns the Unused2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused20

func (o *UpdateVMConfigSyncRequest) GetUnused20() string

GetUnused20 returns the Unused20 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused20Ok

func (o *UpdateVMConfigSyncRequest) GetUnused20Ok() (*string, bool)

GetUnused20Ok returns a tuple with the Unused20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused21

func (o *UpdateVMConfigSyncRequest) GetUnused21() string

GetUnused21 returns the Unused21 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused21Ok

func (o *UpdateVMConfigSyncRequest) GetUnused21Ok() (*string, bool)

GetUnused21Ok returns a tuple with the Unused21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused22

func (o *UpdateVMConfigSyncRequest) GetUnused22() string

GetUnused22 returns the Unused22 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused22Ok

func (o *UpdateVMConfigSyncRequest) GetUnused22Ok() (*string, bool)

GetUnused22Ok returns a tuple with the Unused22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused23

func (o *UpdateVMConfigSyncRequest) GetUnused23() string

GetUnused23 returns the Unused23 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused23Ok

func (o *UpdateVMConfigSyncRequest) GetUnused23Ok() (*string, bool)

GetUnused23Ok returns a tuple with the Unused23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused24

func (o *UpdateVMConfigSyncRequest) GetUnused24() string

GetUnused24 returns the Unused24 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused24Ok

func (o *UpdateVMConfigSyncRequest) GetUnused24Ok() (*string, bool)

GetUnused24Ok returns a tuple with the Unused24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused25

func (o *UpdateVMConfigSyncRequest) GetUnused25() string

GetUnused25 returns the Unused25 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused25Ok

func (o *UpdateVMConfigSyncRequest) GetUnused25Ok() (*string, bool)

GetUnused25Ok returns a tuple with the Unused25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused26

func (o *UpdateVMConfigSyncRequest) GetUnused26() string

GetUnused26 returns the Unused26 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused26Ok

func (o *UpdateVMConfigSyncRequest) GetUnused26Ok() (*string, bool)

GetUnused26Ok returns a tuple with the Unused26 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused27

func (o *UpdateVMConfigSyncRequest) GetUnused27() string

GetUnused27 returns the Unused27 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused27Ok

func (o *UpdateVMConfigSyncRequest) GetUnused27Ok() (*string, bool)

GetUnused27Ok returns a tuple with the Unused27 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused28

func (o *UpdateVMConfigSyncRequest) GetUnused28() string

GetUnused28 returns the Unused28 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused28Ok

func (o *UpdateVMConfigSyncRequest) GetUnused28Ok() (*string, bool)

GetUnused28Ok returns a tuple with the Unused28 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused29

func (o *UpdateVMConfigSyncRequest) GetUnused29() string

GetUnused29 returns the Unused29 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused29Ok

func (o *UpdateVMConfigSyncRequest) GetUnused29Ok() (*string, bool)

GetUnused29Ok returns a tuple with the Unused29 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused2Ok

func (o *UpdateVMConfigSyncRequest) GetUnused2Ok() (*string, bool)

GetUnused2Ok returns a tuple with the Unused2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused3

func (o *UpdateVMConfigSyncRequest) GetUnused3() string

GetUnused3 returns the Unused3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused3Ok

func (o *UpdateVMConfigSyncRequest) GetUnused3Ok() (*string, bool)

GetUnused3Ok returns a tuple with the Unused3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused4

func (o *UpdateVMConfigSyncRequest) GetUnused4() string

GetUnused4 returns the Unused4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused4Ok

func (o *UpdateVMConfigSyncRequest) GetUnused4Ok() (*string, bool)

GetUnused4Ok returns a tuple with the Unused4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused5

func (o *UpdateVMConfigSyncRequest) GetUnused5() string

GetUnused5 returns the Unused5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused5Ok

func (o *UpdateVMConfigSyncRequest) GetUnused5Ok() (*string, bool)

GetUnused5Ok returns a tuple with the Unused5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused6

func (o *UpdateVMConfigSyncRequest) GetUnused6() string

GetUnused6 returns the Unused6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused6Ok

func (o *UpdateVMConfigSyncRequest) GetUnused6Ok() (*string, bool)

GetUnused6Ok returns a tuple with the Unused6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused7

func (o *UpdateVMConfigSyncRequest) GetUnused7() string

GetUnused7 returns the Unused7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused7Ok

func (o *UpdateVMConfigSyncRequest) GetUnused7Ok() (*string, bool)

GetUnused7Ok returns a tuple with the Unused7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused8

func (o *UpdateVMConfigSyncRequest) GetUnused8() string

GetUnused8 returns the Unused8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused8Ok

func (o *UpdateVMConfigSyncRequest) GetUnused8Ok() (*string, bool)

GetUnused8Ok returns a tuple with the Unused8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUnused9

func (o *UpdateVMConfigSyncRequest) GetUnused9() string

GetUnused9 returns the Unused9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUnused9Ok

func (o *UpdateVMConfigSyncRequest) GetUnused9Ok() (*string, bool)

GetUnused9Ok returns a tuple with the Unused9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUsb0

func (o *UpdateVMConfigSyncRequest) GetUsb0() string

GetUsb0 returns the Usb0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUsb0Ok

func (o *UpdateVMConfigSyncRequest) GetUsb0Ok() (*string, bool)

GetUsb0Ok returns a tuple with the Usb0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUsb1

func (o *UpdateVMConfigSyncRequest) GetUsb1() string

GetUsb1 returns the Usb1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUsb1Ok

func (o *UpdateVMConfigSyncRequest) GetUsb1Ok() (*string, bool)

GetUsb1Ok returns a tuple with the Usb1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUsb2

func (o *UpdateVMConfigSyncRequest) GetUsb2() string

GetUsb2 returns the Usb2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUsb2Ok

func (o *UpdateVMConfigSyncRequest) GetUsb2Ok() (*string, bool)

GetUsb2Ok returns a tuple with the Usb2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetUsb3

func (o *UpdateVMConfigSyncRequest) GetUsb3() string

GetUsb3 returns the Usb3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetUsb3Ok

func (o *UpdateVMConfigSyncRequest) GetUsb3Ok() (*string, bool)

GetUsb3Ok returns a tuple with the Usb3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVcpus

func (o *UpdateVMConfigSyncRequest) GetVcpus() int64

GetVcpus returns the Vcpus field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVcpusOk

func (o *UpdateVMConfigSyncRequest) GetVcpusOk() (*int64, bool)

GetVcpusOk returns a tuple with the Vcpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVga

func (o *UpdateVMConfigSyncRequest) GetVga() string

GetVga returns the Vga field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVgaOk

func (o *UpdateVMConfigSyncRequest) GetVgaOk() (*string, bool)

GetVgaOk returns a tuple with the Vga field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio0

func (o *UpdateVMConfigSyncRequest) GetVirtio0() string

GetVirtio0 returns the Virtio0 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio0Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio0Ok() (*string, bool)

GetVirtio0Ok returns a tuple with the Virtio0 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio1

func (o *UpdateVMConfigSyncRequest) GetVirtio1() string

GetVirtio1 returns the Virtio1 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio10

func (o *UpdateVMConfigSyncRequest) GetVirtio10() string

GetVirtio10 returns the Virtio10 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio10Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio10Ok() (*string, bool)

GetVirtio10Ok returns a tuple with the Virtio10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio11

func (o *UpdateVMConfigSyncRequest) GetVirtio11() string

GetVirtio11 returns the Virtio11 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio11Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio11Ok() (*string, bool)

GetVirtio11Ok returns a tuple with the Virtio11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio12

func (o *UpdateVMConfigSyncRequest) GetVirtio12() string

GetVirtio12 returns the Virtio12 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio12Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio12Ok() (*string, bool)

GetVirtio12Ok returns a tuple with the Virtio12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio13

func (o *UpdateVMConfigSyncRequest) GetVirtio13() string

GetVirtio13 returns the Virtio13 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio13Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio13Ok() (*string, bool)

GetVirtio13Ok returns a tuple with the Virtio13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio14

func (o *UpdateVMConfigSyncRequest) GetVirtio14() string

GetVirtio14 returns the Virtio14 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio14Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio14Ok() (*string, bool)

GetVirtio14Ok returns a tuple with the Virtio14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio15

func (o *UpdateVMConfigSyncRequest) GetVirtio15() string

GetVirtio15 returns the Virtio15 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio15Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio15Ok() (*string, bool)

GetVirtio15Ok returns a tuple with the Virtio15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio1Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio1Ok() (*string, bool)

GetVirtio1Ok returns a tuple with the Virtio1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio2

func (o *UpdateVMConfigSyncRequest) GetVirtio2() string

GetVirtio2 returns the Virtio2 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio2Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio2Ok() (*string, bool)

GetVirtio2Ok returns a tuple with the Virtio2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio3

func (o *UpdateVMConfigSyncRequest) GetVirtio3() string

GetVirtio3 returns the Virtio3 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio3Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio3Ok() (*string, bool)

GetVirtio3Ok returns a tuple with the Virtio3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio4

func (o *UpdateVMConfigSyncRequest) GetVirtio4() string

GetVirtio4 returns the Virtio4 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio4Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio4Ok() (*string, bool)

GetVirtio4Ok returns a tuple with the Virtio4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio5

func (o *UpdateVMConfigSyncRequest) GetVirtio5() string

GetVirtio5 returns the Virtio5 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio5Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio5Ok() (*string, bool)

GetVirtio5Ok returns a tuple with the Virtio5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio6

func (o *UpdateVMConfigSyncRequest) GetVirtio6() string

GetVirtio6 returns the Virtio6 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio6Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio6Ok() (*string, bool)

GetVirtio6Ok returns a tuple with the Virtio6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio7

func (o *UpdateVMConfigSyncRequest) GetVirtio7() string

GetVirtio7 returns the Virtio7 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio7Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio7Ok() (*string, bool)

GetVirtio7Ok returns a tuple with the Virtio7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio8

func (o *UpdateVMConfigSyncRequest) GetVirtio8() string

GetVirtio8 returns the Virtio8 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio8Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio8Ok() (*string, bool)

GetVirtio8Ok returns a tuple with the Virtio8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVirtio9

func (o *UpdateVMConfigSyncRequest) GetVirtio9() string

GetVirtio9 returns the Virtio9 field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVirtio9Ok

func (o *UpdateVMConfigSyncRequest) GetVirtio9Ok() (*string, bool)

GetVirtio9Ok returns a tuple with the Virtio9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVmgenid

func (o *UpdateVMConfigSyncRequest) GetVmgenid() string

GetVmgenid returns the Vmgenid field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVmgenidOk

func (o *UpdateVMConfigSyncRequest) GetVmgenidOk() (*string, bool)

GetVmgenidOk returns a tuple with the Vmgenid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetVmstatestorage

func (o *UpdateVMConfigSyncRequest) GetVmstatestorage() string

GetVmstatestorage returns the Vmstatestorage field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetVmstatestorageOk

func (o *UpdateVMConfigSyncRequest) GetVmstatestorageOk() (*string, bool)

GetVmstatestorageOk returns a tuple with the Vmstatestorage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) GetWatchdog

func (o *UpdateVMConfigSyncRequest) GetWatchdog() string

GetWatchdog returns the Watchdog field value if set, zero value otherwise.

func (*UpdateVMConfigSyncRequest) GetWatchdogOk

func (o *UpdateVMConfigSyncRequest) GetWatchdogOk() (*string, bool)

GetWatchdogOk returns a tuple with the Watchdog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMConfigSyncRequest) HasAcpi

func (o *UpdateVMConfigSyncRequest) HasAcpi() bool

HasAcpi returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasAffinity

func (o *UpdateVMConfigSyncRequest) HasAffinity() bool

HasAffinity returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasAgent

func (o *UpdateVMConfigSyncRequest) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasArch

func (o *UpdateVMConfigSyncRequest) HasArch() bool

HasArch returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasArgs

func (o *UpdateVMConfigSyncRequest) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasAudio0

func (o *UpdateVMConfigSyncRequest) HasAudio0() bool

HasAudio0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasAutostart

func (o *UpdateVMConfigSyncRequest) HasAutostart() bool

HasAutostart returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasBalloon

func (o *UpdateVMConfigSyncRequest) HasBalloon() bool

HasBalloon returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasBios

func (o *UpdateVMConfigSyncRequest) HasBios() bool

HasBios returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasBoot

func (o *UpdateVMConfigSyncRequest) HasBoot() bool

HasBoot returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasBootdisk

func (o *UpdateVMConfigSyncRequest) HasBootdisk() bool

HasBootdisk returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCdrom

func (o *UpdateVMConfigSyncRequest) HasCdrom() bool

HasCdrom returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCicustom

func (o *UpdateVMConfigSyncRequest) HasCicustom() bool

HasCicustom returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCipassword

func (o *UpdateVMConfigSyncRequest) HasCipassword() bool

HasCipassword returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCitype

func (o *UpdateVMConfigSyncRequest) HasCitype() bool

HasCitype returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCiupgrade

func (o *UpdateVMConfigSyncRequest) HasCiupgrade() bool

HasCiupgrade returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCiuser

func (o *UpdateVMConfigSyncRequest) HasCiuser() bool

HasCiuser returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCores

func (o *UpdateVMConfigSyncRequest) HasCores() bool

HasCores returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCpu

func (o *UpdateVMConfigSyncRequest) HasCpu() bool

HasCpu returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCpulimit

func (o *UpdateVMConfigSyncRequest) HasCpulimit() bool

HasCpulimit returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasCpuunits

func (o *UpdateVMConfigSyncRequest) HasCpuunits() bool

HasCpuunits returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasDelete

func (o *UpdateVMConfigSyncRequest) HasDelete() bool

HasDelete returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasDescription

func (o *UpdateVMConfigSyncRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasDigest

func (o *UpdateVMConfigSyncRequest) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasEfidisk0

func (o *UpdateVMConfigSyncRequest) HasEfidisk0() bool

HasEfidisk0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasForce

func (o *UpdateVMConfigSyncRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasFreeze

func (o *UpdateVMConfigSyncRequest) HasFreeze() bool

HasFreeze returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHookscript

func (o *UpdateVMConfigSyncRequest) HasHookscript() bool

HasHookscript returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci0

func (o *UpdateVMConfigSyncRequest) HasHostpci0() bool

HasHostpci0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci1

func (o *UpdateVMConfigSyncRequest) HasHostpci1() bool

HasHostpci1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci10

func (o *UpdateVMConfigSyncRequest) HasHostpci10() bool

HasHostpci10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci11

func (o *UpdateVMConfigSyncRequest) HasHostpci11() bool

HasHostpci11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci12

func (o *UpdateVMConfigSyncRequest) HasHostpci12() bool

HasHostpci12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci13

func (o *UpdateVMConfigSyncRequest) HasHostpci13() bool

HasHostpci13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci14

func (o *UpdateVMConfigSyncRequest) HasHostpci14() bool

HasHostpci14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci15

func (o *UpdateVMConfigSyncRequest) HasHostpci15() bool

HasHostpci15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci16

func (o *UpdateVMConfigSyncRequest) HasHostpci16() bool

HasHostpci16 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci17

func (o *UpdateVMConfigSyncRequest) HasHostpci17() bool

HasHostpci17 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci18

func (o *UpdateVMConfigSyncRequest) HasHostpci18() bool

HasHostpci18 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci19

func (o *UpdateVMConfigSyncRequest) HasHostpci19() bool

HasHostpci19 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci2

func (o *UpdateVMConfigSyncRequest) HasHostpci2() bool

HasHostpci2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci20

func (o *UpdateVMConfigSyncRequest) HasHostpci20() bool

HasHostpci20 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci21

func (o *UpdateVMConfigSyncRequest) HasHostpci21() bool

HasHostpci21 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci22

func (o *UpdateVMConfigSyncRequest) HasHostpci22() bool

HasHostpci22 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci23

func (o *UpdateVMConfigSyncRequest) HasHostpci23() bool

HasHostpci23 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci24

func (o *UpdateVMConfigSyncRequest) HasHostpci24() bool

HasHostpci24 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci25

func (o *UpdateVMConfigSyncRequest) HasHostpci25() bool

HasHostpci25 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci26

func (o *UpdateVMConfigSyncRequest) HasHostpci26() bool

HasHostpci26 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci27

func (o *UpdateVMConfigSyncRequest) HasHostpci27() bool

HasHostpci27 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci28

func (o *UpdateVMConfigSyncRequest) HasHostpci28() bool

HasHostpci28 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci29

func (o *UpdateVMConfigSyncRequest) HasHostpci29() bool

HasHostpci29 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci3

func (o *UpdateVMConfigSyncRequest) HasHostpci3() bool

HasHostpci3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci4

func (o *UpdateVMConfigSyncRequest) HasHostpci4() bool

HasHostpci4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci5

func (o *UpdateVMConfigSyncRequest) HasHostpci5() bool

HasHostpci5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci6

func (o *UpdateVMConfigSyncRequest) HasHostpci6() bool

HasHostpci6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci7

func (o *UpdateVMConfigSyncRequest) HasHostpci7() bool

HasHostpci7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci8

func (o *UpdateVMConfigSyncRequest) HasHostpci8() bool

HasHostpci8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHostpci9

func (o *UpdateVMConfigSyncRequest) HasHostpci9() bool

HasHostpci9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHotplug

func (o *UpdateVMConfigSyncRequest) HasHotplug() bool

HasHotplug returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasHugepages

func (o *UpdateVMConfigSyncRequest) HasHugepages() bool

HasHugepages returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIde0

func (o *UpdateVMConfigSyncRequest) HasIde0() bool

HasIde0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIde1

func (o *UpdateVMConfigSyncRequest) HasIde1() bool

HasIde1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIde2

func (o *UpdateVMConfigSyncRequest) HasIde2() bool

HasIde2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIde3

func (o *UpdateVMConfigSyncRequest) HasIde3() bool

HasIde3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig0

func (o *UpdateVMConfigSyncRequest) HasIpconfig0() bool

HasIpconfig0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig1

func (o *UpdateVMConfigSyncRequest) HasIpconfig1() bool

HasIpconfig1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig10

func (o *UpdateVMConfigSyncRequest) HasIpconfig10() bool

HasIpconfig10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig11

func (o *UpdateVMConfigSyncRequest) HasIpconfig11() bool

HasIpconfig11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig12

func (o *UpdateVMConfigSyncRequest) HasIpconfig12() bool

HasIpconfig12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig13

func (o *UpdateVMConfigSyncRequest) HasIpconfig13() bool

HasIpconfig13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig14

func (o *UpdateVMConfigSyncRequest) HasIpconfig14() bool

HasIpconfig14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig15

func (o *UpdateVMConfigSyncRequest) HasIpconfig15() bool

HasIpconfig15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig16

func (o *UpdateVMConfigSyncRequest) HasIpconfig16() bool

HasIpconfig16 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig17

func (o *UpdateVMConfigSyncRequest) HasIpconfig17() bool

HasIpconfig17 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig18

func (o *UpdateVMConfigSyncRequest) HasIpconfig18() bool

HasIpconfig18 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig19

func (o *UpdateVMConfigSyncRequest) HasIpconfig19() bool

HasIpconfig19 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig2

func (o *UpdateVMConfigSyncRequest) HasIpconfig2() bool

HasIpconfig2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig20

func (o *UpdateVMConfigSyncRequest) HasIpconfig20() bool

HasIpconfig20 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig21

func (o *UpdateVMConfigSyncRequest) HasIpconfig21() bool

HasIpconfig21 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig22

func (o *UpdateVMConfigSyncRequest) HasIpconfig22() bool

HasIpconfig22 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig23

func (o *UpdateVMConfigSyncRequest) HasIpconfig23() bool

HasIpconfig23 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig24

func (o *UpdateVMConfigSyncRequest) HasIpconfig24() bool

HasIpconfig24 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig25

func (o *UpdateVMConfigSyncRequest) HasIpconfig25() bool

HasIpconfig25 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig26

func (o *UpdateVMConfigSyncRequest) HasIpconfig26() bool

HasIpconfig26 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig27

func (o *UpdateVMConfigSyncRequest) HasIpconfig27() bool

HasIpconfig27 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig28

func (o *UpdateVMConfigSyncRequest) HasIpconfig28() bool

HasIpconfig28 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig29

func (o *UpdateVMConfigSyncRequest) HasIpconfig29() bool

HasIpconfig29 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig3

func (o *UpdateVMConfigSyncRequest) HasIpconfig3() bool

HasIpconfig3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig4

func (o *UpdateVMConfigSyncRequest) HasIpconfig4() bool

HasIpconfig4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig5

func (o *UpdateVMConfigSyncRequest) HasIpconfig5() bool

HasIpconfig5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig6

func (o *UpdateVMConfigSyncRequest) HasIpconfig6() bool

HasIpconfig6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig7

func (o *UpdateVMConfigSyncRequest) HasIpconfig7() bool

HasIpconfig7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig8

func (o *UpdateVMConfigSyncRequest) HasIpconfig8() bool

HasIpconfig8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIpconfig9

func (o *UpdateVMConfigSyncRequest) HasIpconfig9() bool

HasIpconfig9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasIvshmem

func (o *UpdateVMConfigSyncRequest) HasIvshmem() bool

HasIvshmem returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasKeephugepages

func (o *UpdateVMConfigSyncRequest) HasKeephugepages() bool

HasKeephugepages returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasKeyboard

func (o *UpdateVMConfigSyncRequest) HasKeyboard() bool

HasKeyboard returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasKvm

func (o *UpdateVMConfigSyncRequest) HasKvm() bool

HasKvm returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasLocaltime

func (o *UpdateVMConfigSyncRequest) HasLocaltime() bool

HasLocaltime returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasLock

func (o *UpdateVMConfigSyncRequest) HasLock() bool

HasLock returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasMachine

func (o *UpdateVMConfigSyncRequest) HasMachine() bool

HasMachine returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasMemory

func (o *UpdateVMConfigSyncRequest) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasMigrateDowntime

func (o *UpdateVMConfigSyncRequest) HasMigrateDowntime() bool

HasMigrateDowntime returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasMigrateSpeed

func (o *UpdateVMConfigSyncRequest) HasMigrateSpeed() bool

HasMigrateSpeed returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasName

func (o *UpdateVMConfigSyncRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNameserver

func (o *UpdateVMConfigSyncRequest) HasNameserver() bool

HasNameserver returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet0

func (o *UpdateVMConfigSyncRequest) HasNet0() bool

HasNet0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet1

func (o *UpdateVMConfigSyncRequest) HasNet1() bool

HasNet1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet10

func (o *UpdateVMConfigSyncRequest) HasNet10() bool

HasNet10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet11

func (o *UpdateVMConfigSyncRequest) HasNet11() bool

HasNet11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet12

func (o *UpdateVMConfigSyncRequest) HasNet12() bool

HasNet12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet13

func (o *UpdateVMConfigSyncRequest) HasNet13() bool

HasNet13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet14

func (o *UpdateVMConfigSyncRequest) HasNet14() bool

HasNet14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet15

func (o *UpdateVMConfigSyncRequest) HasNet15() bool

HasNet15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet16

func (o *UpdateVMConfigSyncRequest) HasNet16() bool

HasNet16 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet17

func (o *UpdateVMConfigSyncRequest) HasNet17() bool

HasNet17 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet18

func (o *UpdateVMConfigSyncRequest) HasNet18() bool

HasNet18 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet19

func (o *UpdateVMConfigSyncRequest) HasNet19() bool

HasNet19 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet2

func (o *UpdateVMConfigSyncRequest) HasNet2() bool

HasNet2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet20

func (o *UpdateVMConfigSyncRequest) HasNet20() bool

HasNet20 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet21

func (o *UpdateVMConfigSyncRequest) HasNet21() bool

HasNet21 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet22

func (o *UpdateVMConfigSyncRequest) HasNet22() bool

HasNet22 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet23

func (o *UpdateVMConfigSyncRequest) HasNet23() bool

HasNet23 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet24

func (o *UpdateVMConfigSyncRequest) HasNet24() bool

HasNet24 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet25

func (o *UpdateVMConfigSyncRequest) HasNet25() bool

HasNet25 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet26

func (o *UpdateVMConfigSyncRequest) HasNet26() bool

HasNet26 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet27

func (o *UpdateVMConfigSyncRequest) HasNet27() bool

HasNet27 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet28

func (o *UpdateVMConfigSyncRequest) HasNet28() bool

HasNet28 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet29

func (o *UpdateVMConfigSyncRequest) HasNet29() bool

HasNet29 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet3

func (o *UpdateVMConfigSyncRequest) HasNet3() bool

HasNet3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet30

func (o *UpdateVMConfigSyncRequest) HasNet30() bool

HasNet30 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet31

func (o *UpdateVMConfigSyncRequest) HasNet31() bool

HasNet31 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet4

func (o *UpdateVMConfigSyncRequest) HasNet4() bool

HasNet4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet5

func (o *UpdateVMConfigSyncRequest) HasNet5() bool

HasNet5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet6

func (o *UpdateVMConfigSyncRequest) HasNet6() bool

HasNet6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet7

func (o *UpdateVMConfigSyncRequest) HasNet7() bool

HasNet7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet8

func (o *UpdateVMConfigSyncRequest) HasNet8() bool

HasNet8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNet9

func (o *UpdateVMConfigSyncRequest) HasNet9() bool

HasNet9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma

func (o *UpdateVMConfigSyncRequest) HasNuma() bool

HasNuma returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma0

func (o *UpdateVMConfigSyncRequest) HasNuma0() bool

HasNuma0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma1

func (o *UpdateVMConfigSyncRequest) HasNuma1() bool

HasNuma1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma10

func (o *UpdateVMConfigSyncRequest) HasNuma10() bool

HasNuma10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma11

func (o *UpdateVMConfigSyncRequest) HasNuma11() bool

HasNuma11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma12

func (o *UpdateVMConfigSyncRequest) HasNuma12() bool

HasNuma12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma13

func (o *UpdateVMConfigSyncRequest) HasNuma13() bool

HasNuma13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma14

func (o *UpdateVMConfigSyncRequest) HasNuma14() bool

HasNuma14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma15

func (o *UpdateVMConfigSyncRequest) HasNuma15() bool

HasNuma15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma16

func (o *UpdateVMConfigSyncRequest) HasNuma16() bool

HasNuma16 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma17

func (o *UpdateVMConfigSyncRequest) HasNuma17() bool

HasNuma17 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma18

func (o *UpdateVMConfigSyncRequest) HasNuma18() bool

HasNuma18 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma19

func (o *UpdateVMConfigSyncRequest) HasNuma19() bool

HasNuma19 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma2

func (o *UpdateVMConfigSyncRequest) HasNuma2() bool

HasNuma2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma20

func (o *UpdateVMConfigSyncRequest) HasNuma20() bool

HasNuma20 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma21

func (o *UpdateVMConfigSyncRequest) HasNuma21() bool

HasNuma21 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma22

func (o *UpdateVMConfigSyncRequest) HasNuma22() bool

HasNuma22 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma23

func (o *UpdateVMConfigSyncRequest) HasNuma23() bool

HasNuma23 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma24

func (o *UpdateVMConfigSyncRequest) HasNuma24() bool

HasNuma24 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma25

func (o *UpdateVMConfigSyncRequest) HasNuma25() bool

HasNuma25 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma26

func (o *UpdateVMConfigSyncRequest) HasNuma26() bool

HasNuma26 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma27

func (o *UpdateVMConfigSyncRequest) HasNuma27() bool

HasNuma27 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma28

func (o *UpdateVMConfigSyncRequest) HasNuma28() bool

HasNuma28 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma29

func (o *UpdateVMConfigSyncRequest) HasNuma29() bool

HasNuma29 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma3

func (o *UpdateVMConfigSyncRequest) HasNuma3() bool

HasNuma3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma4

func (o *UpdateVMConfigSyncRequest) HasNuma4() bool

HasNuma4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma5

func (o *UpdateVMConfigSyncRequest) HasNuma5() bool

HasNuma5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma6

func (o *UpdateVMConfigSyncRequest) HasNuma6() bool

HasNuma6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma7

func (o *UpdateVMConfigSyncRequest) HasNuma7() bool

HasNuma7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma8

func (o *UpdateVMConfigSyncRequest) HasNuma8() bool

HasNuma8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasNuma9

func (o *UpdateVMConfigSyncRequest) HasNuma9() bool

HasNuma9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasOnboot

func (o *UpdateVMConfigSyncRequest) HasOnboot() bool

HasOnboot returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasOstype

func (o *UpdateVMConfigSyncRequest) HasOstype() bool

HasOstype returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasParallel0

func (o *UpdateVMConfigSyncRequest) HasParallel0() bool

HasParallel0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasParallel1

func (o *UpdateVMConfigSyncRequest) HasParallel1() bool

HasParallel1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasParallel2

func (o *UpdateVMConfigSyncRequest) HasParallel2() bool

HasParallel2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasParallel3

func (o *UpdateVMConfigSyncRequest) HasParallel3() bool

HasParallel3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasProtection

func (o *UpdateVMConfigSyncRequest) HasProtection() bool

HasProtection returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasReboot

func (o *UpdateVMConfigSyncRequest) HasReboot() bool

HasReboot returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasRevert

func (o *UpdateVMConfigSyncRequest) HasRevert() bool

HasRevert returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasRng0

func (o *UpdateVMConfigSyncRequest) HasRng0() bool

HasRng0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSata0

func (o *UpdateVMConfigSyncRequest) HasSata0() bool

HasSata0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSata1

func (o *UpdateVMConfigSyncRequest) HasSata1() bool

HasSata1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSata2

func (o *UpdateVMConfigSyncRequest) HasSata2() bool

HasSata2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSata3

func (o *UpdateVMConfigSyncRequest) HasSata3() bool

HasSata3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSata4

func (o *UpdateVMConfigSyncRequest) HasSata4() bool

HasSata4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSata5

func (o *UpdateVMConfigSyncRequest) HasSata5() bool

HasSata5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi0

func (o *UpdateVMConfigSyncRequest) HasScsi0() bool

HasScsi0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi1

func (o *UpdateVMConfigSyncRequest) HasScsi1() bool

HasScsi1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi10

func (o *UpdateVMConfigSyncRequest) HasScsi10() bool

HasScsi10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi11

func (o *UpdateVMConfigSyncRequest) HasScsi11() bool

HasScsi11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi12

func (o *UpdateVMConfigSyncRequest) HasScsi12() bool

HasScsi12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi13

func (o *UpdateVMConfigSyncRequest) HasScsi13() bool

HasScsi13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi14

func (o *UpdateVMConfigSyncRequest) HasScsi14() bool

HasScsi14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi15

func (o *UpdateVMConfigSyncRequest) HasScsi15() bool

HasScsi15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi16

func (o *UpdateVMConfigSyncRequest) HasScsi16() bool

HasScsi16 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi17

func (o *UpdateVMConfigSyncRequest) HasScsi17() bool

HasScsi17 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi18

func (o *UpdateVMConfigSyncRequest) HasScsi18() bool

HasScsi18 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi19

func (o *UpdateVMConfigSyncRequest) HasScsi19() bool

HasScsi19 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi2

func (o *UpdateVMConfigSyncRequest) HasScsi2() bool

HasScsi2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi20

func (o *UpdateVMConfigSyncRequest) HasScsi20() bool

HasScsi20 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi21

func (o *UpdateVMConfigSyncRequest) HasScsi21() bool

HasScsi21 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi22

func (o *UpdateVMConfigSyncRequest) HasScsi22() bool

HasScsi22 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi23

func (o *UpdateVMConfigSyncRequest) HasScsi23() bool

HasScsi23 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi24

func (o *UpdateVMConfigSyncRequest) HasScsi24() bool

HasScsi24 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi25

func (o *UpdateVMConfigSyncRequest) HasScsi25() bool

HasScsi25 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi26

func (o *UpdateVMConfigSyncRequest) HasScsi26() bool

HasScsi26 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi27

func (o *UpdateVMConfigSyncRequest) HasScsi27() bool

HasScsi27 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi28

func (o *UpdateVMConfigSyncRequest) HasScsi28() bool

HasScsi28 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi29

func (o *UpdateVMConfigSyncRequest) HasScsi29() bool

HasScsi29 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi3

func (o *UpdateVMConfigSyncRequest) HasScsi3() bool

HasScsi3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi4

func (o *UpdateVMConfigSyncRequest) HasScsi4() bool

HasScsi4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi5

func (o *UpdateVMConfigSyncRequest) HasScsi5() bool

HasScsi5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi6

func (o *UpdateVMConfigSyncRequest) HasScsi6() bool

HasScsi6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi7

func (o *UpdateVMConfigSyncRequest) HasScsi7() bool

HasScsi7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi8

func (o *UpdateVMConfigSyncRequest) HasScsi8() bool

HasScsi8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsi9

func (o *UpdateVMConfigSyncRequest) HasScsi9() bool

HasScsi9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasScsihw

func (o *UpdateVMConfigSyncRequest) HasScsihw() bool

HasScsihw returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSearchdomain

func (o *UpdateVMConfigSyncRequest) HasSearchdomain() bool

HasSearchdomain returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSerial0

func (o *UpdateVMConfigSyncRequest) HasSerial0() bool

HasSerial0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSerial1

func (o *UpdateVMConfigSyncRequest) HasSerial1() bool

HasSerial1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSerial2

func (o *UpdateVMConfigSyncRequest) HasSerial2() bool

HasSerial2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSerial3

func (o *UpdateVMConfigSyncRequest) HasSerial3() bool

HasSerial3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasShares

func (o *UpdateVMConfigSyncRequest) HasShares() bool

HasShares returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSkiplock

func (o *UpdateVMConfigSyncRequest) HasSkiplock() bool

HasSkiplock returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSmbios1

func (o *UpdateVMConfigSyncRequest) HasSmbios1() bool

HasSmbios1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSmp

func (o *UpdateVMConfigSyncRequest) HasSmp() bool

HasSmp returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSockets

func (o *UpdateVMConfigSyncRequest) HasSockets() bool

HasSockets returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSpiceEnhancements

func (o *UpdateVMConfigSyncRequest) HasSpiceEnhancements() bool

HasSpiceEnhancements returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasSshkeys

func (o *UpdateVMConfigSyncRequest) HasSshkeys() bool

HasSshkeys returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasStartdate

func (o *UpdateVMConfigSyncRequest) HasStartdate() bool

HasStartdate returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasStartup

func (o *UpdateVMConfigSyncRequest) HasStartup() bool

HasStartup returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasTablet

func (o *UpdateVMConfigSyncRequest) HasTablet() bool

HasTablet returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasTags

func (o *UpdateVMConfigSyncRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasTdf

func (o *UpdateVMConfigSyncRequest) HasTdf() bool

HasTdf returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasTemplate

func (o *UpdateVMConfigSyncRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasTpmstate0

func (o *UpdateVMConfigSyncRequest) HasTpmstate0() bool

HasTpmstate0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused0

func (o *UpdateVMConfigSyncRequest) HasUnused0() bool

HasUnused0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused1

func (o *UpdateVMConfigSyncRequest) HasUnused1() bool

HasUnused1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused10

func (o *UpdateVMConfigSyncRequest) HasUnused10() bool

HasUnused10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused11

func (o *UpdateVMConfigSyncRequest) HasUnused11() bool

HasUnused11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused12

func (o *UpdateVMConfigSyncRequest) HasUnused12() bool

HasUnused12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused13

func (o *UpdateVMConfigSyncRequest) HasUnused13() bool

HasUnused13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused14

func (o *UpdateVMConfigSyncRequest) HasUnused14() bool

HasUnused14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused15

func (o *UpdateVMConfigSyncRequest) HasUnused15() bool

HasUnused15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused16

func (o *UpdateVMConfigSyncRequest) HasUnused16() bool

HasUnused16 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused17

func (o *UpdateVMConfigSyncRequest) HasUnused17() bool

HasUnused17 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused18

func (o *UpdateVMConfigSyncRequest) HasUnused18() bool

HasUnused18 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused19

func (o *UpdateVMConfigSyncRequest) HasUnused19() bool

HasUnused19 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused2

func (o *UpdateVMConfigSyncRequest) HasUnused2() bool

HasUnused2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused20

func (o *UpdateVMConfigSyncRequest) HasUnused20() bool

HasUnused20 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused21

func (o *UpdateVMConfigSyncRequest) HasUnused21() bool

HasUnused21 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused22

func (o *UpdateVMConfigSyncRequest) HasUnused22() bool

HasUnused22 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused23

func (o *UpdateVMConfigSyncRequest) HasUnused23() bool

HasUnused23 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused24

func (o *UpdateVMConfigSyncRequest) HasUnused24() bool

HasUnused24 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused25

func (o *UpdateVMConfigSyncRequest) HasUnused25() bool

HasUnused25 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused26

func (o *UpdateVMConfigSyncRequest) HasUnused26() bool

HasUnused26 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused27

func (o *UpdateVMConfigSyncRequest) HasUnused27() bool

HasUnused27 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused28

func (o *UpdateVMConfigSyncRequest) HasUnused28() bool

HasUnused28 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused29

func (o *UpdateVMConfigSyncRequest) HasUnused29() bool

HasUnused29 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused3

func (o *UpdateVMConfigSyncRequest) HasUnused3() bool

HasUnused3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused4

func (o *UpdateVMConfigSyncRequest) HasUnused4() bool

HasUnused4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused5

func (o *UpdateVMConfigSyncRequest) HasUnused5() bool

HasUnused5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused6

func (o *UpdateVMConfigSyncRequest) HasUnused6() bool

HasUnused6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused7

func (o *UpdateVMConfigSyncRequest) HasUnused7() bool

HasUnused7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused8

func (o *UpdateVMConfigSyncRequest) HasUnused8() bool

HasUnused8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUnused9

func (o *UpdateVMConfigSyncRequest) HasUnused9() bool

HasUnused9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUsb0

func (o *UpdateVMConfigSyncRequest) HasUsb0() bool

HasUsb0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUsb1

func (o *UpdateVMConfigSyncRequest) HasUsb1() bool

HasUsb1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUsb2

func (o *UpdateVMConfigSyncRequest) HasUsb2() bool

HasUsb2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasUsb3

func (o *UpdateVMConfigSyncRequest) HasUsb3() bool

HasUsb3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVcpus

func (o *UpdateVMConfigSyncRequest) HasVcpus() bool

HasVcpus returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVga

func (o *UpdateVMConfigSyncRequest) HasVga() bool

HasVga returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio0

func (o *UpdateVMConfigSyncRequest) HasVirtio0() bool

HasVirtio0 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio1

func (o *UpdateVMConfigSyncRequest) HasVirtio1() bool

HasVirtio1 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio10

func (o *UpdateVMConfigSyncRequest) HasVirtio10() bool

HasVirtio10 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio11

func (o *UpdateVMConfigSyncRequest) HasVirtio11() bool

HasVirtio11 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio12

func (o *UpdateVMConfigSyncRequest) HasVirtio12() bool

HasVirtio12 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio13

func (o *UpdateVMConfigSyncRequest) HasVirtio13() bool

HasVirtio13 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio14

func (o *UpdateVMConfigSyncRequest) HasVirtio14() bool

HasVirtio14 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio15

func (o *UpdateVMConfigSyncRequest) HasVirtio15() bool

HasVirtio15 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio2

func (o *UpdateVMConfigSyncRequest) HasVirtio2() bool

HasVirtio2 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio3

func (o *UpdateVMConfigSyncRequest) HasVirtio3() bool

HasVirtio3 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio4

func (o *UpdateVMConfigSyncRequest) HasVirtio4() bool

HasVirtio4 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio5

func (o *UpdateVMConfigSyncRequest) HasVirtio5() bool

HasVirtio5 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio6

func (o *UpdateVMConfigSyncRequest) HasVirtio6() bool

HasVirtio6 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio7

func (o *UpdateVMConfigSyncRequest) HasVirtio7() bool

HasVirtio7 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio8

func (o *UpdateVMConfigSyncRequest) HasVirtio8() bool

HasVirtio8 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVirtio9

func (o *UpdateVMConfigSyncRequest) HasVirtio9() bool

HasVirtio9 returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVmgenid

func (o *UpdateVMConfigSyncRequest) HasVmgenid() bool

HasVmgenid returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasVmstatestorage

func (o *UpdateVMConfigSyncRequest) HasVmstatestorage() bool

HasVmstatestorage returns a boolean if a field has been set.

func (*UpdateVMConfigSyncRequest) HasWatchdog

func (o *UpdateVMConfigSyncRequest) HasWatchdog() bool

HasWatchdog returns a boolean if a field has been set.

func (UpdateVMConfigSyncRequest) MarshalJSON

func (o UpdateVMConfigSyncRequest) MarshalJSON() ([]byte, error)

func (*UpdateVMConfigSyncRequest) SetAcpi

func (o *UpdateVMConfigSyncRequest) SetAcpi(v int32)

SetAcpi gets a reference to the given int32 and assigns it to the Acpi field.

func (*UpdateVMConfigSyncRequest) SetAffinity

func (o *UpdateVMConfigSyncRequest) SetAffinity(v string)

SetAffinity gets a reference to the given string and assigns it to the Affinity field.

func (*UpdateVMConfigSyncRequest) SetAgent

func (o *UpdateVMConfigSyncRequest) SetAgent(v string)

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*UpdateVMConfigSyncRequest) SetArch

func (o *UpdateVMConfigSyncRequest) SetArch(v string)

SetArch gets a reference to the given string and assigns it to the Arch field.

func (*UpdateVMConfigSyncRequest) SetArgs

func (o *UpdateVMConfigSyncRequest) SetArgs(v string)

SetArgs gets a reference to the given string and assigns it to the Args field.

func (*UpdateVMConfigSyncRequest) SetAudio0

func (o *UpdateVMConfigSyncRequest) SetAudio0(v string)

SetAudio0 gets a reference to the given string and assigns it to the Audio0 field.

func (*UpdateVMConfigSyncRequest) SetAutostart

func (o *UpdateVMConfigSyncRequest) SetAutostart(v int32)

SetAutostart gets a reference to the given int32 and assigns it to the Autostart field.

func (*UpdateVMConfigSyncRequest) SetBalloon

func (o *UpdateVMConfigSyncRequest) SetBalloon(v int64)

SetBalloon gets a reference to the given int64 and assigns it to the Balloon field.

func (*UpdateVMConfigSyncRequest) SetBios

func (o *UpdateVMConfigSyncRequest) SetBios(v string)

SetBios gets a reference to the given string and assigns it to the Bios field.

func (*UpdateVMConfigSyncRequest) SetBoot

func (o *UpdateVMConfigSyncRequest) SetBoot(v string)

SetBoot gets a reference to the given string and assigns it to the Boot field.

func (*UpdateVMConfigSyncRequest) SetBootdisk

func (o *UpdateVMConfigSyncRequest) SetBootdisk(v string)

SetBootdisk gets a reference to the given string and assigns it to the Bootdisk field.

func (*UpdateVMConfigSyncRequest) SetCdrom

func (o *UpdateVMConfigSyncRequest) SetCdrom(v string)

SetCdrom gets a reference to the given string and assigns it to the Cdrom field.

func (*UpdateVMConfigSyncRequest) SetCicustom

func (o *UpdateVMConfigSyncRequest) SetCicustom(v string)

SetCicustom gets a reference to the given string and assigns it to the Cicustom field.

func (*UpdateVMConfigSyncRequest) SetCipassword

func (o *UpdateVMConfigSyncRequest) SetCipassword(v string)

SetCipassword gets a reference to the given string and assigns it to the Cipassword field.

func (*UpdateVMConfigSyncRequest) SetCitype

func (o *UpdateVMConfigSyncRequest) SetCitype(v string)

SetCitype gets a reference to the given string and assigns it to the Citype field.

func (*UpdateVMConfigSyncRequest) SetCiupgrade

func (o *UpdateVMConfigSyncRequest) SetCiupgrade(v int32)

SetCiupgrade gets a reference to the given int32 and assigns it to the Ciupgrade field.

func (*UpdateVMConfigSyncRequest) SetCiuser

func (o *UpdateVMConfigSyncRequest) SetCiuser(v string)

SetCiuser gets a reference to the given string and assigns it to the Ciuser field.

func (*UpdateVMConfigSyncRequest) SetCores

func (o *UpdateVMConfigSyncRequest) SetCores(v int64)

SetCores gets a reference to the given int64 and assigns it to the Cores field.

func (*UpdateVMConfigSyncRequest) SetCpu

func (o *UpdateVMConfigSyncRequest) SetCpu(v string)

SetCpu gets a reference to the given string and assigns it to the Cpu field.

func (*UpdateVMConfigSyncRequest) SetCpulimit

func (o *UpdateVMConfigSyncRequest) SetCpulimit(v float32)

SetCpulimit gets a reference to the given float32 and assigns it to the Cpulimit field.

func (*UpdateVMConfigSyncRequest) SetCpuunits

func (o *UpdateVMConfigSyncRequest) SetCpuunits(v int64)

SetCpuunits gets a reference to the given int64 and assigns it to the Cpuunits field.

func (*UpdateVMConfigSyncRequest) SetDelete

func (o *UpdateVMConfigSyncRequest) SetDelete(v string)

SetDelete gets a reference to the given string and assigns it to the Delete field.

func (*UpdateVMConfigSyncRequest) SetDescription

func (o *UpdateVMConfigSyncRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateVMConfigSyncRequest) SetDigest

func (o *UpdateVMConfigSyncRequest) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*UpdateVMConfigSyncRequest) SetEfidisk0

func (o *UpdateVMConfigSyncRequest) SetEfidisk0(v string)

SetEfidisk0 gets a reference to the given string and assigns it to the Efidisk0 field.

func (*UpdateVMConfigSyncRequest) SetForce

func (o *UpdateVMConfigSyncRequest) SetForce(v int32)

SetForce gets a reference to the given int32 and assigns it to the Force field.

func (*UpdateVMConfigSyncRequest) SetFreeze

func (o *UpdateVMConfigSyncRequest) SetFreeze(v int32)

SetFreeze gets a reference to the given int32 and assigns it to the Freeze field.

func (*UpdateVMConfigSyncRequest) SetHookscript

func (o *UpdateVMConfigSyncRequest) SetHookscript(v string)

SetHookscript gets a reference to the given string and assigns it to the Hookscript field.

func (*UpdateVMConfigSyncRequest) SetHostpci0

func (o *UpdateVMConfigSyncRequest) SetHostpci0(v string)

SetHostpci0 gets a reference to the given string and assigns it to the Hostpci0 field.

func (*UpdateVMConfigSyncRequest) SetHostpci1

func (o *UpdateVMConfigSyncRequest) SetHostpci1(v string)

SetHostpci1 gets a reference to the given string and assigns it to the Hostpci1 field.

func (*UpdateVMConfigSyncRequest) SetHostpci10

func (o *UpdateVMConfigSyncRequest) SetHostpci10(v string)

SetHostpci10 gets a reference to the given string and assigns it to the Hostpci10 field.

func (*UpdateVMConfigSyncRequest) SetHostpci11

func (o *UpdateVMConfigSyncRequest) SetHostpci11(v string)

SetHostpci11 gets a reference to the given string and assigns it to the Hostpci11 field.

func (*UpdateVMConfigSyncRequest) SetHostpci12

func (o *UpdateVMConfigSyncRequest) SetHostpci12(v string)

SetHostpci12 gets a reference to the given string and assigns it to the Hostpci12 field.

func (*UpdateVMConfigSyncRequest) SetHostpci13

func (o *UpdateVMConfigSyncRequest) SetHostpci13(v string)

SetHostpci13 gets a reference to the given string and assigns it to the Hostpci13 field.

func (*UpdateVMConfigSyncRequest) SetHostpci14

func (o *UpdateVMConfigSyncRequest) SetHostpci14(v string)

SetHostpci14 gets a reference to the given string and assigns it to the Hostpci14 field.

func (*UpdateVMConfigSyncRequest) SetHostpci15

func (o *UpdateVMConfigSyncRequest) SetHostpci15(v string)

SetHostpci15 gets a reference to the given string and assigns it to the Hostpci15 field.

func (*UpdateVMConfigSyncRequest) SetHostpci16

func (o *UpdateVMConfigSyncRequest) SetHostpci16(v string)

SetHostpci16 gets a reference to the given string and assigns it to the Hostpci16 field.

func (*UpdateVMConfigSyncRequest) SetHostpci17

func (o *UpdateVMConfigSyncRequest) SetHostpci17(v string)

SetHostpci17 gets a reference to the given string and assigns it to the Hostpci17 field.

func (*UpdateVMConfigSyncRequest) SetHostpci18

func (o *UpdateVMConfigSyncRequest) SetHostpci18(v string)

SetHostpci18 gets a reference to the given string and assigns it to the Hostpci18 field.

func (*UpdateVMConfigSyncRequest) SetHostpci19

func (o *UpdateVMConfigSyncRequest) SetHostpci19(v string)

SetHostpci19 gets a reference to the given string and assigns it to the Hostpci19 field.

func (*UpdateVMConfigSyncRequest) SetHostpci2

func (o *UpdateVMConfigSyncRequest) SetHostpci2(v string)

SetHostpci2 gets a reference to the given string and assigns it to the Hostpci2 field.

func (*UpdateVMConfigSyncRequest) SetHostpci20

func (o *UpdateVMConfigSyncRequest) SetHostpci20(v string)

SetHostpci20 gets a reference to the given string and assigns it to the Hostpci20 field.

func (*UpdateVMConfigSyncRequest) SetHostpci21

func (o *UpdateVMConfigSyncRequest) SetHostpci21(v string)

SetHostpci21 gets a reference to the given string and assigns it to the Hostpci21 field.

func (*UpdateVMConfigSyncRequest) SetHostpci22

func (o *UpdateVMConfigSyncRequest) SetHostpci22(v string)

SetHostpci22 gets a reference to the given string and assigns it to the Hostpci22 field.

func (*UpdateVMConfigSyncRequest) SetHostpci23

func (o *UpdateVMConfigSyncRequest) SetHostpci23(v string)

SetHostpci23 gets a reference to the given string and assigns it to the Hostpci23 field.

func (*UpdateVMConfigSyncRequest) SetHostpci24

func (o *UpdateVMConfigSyncRequest) SetHostpci24(v string)

SetHostpci24 gets a reference to the given string and assigns it to the Hostpci24 field.

func (*UpdateVMConfigSyncRequest) SetHostpci25

func (o *UpdateVMConfigSyncRequest) SetHostpci25(v string)

SetHostpci25 gets a reference to the given string and assigns it to the Hostpci25 field.

func (*UpdateVMConfigSyncRequest) SetHostpci26

func (o *UpdateVMConfigSyncRequest) SetHostpci26(v string)

SetHostpci26 gets a reference to the given string and assigns it to the Hostpci26 field.

func (*UpdateVMConfigSyncRequest) SetHostpci27

func (o *UpdateVMConfigSyncRequest) SetHostpci27(v string)

SetHostpci27 gets a reference to the given string and assigns it to the Hostpci27 field.

func (*UpdateVMConfigSyncRequest) SetHostpci28

func (o *UpdateVMConfigSyncRequest) SetHostpci28(v string)

SetHostpci28 gets a reference to the given string and assigns it to the Hostpci28 field.

func (*UpdateVMConfigSyncRequest) SetHostpci29

func (o *UpdateVMConfigSyncRequest) SetHostpci29(v string)

SetHostpci29 gets a reference to the given string and assigns it to the Hostpci29 field.

func (*UpdateVMConfigSyncRequest) SetHostpci3

func (o *UpdateVMConfigSyncRequest) SetHostpci3(v string)

SetHostpci3 gets a reference to the given string and assigns it to the Hostpci3 field.

func (*UpdateVMConfigSyncRequest) SetHostpci4

func (o *UpdateVMConfigSyncRequest) SetHostpci4(v string)

SetHostpci4 gets a reference to the given string and assigns it to the Hostpci4 field.

func (*UpdateVMConfigSyncRequest) SetHostpci5

func (o *UpdateVMConfigSyncRequest) SetHostpci5(v string)

SetHostpci5 gets a reference to the given string and assigns it to the Hostpci5 field.

func (*UpdateVMConfigSyncRequest) SetHostpci6

func (o *UpdateVMConfigSyncRequest) SetHostpci6(v string)

SetHostpci6 gets a reference to the given string and assigns it to the Hostpci6 field.

func (*UpdateVMConfigSyncRequest) SetHostpci7

func (o *UpdateVMConfigSyncRequest) SetHostpci7(v string)

SetHostpci7 gets a reference to the given string and assigns it to the Hostpci7 field.

func (*UpdateVMConfigSyncRequest) SetHostpci8

func (o *UpdateVMConfigSyncRequest) SetHostpci8(v string)

SetHostpci8 gets a reference to the given string and assigns it to the Hostpci8 field.

func (*UpdateVMConfigSyncRequest) SetHostpci9

func (o *UpdateVMConfigSyncRequest) SetHostpci9(v string)

SetHostpci9 gets a reference to the given string and assigns it to the Hostpci9 field.

func (*UpdateVMConfigSyncRequest) SetHotplug

func (o *UpdateVMConfigSyncRequest) SetHotplug(v string)

SetHotplug gets a reference to the given string and assigns it to the Hotplug field.

func (*UpdateVMConfigSyncRequest) SetHugepages

func (o *UpdateVMConfigSyncRequest) SetHugepages(v string)

SetHugepages gets a reference to the given string and assigns it to the Hugepages field.

func (*UpdateVMConfigSyncRequest) SetIde0

func (o *UpdateVMConfigSyncRequest) SetIde0(v string)

SetIde0 gets a reference to the given string and assigns it to the Ide0 field.

func (*UpdateVMConfigSyncRequest) SetIde1

func (o *UpdateVMConfigSyncRequest) SetIde1(v string)

SetIde1 gets a reference to the given string and assigns it to the Ide1 field.

func (*UpdateVMConfigSyncRequest) SetIde2

func (o *UpdateVMConfigSyncRequest) SetIde2(v string)

SetIde2 gets a reference to the given string and assigns it to the Ide2 field.

func (*UpdateVMConfigSyncRequest) SetIde3

func (o *UpdateVMConfigSyncRequest) SetIde3(v string)

SetIde3 gets a reference to the given string and assigns it to the Ide3 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig0

func (o *UpdateVMConfigSyncRequest) SetIpconfig0(v string)

SetIpconfig0 gets a reference to the given string and assigns it to the Ipconfig0 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig1

func (o *UpdateVMConfigSyncRequest) SetIpconfig1(v string)

SetIpconfig1 gets a reference to the given string and assigns it to the Ipconfig1 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig10

func (o *UpdateVMConfigSyncRequest) SetIpconfig10(v string)

SetIpconfig10 gets a reference to the given string and assigns it to the Ipconfig10 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig11

func (o *UpdateVMConfigSyncRequest) SetIpconfig11(v string)

SetIpconfig11 gets a reference to the given string and assigns it to the Ipconfig11 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig12

func (o *UpdateVMConfigSyncRequest) SetIpconfig12(v string)

SetIpconfig12 gets a reference to the given string and assigns it to the Ipconfig12 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig13

func (o *UpdateVMConfigSyncRequest) SetIpconfig13(v string)

SetIpconfig13 gets a reference to the given string and assigns it to the Ipconfig13 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig14

func (o *UpdateVMConfigSyncRequest) SetIpconfig14(v string)

SetIpconfig14 gets a reference to the given string and assigns it to the Ipconfig14 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig15

func (o *UpdateVMConfigSyncRequest) SetIpconfig15(v string)

SetIpconfig15 gets a reference to the given string and assigns it to the Ipconfig15 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig16

func (o *UpdateVMConfigSyncRequest) SetIpconfig16(v string)

SetIpconfig16 gets a reference to the given string and assigns it to the Ipconfig16 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig17

func (o *UpdateVMConfigSyncRequest) SetIpconfig17(v string)

SetIpconfig17 gets a reference to the given string and assigns it to the Ipconfig17 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig18

func (o *UpdateVMConfigSyncRequest) SetIpconfig18(v string)

SetIpconfig18 gets a reference to the given string and assigns it to the Ipconfig18 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig19

func (o *UpdateVMConfigSyncRequest) SetIpconfig19(v string)

SetIpconfig19 gets a reference to the given string and assigns it to the Ipconfig19 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig2

func (o *UpdateVMConfigSyncRequest) SetIpconfig2(v string)

SetIpconfig2 gets a reference to the given string and assigns it to the Ipconfig2 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig20

func (o *UpdateVMConfigSyncRequest) SetIpconfig20(v string)

SetIpconfig20 gets a reference to the given string and assigns it to the Ipconfig20 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig21

func (o *UpdateVMConfigSyncRequest) SetIpconfig21(v string)

SetIpconfig21 gets a reference to the given string and assigns it to the Ipconfig21 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig22

func (o *UpdateVMConfigSyncRequest) SetIpconfig22(v string)

SetIpconfig22 gets a reference to the given string and assigns it to the Ipconfig22 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig23

func (o *UpdateVMConfigSyncRequest) SetIpconfig23(v string)

SetIpconfig23 gets a reference to the given string and assigns it to the Ipconfig23 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig24

func (o *UpdateVMConfigSyncRequest) SetIpconfig24(v string)

SetIpconfig24 gets a reference to the given string and assigns it to the Ipconfig24 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig25

func (o *UpdateVMConfigSyncRequest) SetIpconfig25(v string)

SetIpconfig25 gets a reference to the given string and assigns it to the Ipconfig25 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig26

func (o *UpdateVMConfigSyncRequest) SetIpconfig26(v string)

SetIpconfig26 gets a reference to the given string and assigns it to the Ipconfig26 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig27

func (o *UpdateVMConfigSyncRequest) SetIpconfig27(v string)

SetIpconfig27 gets a reference to the given string and assigns it to the Ipconfig27 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig28

func (o *UpdateVMConfigSyncRequest) SetIpconfig28(v string)

SetIpconfig28 gets a reference to the given string and assigns it to the Ipconfig28 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig29

func (o *UpdateVMConfigSyncRequest) SetIpconfig29(v string)

SetIpconfig29 gets a reference to the given string and assigns it to the Ipconfig29 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig3

func (o *UpdateVMConfigSyncRequest) SetIpconfig3(v string)

SetIpconfig3 gets a reference to the given string and assigns it to the Ipconfig3 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig4

func (o *UpdateVMConfigSyncRequest) SetIpconfig4(v string)

SetIpconfig4 gets a reference to the given string and assigns it to the Ipconfig4 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig5

func (o *UpdateVMConfigSyncRequest) SetIpconfig5(v string)

SetIpconfig5 gets a reference to the given string and assigns it to the Ipconfig5 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig6

func (o *UpdateVMConfigSyncRequest) SetIpconfig6(v string)

SetIpconfig6 gets a reference to the given string and assigns it to the Ipconfig6 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig7

func (o *UpdateVMConfigSyncRequest) SetIpconfig7(v string)

SetIpconfig7 gets a reference to the given string and assigns it to the Ipconfig7 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig8

func (o *UpdateVMConfigSyncRequest) SetIpconfig8(v string)

SetIpconfig8 gets a reference to the given string and assigns it to the Ipconfig8 field.

func (*UpdateVMConfigSyncRequest) SetIpconfig9

func (o *UpdateVMConfigSyncRequest) SetIpconfig9(v string)

SetIpconfig9 gets a reference to the given string and assigns it to the Ipconfig9 field.

func (*UpdateVMConfigSyncRequest) SetIvshmem

func (o *UpdateVMConfigSyncRequest) SetIvshmem(v string)

SetIvshmem gets a reference to the given string and assigns it to the Ivshmem field.

func (*UpdateVMConfigSyncRequest) SetKeephugepages

func (o *UpdateVMConfigSyncRequest) SetKeephugepages(v int32)

SetKeephugepages gets a reference to the given int32 and assigns it to the Keephugepages field.

func (*UpdateVMConfigSyncRequest) SetKeyboard

func (o *UpdateVMConfigSyncRequest) SetKeyboard(v string)

SetKeyboard gets a reference to the given string and assigns it to the Keyboard field.

func (*UpdateVMConfigSyncRequest) SetKvm

func (o *UpdateVMConfigSyncRequest) SetKvm(v int32)

SetKvm gets a reference to the given int32 and assigns it to the Kvm field.

func (*UpdateVMConfigSyncRequest) SetLocaltime

func (o *UpdateVMConfigSyncRequest) SetLocaltime(v int32)

SetLocaltime gets a reference to the given int32 and assigns it to the Localtime field.

func (*UpdateVMConfigSyncRequest) SetLock

func (o *UpdateVMConfigSyncRequest) SetLock(v string)

SetLock gets a reference to the given string and assigns it to the Lock field.

func (*UpdateVMConfigSyncRequest) SetMachine

func (o *UpdateVMConfigSyncRequest) SetMachine(v string)

SetMachine gets a reference to the given string and assigns it to the Machine field.

func (*UpdateVMConfigSyncRequest) SetMemory

func (o *UpdateVMConfigSyncRequest) SetMemory(v int64)

SetMemory gets a reference to the given int64 and assigns it to the Memory field.

func (*UpdateVMConfigSyncRequest) SetMigrateDowntime

func (o *UpdateVMConfigSyncRequest) SetMigrateDowntime(v float32)

SetMigrateDowntime gets a reference to the given float32 and assigns it to the MigrateDowntime field.

func (*UpdateVMConfigSyncRequest) SetMigrateSpeed

func (o *UpdateVMConfigSyncRequest) SetMigrateSpeed(v int64)

SetMigrateSpeed gets a reference to the given int64 and assigns it to the MigrateSpeed field.

func (*UpdateVMConfigSyncRequest) SetName

func (o *UpdateVMConfigSyncRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateVMConfigSyncRequest) SetNameserver

func (o *UpdateVMConfigSyncRequest) SetNameserver(v string)

SetNameserver gets a reference to the given string and assigns it to the Nameserver field.

func (*UpdateVMConfigSyncRequest) SetNet0

func (o *UpdateVMConfigSyncRequest) SetNet0(v string)

SetNet0 gets a reference to the given string and assigns it to the Net0 field.

func (*UpdateVMConfigSyncRequest) SetNet1

func (o *UpdateVMConfigSyncRequest) SetNet1(v string)

SetNet1 gets a reference to the given string and assigns it to the Net1 field.

func (*UpdateVMConfigSyncRequest) SetNet10

func (o *UpdateVMConfigSyncRequest) SetNet10(v string)

SetNet10 gets a reference to the given string and assigns it to the Net10 field.

func (*UpdateVMConfigSyncRequest) SetNet11

func (o *UpdateVMConfigSyncRequest) SetNet11(v string)

SetNet11 gets a reference to the given string and assigns it to the Net11 field.

func (*UpdateVMConfigSyncRequest) SetNet12

func (o *UpdateVMConfigSyncRequest) SetNet12(v string)

SetNet12 gets a reference to the given string and assigns it to the Net12 field.

func (*UpdateVMConfigSyncRequest) SetNet13

func (o *UpdateVMConfigSyncRequest) SetNet13(v string)

SetNet13 gets a reference to the given string and assigns it to the Net13 field.

func (*UpdateVMConfigSyncRequest) SetNet14

func (o *UpdateVMConfigSyncRequest) SetNet14(v string)

SetNet14 gets a reference to the given string and assigns it to the Net14 field.

func (*UpdateVMConfigSyncRequest) SetNet15

func (o *UpdateVMConfigSyncRequest) SetNet15(v string)

SetNet15 gets a reference to the given string and assigns it to the Net15 field.

func (*UpdateVMConfigSyncRequest) SetNet16

func (o *UpdateVMConfigSyncRequest) SetNet16(v string)

SetNet16 gets a reference to the given string and assigns it to the Net16 field.

func (*UpdateVMConfigSyncRequest) SetNet17

func (o *UpdateVMConfigSyncRequest) SetNet17(v string)

SetNet17 gets a reference to the given string and assigns it to the Net17 field.

func (*UpdateVMConfigSyncRequest) SetNet18

func (o *UpdateVMConfigSyncRequest) SetNet18(v string)

SetNet18 gets a reference to the given string and assigns it to the Net18 field.

func (*UpdateVMConfigSyncRequest) SetNet19

func (o *UpdateVMConfigSyncRequest) SetNet19(v string)

SetNet19 gets a reference to the given string and assigns it to the Net19 field.

func (*UpdateVMConfigSyncRequest) SetNet2

func (o *UpdateVMConfigSyncRequest) SetNet2(v string)

SetNet2 gets a reference to the given string and assigns it to the Net2 field.

func (*UpdateVMConfigSyncRequest) SetNet20

func (o *UpdateVMConfigSyncRequest) SetNet20(v string)

SetNet20 gets a reference to the given string and assigns it to the Net20 field.

func (*UpdateVMConfigSyncRequest) SetNet21

func (o *UpdateVMConfigSyncRequest) SetNet21(v string)

SetNet21 gets a reference to the given string and assigns it to the Net21 field.

func (*UpdateVMConfigSyncRequest) SetNet22

func (o *UpdateVMConfigSyncRequest) SetNet22(v string)

SetNet22 gets a reference to the given string and assigns it to the Net22 field.

func (*UpdateVMConfigSyncRequest) SetNet23

func (o *UpdateVMConfigSyncRequest) SetNet23(v string)

SetNet23 gets a reference to the given string and assigns it to the Net23 field.

func (*UpdateVMConfigSyncRequest) SetNet24

func (o *UpdateVMConfigSyncRequest) SetNet24(v string)

SetNet24 gets a reference to the given string and assigns it to the Net24 field.

func (*UpdateVMConfigSyncRequest) SetNet25

func (o *UpdateVMConfigSyncRequest) SetNet25(v string)

SetNet25 gets a reference to the given string and assigns it to the Net25 field.

func (*UpdateVMConfigSyncRequest) SetNet26

func (o *UpdateVMConfigSyncRequest) SetNet26(v string)

SetNet26 gets a reference to the given string and assigns it to the Net26 field.

func (*UpdateVMConfigSyncRequest) SetNet27

func (o *UpdateVMConfigSyncRequest) SetNet27(v string)

SetNet27 gets a reference to the given string and assigns it to the Net27 field.

func (*UpdateVMConfigSyncRequest) SetNet28

func (o *UpdateVMConfigSyncRequest) SetNet28(v string)

SetNet28 gets a reference to the given string and assigns it to the Net28 field.

func (*UpdateVMConfigSyncRequest) SetNet29

func (o *UpdateVMConfigSyncRequest) SetNet29(v string)

SetNet29 gets a reference to the given string and assigns it to the Net29 field.

func (*UpdateVMConfigSyncRequest) SetNet3

func (o *UpdateVMConfigSyncRequest) SetNet3(v string)

SetNet3 gets a reference to the given string and assigns it to the Net3 field.

func (*UpdateVMConfigSyncRequest) SetNet30

func (o *UpdateVMConfigSyncRequest) SetNet30(v string)

SetNet30 gets a reference to the given string and assigns it to the Net30 field.

func (*UpdateVMConfigSyncRequest) SetNet31

func (o *UpdateVMConfigSyncRequest) SetNet31(v string)

SetNet31 gets a reference to the given string and assigns it to the Net31 field.

func (*UpdateVMConfigSyncRequest) SetNet4

func (o *UpdateVMConfigSyncRequest) SetNet4(v string)

SetNet4 gets a reference to the given string and assigns it to the Net4 field.

func (*UpdateVMConfigSyncRequest) SetNet5

func (o *UpdateVMConfigSyncRequest) SetNet5(v string)

SetNet5 gets a reference to the given string and assigns it to the Net5 field.

func (*UpdateVMConfigSyncRequest) SetNet6

func (o *UpdateVMConfigSyncRequest) SetNet6(v string)

SetNet6 gets a reference to the given string and assigns it to the Net6 field.

func (*UpdateVMConfigSyncRequest) SetNet7

func (o *UpdateVMConfigSyncRequest) SetNet7(v string)

SetNet7 gets a reference to the given string and assigns it to the Net7 field.

func (*UpdateVMConfigSyncRequest) SetNet8

func (o *UpdateVMConfigSyncRequest) SetNet8(v string)

SetNet8 gets a reference to the given string and assigns it to the Net8 field.

func (*UpdateVMConfigSyncRequest) SetNet9

func (o *UpdateVMConfigSyncRequest) SetNet9(v string)

SetNet9 gets a reference to the given string and assigns it to the Net9 field.

func (*UpdateVMConfigSyncRequest) SetNuma

func (o *UpdateVMConfigSyncRequest) SetNuma(v int32)

SetNuma gets a reference to the given int32 and assigns it to the Numa field.

func (*UpdateVMConfigSyncRequest) SetNuma0

func (o *UpdateVMConfigSyncRequest) SetNuma0(v string)

SetNuma0 gets a reference to the given string and assigns it to the Numa0 field.

func (*UpdateVMConfigSyncRequest) SetNuma1

func (o *UpdateVMConfigSyncRequest) SetNuma1(v string)

SetNuma1 gets a reference to the given string and assigns it to the Numa1 field.

func (*UpdateVMConfigSyncRequest) SetNuma10

func (o *UpdateVMConfigSyncRequest) SetNuma10(v string)

SetNuma10 gets a reference to the given string and assigns it to the Numa10 field.

func (*UpdateVMConfigSyncRequest) SetNuma11

func (o *UpdateVMConfigSyncRequest) SetNuma11(v string)

SetNuma11 gets a reference to the given string and assigns it to the Numa11 field.

func (*UpdateVMConfigSyncRequest) SetNuma12

func (o *UpdateVMConfigSyncRequest) SetNuma12(v string)

SetNuma12 gets a reference to the given string and assigns it to the Numa12 field.

func (*UpdateVMConfigSyncRequest) SetNuma13

func (o *UpdateVMConfigSyncRequest) SetNuma13(v string)

SetNuma13 gets a reference to the given string and assigns it to the Numa13 field.

func (*UpdateVMConfigSyncRequest) SetNuma14

func (o *UpdateVMConfigSyncRequest) SetNuma14(v string)

SetNuma14 gets a reference to the given string and assigns it to the Numa14 field.

func (*UpdateVMConfigSyncRequest) SetNuma15

func (o *UpdateVMConfigSyncRequest) SetNuma15(v string)

SetNuma15 gets a reference to the given string and assigns it to the Numa15 field.

func (*UpdateVMConfigSyncRequest) SetNuma16

func (o *UpdateVMConfigSyncRequest) SetNuma16(v string)

SetNuma16 gets a reference to the given string and assigns it to the Numa16 field.

func (*UpdateVMConfigSyncRequest) SetNuma17

func (o *UpdateVMConfigSyncRequest) SetNuma17(v string)

SetNuma17 gets a reference to the given string and assigns it to the Numa17 field.

func (*UpdateVMConfigSyncRequest) SetNuma18

func (o *UpdateVMConfigSyncRequest) SetNuma18(v string)

SetNuma18 gets a reference to the given string and assigns it to the Numa18 field.

func (*UpdateVMConfigSyncRequest) SetNuma19

func (o *UpdateVMConfigSyncRequest) SetNuma19(v string)

SetNuma19 gets a reference to the given string and assigns it to the Numa19 field.

func (*UpdateVMConfigSyncRequest) SetNuma2

func (o *UpdateVMConfigSyncRequest) SetNuma2(v string)

SetNuma2 gets a reference to the given string and assigns it to the Numa2 field.

func (*UpdateVMConfigSyncRequest) SetNuma20

func (o *UpdateVMConfigSyncRequest) SetNuma20(v string)

SetNuma20 gets a reference to the given string and assigns it to the Numa20 field.

func (*UpdateVMConfigSyncRequest) SetNuma21

func (o *UpdateVMConfigSyncRequest) SetNuma21(v string)

SetNuma21 gets a reference to the given string and assigns it to the Numa21 field.

func (*UpdateVMConfigSyncRequest) SetNuma22

func (o *UpdateVMConfigSyncRequest) SetNuma22(v string)

SetNuma22 gets a reference to the given string and assigns it to the Numa22 field.

func (*UpdateVMConfigSyncRequest) SetNuma23

func (o *UpdateVMConfigSyncRequest) SetNuma23(v string)

SetNuma23 gets a reference to the given string and assigns it to the Numa23 field.

func (*UpdateVMConfigSyncRequest) SetNuma24

func (o *UpdateVMConfigSyncRequest) SetNuma24(v string)

SetNuma24 gets a reference to the given string and assigns it to the Numa24 field.

func (*UpdateVMConfigSyncRequest) SetNuma25

func (o *UpdateVMConfigSyncRequest) SetNuma25(v string)

SetNuma25 gets a reference to the given string and assigns it to the Numa25 field.

func (*UpdateVMConfigSyncRequest) SetNuma26

func (o *UpdateVMConfigSyncRequest) SetNuma26(v string)

SetNuma26 gets a reference to the given string and assigns it to the Numa26 field.

func (*UpdateVMConfigSyncRequest) SetNuma27

func (o *UpdateVMConfigSyncRequest) SetNuma27(v string)

SetNuma27 gets a reference to the given string and assigns it to the Numa27 field.

func (*UpdateVMConfigSyncRequest) SetNuma28

func (o *UpdateVMConfigSyncRequest) SetNuma28(v string)

SetNuma28 gets a reference to the given string and assigns it to the Numa28 field.

func (*UpdateVMConfigSyncRequest) SetNuma29

func (o *UpdateVMConfigSyncRequest) SetNuma29(v string)

SetNuma29 gets a reference to the given string and assigns it to the Numa29 field.

func (*UpdateVMConfigSyncRequest) SetNuma3

func (o *UpdateVMConfigSyncRequest) SetNuma3(v string)

SetNuma3 gets a reference to the given string and assigns it to the Numa3 field.

func (*UpdateVMConfigSyncRequest) SetNuma4

func (o *UpdateVMConfigSyncRequest) SetNuma4(v string)

SetNuma4 gets a reference to the given string and assigns it to the Numa4 field.

func (*UpdateVMConfigSyncRequest) SetNuma5

func (o *UpdateVMConfigSyncRequest) SetNuma5(v string)

SetNuma5 gets a reference to the given string and assigns it to the Numa5 field.

func (*UpdateVMConfigSyncRequest) SetNuma6

func (o *UpdateVMConfigSyncRequest) SetNuma6(v string)

SetNuma6 gets a reference to the given string and assigns it to the Numa6 field.

func (*UpdateVMConfigSyncRequest) SetNuma7

func (o *UpdateVMConfigSyncRequest) SetNuma7(v string)

SetNuma7 gets a reference to the given string and assigns it to the Numa7 field.

func (*UpdateVMConfigSyncRequest) SetNuma8

func (o *UpdateVMConfigSyncRequest) SetNuma8(v string)

SetNuma8 gets a reference to the given string and assigns it to the Numa8 field.

func (*UpdateVMConfigSyncRequest) SetNuma9

func (o *UpdateVMConfigSyncRequest) SetNuma9(v string)

SetNuma9 gets a reference to the given string and assigns it to the Numa9 field.

func (*UpdateVMConfigSyncRequest) SetOnboot

func (o *UpdateVMConfigSyncRequest) SetOnboot(v int32)

SetOnboot gets a reference to the given int32 and assigns it to the Onboot field.

func (*UpdateVMConfigSyncRequest) SetOstype

func (o *UpdateVMConfigSyncRequest) SetOstype(v string)

SetOstype gets a reference to the given string and assigns it to the Ostype field.

func (*UpdateVMConfigSyncRequest) SetParallel0

func (o *UpdateVMConfigSyncRequest) SetParallel0(v string)

SetParallel0 gets a reference to the given string and assigns it to the Parallel0 field.

func (*UpdateVMConfigSyncRequest) SetParallel1

func (o *UpdateVMConfigSyncRequest) SetParallel1(v string)

SetParallel1 gets a reference to the given string and assigns it to the Parallel1 field.

func (*UpdateVMConfigSyncRequest) SetParallel2

func (o *UpdateVMConfigSyncRequest) SetParallel2(v string)

SetParallel2 gets a reference to the given string and assigns it to the Parallel2 field.

func (*UpdateVMConfigSyncRequest) SetParallel3

func (o *UpdateVMConfigSyncRequest) SetParallel3(v string)

SetParallel3 gets a reference to the given string and assigns it to the Parallel3 field.

func (*UpdateVMConfigSyncRequest) SetProtection

func (o *UpdateVMConfigSyncRequest) SetProtection(v int32)

SetProtection gets a reference to the given int32 and assigns it to the Protection field.

func (*UpdateVMConfigSyncRequest) SetReboot

func (o *UpdateVMConfigSyncRequest) SetReboot(v int32)

SetReboot gets a reference to the given int32 and assigns it to the Reboot field.

func (*UpdateVMConfigSyncRequest) SetRevert

func (o *UpdateVMConfigSyncRequest) SetRevert(v string)

SetRevert gets a reference to the given string and assigns it to the Revert field.

func (*UpdateVMConfigSyncRequest) SetRng0

func (o *UpdateVMConfigSyncRequest) SetRng0(v string)

SetRng0 gets a reference to the given string and assigns it to the Rng0 field.

func (*UpdateVMConfigSyncRequest) SetSata0

func (o *UpdateVMConfigSyncRequest) SetSata0(v string)

SetSata0 gets a reference to the given string and assigns it to the Sata0 field.

func (*UpdateVMConfigSyncRequest) SetSata1

func (o *UpdateVMConfigSyncRequest) SetSata1(v string)

SetSata1 gets a reference to the given string and assigns it to the Sata1 field.

func (*UpdateVMConfigSyncRequest) SetSata2

func (o *UpdateVMConfigSyncRequest) SetSata2(v string)

SetSata2 gets a reference to the given string and assigns it to the Sata2 field.

func (*UpdateVMConfigSyncRequest) SetSata3

func (o *UpdateVMConfigSyncRequest) SetSata3(v string)

SetSata3 gets a reference to the given string and assigns it to the Sata3 field.

func (*UpdateVMConfigSyncRequest) SetSata4

func (o *UpdateVMConfigSyncRequest) SetSata4(v string)

SetSata4 gets a reference to the given string and assigns it to the Sata4 field.

func (*UpdateVMConfigSyncRequest) SetSata5

func (o *UpdateVMConfigSyncRequest) SetSata5(v string)

SetSata5 gets a reference to the given string and assigns it to the Sata5 field.

func (*UpdateVMConfigSyncRequest) SetScsi0

func (o *UpdateVMConfigSyncRequest) SetScsi0(v string)

SetScsi0 gets a reference to the given string and assigns it to the Scsi0 field.

func (*UpdateVMConfigSyncRequest) SetScsi1

func (o *UpdateVMConfigSyncRequest) SetScsi1(v string)

SetScsi1 gets a reference to the given string and assigns it to the Scsi1 field.

func (*UpdateVMConfigSyncRequest) SetScsi10

func (o *UpdateVMConfigSyncRequest) SetScsi10(v string)

SetScsi10 gets a reference to the given string and assigns it to the Scsi10 field.

func (*UpdateVMConfigSyncRequest) SetScsi11

func (o *UpdateVMConfigSyncRequest) SetScsi11(v string)

SetScsi11 gets a reference to the given string and assigns it to the Scsi11 field.

func (*UpdateVMConfigSyncRequest) SetScsi12

func (o *UpdateVMConfigSyncRequest) SetScsi12(v string)

SetScsi12 gets a reference to the given string and assigns it to the Scsi12 field.

func (*UpdateVMConfigSyncRequest) SetScsi13

func (o *UpdateVMConfigSyncRequest) SetScsi13(v string)

SetScsi13 gets a reference to the given string and assigns it to the Scsi13 field.

func (*UpdateVMConfigSyncRequest) SetScsi14

func (o *UpdateVMConfigSyncRequest) SetScsi14(v string)

SetScsi14 gets a reference to the given string and assigns it to the Scsi14 field.

func (*UpdateVMConfigSyncRequest) SetScsi15

func (o *UpdateVMConfigSyncRequest) SetScsi15(v string)

SetScsi15 gets a reference to the given string and assigns it to the Scsi15 field.

func (*UpdateVMConfigSyncRequest) SetScsi16

func (o *UpdateVMConfigSyncRequest) SetScsi16(v string)

SetScsi16 gets a reference to the given string and assigns it to the Scsi16 field.

func (*UpdateVMConfigSyncRequest) SetScsi17

func (o *UpdateVMConfigSyncRequest) SetScsi17(v string)

SetScsi17 gets a reference to the given string and assigns it to the Scsi17 field.

func (*UpdateVMConfigSyncRequest) SetScsi18

func (o *UpdateVMConfigSyncRequest) SetScsi18(v string)

SetScsi18 gets a reference to the given string and assigns it to the Scsi18 field.

func (*UpdateVMConfigSyncRequest) SetScsi19

func (o *UpdateVMConfigSyncRequest) SetScsi19(v string)

SetScsi19 gets a reference to the given string and assigns it to the Scsi19 field.

func (*UpdateVMConfigSyncRequest) SetScsi2

func (o *UpdateVMConfigSyncRequest) SetScsi2(v string)

SetScsi2 gets a reference to the given string and assigns it to the Scsi2 field.

func (*UpdateVMConfigSyncRequest) SetScsi20

func (o *UpdateVMConfigSyncRequest) SetScsi20(v string)

SetScsi20 gets a reference to the given string and assigns it to the Scsi20 field.

func (*UpdateVMConfigSyncRequest) SetScsi21

func (o *UpdateVMConfigSyncRequest) SetScsi21(v string)

SetScsi21 gets a reference to the given string and assigns it to the Scsi21 field.

func (*UpdateVMConfigSyncRequest) SetScsi22

func (o *UpdateVMConfigSyncRequest) SetScsi22(v string)

SetScsi22 gets a reference to the given string and assigns it to the Scsi22 field.

func (*UpdateVMConfigSyncRequest) SetScsi23

func (o *UpdateVMConfigSyncRequest) SetScsi23(v string)

SetScsi23 gets a reference to the given string and assigns it to the Scsi23 field.

func (*UpdateVMConfigSyncRequest) SetScsi24

func (o *UpdateVMConfigSyncRequest) SetScsi24(v string)

SetScsi24 gets a reference to the given string and assigns it to the Scsi24 field.

func (*UpdateVMConfigSyncRequest) SetScsi25

func (o *UpdateVMConfigSyncRequest) SetScsi25(v string)

SetScsi25 gets a reference to the given string and assigns it to the Scsi25 field.

func (*UpdateVMConfigSyncRequest) SetScsi26

func (o *UpdateVMConfigSyncRequest) SetScsi26(v string)

SetScsi26 gets a reference to the given string and assigns it to the Scsi26 field.

func (*UpdateVMConfigSyncRequest) SetScsi27

func (o *UpdateVMConfigSyncRequest) SetScsi27(v string)

SetScsi27 gets a reference to the given string and assigns it to the Scsi27 field.

func (*UpdateVMConfigSyncRequest) SetScsi28

func (o *UpdateVMConfigSyncRequest) SetScsi28(v string)

SetScsi28 gets a reference to the given string and assigns it to the Scsi28 field.

func (*UpdateVMConfigSyncRequest) SetScsi29

func (o *UpdateVMConfigSyncRequest) SetScsi29(v string)

SetScsi29 gets a reference to the given string and assigns it to the Scsi29 field.

func (*UpdateVMConfigSyncRequest) SetScsi3

func (o *UpdateVMConfigSyncRequest) SetScsi3(v string)

SetScsi3 gets a reference to the given string and assigns it to the Scsi3 field.

func (*UpdateVMConfigSyncRequest) SetScsi4

func (o *UpdateVMConfigSyncRequest) SetScsi4(v string)

SetScsi4 gets a reference to the given string and assigns it to the Scsi4 field.

func (*UpdateVMConfigSyncRequest) SetScsi5

func (o *UpdateVMConfigSyncRequest) SetScsi5(v string)

SetScsi5 gets a reference to the given string and assigns it to the Scsi5 field.

func (*UpdateVMConfigSyncRequest) SetScsi6

func (o *UpdateVMConfigSyncRequest) SetScsi6(v string)

SetScsi6 gets a reference to the given string and assigns it to the Scsi6 field.

func (*UpdateVMConfigSyncRequest) SetScsi7

func (o *UpdateVMConfigSyncRequest) SetScsi7(v string)

SetScsi7 gets a reference to the given string and assigns it to the Scsi7 field.

func (*UpdateVMConfigSyncRequest) SetScsi8

func (o *UpdateVMConfigSyncRequest) SetScsi8(v string)

SetScsi8 gets a reference to the given string and assigns it to the Scsi8 field.

func (*UpdateVMConfigSyncRequest) SetScsi9

func (o *UpdateVMConfigSyncRequest) SetScsi9(v string)

SetScsi9 gets a reference to the given string and assigns it to the Scsi9 field.

func (*UpdateVMConfigSyncRequest) SetScsihw

func (o *UpdateVMConfigSyncRequest) SetScsihw(v string)

SetScsihw gets a reference to the given string and assigns it to the Scsihw field.

func (*UpdateVMConfigSyncRequest) SetSearchdomain

func (o *UpdateVMConfigSyncRequest) SetSearchdomain(v string)

SetSearchdomain gets a reference to the given string and assigns it to the Searchdomain field.

func (*UpdateVMConfigSyncRequest) SetSerial0

func (o *UpdateVMConfigSyncRequest) SetSerial0(v string)

SetSerial0 gets a reference to the given string and assigns it to the Serial0 field.

func (*UpdateVMConfigSyncRequest) SetSerial1

func (o *UpdateVMConfigSyncRequest) SetSerial1(v string)

SetSerial1 gets a reference to the given string and assigns it to the Serial1 field.

func (*UpdateVMConfigSyncRequest) SetSerial2

func (o *UpdateVMConfigSyncRequest) SetSerial2(v string)

SetSerial2 gets a reference to the given string and assigns it to the Serial2 field.

func (*UpdateVMConfigSyncRequest) SetSerial3

func (o *UpdateVMConfigSyncRequest) SetSerial3(v string)

SetSerial3 gets a reference to the given string and assigns it to the Serial3 field.

func (*UpdateVMConfigSyncRequest) SetShares

func (o *UpdateVMConfigSyncRequest) SetShares(v int64)

SetShares gets a reference to the given int64 and assigns it to the Shares field.

func (*UpdateVMConfigSyncRequest) SetSkiplock

func (o *UpdateVMConfigSyncRequest) SetSkiplock(v int32)

SetSkiplock gets a reference to the given int32 and assigns it to the Skiplock field.

func (*UpdateVMConfigSyncRequest) SetSmbios1

func (o *UpdateVMConfigSyncRequest) SetSmbios1(v string)

SetSmbios1 gets a reference to the given string and assigns it to the Smbios1 field.

func (*UpdateVMConfigSyncRequest) SetSmp

func (o *UpdateVMConfigSyncRequest) SetSmp(v int64)

SetSmp gets a reference to the given int64 and assigns it to the Smp field.

func (*UpdateVMConfigSyncRequest) SetSockets

func (o *UpdateVMConfigSyncRequest) SetSockets(v int64)

SetSockets gets a reference to the given int64 and assigns it to the Sockets field.

func (*UpdateVMConfigSyncRequest) SetSpiceEnhancements

func (o *UpdateVMConfigSyncRequest) SetSpiceEnhancements(v string)

SetSpiceEnhancements gets a reference to the given string and assigns it to the SpiceEnhancements field.

func (*UpdateVMConfigSyncRequest) SetSshkeys

func (o *UpdateVMConfigSyncRequest) SetSshkeys(v string)

SetSshkeys gets a reference to the given string and assigns it to the Sshkeys field.

func (*UpdateVMConfigSyncRequest) SetStartdate

func (o *UpdateVMConfigSyncRequest) SetStartdate(v string)

SetStartdate gets a reference to the given string and assigns it to the Startdate field.

func (*UpdateVMConfigSyncRequest) SetStartup

func (o *UpdateVMConfigSyncRequest) SetStartup(v string)

SetStartup gets a reference to the given string and assigns it to the Startup field.

func (*UpdateVMConfigSyncRequest) SetTablet

func (o *UpdateVMConfigSyncRequest) SetTablet(v int32)

SetTablet gets a reference to the given int32 and assigns it to the Tablet field.

func (*UpdateVMConfigSyncRequest) SetTags

func (o *UpdateVMConfigSyncRequest) SetTags(v string)

SetTags gets a reference to the given string and assigns it to the Tags field.

func (*UpdateVMConfigSyncRequest) SetTdf

func (o *UpdateVMConfigSyncRequest) SetTdf(v int32)

SetTdf gets a reference to the given int32 and assigns it to the Tdf field.

func (*UpdateVMConfigSyncRequest) SetTemplate

func (o *UpdateVMConfigSyncRequest) SetTemplate(v int32)

SetTemplate gets a reference to the given int32 and assigns it to the Template field.

func (*UpdateVMConfigSyncRequest) SetTpmstate0

func (o *UpdateVMConfigSyncRequest) SetTpmstate0(v string)

SetTpmstate0 gets a reference to the given string and assigns it to the Tpmstate0 field.

func (*UpdateVMConfigSyncRequest) SetUnused0

func (o *UpdateVMConfigSyncRequest) SetUnused0(v string)

SetUnused0 gets a reference to the given string and assigns it to the Unused0 field.

func (*UpdateVMConfigSyncRequest) SetUnused1

func (o *UpdateVMConfigSyncRequest) SetUnused1(v string)

SetUnused1 gets a reference to the given string and assigns it to the Unused1 field.

func (*UpdateVMConfigSyncRequest) SetUnused10

func (o *UpdateVMConfigSyncRequest) SetUnused10(v string)

SetUnused10 gets a reference to the given string and assigns it to the Unused10 field.

func (*UpdateVMConfigSyncRequest) SetUnused11

func (o *UpdateVMConfigSyncRequest) SetUnused11(v string)

SetUnused11 gets a reference to the given string and assigns it to the Unused11 field.

func (*UpdateVMConfigSyncRequest) SetUnused12

func (o *UpdateVMConfigSyncRequest) SetUnused12(v string)

SetUnused12 gets a reference to the given string and assigns it to the Unused12 field.

func (*UpdateVMConfigSyncRequest) SetUnused13

func (o *UpdateVMConfigSyncRequest) SetUnused13(v string)

SetUnused13 gets a reference to the given string and assigns it to the Unused13 field.

func (*UpdateVMConfigSyncRequest) SetUnused14

func (o *UpdateVMConfigSyncRequest) SetUnused14(v string)

SetUnused14 gets a reference to the given string and assigns it to the Unused14 field.

func (*UpdateVMConfigSyncRequest) SetUnused15

func (o *UpdateVMConfigSyncRequest) SetUnused15(v string)

SetUnused15 gets a reference to the given string and assigns it to the Unused15 field.

func (*UpdateVMConfigSyncRequest) SetUnused16

func (o *UpdateVMConfigSyncRequest) SetUnused16(v string)

SetUnused16 gets a reference to the given string and assigns it to the Unused16 field.

func (*UpdateVMConfigSyncRequest) SetUnused17

func (o *UpdateVMConfigSyncRequest) SetUnused17(v string)

SetUnused17 gets a reference to the given string and assigns it to the Unused17 field.

func (*UpdateVMConfigSyncRequest) SetUnused18

func (o *UpdateVMConfigSyncRequest) SetUnused18(v string)

SetUnused18 gets a reference to the given string and assigns it to the Unused18 field.

func (*UpdateVMConfigSyncRequest) SetUnused19

func (o *UpdateVMConfigSyncRequest) SetUnused19(v string)

SetUnused19 gets a reference to the given string and assigns it to the Unused19 field.

func (*UpdateVMConfigSyncRequest) SetUnused2

func (o *UpdateVMConfigSyncRequest) SetUnused2(v string)

SetUnused2 gets a reference to the given string and assigns it to the Unused2 field.

func (*UpdateVMConfigSyncRequest) SetUnused20

func (o *UpdateVMConfigSyncRequest) SetUnused20(v string)

SetUnused20 gets a reference to the given string and assigns it to the Unused20 field.

func (*UpdateVMConfigSyncRequest) SetUnused21

func (o *UpdateVMConfigSyncRequest) SetUnused21(v string)

SetUnused21 gets a reference to the given string and assigns it to the Unused21 field.

func (*UpdateVMConfigSyncRequest) SetUnused22

func (o *UpdateVMConfigSyncRequest) SetUnused22(v string)

SetUnused22 gets a reference to the given string and assigns it to the Unused22 field.

func (*UpdateVMConfigSyncRequest) SetUnused23

func (o *UpdateVMConfigSyncRequest) SetUnused23(v string)

SetUnused23 gets a reference to the given string and assigns it to the Unused23 field.

func (*UpdateVMConfigSyncRequest) SetUnused24

func (o *UpdateVMConfigSyncRequest) SetUnused24(v string)

SetUnused24 gets a reference to the given string and assigns it to the Unused24 field.

func (*UpdateVMConfigSyncRequest) SetUnused25

func (o *UpdateVMConfigSyncRequest) SetUnused25(v string)

SetUnused25 gets a reference to the given string and assigns it to the Unused25 field.

func (*UpdateVMConfigSyncRequest) SetUnused26

func (o *UpdateVMConfigSyncRequest) SetUnused26(v string)

SetUnused26 gets a reference to the given string and assigns it to the Unused26 field.

func (*UpdateVMConfigSyncRequest) SetUnused27

func (o *UpdateVMConfigSyncRequest) SetUnused27(v string)

SetUnused27 gets a reference to the given string and assigns it to the Unused27 field.

func (*UpdateVMConfigSyncRequest) SetUnused28

func (o *UpdateVMConfigSyncRequest) SetUnused28(v string)

SetUnused28 gets a reference to the given string and assigns it to the Unused28 field.

func (*UpdateVMConfigSyncRequest) SetUnused29

func (o *UpdateVMConfigSyncRequest) SetUnused29(v string)

SetUnused29 gets a reference to the given string and assigns it to the Unused29 field.

func (*UpdateVMConfigSyncRequest) SetUnused3

func (o *UpdateVMConfigSyncRequest) SetUnused3(v string)

SetUnused3 gets a reference to the given string and assigns it to the Unused3 field.

func (*UpdateVMConfigSyncRequest) SetUnused4

func (o *UpdateVMConfigSyncRequest) SetUnused4(v string)

SetUnused4 gets a reference to the given string and assigns it to the Unused4 field.

func (*UpdateVMConfigSyncRequest) SetUnused5

func (o *UpdateVMConfigSyncRequest) SetUnused5(v string)

SetUnused5 gets a reference to the given string and assigns it to the Unused5 field.

func (*UpdateVMConfigSyncRequest) SetUnused6

func (o *UpdateVMConfigSyncRequest) SetUnused6(v string)

SetUnused6 gets a reference to the given string and assigns it to the Unused6 field.

func (*UpdateVMConfigSyncRequest) SetUnused7

func (o *UpdateVMConfigSyncRequest) SetUnused7(v string)

SetUnused7 gets a reference to the given string and assigns it to the Unused7 field.

func (*UpdateVMConfigSyncRequest) SetUnused8

func (o *UpdateVMConfigSyncRequest) SetUnused8(v string)

SetUnused8 gets a reference to the given string and assigns it to the Unused8 field.

func (*UpdateVMConfigSyncRequest) SetUnused9

func (o *UpdateVMConfigSyncRequest) SetUnused9(v string)

SetUnused9 gets a reference to the given string and assigns it to the Unused9 field.

func (*UpdateVMConfigSyncRequest) SetUsb0

func (o *UpdateVMConfigSyncRequest) SetUsb0(v string)

SetUsb0 gets a reference to the given string and assigns it to the Usb0 field.

func (*UpdateVMConfigSyncRequest) SetUsb1

func (o *UpdateVMConfigSyncRequest) SetUsb1(v string)

SetUsb1 gets a reference to the given string and assigns it to the Usb1 field.

func (*UpdateVMConfigSyncRequest) SetUsb2

func (o *UpdateVMConfigSyncRequest) SetUsb2(v string)

SetUsb2 gets a reference to the given string and assigns it to the Usb2 field.

func (*UpdateVMConfigSyncRequest) SetUsb3

func (o *UpdateVMConfigSyncRequest) SetUsb3(v string)

SetUsb3 gets a reference to the given string and assigns it to the Usb3 field.

func (*UpdateVMConfigSyncRequest) SetVcpus

func (o *UpdateVMConfigSyncRequest) SetVcpus(v int64)

SetVcpus gets a reference to the given int64 and assigns it to the Vcpus field.

func (*UpdateVMConfigSyncRequest) SetVga

func (o *UpdateVMConfigSyncRequest) SetVga(v string)

SetVga gets a reference to the given string and assigns it to the Vga field.

func (*UpdateVMConfigSyncRequest) SetVirtio0

func (o *UpdateVMConfigSyncRequest) SetVirtio0(v string)

SetVirtio0 gets a reference to the given string and assigns it to the Virtio0 field.

func (*UpdateVMConfigSyncRequest) SetVirtio1

func (o *UpdateVMConfigSyncRequest) SetVirtio1(v string)

SetVirtio1 gets a reference to the given string and assigns it to the Virtio1 field.

func (*UpdateVMConfigSyncRequest) SetVirtio10

func (o *UpdateVMConfigSyncRequest) SetVirtio10(v string)

SetVirtio10 gets a reference to the given string and assigns it to the Virtio10 field.

func (*UpdateVMConfigSyncRequest) SetVirtio11

func (o *UpdateVMConfigSyncRequest) SetVirtio11(v string)

SetVirtio11 gets a reference to the given string and assigns it to the Virtio11 field.

func (*UpdateVMConfigSyncRequest) SetVirtio12

func (o *UpdateVMConfigSyncRequest) SetVirtio12(v string)

SetVirtio12 gets a reference to the given string and assigns it to the Virtio12 field.

func (*UpdateVMConfigSyncRequest) SetVirtio13

func (o *UpdateVMConfigSyncRequest) SetVirtio13(v string)

SetVirtio13 gets a reference to the given string and assigns it to the Virtio13 field.

func (*UpdateVMConfigSyncRequest) SetVirtio14

func (o *UpdateVMConfigSyncRequest) SetVirtio14(v string)

SetVirtio14 gets a reference to the given string and assigns it to the Virtio14 field.

func (*UpdateVMConfigSyncRequest) SetVirtio15

func (o *UpdateVMConfigSyncRequest) SetVirtio15(v string)

SetVirtio15 gets a reference to the given string and assigns it to the Virtio15 field.

func (*UpdateVMConfigSyncRequest) SetVirtio2

func (o *UpdateVMConfigSyncRequest) SetVirtio2(v string)

SetVirtio2 gets a reference to the given string and assigns it to the Virtio2 field.

func (*UpdateVMConfigSyncRequest) SetVirtio3

func (o *UpdateVMConfigSyncRequest) SetVirtio3(v string)

SetVirtio3 gets a reference to the given string and assigns it to the Virtio3 field.

func (*UpdateVMConfigSyncRequest) SetVirtio4

func (o *UpdateVMConfigSyncRequest) SetVirtio4(v string)

SetVirtio4 gets a reference to the given string and assigns it to the Virtio4 field.

func (*UpdateVMConfigSyncRequest) SetVirtio5

func (o *UpdateVMConfigSyncRequest) SetVirtio5(v string)

SetVirtio5 gets a reference to the given string and assigns it to the Virtio5 field.

func (*UpdateVMConfigSyncRequest) SetVirtio6

func (o *UpdateVMConfigSyncRequest) SetVirtio6(v string)

SetVirtio6 gets a reference to the given string and assigns it to the Virtio6 field.

func (*UpdateVMConfigSyncRequest) SetVirtio7

func (o *UpdateVMConfigSyncRequest) SetVirtio7(v string)

SetVirtio7 gets a reference to the given string and assigns it to the Virtio7 field.

func (*UpdateVMConfigSyncRequest) SetVirtio8

func (o *UpdateVMConfigSyncRequest) SetVirtio8(v string)

SetVirtio8 gets a reference to the given string and assigns it to the Virtio8 field.

func (*UpdateVMConfigSyncRequest) SetVirtio9

func (o *UpdateVMConfigSyncRequest) SetVirtio9(v string)

SetVirtio9 gets a reference to the given string and assigns it to the Virtio9 field.

func (*UpdateVMConfigSyncRequest) SetVmgenid

func (o *UpdateVMConfigSyncRequest) SetVmgenid(v string)

SetVmgenid gets a reference to the given string and assigns it to the Vmgenid field.

func (*UpdateVMConfigSyncRequest) SetVmstatestorage

func (o *UpdateVMConfigSyncRequest) SetVmstatestorage(v string)

SetVmstatestorage gets a reference to the given string and assigns it to the Vmstatestorage field.

func (*UpdateVMConfigSyncRequest) SetWatchdog

func (o *UpdateVMConfigSyncRequest) SetWatchdog(v string)

SetWatchdog gets a reference to the given string and assigns it to the Watchdog field.

func (UpdateVMConfigSyncRequest) ToMap

func (o UpdateVMConfigSyncRequest) ToMap() (map[string]interface{}, error)

type UpdateVMSnapshotConfigRequest

type UpdateVMSnapshotConfigRequest struct {
	// A textual description or comment.
	Description *string `json:"description,omitempty"`
}

UpdateVMSnapshotConfigRequest struct for UpdateVMSnapshotConfigRequest

func NewUpdateVMSnapshotConfigRequest

func NewUpdateVMSnapshotConfigRequest() *UpdateVMSnapshotConfigRequest

NewUpdateVMSnapshotConfigRequest instantiates a new UpdateVMSnapshotConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateVMSnapshotConfigRequestWithDefaults

func NewUpdateVMSnapshotConfigRequestWithDefaults() *UpdateVMSnapshotConfigRequest

NewUpdateVMSnapshotConfigRequestWithDefaults instantiates a new UpdateVMSnapshotConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateVMSnapshotConfigRequest) GetDescription

func (o *UpdateVMSnapshotConfigRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateVMSnapshotConfigRequest) GetDescriptionOk

func (o *UpdateVMSnapshotConfigRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVMSnapshotConfigRequest) HasDescription

func (o *UpdateVMSnapshotConfigRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (UpdateVMSnapshotConfigRequest) MarshalJSON

func (o UpdateVMSnapshotConfigRequest) MarshalJSON() ([]byte, error)

func (*UpdateVMSnapshotConfigRequest) SetDescription

func (o *UpdateVMSnapshotConfigRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (UpdateVMSnapshotConfigRequest) ToMap

func (o UpdateVMSnapshotConfigRequest) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL