src/runtime/virtcontainers/pkg/cloud-hypervisor/client/docs/VmInfo.md
| Name | Type | Description | Notes |
|---|---|---|---|
| Config | VmConfig | ||
| State | string | ||
| MemoryActualSize | Pointer to int64 | [optional] | |
| DeviceTree | Pointer to map[string]DeviceNode | [optional] |
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
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
func (o *VmInfo) GetConfig() VmConfig
GetConfig returns the Config field if non-nil, zero value otherwise.
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.
func (o *VmInfo) SetConfig(v VmConfig)
SetConfig sets Config field to given value.
func (o *VmInfo) GetState() string
GetState returns the State field if non-nil, zero value otherwise.
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.
func (o *VmInfo) SetState(v string)
SetState sets State field to given value.
func (o *VmInfo) GetMemoryActualSize() int64
GetMemoryActualSize returns the MemoryActualSize field if non-nil, zero value otherwise.
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.
func (o *VmInfo) SetMemoryActualSize(v int64)
SetMemoryActualSize sets MemoryActualSize field to given value.
func (o *VmInfo) HasMemoryActualSize() bool
HasMemoryActualSize returns a boolean if a field has been set.
func (o *VmInfo) GetDeviceTree() map[string]DeviceNode
GetDeviceTree returns the DeviceTree field if non-nil, zero value otherwise.
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.
func (o *VmInfo) SetDeviceTree(v map[string]DeviceNode)
SetDeviceTree sets DeviceTree field to given value.
func (o *VmInfo) HasDeviceTree() bool
HasDeviceTree returns a boolean if a field has been set.