virtcontainers: clh: Re-generate the client code

This patch re-generates the client code for Cloud Hypervisor with the
updated `openapi-generator` v5.2.1.

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen
2021-08-23 10:07:14 -07:00
parent 80fba4d637
commit 46eb07e14f
74 changed files with 13379 additions and 755 deletions

View File

@@ -5,7 +5,72 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Size** | **int64** | |
**DeflateOnOom** | **bool** | Whether the balloon should deflate when the guest is under memory pressure. | [optional] [default to false]
**DeflateOnOom** | Pointer to **bool** | Whether the balloon should deflate when the guest is under memory pressure. | [optional] [default to false]
## Methods
### NewBalloonConfig
`func NewBalloonConfig(size int64, ) *BalloonConfig`
NewBalloonConfig instantiates a new BalloonConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewBalloonConfigWithDefaults
`func NewBalloonConfigWithDefaults() *BalloonConfig`
NewBalloonConfigWithDefaults instantiates a new BalloonConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetSize
`func (o *BalloonConfig) GetSize() int64`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *BalloonConfig) GetSizeOk() (*int64, bool)`
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSize
`func (o *BalloonConfig) SetSize(v int64)`
SetSize sets Size field to given value.
### GetDeflateOnOom
`func (o *BalloonConfig) GetDeflateOnOom() bool`
GetDeflateOnOom returns the DeflateOnOom field if non-nil, zero value otherwise.
### GetDeflateOnOomOk
`func (o *BalloonConfig) GetDeflateOnOomOk() (*bool, bool)`
GetDeflateOnOomOk returns a tuple with the DeflateOnOom field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDeflateOnOom
`func (o *BalloonConfig) SetDeflateOnOom(v bool)`
SetDeflateOnOom sets DeflateOnOom field to given value.
### HasDeflateOnOom
`func (o *BalloonConfig) HasDeflateOnOom() bool`
HasDeflateOnOom returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,6 +6,46 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Args** | **string** | |
## Methods
### NewCmdLineConfig
`func NewCmdLineConfig(args string, ) *CmdLineConfig`
NewCmdLineConfig instantiates a new CmdLineConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewCmdLineConfigWithDefaults
`func NewCmdLineConfigWithDefaults() *CmdLineConfig`
NewCmdLineConfigWithDefaults instantiates a new CmdLineConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetArgs
`func (o *CmdLineConfig) GetArgs() string`
GetArgs returns the Args field if non-nil, zero value otherwise.
### GetArgsOk
`func (o *CmdLineConfig) GetArgsOk() (*string, bool)`
GetArgsOk returns a tuple with the Args field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetArgs
`func (o *CmdLineConfig) SetArgs(v string)`
SetArgs sets Args field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,9 +4,99 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**File** | **string** | | [optional]
**File** | Pointer to **string** | | [optional]
**Mode** | **string** | |
**Iommu** | **bool** | | [optional] [default to false]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
## Methods
### NewConsoleConfig
`func NewConsoleConfig(mode string, ) *ConsoleConfig`
NewConsoleConfig instantiates a new ConsoleConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewConsoleConfigWithDefaults
`func NewConsoleConfigWithDefaults() *ConsoleConfig`
NewConsoleConfigWithDefaults instantiates a new ConsoleConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetFile
`func (o *ConsoleConfig) GetFile() string`
GetFile returns the File field if non-nil, zero value otherwise.
### GetFileOk
`func (o *ConsoleConfig) GetFileOk() (*string, bool)`
GetFileOk returns a tuple with the File field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFile
`func (o *ConsoleConfig) SetFile(v string)`
SetFile sets File field to given value.
### HasFile
`func (o *ConsoleConfig) HasFile() bool`
HasFile returns a boolean if a field has been set.
### GetMode
`func (o *ConsoleConfig) GetMode() string`
GetMode returns the Mode field if non-nil, zero value otherwise.
### GetModeOk
`func (o *ConsoleConfig) GetModeOk() (*string, bool)`
GetModeOk returns a tuple with the Mode field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMode
`func (o *ConsoleConfig) SetMode(v string)`
SetMode sets Mode field to given value.
### GetIommu
`func (o *ConsoleConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *ConsoleConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *ConsoleConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *ConsoleConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,10 +4,130 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ThreadsPerCore** | **int32** | | [optional]
**CoresPerDie** | **int32** | | [optional]
**DiesPerPackage** | **int32** | | [optional]
**Packages** | **int32** | | [optional]
**ThreadsPerCore** | Pointer to **int32** | | [optional]
**CoresPerDie** | Pointer to **int32** | | [optional]
**DiesPerPackage** | Pointer to **int32** | | [optional]
**Packages** | Pointer to **int32** | | [optional]
## Methods
### NewCpuTopology
`func NewCpuTopology() *CpuTopology`
NewCpuTopology instantiates a new CpuTopology object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewCpuTopologyWithDefaults
`func NewCpuTopologyWithDefaults() *CpuTopology`
NewCpuTopologyWithDefaults instantiates a new CpuTopology object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetThreadsPerCore
`func (o *CpuTopology) GetThreadsPerCore() int32`
GetThreadsPerCore returns the ThreadsPerCore field if non-nil, zero value otherwise.
### GetThreadsPerCoreOk
`func (o *CpuTopology) GetThreadsPerCoreOk() (*int32, bool)`
GetThreadsPerCoreOk returns a tuple with the ThreadsPerCore field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetThreadsPerCore
`func (o *CpuTopology) SetThreadsPerCore(v int32)`
SetThreadsPerCore sets ThreadsPerCore field to given value.
### HasThreadsPerCore
`func (o *CpuTopology) HasThreadsPerCore() bool`
HasThreadsPerCore returns a boolean if a field has been set.
### GetCoresPerDie
`func (o *CpuTopology) GetCoresPerDie() int32`
GetCoresPerDie returns the CoresPerDie field if non-nil, zero value otherwise.
### GetCoresPerDieOk
`func (o *CpuTopology) GetCoresPerDieOk() (*int32, bool)`
GetCoresPerDieOk returns a tuple with the CoresPerDie field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCoresPerDie
`func (o *CpuTopology) SetCoresPerDie(v int32)`
SetCoresPerDie sets CoresPerDie field to given value.
### HasCoresPerDie
`func (o *CpuTopology) HasCoresPerDie() bool`
HasCoresPerDie returns a boolean if a field has been set.
### GetDiesPerPackage
`func (o *CpuTopology) GetDiesPerPackage() int32`
GetDiesPerPackage returns the DiesPerPackage field if non-nil, zero value otherwise.
### GetDiesPerPackageOk
`func (o *CpuTopology) GetDiesPerPackageOk() (*int32, bool)`
GetDiesPerPackageOk returns a tuple with the DiesPerPackage field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiesPerPackage
`func (o *CpuTopology) SetDiesPerPackage(v int32)`
SetDiesPerPackage sets DiesPerPackage field to given value.
### HasDiesPerPackage
`func (o *CpuTopology) HasDiesPerPackage() bool`
HasDiesPerPackage returns a boolean if a field has been set.
### GetPackages
`func (o *CpuTopology) GetPackages() int32`
GetPackages returns the Packages field if non-nil, zero value otherwise.
### GetPackagesOk
`func (o *CpuTopology) GetPackagesOk() (*int32, bool)`
GetPackagesOk returns a tuple with the Packages field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPackages
`func (o *CpuTopology) SetPackages(v int32)`
SetPackages sets Packages field to given value.
### HasPackages
`func (o *CpuTopology) HasPackages() bool`
HasPackages returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,8 +6,118 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**BootVcpus** | **int32** | | [default to 1]
**MaxVcpus** | **int32** | | [default to 1]
**Topology** | [**CpuTopology**](CpuTopology.md) | | [optional]
**MaxPhysBits** | **int32** | | [optional]
**Topology** | Pointer to [**CpuTopology**](CpuTopology.md) | | [optional]
**MaxPhysBits** | Pointer to **int32** | | [optional]
## Methods
### NewCpusConfig
`func NewCpusConfig(bootVcpus int32, maxVcpus int32, ) *CpusConfig`
NewCpusConfig instantiates a new CpusConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewCpusConfigWithDefaults
`func NewCpusConfigWithDefaults() *CpusConfig`
NewCpusConfigWithDefaults instantiates a new CpusConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetBootVcpus
`func (o *CpusConfig) GetBootVcpus() int32`
GetBootVcpus returns the BootVcpus field if non-nil, zero value otherwise.
### GetBootVcpusOk
`func (o *CpusConfig) GetBootVcpusOk() (*int32, bool)`
GetBootVcpusOk returns a tuple with the BootVcpus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetBootVcpus
`func (o *CpusConfig) SetBootVcpus(v int32)`
SetBootVcpus sets BootVcpus field to given value.
### GetMaxVcpus
`func (o *CpusConfig) GetMaxVcpus() int32`
GetMaxVcpus returns the MaxVcpus field if non-nil, zero value otherwise.
### GetMaxVcpusOk
`func (o *CpusConfig) GetMaxVcpusOk() (*int32, bool)`
GetMaxVcpusOk returns a tuple with the MaxVcpus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMaxVcpus
`func (o *CpusConfig) SetMaxVcpus(v int32)`
SetMaxVcpus sets MaxVcpus field to given value.
### GetTopology
`func (o *CpusConfig) GetTopology() CpuTopology`
GetTopology returns the Topology field if non-nil, zero value otherwise.
### GetTopologyOk
`func (o *CpusConfig) GetTopologyOk() (*CpuTopology, bool)`
GetTopologyOk returns a tuple with the Topology field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTopology
`func (o *CpusConfig) SetTopology(v CpuTopology)`
SetTopology sets Topology field to given value.
### HasTopology
`func (o *CpusConfig) HasTopology() bool`
HasTopology returns a boolean if a field has been set.
### GetMaxPhysBits
`func (o *CpusConfig) GetMaxPhysBits() int32`
GetMaxPhysBits returns the MaxPhysBits field if non-nil, zero value otherwise.
### GetMaxPhysBitsOk
`func (o *CpusConfig) GetMaxPhysBitsOk() (*int32, bool)`
GetMaxPhysBitsOk returns a tuple with the MaxPhysBits field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMaxPhysBits
`func (o *CpusConfig) SetMaxPhysBits(v int32)`
SetMaxPhysBits sets MaxPhysBits field to given value.
### HasMaxPhysBits
`func (o *CpusConfig) HasMaxPhysBits() bool`
HasMaxPhysBits returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,8 +5,98 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Path** | **string** | |
**Iommu** | **bool** | | [optional] [default to false]
**Id** | **string** | | [optional]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewDeviceConfig
`func NewDeviceConfig(path string, ) *DeviceConfig`
NewDeviceConfig instantiates a new DeviceConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewDeviceConfigWithDefaults
`func NewDeviceConfigWithDefaults() *DeviceConfig`
NewDeviceConfigWithDefaults instantiates a new DeviceConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetPath
`func (o *DeviceConfig) GetPath() string`
GetPath returns the Path field if non-nil, zero value otherwise.
### GetPathOk
`func (o *DeviceConfig) GetPathOk() (*string, bool)`
GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPath
`func (o *DeviceConfig) SetPath(v string)`
SetPath sets Path field to given value.
### GetIommu
`func (o *DeviceConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *DeviceConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *DeviceConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *DeviceConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetId
`func (o *DeviceConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *DeviceConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *DeviceConfig) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *DeviceConfig) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,10 +4,130 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | | [optional]
**Resources** | **[]map[string]interface{}** | | [optional]
**Children** | **[]string** | | [optional]
**PciBdf** | **int32** | | [optional]
**Id** | Pointer to **string** | | [optional]
**Resources** | Pointer to **[]map[string]interface{}** | | [optional]
**Children** | Pointer to **[]string** | | [optional]
**PciBdf** | Pointer to **int32** | | [optional]
## Methods
### NewDeviceNode
`func NewDeviceNode() *DeviceNode`
NewDeviceNode instantiates a new DeviceNode object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewDeviceNodeWithDefaults
`func NewDeviceNodeWithDefaults() *DeviceNode`
NewDeviceNodeWithDefaults instantiates a new DeviceNode object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *DeviceNode) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *DeviceNode) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *DeviceNode) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *DeviceNode) HasId() bool`
HasId returns a boolean if a field has been set.
### GetResources
`func (o *DeviceNode) GetResources() []map[string]interface{}`
GetResources returns the Resources field if non-nil, zero value otherwise.
### GetResourcesOk
`func (o *DeviceNode) GetResourcesOk() (*[]map[string]interface{}, bool)`
GetResourcesOk returns a tuple with the Resources field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetResources
`func (o *DeviceNode) SetResources(v []map[string]interface{})`
SetResources sets Resources field to given value.
### HasResources
`func (o *DeviceNode) HasResources() bool`
HasResources returns a boolean if a field has been set.
### GetChildren
`func (o *DeviceNode) GetChildren() []string`
GetChildren returns the Children field if non-nil, zero value otherwise.
### GetChildrenOk
`func (o *DeviceNode) GetChildrenOk() (*[]string, bool)`
GetChildrenOk returns a tuple with the Children field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetChildren
`func (o *DeviceNode) SetChildren(v []string)`
SetChildren sets Children field to given value.
### HasChildren
`func (o *DeviceNode) HasChildren() bool`
HasChildren returns a boolean if a field has been set.
### GetPciBdf
`func (o *DeviceNode) GetPciBdf() int32`
GetPciBdf returns the PciBdf field if non-nil, zero value otherwise.
### GetPciBdfOk
`func (o *DeviceNode) GetPciBdfOk() (*int32, bool)`
GetPciBdfOk returns a tuple with the PciBdf field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPciBdf
`func (o *DeviceNode) SetPciBdf(v int32)`
SetPciBdf sets PciBdf field to given value.
### HasPciBdf
`func (o *DeviceNode) HasPciBdf() bool`
HasPciBdf returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,16 +5,306 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Path** | **string** | |
**Readonly** | **bool** | | [optional] [default to false]
**Direct** | **bool** | | [optional] [default to false]
**Iommu** | **bool** | | [optional] [default to false]
**NumQueues** | **int32** | | [optional] [default to 1]
**QueueSize** | **int32** | | [optional] [default to 128]
**VhostUser** | **bool** | | [optional] [default to false]
**VhostSocket** | **string** | | [optional]
**PollQueue** | **bool** | | [optional] [default to true]
**RateLimiterConfig** | [**RateLimiterConfig**](RateLimiterConfig.md) | | [optional]
**Id** | **string** | | [optional]
**Readonly** | Pointer to **bool** | | [optional] [default to false]
**Direct** | Pointer to **bool** | | [optional] [default to false]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**NumQueues** | Pointer to **int32** | | [optional] [default to 1]
**QueueSize** | Pointer to **int32** | | [optional] [default to 128]
**VhostUser** | Pointer to **bool** | | [optional] [default to false]
**VhostSocket** | Pointer to **string** | | [optional]
**PollQueue** | Pointer to **bool** | | [optional] [default to true]
**RateLimiterConfig** | Pointer to [**RateLimiterConfig**](RateLimiterConfig.md) | | [optional]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewDiskConfig
`func NewDiskConfig(path string, ) *DiskConfig`
NewDiskConfig instantiates a new DiskConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewDiskConfigWithDefaults
`func NewDiskConfigWithDefaults() *DiskConfig`
NewDiskConfigWithDefaults instantiates a new DiskConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetPath
`func (o *DiskConfig) GetPath() string`
GetPath returns the Path field if non-nil, zero value otherwise.
### GetPathOk
`func (o *DiskConfig) GetPathOk() (*string, bool)`
GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPath
`func (o *DiskConfig) SetPath(v string)`
SetPath sets Path field to given value.
### GetReadonly
`func (o *DiskConfig) GetReadonly() bool`
GetReadonly returns the Readonly field if non-nil, zero value otherwise.
### GetReadonlyOk
`func (o *DiskConfig) GetReadonlyOk() (*bool, bool)`
GetReadonlyOk returns a tuple with the Readonly field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReadonly
`func (o *DiskConfig) SetReadonly(v bool)`
SetReadonly sets Readonly field to given value.
### HasReadonly
`func (o *DiskConfig) HasReadonly() bool`
HasReadonly returns a boolean if a field has been set.
### GetDirect
`func (o *DiskConfig) GetDirect() bool`
GetDirect returns the Direct field if non-nil, zero value otherwise.
### GetDirectOk
`func (o *DiskConfig) GetDirectOk() (*bool, bool)`
GetDirectOk returns a tuple with the Direct field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDirect
`func (o *DiskConfig) SetDirect(v bool)`
SetDirect sets Direct field to given value.
### HasDirect
`func (o *DiskConfig) HasDirect() bool`
HasDirect returns a boolean if a field has been set.
### GetIommu
`func (o *DiskConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *DiskConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *DiskConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *DiskConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetNumQueues
`func (o *DiskConfig) GetNumQueues() int32`
GetNumQueues returns the NumQueues field if non-nil, zero value otherwise.
### GetNumQueuesOk
`func (o *DiskConfig) GetNumQueuesOk() (*int32, bool)`
GetNumQueuesOk returns a tuple with the NumQueues field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNumQueues
`func (o *DiskConfig) SetNumQueues(v int32)`
SetNumQueues sets NumQueues field to given value.
### HasNumQueues
`func (o *DiskConfig) HasNumQueues() bool`
HasNumQueues returns a boolean if a field has been set.
### GetQueueSize
`func (o *DiskConfig) GetQueueSize() int32`
GetQueueSize returns the QueueSize field if non-nil, zero value otherwise.
### GetQueueSizeOk
`func (o *DiskConfig) GetQueueSizeOk() (*int32, bool)`
GetQueueSizeOk returns a tuple with the QueueSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQueueSize
`func (o *DiskConfig) SetQueueSize(v int32)`
SetQueueSize sets QueueSize field to given value.
### HasQueueSize
`func (o *DiskConfig) HasQueueSize() bool`
HasQueueSize returns a boolean if a field has been set.
### GetVhostUser
`func (o *DiskConfig) GetVhostUser() bool`
GetVhostUser returns the VhostUser field if non-nil, zero value otherwise.
### GetVhostUserOk
`func (o *DiskConfig) GetVhostUserOk() (*bool, bool)`
GetVhostUserOk returns a tuple with the VhostUser field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVhostUser
`func (o *DiskConfig) SetVhostUser(v bool)`
SetVhostUser sets VhostUser field to given value.
### HasVhostUser
`func (o *DiskConfig) HasVhostUser() bool`
HasVhostUser returns a boolean if a field has been set.
### GetVhostSocket
`func (o *DiskConfig) GetVhostSocket() string`
GetVhostSocket returns the VhostSocket field if non-nil, zero value otherwise.
### GetVhostSocketOk
`func (o *DiskConfig) GetVhostSocketOk() (*string, bool)`
GetVhostSocketOk returns a tuple with the VhostSocket field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVhostSocket
`func (o *DiskConfig) SetVhostSocket(v string)`
SetVhostSocket sets VhostSocket field to given value.
### HasVhostSocket
`func (o *DiskConfig) HasVhostSocket() bool`
HasVhostSocket returns a boolean if a field has been set.
### GetPollQueue
`func (o *DiskConfig) GetPollQueue() bool`
GetPollQueue returns the PollQueue field if non-nil, zero value otherwise.
### GetPollQueueOk
`func (o *DiskConfig) GetPollQueueOk() (*bool, bool)`
GetPollQueueOk returns a tuple with the PollQueue field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPollQueue
`func (o *DiskConfig) SetPollQueue(v bool)`
SetPollQueue sets PollQueue field to given value.
### HasPollQueue
`func (o *DiskConfig) HasPollQueue() bool`
HasPollQueue returns a boolean if a field has been set.
### GetRateLimiterConfig
`func (o *DiskConfig) GetRateLimiterConfig() RateLimiterConfig`
GetRateLimiterConfig returns the RateLimiterConfig field if non-nil, zero value otherwise.
### GetRateLimiterConfigOk
`func (o *DiskConfig) GetRateLimiterConfigOk() (*RateLimiterConfig, bool)`
GetRateLimiterConfigOk returns a tuple with the RateLimiterConfig field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRateLimiterConfig
`func (o *DiskConfig) SetRateLimiterConfig(v RateLimiterConfig)`
SetRateLimiterConfig sets RateLimiterConfig field to given value.
### HasRateLimiterConfig
`func (o *DiskConfig) HasRateLimiterConfig() bool`
HasRateLimiterConfig returns a boolean if a field has been set.
### GetId
`func (o *DiskConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *DiskConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *DiskConfig) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *DiskConfig) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -10,7 +10,172 @@ Name | Type | Description | Notes
**QueueSize** | **int32** | | [default to 1024]
**Dax** | **bool** | | [default to true]
**CacheSize** | **int64** | |
**Id** | **string** | | [optional]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewFsConfig
`func NewFsConfig(tag string, socket string, numQueues int32, queueSize int32, dax bool, cacheSize int64, ) *FsConfig`
NewFsConfig instantiates a new FsConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewFsConfigWithDefaults
`func NewFsConfigWithDefaults() *FsConfig`
NewFsConfigWithDefaults instantiates a new FsConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetTag
`func (o *FsConfig) GetTag() string`
GetTag returns the Tag field if non-nil, zero value otherwise.
### GetTagOk
`func (o *FsConfig) GetTagOk() (*string, bool)`
GetTagOk returns a tuple with the Tag field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTag
`func (o *FsConfig) SetTag(v string)`
SetTag sets Tag field to given value.
### GetSocket
`func (o *FsConfig) GetSocket() string`
GetSocket returns the Socket field if non-nil, zero value otherwise.
### GetSocketOk
`func (o *FsConfig) GetSocketOk() (*string, bool)`
GetSocketOk returns a tuple with the Socket field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSocket
`func (o *FsConfig) SetSocket(v string)`
SetSocket sets Socket field to given value.
### GetNumQueues
`func (o *FsConfig) GetNumQueues() int32`
GetNumQueues returns the NumQueues field if non-nil, zero value otherwise.
### GetNumQueuesOk
`func (o *FsConfig) GetNumQueuesOk() (*int32, bool)`
GetNumQueuesOk returns a tuple with the NumQueues field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNumQueues
`func (o *FsConfig) SetNumQueues(v int32)`
SetNumQueues sets NumQueues field to given value.
### GetQueueSize
`func (o *FsConfig) GetQueueSize() int32`
GetQueueSize returns the QueueSize field if non-nil, zero value otherwise.
### GetQueueSizeOk
`func (o *FsConfig) GetQueueSizeOk() (*int32, bool)`
GetQueueSizeOk returns a tuple with the QueueSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQueueSize
`func (o *FsConfig) SetQueueSize(v int32)`
SetQueueSize sets QueueSize field to given value.
### GetDax
`func (o *FsConfig) GetDax() bool`
GetDax returns the Dax field if non-nil, zero value otherwise.
### GetDaxOk
`func (o *FsConfig) GetDaxOk() (*bool, bool)`
GetDaxOk returns a tuple with the Dax field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDax
`func (o *FsConfig) SetDax(v bool)`
SetDax sets Dax field to given value.
### GetCacheSize
`func (o *FsConfig) GetCacheSize() int64`
GetCacheSize returns the CacheSize field if non-nil, zero value otherwise.
### GetCacheSizeOk
`func (o *FsConfig) GetCacheSizeOk() (*int64, bool)`
GetCacheSizeOk returns a tuple with the CacheSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCacheSize
`func (o *FsConfig) SetCacheSize(v int64)`
SetCacheSize sets CacheSize field to given value.
### GetId
`func (o *FsConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *FsConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *FsConfig) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *FsConfig) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,6 +6,46 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Path** | **string** | |
## Methods
### NewInitramfsConfig
`func NewInitramfsConfig(path string, ) *InitramfsConfig`
NewInitramfsConfig instantiates a new InitramfsConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewInitramfsConfigWithDefaults
`func NewInitramfsConfigWithDefaults() *InitramfsConfig`
NewInitramfsConfigWithDefaults instantiates a new InitramfsConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetPath
`func (o *InitramfsConfig) GetPath() string`
GetPath returns the Path field if non-nil, zero value otherwise.
### GetPathOk
`func (o *InitramfsConfig) GetPathOk() (*string, bool)`
GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPath
`func (o *InitramfsConfig) SetPath(v string)`
SetPath sets Path field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,6 +6,46 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Path** | **string** | |
## Methods
### NewKernelConfig
`func NewKernelConfig(path string, ) *KernelConfig`
NewKernelConfig instantiates a new KernelConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewKernelConfigWithDefaults
`func NewKernelConfigWithDefaults() *KernelConfig`
NewKernelConfigWithDefaults instantiates a new KernelConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetPath
`func (o *KernelConfig) GetPath() string`
GetPath returns the Path field if non-nil, zero value otherwise.
### GetPathOk
`func (o *KernelConfig) GetPathOk() (*string, bool)`
GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPath
`func (o *KernelConfig) SetPath(v string)`
SetPath sets Path field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,14 +5,254 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Size** | **int64** | |
**HotplugSize** | **int64** | | [optional]
**HotpluggedSize** | **int64** | | [optional]
**Mergeable** | **bool** | | [optional] [default to false]
**HotplugMethod** | **string** | | [optional] [default to acpi]
**Shared** | **bool** | | [optional] [default to false]
**Hugepages** | **bool** | | [optional] [default to false]
**HugepageSize** | **int64** | | [optional]
**Zones** | [**[]MemoryZoneConfig**](MemoryZoneConfig.md) | | [optional]
**HotplugSize** | Pointer to **int64** | | [optional]
**HotpluggedSize** | Pointer to **int64** | | [optional]
**Mergeable** | Pointer to **bool** | | [optional] [default to false]
**HotplugMethod** | Pointer to **string** | | [optional] [default to "acpi"]
**Shared** | Pointer to **bool** | | [optional] [default to false]
**Hugepages** | Pointer to **bool** | | [optional] [default to false]
**HugepageSize** | Pointer to **int64** | | [optional]
**Zones** | Pointer to [**[]MemoryZoneConfig**](MemoryZoneConfig.md) | | [optional]
## Methods
### NewMemoryConfig
`func NewMemoryConfig(size int64, ) *MemoryConfig`
NewMemoryConfig instantiates a new MemoryConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewMemoryConfigWithDefaults
`func NewMemoryConfigWithDefaults() *MemoryConfig`
NewMemoryConfigWithDefaults instantiates a new MemoryConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetSize
`func (o *MemoryConfig) GetSize() int64`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *MemoryConfig) GetSizeOk() (*int64, bool)`
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSize
`func (o *MemoryConfig) SetSize(v int64)`
SetSize sets Size field to given value.
### GetHotplugSize
`func (o *MemoryConfig) GetHotplugSize() int64`
GetHotplugSize returns the HotplugSize field if non-nil, zero value otherwise.
### GetHotplugSizeOk
`func (o *MemoryConfig) GetHotplugSizeOk() (*int64, bool)`
GetHotplugSizeOk returns a tuple with the HotplugSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHotplugSize
`func (o *MemoryConfig) SetHotplugSize(v int64)`
SetHotplugSize sets HotplugSize field to given value.
### HasHotplugSize
`func (o *MemoryConfig) HasHotplugSize() bool`
HasHotplugSize returns a boolean if a field has been set.
### GetHotpluggedSize
`func (o *MemoryConfig) GetHotpluggedSize() int64`
GetHotpluggedSize returns the HotpluggedSize field if non-nil, zero value otherwise.
### GetHotpluggedSizeOk
`func (o *MemoryConfig) GetHotpluggedSizeOk() (*int64, bool)`
GetHotpluggedSizeOk returns a tuple with the HotpluggedSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHotpluggedSize
`func (o *MemoryConfig) SetHotpluggedSize(v int64)`
SetHotpluggedSize sets HotpluggedSize field to given value.
### HasHotpluggedSize
`func (o *MemoryConfig) HasHotpluggedSize() bool`
HasHotpluggedSize returns a boolean if a field has been set.
### GetMergeable
`func (o *MemoryConfig) GetMergeable() bool`
GetMergeable returns the Mergeable field if non-nil, zero value otherwise.
### GetMergeableOk
`func (o *MemoryConfig) GetMergeableOk() (*bool, bool)`
GetMergeableOk returns a tuple with the Mergeable field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMergeable
`func (o *MemoryConfig) SetMergeable(v bool)`
SetMergeable sets Mergeable field to given value.
### HasMergeable
`func (o *MemoryConfig) HasMergeable() bool`
HasMergeable returns a boolean if a field has been set.
### GetHotplugMethod
`func (o *MemoryConfig) GetHotplugMethod() string`
GetHotplugMethod returns the HotplugMethod field if non-nil, zero value otherwise.
### GetHotplugMethodOk
`func (o *MemoryConfig) GetHotplugMethodOk() (*string, bool)`
GetHotplugMethodOk returns a tuple with the HotplugMethod field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHotplugMethod
`func (o *MemoryConfig) SetHotplugMethod(v string)`
SetHotplugMethod sets HotplugMethod field to given value.
### HasHotplugMethod
`func (o *MemoryConfig) HasHotplugMethod() bool`
HasHotplugMethod returns a boolean if a field has been set.
### GetShared
`func (o *MemoryConfig) GetShared() bool`
GetShared returns the Shared field if non-nil, zero value otherwise.
### GetSharedOk
`func (o *MemoryConfig) GetSharedOk() (*bool, bool)`
GetSharedOk returns a tuple with the Shared field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetShared
`func (o *MemoryConfig) SetShared(v bool)`
SetShared sets Shared field to given value.
### HasShared
`func (o *MemoryConfig) HasShared() bool`
HasShared returns a boolean if a field has been set.
### GetHugepages
`func (o *MemoryConfig) GetHugepages() bool`
GetHugepages returns the Hugepages field if non-nil, zero value otherwise.
### GetHugepagesOk
`func (o *MemoryConfig) GetHugepagesOk() (*bool, bool)`
GetHugepagesOk returns a tuple with the Hugepages field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHugepages
`func (o *MemoryConfig) SetHugepages(v bool)`
SetHugepages sets Hugepages field to given value.
### HasHugepages
`func (o *MemoryConfig) HasHugepages() bool`
HasHugepages returns a boolean if a field has been set.
### GetHugepageSize
`func (o *MemoryConfig) GetHugepageSize() int64`
GetHugepageSize returns the HugepageSize field if non-nil, zero value otherwise.
### GetHugepageSizeOk
`func (o *MemoryConfig) GetHugepageSizeOk() (*int64, bool)`
GetHugepageSizeOk returns a tuple with the HugepageSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHugepageSize
`func (o *MemoryConfig) SetHugepageSize(v int64)`
SetHugepageSize sets HugepageSize field to given value.
### HasHugepageSize
`func (o *MemoryConfig) HasHugepageSize() bool`
HasHugepageSize returns a boolean if a field has been set.
### GetZones
`func (o *MemoryConfig) GetZones() []MemoryZoneConfig`
GetZones returns the Zones field if non-nil, zero value otherwise.
### GetZonesOk
`func (o *MemoryConfig) GetZonesOk() (*[]MemoryZoneConfig, bool)`
GetZonesOk returns a tuple with the Zones field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetZones
`func (o *MemoryConfig) SetZones(v []MemoryZoneConfig)`
SetZones sets Zones field to given value.
### HasZones
`func (o *MemoryConfig) HasZones() bool`
HasZones returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,14 +6,274 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | |
**Size** | **int64** | |
**File** | **string** | | [optional]
**Mergeable** | **bool** | | [optional] [default to false]
**Shared** | **bool** | | [optional] [default to false]
**Hugepages** | **bool** | | [optional] [default to false]
**HugepageSize** | **int64** | | [optional]
**HostNumaNode** | **int32** | | [optional]
**HotplugSize** | **int64** | | [optional]
**HotpluggedSize** | **int64** | | [optional]
**File** | Pointer to **string** | | [optional]
**Mergeable** | Pointer to **bool** | | [optional] [default to false]
**Shared** | Pointer to **bool** | | [optional] [default to false]
**Hugepages** | Pointer to **bool** | | [optional] [default to false]
**HugepageSize** | Pointer to **int64** | | [optional]
**HostNumaNode** | Pointer to **int32** | | [optional]
**HotplugSize** | Pointer to **int64** | | [optional]
**HotpluggedSize** | Pointer to **int64** | | [optional]
## Methods
### NewMemoryZoneConfig
`func NewMemoryZoneConfig(id string, size int64, ) *MemoryZoneConfig`
NewMemoryZoneConfig instantiates a new MemoryZoneConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewMemoryZoneConfigWithDefaults
`func NewMemoryZoneConfigWithDefaults() *MemoryZoneConfig`
NewMemoryZoneConfigWithDefaults instantiates a new MemoryZoneConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *MemoryZoneConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *MemoryZoneConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *MemoryZoneConfig) SetId(v string)`
SetId sets Id field to given value.
### GetSize
`func (o *MemoryZoneConfig) GetSize() int64`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *MemoryZoneConfig) GetSizeOk() (*int64, bool)`
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSize
`func (o *MemoryZoneConfig) SetSize(v int64)`
SetSize sets Size field to given value.
### GetFile
`func (o *MemoryZoneConfig) GetFile() string`
GetFile returns the File field if non-nil, zero value otherwise.
### GetFileOk
`func (o *MemoryZoneConfig) GetFileOk() (*string, bool)`
GetFileOk returns a tuple with the File field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFile
`func (o *MemoryZoneConfig) SetFile(v string)`
SetFile sets File field to given value.
### HasFile
`func (o *MemoryZoneConfig) HasFile() bool`
HasFile returns a boolean if a field has been set.
### GetMergeable
`func (o *MemoryZoneConfig) GetMergeable() bool`
GetMergeable returns the Mergeable field if non-nil, zero value otherwise.
### GetMergeableOk
`func (o *MemoryZoneConfig) GetMergeableOk() (*bool, bool)`
GetMergeableOk returns a tuple with the Mergeable field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMergeable
`func (o *MemoryZoneConfig) SetMergeable(v bool)`
SetMergeable sets Mergeable field to given value.
### HasMergeable
`func (o *MemoryZoneConfig) HasMergeable() bool`
HasMergeable returns a boolean if a field has been set.
### GetShared
`func (o *MemoryZoneConfig) GetShared() bool`
GetShared returns the Shared field if non-nil, zero value otherwise.
### GetSharedOk
`func (o *MemoryZoneConfig) GetSharedOk() (*bool, bool)`
GetSharedOk returns a tuple with the Shared field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetShared
`func (o *MemoryZoneConfig) SetShared(v bool)`
SetShared sets Shared field to given value.
### HasShared
`func (o *MemoryZoneConfig) HasShared() bool`
HasShared returns a boolean if a field has been set.
### GetHugepages
`func (o *MemoryZoneConfig) GetHugepages() bool`
GetHugepages returns the Hugepages field if non-nil, zero value otherwise.
### GetHugepagesOk
`func (o *MemoryZoneConfig) GetHugepagesOk() (*bool, bool)`
GetHugepagesOk returns a tuple with the Hugepages field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHugepages
`func (o *MemoryZoneConfig) SetHugepages(v bool)`
SetHugepages sets Hugepages field to given value.
### HasHugepages
`func (o *MemoryZoneConfig) HasHugepages() bool`
HasHugepages returns a boolean if a field has been set.
### GetHugepageSize
`func (o *MemoryZoneConfig) GetHugepageSize() int64`
GetHugepageSize returns the HugepageSize field if non-nil, zero value otherwise.
### GetHugepageSizeOk
`func (o *MemoryZoneConfig) GetHugepageSizeOk() (*int64, bool)`
GetHugepageSizeOk returns a tuple with the HugepageSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHugepageSize
`func (o *MemoryZoneConfig) SetHugepageSize(v int64)`
SetHugepageSize sets HugepageSize field to given value.
### HasHugepageSize
`func (o *MemoryZoneConfig) HasHugepageSize() bool`
HasHugepageSize returns a boolean if a field has been set.
### GetHostNumaNode
`func (o *MemoryZoneConfig) GetHostNumaNode() int32`
GetHostNumaNode returns the HostNumaNode field if non-nil, zero value otherwise.
### GetHostNumaNodeOk
`func (o *MemoryZoneConfig) GetHostNumaNodeOk() (*int32, bool)`
GetHostNumaNodeOk returns a tuple with the HostNumaNode field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHostNumaNode
`func (o *MemoryZoneConfig) SetHostNumaNode(v int32)`
SetHostNumaNode sets HostNumaNode field to given value.
### HasHostNumaNode
`func (o *MemoryZoneConfig) HasHostNumaNode() bool`
HasHostNumaNode returns a boolean if a field has been set.
### GetHotplugSize
`func (o *MemoryZoneConfig) GetHotplugSize() int64`
GetHotplugSize returns the HotplugSize field if non-nil, zero value otherwise.
### GetHotplugSizeOk
`func (o *MemoryZoneConfig) GetHotplugSizeOk() (*int64, bool)`
GetHotplugSizeOk returns a tuple with the HotplugSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHotplugSize
`func (o *MemoryZoneConfig) SetHotplugSize(v int64)`
SetHotplugSize sets HotplugSize field to given value.
### HasHotplugSize
`func (o *MemoryZoneConfig) HasHotplugSize() bool`
HasHotplugSize returns a boolean if a field has been set.
### GetHotpluggedSize
`func (o *MemoryZoneConfig) GetHotpluggedSize() int64`
GetHotpluggedSize returns the HotpluggedSize field if non-nil, zero value otherwise.
### GetHotpluggedSizeOk
`func (o *MemoryZoneConfig) GetHotpluggedSizeOk() (*int64, bool)`
GetHotpluggedSizeOk returns a tuple with the HotpluggedSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHotpluggedSize
`func (o *MemoryZoneConfig) SetHotpluggedSize(v int64)`
SetHotpluggedSize sets HotpluggedSize field to given value.
### HasHotpluggedSize
`func (o *MemoryZoneConfig) HasHotpluggedSize() bool`
HasHotpluggedSize returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,19 +4,364 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Tap** | **string** | | [optional] [default to ]
**Ip** | **string** | | [optional] [default to 192.168.249.1]
**Mask** | **string** | | [optional] [default to 255.255.255.0]
**Mac** | **string** | | [optional]
**Iommu** | **bool** | | [optional] [default to false]
**NumQueues** | **int32** | | [optional] [default to 2]
**QueueSize** | **int32** | | [optional] [default to 256]
**VhostUser** | **bool** | | [optional] [default to false]
**VhostSocket** | **string** | | [optional]
**VhostMode** | **string** | | [optional] [default to client]
**Id** | **string** | | [optional]
**Fd** | **[]int32** | | [optional]
**RateLimiterConfig** | [**RateLimiterConfig**](RateLimiterConfig.md) | | [optional]
**Tap** | Pointer to **string** | | [optional] [default to ""]
**Ip** | Pointer to **string** | | [optional] [default to "192.168.249.1"]
**Mask** | Pointer to **string** | | [optional] [default to "255.255.255.0"]
**Mac** | Pointer to **string** | | [optional]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**NumQueues** | Pointer to **int32** | | [optional] [default to 2]
**QueueSize** | Pointer to **int32** | | [optional] [default to 256]
**VhostUser** | Pointer to **bool** | | [optional] [default to false]
**VhostSocket** | Pointer to **string** | | [optional]
**VhostMode** | Pointer to **string** | | [optional] [default to "client"]
**Id** | Pointer to **string** | | [optional]
**Fd** | Pointer to **[]int32** | | [optional]
**RateLimiterConfig** | Pointer to [**RateLimiterConfig**](RateLimiterConfig.md) | | [optional]
## Methods
### NewNetConfig
`func NewNetConfig() *NetConfig`
NewNetConfig instantiates a new NetConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewNetConfigWithDefaults
`func NewNetConfigWithDefaults() *NetConfig`
NewNetConfigWithDefaults instantiates a new NetConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetTap
`func (o *NetConfig) GetTap() string`
GetTap returns the Tap field if non-nil, zero value otherwise.
### GetTapOk
`func (o *NetConfig) GetTapOk() (*string, bool)`
GetTapOk returns a tuple with the Tap field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTap
`func (o *NetConfig) SetTap(v string)`
SetTap sets Tap field to given value.
### HasTap
`func (o *NetConfig) HasTap() bool`
HasTap returns a boolean if a field has been set.
### GetIp
`func (o *NetConfig) GetIp() string`
GetIp returns the Ip field if non-nil, zero value otherwise.
### GetIpOk
`func (o *NetConfig) GetIpOk() (*string, bool)`
GetIpOk returns a tuple with the Ip field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIp
`func (o *NetConfig) SetIp(v string)`
SetIp sets Ip field to given value.
### HasIp
`func (o *NetConfig) HasIp() bool`
HasIp returns a boolean if a field has been set.
### GetMask
`func (o *NetConfig) GetMask() string`
GetMask returns the Mask field if non-nil, zero value otherwise.
### GetMaskOk
`func (o *NetConfig) GetMaskOk() (*string, bool)`
GetMaskOk returns a tuple with the Mask field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMask
`func (o *NetConfig) SetMask(v string)`
SetMask sets Mask field to given value.
### HasMask
`func (o *NetConfig) HasMask() bool`
HasMask returns a boolean if a field has been set.
### GetMac
`func (o *NetConfig) GetMac() string`
GetMac returns the Mac field if non-nil, zero value otherwise.
### GetMacOk
`func (o *NetConfig) GetMacOk() (*string, bool)`
GetMacOk returns a tuple with the Mac field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMac
`func (o *NetConfig) SetMac(v string)`
SetMac sets Mac field to given value.
### HasMac
`func (o *NetConfig) HasMac() bool`
HasMac returns a boolean if a field has been set.
### GetIommu
`func (o *NetConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *NetConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *NetConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *NetConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetNumQueues
`func (o *NetConfig) GetNumQueues() int32`
GetNumQueues returns the NumQueues field if non-nil, zero value otherwise.
### GetNumQueuesOk
`func (o *NetConfig) GetNumQueuesOk() (*int32, bool)`
GetNumQueuesOk returns a tuple with the NumQueues field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNumQueues
`func (o *NetConfig) SetNumQueues(v int32)`
SetNumQueues sets NumQueues field to given value.
### HasNumQueues
`func (o *NetConfig) HasNumQueues() bool`
HasNumQueues returns a boolean if a field has been set.
### GetQueueSize
`func (o *NetConfig) GetQueueSize() int32`
GetQueueSize returns the QueueSize field if non-nil, zero value otherwise.
### GetQueueSizeOk
`func (o *NetConfig) GetQueueSizeOk() (*int32, bool)`
GetQueueSizeOk returns a tuple with the QueueSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQueueSize
`func (o *NetConfig) SetQueueSize(v int32)`
SetQueueSize sets QueueSize field to given value.
### HasQueueSize
`func (o *NetConfig) HasQueueSize() bool`
HasQueueSize returns a boolean if a field has been set.
### GetVhostUser
`func (o *NetConfig) GetVhostUser() bool`
GetVhostUser returns the VhostUser field if non-nil, zero value otherwise.
### GetVhostUserOk
`func (o *NetConfig) GetVhostUserOk() (*bool, bool)`
GetVhostUserOk returns a tuple with the VhostUser field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVhostUser
`func (o *NetConfig) SetVhostUser(v bool)`
SetVhostUser sets VhostUser field to given value.
### HasVhostUser
`func (o *NetConfig) HasVhostUser() bool`
HasVhostUser returns a boolean if a field has been set.
### GetVhostSocket
`func (o *NetConfig) GetVhostSocket() string`
GetVhostSocket returns the VhostSocket field if non-nil, zero value otherwise.
### GetVhostSocketOk
`func (o *NetConfig) GetVhostSocketOk() (*string, bool)`
GetVhostSocketOk returns a tuple with the VhostSocket field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVhostSocket
`func (o *NetConfig) SetVhostSocket(v string)`
SetVhostSocket sets VhostSocket field to given value.
### HasVhostSocket
`func (o *NetConfig) HasVhostSocket() bool`
HasVhostSocket returns a boolean if a field has been set.
### GetVhostMode
`func (o *NetConfig) GetVhostMode() string`
GetVhostMode returns the VhostMode field if non-nil, zero value otherwise.
### GetVhostModeOk
`func (o *NetConfig) GetVhostModeOk() (*string, bool)`
GetVhostModeOk returns a tuple with the VhostMode field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVhostMode
`func (o *NetConfig) SetVhostMode(v string)`
SetVhostMode sets VhostMode field to given value.
### HasVhostMode
`func (o *NetConfig) HasVhostMode() bool`
HasVhostMode returns a boolean if a field has been set.
### GetId
`func (o *NetConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *NetConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *NetConfig) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *NetConfig) HasId() bool`
HasId returns a boolean if a field has been set.
### GetFd
`func (o *NetConfig) GetFd() []int32`
GetFd returns the Fd field if non-nil, zero value otherwise.
### GetFdOk
`func (o *NetConfig) GetFdOk() (*[]int32, bool)`
GetFdOk returns a tuple with the Fd field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFd
`func (o *NetConfig) SetFd(v []int32)`
SetFd sets Fd field to given value.
### HasFd
`func (o *NetConfig) HasFd() bool`
HasFd returns a boolean if a field has been set.
### GetRateLimiterConfig
`func (o *NetConfig) GetRateLimiterConfig() RateLimiterConfig`
GetRateLimiterConfig returns the RateLimiterConfig field if non-nil, zero value otherwise.
### GetRateLimiterConfigOk
`func (o *NetConfig) GetRateLimiterConfigOk() (*RateLimiterConfig, bool)`
GetRateLimiterConfigOk returns a tuple with the RateLimiterConfig field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRateLimiterConfig
`func (o *NetConfig) SetRateLimiterConfig(v RateLimiterConfig)`
SetRateLimiterConfig sets RateLimiterConfig field to given value.
### HasRateLimiterConfig
`func (o *NetConfig) HasRateLimiterConfig() bool`
HasRateLimiterConfig returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,10 +5,150 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**GuestNumaId** | **int32** | |
**Cpus** | **[]int32** | | [optional]
**Distances** | [**[]NumaDistance**](NumaDistance.md) | | [optional]
**MemoryZones** | **[]string** | | [optional]
**SgxEpcSections** | **[]string** | | [optional]
**Cpus** | Pointer to **[]int32** | | [optional]
**Distances** | Pointer to [**[]NumaDistance**](NumaDistance.md) | | [optional]
**MemoryZones** | Pointer to **[]string** | | [optional]
**SgxEpcSections** | Pointer to **[]string** | | [optional]
## Methods
### NewNumaConfig
`func NewNumaConfig(guestNumaId int32, ) *NumaConfig`
NewNumaConfig instantiates a new NumaConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewNumaConfigWithDefaults
`func NewNumaConfigWithDefaults() *NumaConfig`
NewNumaConfigWithDefaults instantiates a new NumaConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetGuestNumaId
`func (o *NumaConfig) GetGuestNumaId() int32`
GetGuestNumaId returns the GuestNumaId field if non-nil, zero value otherwise.
### GetGuestNumaIdOk
`func (o *NumaConfig) GetGuestNumaIdOk() (*int32, bool)`
GetGuestNumaIdOk returns a tuple with the GuestNumaId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetGuestNumaId
`func (o *NumaConfig) SetGuestNumaId(v int32)`
SetGuestNumaId sets GuestNumaId field to given value.
### GetCpus
`func (o *NumaConfig) GetCpus() []int32`
GetCpus returns the Cpus field if non-nil, zero value otherwise.
### GetCpusOk
`func (o *NumaConfig) GetCpusOk() (*[]int32, bool)`
GetCpusOk returns a tuple with the Cpus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCpus
`func (o *NumaConfig) SetCpus(v []int32)`
SetCpus sets Cpus field to given value.
### HasCpus
`func (o *NumaConfig) HasCpus() bool`
HasCpus returns a boolean if a field has been set.
### GetDistances
`func (o *NumaConfig) GetDistances() []NumaDistance`
GetDistances returns the Distances field if non-nil, zero value otherwise.
### GetDistancesOk
`func (o *NumaConfig) GetDistancesOk() (*[]NumaDistance, bool)`
GetDistancesOk returns a tuple with the Distances field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDistances
`func (o *NumaConfig) SetDistances(v []NumaDistance)`
SetDistances sets Distances field to given value.
### HasDistances
`func (o *NumaConfig) HasDistances() bool`
HasDistances returns a boolean if a field has been set.
### GetMemoryZones
`func (o *NumaConfig) GetMemoryZones() []string`
GetMemoryZones returns the MemoryZones field if non-nil, zero value otherwise.
### GetMemoryZonesOk
`func (o *NumaConfig) GetMemoryZonesOk() (*[]string, bool)`
GetMemoryZonesOk returns a tuple with the MemoryZones field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMemoryZones
`func (o *NumaConfig) SetMemoryZones(v []string)`
SetMemoryZones sets MemoryZones field to given value.
### HasMemoryZones
`func (o *NumaConfig) HasMemoryZones() bool`
HasMemoryZones returns a boolean if a field has been set.
### GetSgxEpcSections
`func (o *NumaConfig) GetSgxEpcSections() []string`
GetSgxEpcSections returns the SgxEpcSections field if non-nil, zero value otherwise.
### GetSgxEpcSectionsOk
`func (o *NumaConfig) GetSgxEpcSectionsOk() (*[]string, bool)`
GetSgxEpcSectionsOk returns a tuple with the SgxEpcSections field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSgxEpcSections
`func (o *NumaConfig) SetSgxEpcSections(v []string)`
SetSgxEpcSections sets SgxEpcSections field to given value.
### HasSgxEpcSections
`func (o *NumaConfig) HasSgxEpcSections() bool`
HasSgxEpcSections returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -7,6 +7,66 @@ Name | Type | Description | Notes
**Destination** | **int32** | |
**Distance** | **int32** | |
## Methods
### NewNumaDistance
`func NewNumaDistance(destination int32, distance int32, ) *NumaDistance`
NewNumaDistance instantiates a new NumaDistance object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewNumaDistanceWithDefaults
`func NewNumaDistanceWithDefaults() *NumaDistance`
NewNumaDistanceWithDefaults instantiates a new NumaDistance object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetDestination
`func (o *NumaDistance) GetDestination() int32`
GetDestination returns the Destination field if non-nil, zero value otherwise.
### GetDestinationOk
`func (o *NumaDistance) GetDestinationOk() (*int32, bool)`
GetDestinationOk returns a tuple with the Destination field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDestination
`func (o *NumaDistance) SetDestination(v int32)`
SetDestination sets Destination field to given value.
### GetDistance
`func (o *NumaDistance) GetDistance() int32`
GetDistance returns the Distance field if non-nil, zero value otherwise.
### GetDistanceOk
`func (o *NumaDistance) GetDistanceOk() (*int32, bool)`
GetDistanceOk returns a tuple with the Distance field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDistance
`func (o *NumaDistance) SetDistance(v int32)`
SetDistance sets Distance field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -7,6 +7,66 @@ Name | Type | Description | Notes
**Id** | **string** | |
**Bdf** | **string** | |
## Methods
### NewPciDeviceInfo
`func NewPciDeviceInfo(id string, bdf string, ) *PciDeviceInfo`
NewPciDeviceInfo instantiates a new PciDeviceInfo object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewPciDeviceInfoWithDefaults
`func NewPciDeviceInfoWithDefaults() *PciDeviceInfo`
NewPciDeviceInfoWithDefaults instantiates a new PciDeviceInfo object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *PciDeviceInfo) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *PciDeviceInfo) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *PciDeviceInfo) SetId(v string)`
SetId sets Id field to given value.
### GetBdf
`func (o *PciDeviceInfo) GetBdf() string`
GetBdf returns the Bdf field if non-nil, zero value otherwise.
### GetBdfOk
`func (o *PciDeviceInfo) GetBdfOk() (*string, bool)`
GetBdfOk returns a tuple with the Bdf field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetBdf
`func (o *PciDeviceInfo) SetBdf(v string)`
SetBdf sets Bdf field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,11 +5,176 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**File** | **string** | |
**Size** | **int64** | | [optional]
**Iommu** | **bool** | | [optional] [default to false]
**Mergeable** | **bool** | | [optional] [default to false]
**DiscardWrites** | **bool** | | [optional] [default to false]
**Id** | **string** | | [optional]
**Size** | Pointer to **int64** | | [optional]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**Mergeable** | Pointer to **bool** | | [optional] [default to false]
**DiscardWrites** | Pointer to **bool** | | [optional] [default to false]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewPmemConfig
`func NewPmemConfig(file string, ) *PmemConfig`
NewPmemConfig instantiates a new PmemConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewPmemConfigWithDefaults
`func NewPmemConfigWithDefaults() *PmemConfig`
NewPmemConfigWithDefaults instantiates a new PmemConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetFile
`func (o *PmemConfig) GetFile() string`
GetFile returns the File field if non-nil, zero value otherwise.
### GetFileOk
`func (o *PmemConfig) GetFileOk() (*string, bool)`
GetFileOk returns a tuple with the File field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFile
`func (o *PmemConfig) SetFile(v string)`
SetFile sets File field to given value.
### GetSize
`func (o *PmemConfig) GetSize() int64`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *PmemConfig) GetSizeOk() (*int64, bool)`
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSize
`func (o *PmemConfig) SetSize(v int64)`
SetSize sets Size field to given value.
### HasSize
`func (o *PmemConfig) HasSize() bool`
HasSize returns a boolean if a field has been set.
### GetIommu
`func (o *PmemConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *PmemConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *PmemConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *PmemConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetMergeable
`func (o *PmemConfig) GetMergeable() bool`
GetMergeable returns the Mergeable field if non-nil, zero value otherwise.
### GetMergeableOk
`func (o *PmemConfig) GetMergeableOk() (*bool, bool)`
GetMergeableOk returns a tuple with the Mergeable field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMergeable
`func (o *PmemConfig) SetMergeable(v bool)`
SetMergeable sets Mergeable field to given value.
### HasMergeable
`func (o *PmemConfig) HasMergeable() bool`
HasMergeable returns a boolean if a field has been set.
### GetDiscardWrites
`func (o *PmemConfig) GetDiscardWrites() bool`
GetDiscardWrites returns the DiscardWrites field if non-nil, zero value otherwise.
### GetDiscardWritesOk
`func (o *PmemConfig) GetDiscardWritesOk() (*bool, bool)`
GetDiscardWritesOk returns a tuple with the DiscardWrites field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscardWrites
`func (o *PmemConfig) SetDiscardWrites(v bool)`
SetDiscardWrites sets DiscardWrites field to given value.
### HasDiscardWrites
`func (o *PmemConfig) HasDiscardWrites() bool`
HasDiscardWrites returns a boolean if a field has been set.
### GetId
`func (o *PmemConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *PmemConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *PmemConfig) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *PmemConfig) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,8 +4,78 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Bandwidth** | [**TokenBucket**](TokenBucket.md) | | [optional]
**Ops** | [**TokenBucket**](TokenBucket.md) | | [optional]
**Bandwidth** | Pointer to [**TokenBucket**](TokenBucket.md) | | [optional]
**Ops** | Pointer to [**TokenBucket**](TokenBucket.md) | | [optional]
## Methods
### NewRateLimiterConfig
`func NewRateLimiterConfig() *RateLimiterConfig`
NewRateLimiterConfig instantiates a new RateLimiterConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewRateLimiterConfigWithDefaults
`func NewRateLimiterConfigWithDefaults() *RateLimiterConfig`
NewRateLimiterConfigWithDefaults instantiates a new RateLimiterConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetBandwidth
`func (o *RateLimiterConfig) GetBandwidth() TokenBucket`
GetBandwidth returns the Bandwidth field if non-nil, zero value otherwise.
### GetBandwidthOk
`func (o *RateLimiterConfig) GetBandwidthOk() (*TokenBucket, bool)`
GetBandwidthOk returns a tuple with the Bandwidth field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetBandwidth
`func (o *RateLimiterConfig) SetBandwidth(v TokenBucket)`
SetBandwidth sets Bandwidth field to given value.
### HasBandwidth
`func (o *RateLimiterConfig) HasBandwidth() bool`
HasBandwidth returns a boolean if a field has been set.
### GetOps
`func (o *RateLimiterConfig) GetOps() TokenBucket`
GetOps returns the Ops field if non-nil, zero value otherwise.
### GetOpsOk
`func (o *RateLimiterConfig) GetOpsOk() (*TokenBucket, bool)`
GetOpsOk returns a tuple with the Ops field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOps
`func (o *RateLimiterConfig) SetOps(v TokenBucket)`
SetOps sets Ops field to given value.
### HasOps
`func (o *RateLimiterConfig) HasOps() bool`
HasOps returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,7 +5,72 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**SourceUrl** | **string** | |
**Prefault** | **bool** | | [optional]
**Prefault** | Pointer to **bool** | | [optional]
## Methods
### NewRestoreConfig
`func NewRestoreConfig(sourceUrl string, ) *RestoreConfig`
NewRestoreConfig instantiates a new RestoreConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewRestoreConfigWithDefaults
`func NewRestoreConfigWithDefaults() *RestoreConfig`
NewRestoreConfigWithDefaults instantiates a new RestoreConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetSourceUrl
`func (o *RestoreConfig) GetSourceUrl() string`
GetSourceUrl returns the SourceUrl field if non-nil, zero value otherwise.
### GetSourceUrlOk
`func (o *RestoreConfig) GetSourceUrlOk() (*string, bool)`
GetSourceUrlOk returns a tuple with the SourceUrl field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSourceUrl
`func (o *RestoreConfig) SetSourceUrl(v string)`
SetSourceUrl sets SourceUrl field to given value.
### GetPrefault
`func (o *RestoreConfig) GetPrefault() bool`
GetPrefault returns the Prefault field if non-nil, zero value otherwise.
### GetPrefaultOk
`func (o *RestoreConfig) GetPrefaultOk() (*bool, bool)`
GetPrefaultOk returns a tuple with the Prefault field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPrefault
`func (o *RestoreConfig) SetPrefault(v bool)`
SetPrefault sets Prefault field to given value.
### HasPrefault
`func (o *RestoreConfig) HasPrefault() bool`
HasPrefault returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,8 +4,73 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Src** | **string** | | [default to /dev/urandom]
**Iommu** | **bool** | | [optional] [default to false]
**Src** | **string** | | [default to "/dev/urandom"]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
## Methods
### NewRngConfig
`func NewRngConfig(src string, ) *RngConfig`
NewRngConfig instantiates a new RngConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewRngConfigWithDefaults
`func NewRngConfigWithDefaults() *RngConfig`
NewRngConfigWithDefaults instantiates a new RngConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetSrc
`func (o *RngConfig) GetSrc() string`
GetSrc returns the Src field if non-nil, zero value otherwise.
### GetSrcOk
`func (o *RngConfig) GetSrcOk() (*string, bool)`
GetSrcOk returns a tuple with the Src field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSrc
`func (o *RngConfig) SetSrc(v string)`
SetSrc sets Src field to given value.
### GetIommu
`func (o *RngConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *RngConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *RngConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *RngConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,7 +6,92 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | |
**Size** | **int64** | |
**Prefault** | **bool** | | [optional] [default to false]
**Prefault** | Pointer to **bool** | | [optional] [default to false]
## Methods
### NewSgxEpcConfig
`func NewSgxEpcConfig(id string, size int64, ) *SgxEpcConfig`
NewSgxEpcConfig instantiates a new SgxEpcConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewSgxEpcConfigWithDefaults
`func NewSgxEpcConfigWithDefaults() *SgxEpcConfig`
NewSgxEpcConfigWithDefaults instantiates a new SgxEpcConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *SgxEpcConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *SgxEpcConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *SgxEpcConfig) SetId(v string)`
SetId sets Id field to given value.
### GetSize
`func (o *SgxEpcConfig) GetSize() int64`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *SgxEpcConfig) GetSizeOk() (*int64, bool)`
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSize
`func (o *SgxEpcConfig) SetSize(v int64)`
SetSize sets Size field to given value.
### GetPrefault
`func (o *SgxEpcConfig) GetPrefault() bool`
GetPrefault returns the Prefault field if non-nil, zero value otherwise.
### GetPrefaultOk
`func (o *SgxEpcConfig) GetPrefaultOk() (*bool, bool)`
GetPrefaultOk returns a tuple with the Prefault field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPrefault
`func (o *SgxEpcConfig) SetPrefault(v bool)`
SetPrefault sets Prefault field to given value.
### HasPrefault
`func (o *SgxEpcConfig) HasPrefault() bool`
HasPrefault returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -5,9 +5,94 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Size** | **int64** | The total number of tokens this bucket can hold. |
**OneTimeBurst** | **int64** | The initial size of a token bucket. | [optional]
**OneTimeBurst** | Pointer to **int64** | The initial size of a token bucket. | [optional]
**RefillTime** | **int64** | The amount of milliseconds it takes for the bucket to refill. |
## Methods
### NewTokenBucket
`func NewTokenBucket(size int64, refillTime int64, ) *TokenBucket`
NewTokenBucket instantiates a new TokenBucket object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewTokenBucketWithDefaults
`func NewTokenBucketWithDefaults() *TokenBucket`
NewTokenBucketWithDefaults instantiates a new TokenBucket object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetSize
`func (o *TokenBucket) GetSize() int64`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *TokenBucket) GetSizeOk() (*int64, bool)`
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSize
`func (o *TokenBucket) SetSize(v int64)`
SetSize sets Size field to given value.
### GetOneTimeBurst
`func (o *TokenBucket) GetOneTimeBurst() int64`
GetOneTimeBurst returns the OneTimeBurst field if non-nil, zero value otherwise.
### GetOneTimeBurstOk
`func (o *TokenBucket) GetOneTimeBurstOk() (*int64, bool)`
GetOneTimeBurstOk returns a tuple with the OneTimeBurst field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOneTimeBurst
`func (o *TokenBucket) SetOneTimeBurst(v int64)`
SetOneTimeBurst sets OneTimeBurst field to given value.
### HasOneTimeBurst
`func (o *TokenBucket) HasOneTimeBurst() bool`
HasOneTimeBurst returns a boolean if a field has been set.
### GetRefillTime
`func (o *TokenBucket) GetRefillTime() int64`
GetRefillTime returns the RefillTime field if non-nil, zero value otherwise.
### GetRefillTimeOk
`func (o *TokenBucket) GetRefillTimeOk() (*int64, bool)`
GetRefillTimeOk returns a tuple with the RefillTime field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRefillTime
`func (o *TokenBucket) SetRefillTime(v int64)`
SetRefillTime sets RefillTime field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,9 +4,104 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Path** | **string** | | [optional]
**Iommu** | **bool** | | [optional] [default to false]
**Id** | **string** | | [optional]
**Path** | Pointer to **string** | | [optional]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewVmAddDevice
`func NewVmAddDevice() *VmAddDevice`
NewVmAddDevice instantiates a new VmAddDevice object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmAddDeviceWithDefaults
`func NewVmAddDeviceWithDefaults() *VmAddDevice`
NewVmAddDeviceWithDefaults instantiates a new VmAddDevice object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetPath
`func (o *VmAddDevice) GetPath() string`
GetPath returns the Path field if non-nil, zero value otherwise.
### GetPathOk
`func (o *VmAddDevice) GetPathOk() (*string, bool)`
GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPath
`func (o *VmAddDevice) SetPath(v string)`
SetPath sets Path field to given value.
### HasPath
`func (o *VmAddDevice) HasPath() bool`
HasPath returns a boolean if a field has been set.
### GetIommu
`func (o *VmAddDevice) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *VmAddDevice) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *VmAddDevice) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *VmAddDevice) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetId
`func (o *VmAddDevice) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *VmAddDevice) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *VmAddDevice) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *VmAddDevice) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,25 +4,525 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Cpus** | [**CpusConfig**](CpusConfig.md) | | [optional]
**Memory** | [**MemoryConfig**](MemoryConfig.md) | | [optional]
**Cpus** | Pointer to [**CpusConfig**](CpusConfig.md) | | [optional]
**Memory** | Pointer to [**MemoryConfig**](MemoryConfig.md) | | [optional]
**Kernel** | [**KernelConfig**](KernelConfig.md) | |
**Initramfs** | Pointer to [**InitramfsConfig**](InitramfsConfig.md) | | [optional]
**Cmdline** | [**CmdLineConfig**](CmdLineConfig.md) | | [optional]
**Disks** | [**[]DiskConfig**](DiskConfig.md) | | [optional]
**Net** | [**[]NetConfig**](NetConfig.md) | | [optional]
**Rng** | [**RngConfig**](RngConfig.md) | | [optional]
**Balloon** | [**BalloonConfig**](BalloonConfig.md) | | [optional]
**Fs** | [**[]FsConfig**](FsConfig.md) | | [optional]
**Pmem** | [**[]PmemConfig**](PmemConfig.md) | | [optional]
**Serial** | [**ConsoleConfig**](ConsoleConfig.md) | | [optional]
**Console** | [**ConsoleConfig**](ConsoleConfig.md) | | [optional]
**Devices** | [**[]DeviceConfig**](DeviceConfig.md) | | [optional]
**Vsock** | [**VsockConfig**](VsockConfig.md) | | [optional]
**SgxEpc** | [**[]SgxEpcConfig**](SgxEpcConfig.md) | | [optional]
**Numa** | [**[]NumaConfig**](NumaConfig.md) | | [optional]
**Iommu** | **bool** | | [optional] [default to false]
**Watchdog** | **bool** | | [optional] [default to false]
**Initramfs** | Pointer to [**NullableInitramfsConfig**](InitramfsConfig.md) | | [optional]
**Cmdline** | Pointer to [**CmdLineConfig**](CmdLineConfig.md) | | [optional]
**Disks** | Pointer to [**[]DiskConfig**](DiskConfig.md) | | [optional]
**Net** | Pointer to [**[]NetConfig**](NetConfig.md) | | [optional]
**Rng** | Pointer to [**RngConfig**](RngConfig.md) | | [optional]
**Balloon** | Pointer to [**BalloonConfig**](BalloonConfig.md) | | [optional]
**Fs** | Pointer to [**[]FsConfig**](FsConfig.md) | | [optional]
**Pmem** | Pointer to [**[]PmemConfig**](PmemConfig.md) | | [optional]
**Serial** | Pointer to [**ConsoleConfig**](ConsoleConfig.md) | | [optional]
**Console** | Pointer to [**ConsoleConfig**](ConsoleConfig.md) | | [optional]
**Devices** | Pointer to [**[]DeviceConfig**](DeviceConfig.md) | | [optional]
**Vsock** | Pointer to [**VsockConfig**](VsockConfig.md) | | [optional]
**SgxEpc** | Pointer to [**[]SgxEpcConfig**](SgxEpcConfig.md) | | [optional]
**Numa** | Pointer to [**[]NumaConfig**](NumaConfig.md) | | [optional]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**Watchdog** | Pointer to **bool** | | [optional] [default to false]
## Methods
### NewVmConfig
`func NewVmConfig(kernel KernelConfig, ) *VmConfig`
NewVmConfig instantiates a new VmConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmConfigWithDefaults
`func NewVmConfigWithDefaults() *VmConfig`
NewVmConfigWithDefaults instantiates a new VmConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetCpus
`func (o *VmConfig) GetCpus() CpusConfig`
GetCpus returns the Cpus field if non-nil, zero value otherwise.
### GetCpusOk
`func (o *VmConfig) GetCpusOk() (*CpusConfig, bool)`
GetCpusOk returns a tuple with the Cpus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCpus
`func (o *VmConfig) SetCpus(v CpusConfig)`
SetCpus sets Cpus field to given value.
### HasCpus
`func (o *VmConfig) HasCpus() bool`
HasCpus returns a boolean if a field has been set.
### GetMemory
`func (o *VmConfig) GetMemory() MemoryConfig`
GetMemory returns the Memory field if non-nil, zero value otherwise.
### GetMemoryOk
`func (o *VmConfig) GetMemoryOk() (*MemoryConfig, bool)`
GetMemoryOk returns a tuple with the Memory field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMemory
`func (o *VmConfig) SetMemory(v MemoryConfig)`
SetMemory sets Memory field to given value.
### HasMemory
`func (o *VmConfig) HasMemory() bool`
HasMemory returns a boolean if a field has been set.
### GetKernel
`func (o *VmConfig) GetKernel() KernelConfig`
GetKernel returns the Kernel field if non-nil, zero value otherwise.
### GetKernelOk
`func (o *VmConfig) GetKernelOk() (*KernelConfig, bool)`
GetKernelOk returns a tuple with the Kernel field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetKernel
`func (o *VmConfig) SetKernel(v KernelConfig)`
SetKernel sets Kernel field to given value.
### GetInitramfs
`func (o *VmConfig) GetInitramfs() InitramfsConfig`
GetInitramfs returns the Initramfs field if non-nil, zero value otherwise.
### GetInitramfsOk
`func (o *VmConfig) GetInitramfsOk() (*InitramfsConfig, bool)`
GetInitramfsOk returns a tuple with the Initramfs field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetInitramfs
`func (o *VmConfig) SetInitramfs(v InitramfsConfig)`
SetInitramfs sets Initramfs field to given value.
### HasInitramfs
`func (o *VmConfig) HasInitramfs() bool`
HasInitramfs returns a boolean if a field has been set.
### SetInitramfsNil
`func (o *VmConfig) SetInitramfsNil(b bool)`
SetInitramfsNil sets the value for Initramfs to be an explicit nil
### UnsetInitramfs
`func (o *VmConfig) UnsetInitramfs()`
UnsetInitramfs ensures that no value is present for Initramfs, not even an explicit nil
### GetCmdline
`func (o *VmConfig) GetCmdline() CmdLineConfig`
GetCmdline returns the Cmdline field if non-nil, zero value otherwise.
### GetCmdlineOk
`func (o *VmConfig) GetCmdlineOk() (*CmdLineConfig, bool)`
GetCmdlineOk returns a tuple with the Cmdline field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCmdline
`func (o *VmConfig) SetCmdline(v CmdLineConfig)`
SetCmdline sets Cmdline field to given value.
### HasCmdline
`func (o *VmConfig) HasCmdline() bool`
HasCmdline returns a boolean if a field has been set.
### GetDisks
`func (o *VmConfig) GetDisks() []DiskConfig`
GetDisks returns the Disks field if non-nil, zero value otherwise.
### GetDisksOk
`func (o *VmConfig) GetDisksOk() (*[]DiskConfig, bool)`
GetDisksOk returns a tuple with the Disks field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDisks
`func (o *VmConfig) SetDisks(v []DiskConfig)`
SetDisks sets Disks field to given value.
### HasDisks
`func (o *VmConfig) HasDisks() bool`
HasDisks returns a boolean if a field has been set.
### GetNet
`func (o *VmConfig) GetNet() []NetConfig`
GetNet returns the Net field if non-nil, zero value otherwise.
### GetNetOk
`func (o *VmConfig) GetNetOk() (*[]NetConfig, bool)`
GetNetOk returns a tuple with the Net field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNet
`func (o *VmConfig) SetNet(v []NetConfig)`
SetNet sets Net field to given value.
### HasNet
`func (o *VmConfig) HasNet() bool`
HasNet returns a boolean if a field has been set.
### GetRng
`func (o *VmConfig) GetRng() RngConfig`
GetRng returns the Rng field if non-nil, zero value otherwise.
### GetRngOk
`func (o *VmConfig) GetRngOk() (*RngConfig, bool)`
GetRngOk returns a tuple with the Rng field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRng
`func (o *VmConfig) SetRng(v RngConfig)`
SetRng sets Rng field to given value.
### HasRng
`func (o *VmConfig) HasRng() bool`
HasRng returns a boolean if a field has been set.
### GetBalloon
`func (o *VmConfig) GetBalloon() BalloonConfig`
GetBalloon returns the Balloon field if non-nil, zero value otherwise.
### GetBalloonOk
`func (o *VmConfig) GetBalloonOk() (*BalloonConfig, bool)`
GetBalloonOk returns a tuple with the Balloon field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetBalloon
`func (o *VmConfig) SetBalloon(v BalloonConfig)`
SetBalloon sets Balloon field to given value.
### HasBalloon
`func (o *VmConfig) HasBalloon() bool`
HasBalloon returns a boolean if a field has been set.
### GetFs
`func (o *VmConfig) GetFs() []FsConfig`
GetFs returns the Fs field if non-nil, zero value otherwise.
### GetFsOk
`func (o *VmConfig) GetFsOk() (*[]FsConfig, bool)`
GetFsOk returns a tuple with the Fs field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFs
`func (o *VmConfig) SetFs(v []FsConfig)`
SetFs sets Fs field to given value.
### HasFs
`func (o *VmConfig) HasFs() bool`
HasFs returns a boolean if a field has been set.
### GetPmem
`func (o *VmConfig) GetPmem() []PmemConfig`
GetPmem returns the Pmem field if non-nil, zero value otherwise.
### GetPmemOk
`func (o *VmConfig) GetPmemOk() (*[]PmemConfig, bool)`
GetPmemOk returns a tuple with the Pmem field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPmem
`func (o *VmConfig) SetPmem(v []PmemConfig)`
SetPmem sets Pmem field to given value.
### HasPmem
`func (o *VmConfig) HasPmem() bool`
HasPmem returns a boolean if a field has been set.
### GetSerial
`func (o *VmConfig) GetSerial() ConsoleConfig`
GetSerial returns the Serial field if non-nil, zero value otherwise.
### GetSerialOk
`func (o *VmConfig) GetSerialOk() (*ConsoleConfig, bool)`
GetSerialOk returns a tuple with the Serial field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSerial
`func (o *VmConfig) SetSerial(v ConsoleConfig)`
SetSerial sets Serial field to given value.
### HasSerial
`func (o *VmConfig) HasSerial() bool`
HasSerial returns a boolean if a field has been set.
### GetConsole
`func (o *VmConfig) GetConsole() ConsoleConfig`
GetConsole returns the Console field if non-nil, zero value otherwise.
### GetConsoleOk
`func (o *VmConfig) GetConsoleOk() (*ConsoleConfig, bool)`
GetConsoleOk returns a tuple with the Console field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetConsole
`func (o *VmConfig) SetConsole(v ConsoleConfig)`
SetConsole sets Console field to given value.
### HasConsole
`func (o *VmConfig) HasConsole() bool`
HasConsole returns a boolean if a field has been set.
### GetDevices
`func (o *VmConfig) GetDevices() []DeviceConfig`
GetDevices returns the Devices field if non-nil, zero value otherwise.
### GetDevicesOk
`func (o *VmConfig) GetDevicesOk() (*[]DeviceConfig, bool)`
GetDevicesOk returns a tuple with the Devices field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDevices
`func (o *VmConfig) SetDevices(v []DeviceConfig)`
SetDevices sets Devices field to given value.
### HasDevices
`func (o *VmConfig) HasDevices() bool`
HasDevices returns a boolean if a field has been set.
### GetVsock
`func (o *VmConfig) GetVsock() VsockConfig`
GetVsock returns the Vsock field if non-nil, zero value otherwise.
### GetVsockOk
`func (o *VmConfig) GetVsockOk() (*VsockConfig, bool)`
GetVsockOk returns a tuple with the Vsock field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVsock
`func (o *VmConfig) SetVsock(v VsockConfig)`
SetVsock sets Vsock field to given value.
### HasVsock
`func (o *VmConfig) HasVsock() bool`
HasVsock returns a boolean if a field has been set.
### GetSgxEpc
`func (o *VmConfig) GetSgxEpc() []SgxEpcConfig`
GetSgxEpc returns the SgxEpc field if non-nil, zero value otherwise.
### GetSgxEpcOk
`func (o *VmConfig) GetSgxEpcOk() (*[]SgxEpcConfig, bool)`
GetSgxEpcOk returns a tuple with the SgxEpc field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSgxEpc
`func (o *VmConfig) SetSgxEpc(v []SgxEpcConfig)`
SetSgxEpc sets SgxEpc field to given value.
### HasSgxEpc
`func (o *VmConfig) HasSgxEpc() bool`
HasSgxEpc returns a boolean if a field has been set.
### GetNuma
`func (o *VmConfig) GetNuma() []NumaConfig`
GetNuma returns the Numa field if non-nil, zero value otherwise.
### GetNumaOk
`func (o *VmConfig) GetNumaOk() (*[]NumaConfig, bool)`
GetNumaOk returns a tuple with the Numa field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNuma
`func (o *VmConfig) SetNuma(v []NumaConfig)`
SetNuma sets Numa field to given value.
### HasNuma
`func (o *VmConfig) HasNuma() bool`
HasNuma returns a boolean if a field has been set.
### GetIommu
`func (o *VmConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *VmConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *VmConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *VmConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetWatchdog
`func (o *VmConfig) GetWatchdog() bool`
GetWatchdog returns the Watchdog field if non-nil, zero value otherwise.
### GetWatchdogOk
`func (o *VmConfig) GetWatchdogOk() (*bool, bool)`
GetWatchdogOk returns a tuple with the Watchdog field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetWatchdog
`func (o *VmConfig) SetWatchdog(v bool)`
SetWatchdog sets Watchdog field to given value.
### HasWatchdog
`func (o *VmConfig) HasWatchdog() bool`
HasWatchdog returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,8 +6,118 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Config** | [**VmConfig**](VmConfig.md) | |
**State** | **string** | |
**MemoryActualSize** | **int64** | | [optional]
**DeviceTree** | [**map[string]DeviceNode**](DeviceNode.md) | | [optional]
**MemoryActualSize** | Pointer to **int64** | | [optional]
**DeviceTree** | Pointer to [**map[string]DeviceNode**](DeviceNode.md) | | [optional]
## Methods
### NewVmInfo
`func NewVmInfo(config VmConfig, state string, ) *VmInfo`
NewVmInfo instantiates a new VmInfo object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmInfoWithDefaults
`func NewVmInfoWithDefaults() *VmInfo`
NewVmInfoWithDefaults instantiates a new VmInfo object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetConfig
`func (o *VmInfo) GetConfig() VmConfig`
GetConfig returns the Config field if non-nil, zero value otherwise.
### GetConfigOk
`func (o *VmInfo) GetConfigOk() (*VmConfig, bool)`
GetConfigOk returns a tuple with the Config field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetConfig
`func (o *VmInfo) SetConfig(v VmConfig)`
SetConfig sets Config field to given value.
### GetState
`func (o *VmInfo) GetState() string`
GetState returns the State field if non-nil, zero value otherwise.
### GetStateOk
`func (o *VmInfo) GetStateOk() (*string, bool)`
GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetState
`func (o *VmInfo) SetState(v string)`
SetState sets State field to given value.
### GetMemoryActualSize
`func (o *VmInfo) GetMemoryActualSize() int64`
GetMemoryActualSize returns the MemoryActualSize field if non-nil, zero value otherwise.
### GetMemoryActualSizeOk
`func (o *VmInfo) GetMemoryActualSizeOk() (*int64, bool)`
GetMemoryActualSizeOk returns a tuple with the MemoryActualSize field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMemoryActualSize
`func (o *VmInfo) SetMemoryActualSize(v int64)`
SetMemoryActualSize sets MemoryActualSize field to given value.
### HasMemoryActualSize
`func (o *VmInfo) HasMemoryActualSize() bool`
HasMemoryActualSize returns a boolean if a field has been set.
### GetDeviceTree
`func (o *VmInfo) GetDeviceTree() map[string]DeviceNode`
GetDeviceTree returns the DeviceTree field if non-nil, zero value otherwise.
### GetDeviceTreeOk
`func (o *VmInfo) GetDeviceTreeOk() (*map[string]DeviceNode, bool)`
GetDeviceTreeOk returns a tuple with the DeviceTree field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDeviceTree
`func (o *VmInfo) SetDeviceTree(v map[string]DeviceNode)`
SetDeviceTree sets DeviceTree field to given value.
### HasDeviceTree
`func (o *VmInfo) HasDeviceTree() bool`
HasDeviceTree returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,7 +4,52 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | | [optional]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewVmRemoveDevice
`func NewVmRemoveDevice() *VmRemoveDevice`
NewVmRemoveDevice instantiates a new VmRemoveDevice object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmRemoveDeviceWithDefaults
`func NewVmRemoveDeviceWithDefaults() *VmRemoveDevice`
NewVmRemoveDeviceWithDefaults instantiates a new VmRemoveDevice object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *VmRemoveDevice) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *VmRemoveDevice) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *VmRemoveDevice) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *VmRemoveDevice) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,9 +4,104 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DesiredVcpus** | **int32** | | [optional]
**DesiredRam** | **int64** | desired memory ram in bytes | [optional]
**DesiredBalloon** | **int64** | desired balloon size in bytes | [optional]
**DesiredVcpus** | Pointer to **int32** | | [optional]
**DesiredRam** | Pointer to **int64** | desired memory ram in bytes | [optional]
**DesiredBalloon** | Pointer to **int64** | desired balloon size in bytes | [optional]
## Methods
### NewVmResize
`func NewVmResize() *VmResize`
NewVmResize instantiates a new VmResize object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmResizeWithDefaults
`func NewVmResizeWithDefaults() *VmResize`
NewVmResizeWithDefaults instantiates a new VmResize object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetDesiredVcpus
`func (o *VmResize) GetDesiredVcpus() int32`
GetDesiredVcpus returns the DesiredVcpus field if non-nil, zero value otherwise.
### GetDesiredVcpusOk
`func (o *VmResize) GetDesiredVcpusOk() (*int32, bool)`
GetDesiredVcpusOk returns a tuple with the DesiredVcpus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDesiredVcpus
`func (o *VmResize) SetDesiredVcpus(v int32)`
SetDesiredVcpus sets DesiredVcpus field to given value.
### HasDesiredVcpus
`func (o *VmResize) HasDesiredVcpus() bool`
HasDesiredVcpus returns a boolean if a field has been set.
### GetDesiredRam
`func (o *VmResize) GetDesiredRam() int64`
GetDesiredRam returns the DesiredRam field if non-nil, zero value otherwise.
### GetDesiredRamOk
`func (o *VmResize) GetDesiredRamOk() (*int64, bool)`
GetDesiredRamOk returns a tuple with the DesiredRam field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDesiredRam
`func (o *VmResize) SetDesiredRam(v int64)`
SetDesiredRam sets DesiredRam field to given value.
### HasDesiredRam
`func (o *VmResize) HasDesiredRam() bool`
HasDesiredRam returns a boolean if a field has been set.
### GetDesiredBalloon
`func (o *VmResize) GetDesiredBalloon() int64`
GetDesiredBalloon returns the DesiredBalloon field if non-nil, zero value otherwise.
### GetDesiredBalloonOk
`func (o *VmResize) GetDesiredBalloonOk() (*int64, bool)`
GetDesiredBalloonOk returns a tuple with the DesiredBalloon field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDesiredBalloon
`func (o *VmResize) SetDesiredBalloon(v int64)`
SetDesiredBalloon sets DesiredBalloon field to given value.
### HasDesiredBalloon
`func (o *VmResize) HasDesiredBalloon() bool`
HasDesiredBalloon returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,8 +4,78 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | | [optional]
**DesiredRam** | **int64** | desired memory zone size in bytes | [optional]
**Id** | Pointer to **string** | | [optional]
**DesiredRam** | Pointer to **int64** | desired memory zone size in bytes | [optional]
## Methods
### NewVmResizeZone
`func NewVmResizeZone() *VmResizeZone`
NewVmResizeZone instantiates a new VmResizeZone object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmResizeZoneWithDefaults
`func NewVmResizeZoneWithDefaults() *VmResizeZone`
NewVmResizeZoneWithDefaults instantiates a new VmResizeZone object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetId
`func (o *VmResizeZone) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *VmResizeZone) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *VmResizeZone) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *VmResizeZone) HasId() bool`
HasId returns a boolean if a field has been set.
### GetDesiredRam
`func (o *VmResizeZone) GetDesiredRam() int64`
GetDesiredRam returns the DesiredRam field if non-nil, zero value otherwise.
### GetDesiredRamOk
`func (o *VmResizeZone) GetDesiredRamOk() (*int64, bool)`
GetDesiredRamOk returns a tuple with the DesiredRam field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDesiredRam
`func (o *VmResizeZone) SetDesiredRam(v int64)`
SetDesiredRam sets DesiredRam field to given value.
### HasDesiredRam
`func (o *VmResizeZone) HasDesiredRam() bool`
HasDesiredRam returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -4,7 +4,52 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DestinationUrl** | **string** | | [optional]
**DestinationUrl** | Pointer to **string** | | [optional]
## Methods
### NewVmSnapshotConfig
`func NewVmSnapshotConfig() *VmSnapshotConfig`
NewVmSnapshotConfig instantiates a new VmSnapshotConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmSnapshotConfigWithDefaults
`func NewVmSnapshotConfigWithDefaults() *VmSnapshotConfig`
NewVmSnapshotConfigWithDefaults instantiates a new VmSnapshotConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetDestinationUrl
`func (o *VmSnapshotConfig) GetDestinationUrl() string`
GetDestinationUrl returns the DestinationUrl field if non-nil, zero value otherwise.
### GetDestinationUrlOk
`func (o *VmSnapshotConfig) GetDestinationUrlOk() (*string, bool)`
GetDestinationUrlOk returns a tuple with the DestinationUrl field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDestinationUrl
`func (o *VmSnapshotConfig) SetDestinationUrl(v string)`
SetDestinationUrl sets DestinationUrl field to given value.
### HasDestinationUrl
`func (o *VmSnapshotConfig) HasDestinationUrl() bool`
HasDestinationUrl returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,6 +6,46 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Version** | **string** | |
## Methods
### NewVmmPingResponse
`func NewVmmPingResponse(version string, ) *VmmPingResponse`
NewVmmPingResponse instantiates a new VmmPingResponse object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVmmPingResponseWithDefaults
`func NewVmmPingResponseWithDefaults() *VmmPingResponse`
NewVmmPingResponseWithDefaults instantiates a new VmmPingResponse object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetVersion
`func (o *VmmPingResponse) GetVersion() string`
GetVersion returns the Version field if non-nil, zero value otherwise.
### GetVersionOk
`func (o *VmmPingResponse) GetVersionOk() (*string, bool)`
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVersion
`func (o *VmmPingResponse) SetVersion(v string)`
SetVersion sets Version field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -6,8 +6,118 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Cid** | **int64** | Guest Vsock CID |
**Socket** | **string** | Path to UNIX domain socket, used to proxy vsock connections. |
**Iommu** | **bool** | | [optional] [default to false]
**Id** | **string** | | [optional]
**Iommu** | Pointer to **bool** | | [optional] [default to false]
**Id** | Pointer to **string** | | [optional]
## Methods
### NewVsockConfig
`func NewVsockConfig(cid int64, socket string, ) *VsockConfig`
NewVsockConfig instantiates a new VsockConfig object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewVsockConfigWithDefaults
`func NewVsockConfigWithDefaults() *VsockConfig`
NewVsockConfigWithDefaults instantiates a new VsockConfig object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetCid
`func (o *VsockConfig) GetCid() int64`
GetCid returns the Cid field if non-nil, zero value otherwise.
### GetCidOk
`func (o *VsockConfig) GetCidOk() (*int64, bool)`
GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCid
`func (o *VsockConfig) SetCid(v int64)`
SetCid sets Cid field to given value.
### GetSocket
`func (o *VsockConfig) GetSocket() string`
GetSocket returns the Socket field if non-nil, zero value otherwise.
### GetSocketOk
`func (o *VsockConfig) GetSocketOk() (*string, bool)`
GetSocketOk returns a tuple with the Socket field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSocket
`func (o *VsockConfig) SetSocket(v string)`
SetSocket sets Socket field to given value.
### GetIommu
`func (o *VsockConfig) GetIommu() bool`
GetIommu returns the Iommu field if non-nil, zero value otherwise.
### GetIommuOk
`func (o *VsockConfig) GetIommuOk() (*bool, bool)`
GetIommuOk returns a tuple with the Iommu field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIommu
`func (o *VsockConfig) SetIommu(v bool)`
SetIommu sets Iommu field to given value.
### HasIommu
`func (o *VsockConfig) HasIommu() bool`
HasIommu returns a boolean if a field has been set.
### GetId
`func (o *VsockConfig) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *VsockConfig) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *VsockConfig) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *VsockConfig) HasId() bool`
HasId returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)