1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
# CpuArchitectureProperties
## Properties
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**CpuFamily** | Pointer to **string** | A valid CPU family name. | [optional] |
|**MaxCores** | Pointer to **int32** | The maximum number of cores available. | [optional] |
|**MaxRam** | Pointer to **int32** | The maximum RAM size in MB. | [optional] |
|**Vendor** | Pointer to **string** | A valid CPU vendor name. | [optional] |
## Methods
### NewCpuArchitectureProperties
`func NewCpuArchitectureProperties() *CpuArchitectureProperties`
NewCpuArchitectureProperties instantiates a new CpuArchitectureProperties object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewCpuArchitecturePropertiesWithDefaults
`func NewCpuArchitecturePropertiesWithDefaults() *CpuArchitectureProperties`
NewCpuArchitecturePropertiesWithDefaults instantiates a new CpuArchitectureProperties object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetCpuFamily
`func (o *CpuArchitectureProperties) GetCpuFamily() string`
GetCpuFamily returns the CpuFamily field if non-nil, zero value otherwise.
### GetCpuFamilyOk
`func (o *CpuArchitectureProperties) GetCpuFamilyOk() (*string, bool)`
GetCpuFamilyOk returns a tuple with the CpuFamily field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCpuFamily
`func (o *CpuArchitectureProperties) SetCpuFamily(v string)`
SetCpuFamily sets CpuFamily field to given value.
### HasCpuFamily
`func (o *CpuArchitectureProperties) HasCpuFamily() bool`
HasCpuFamily returns a boolean if a field has been set.
### GetMaxCores
`func (o *CpuArchitectureProperties) GetMaxCores() int32`
GetMaxCores returns the MaxCores field if non-nil, zero value otherwise.
### GetMaxCoresOk
`func (o *CpuArchitectureProperties) GetMaxCoresOk() (*int32, bool)`
GetMaxCoresOk returns a tuple with the MaxCores field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMaxCores
`func (o *CpuArchitectureProperties) SetMaxCores(v int32)`
SetMaxCores sets MaxCores field to given value.
### HasMaxCores
`func (o *CpuArchitectureProperties) HasMaxCores() bool`
HasMaxCores returns a boolean if a field has been set.
### GetMaxRam
`func (o *CpuArchitectureProperties) GetMaxRam() int32`
GetMaxRam returns the MaxRam field if non-nil, zero value otherwise.
### GetMaxRamOk
`func (o *CpuArchitectureProperties) GetMaxRamOk() (*int32, bool)`
GetMaxRamOk returns a tuple with the MaxRam field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMaxRam
`func (o *CpuArchitectureProperties) SetMaxRam(v int32)`
SetMaxRam sets MaxRam field to given value.
### HasMaxRam
`func (o *CpuArchitectureProperties) HasMaxRam() bool`
HasMaxRam returns a boolean if a field has been set.
### GetVendor
`func (o *CpuArchitectureProperties) GetVendor() string`
GetVendor returns the Vendor field if non-nil, zero value otherwise.
### GetVendorOk
`func (o *CpuArchitectureProperties) GetVendorOk() (*string, bool)`
GetVendorOk returns a tuple with the Vendor field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVendor
`func (o *CpuArchitectureProperties) SetVendor(v string)`
SetVendor sets Vendor field to given value.
### HasVendor
`func (o *CpuArchitectureProperties) HasVendor() bool`
HasVendor returns a boolean if a field has been set.
|