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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
# SnapshotProperties
## Properties
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**Name** | Pointer to **string** | The name of the resource. | [optional] |
|**Description** | Pointer to **string** | Human-readable description. | [optional] |
|**Location** | Pointer to **string** | Location of that image/snapshot. | [optional] [readonly] |
|**Size** | Pointer to **float32** | The size of the image in GB. | [optional] [readonly] |
|**SecAuthProtection** | Pointer to **bool** | Boolean value representing if the snapshot requires extra protection, such as two-step verification. | [optional] |
|**CpuHotPlug** | Pointer to **bool** | Hot-plug capable CPU (no reboot required). | [optional] |
|**CpuHotUnplug** | Pointer to **bool** | Hot-unplug capable CPU (no reboot required). | [optional] |
|**RamHotPlug** | Pointer to **bool** | Hot-plug capable RAM (no reboot required). | [optional] |
|**RamHotUnplug** | Pointer to **bool** | Hot-unplug capable RAM (no reboot required). | [optional] |
|**NicHotPlug** | Pointer to **bool** | Hot-plug capable NIC (no reboot required). | [optional] |
|**NicHotUnplug** | Pointer to **bool** | Hot-unplug capable NIC (no reboot required). | [optional] |
|**DiscVirtioHotPlug** | Pointer to **bool** | Hot-plug capable Virt-IO drive (no reboot required). | [optional] |
|**DiscVirtioHotUnplug** | Pointer to **bool** | Hot-unplug capable Virt-IO drive (no reboot required). Not supported with Windows VMs. | [optional] |
|**DiscScsiHotPlug** | Pointer to **bool** | Hot-plug capable SCSI drive (no reboot required). | [optional] |
|**ExposeSerial** | Pointer to **bool** | If set to `true` will expose the serial id of the disk attached to the server. If set to `false` will not expose the serial id. Some operating systems or software solutions require the serial id to be exposed to work properly. Exposing the serial can influence licensed software (e.g. Windows) behavior | [optional] [default to false]|
|**DiscScsiHotUnplug** | Pointer to **bool** | Is capable of SCSI drive hot unplug (no reboot required). This works only for non-Windows virtual Machines. | [optional] |
|**LicenceType** | Pointer to **string** | OS type of this snapshot | [optional] |
## Methods
### NewSnapshotProperties
`func NewSnapshotProperties() *SnapshotProperties`
NewSnapshotProperties instantiates a new SnapshotProperties object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewSnapshotPropertiesWithDefaults
`func NewSnapshotPropertiesWithDefaults() *SnapshotProperties`
NewSnapshotPropertiesWithDefaults instantiates a new SnapshotProperties object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetName
`func (o *SnapshotProperties) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *SnapshotProperties) GetNameOk() (*string, bool)`
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetName
`func (o *SnapshotProperties) SetName(v string)`
SetName sets Name field to given value.
### HasName
`func (o *SnapshotProperties) HasName() bool`
HasName returns a boolean if a field has been set.
### GetDescription
`func (o *SnapshotProperties) GetDescription() string`
GetDescription returns the Description field if non-nil, zero value otherwise.
### GetDescriptionOk
`func (o *SnapshotProperties) GetDescriptionOk() (*string, bool)`
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDescription
`func (o *SnapshotProperties) SetDescription(v string)`
SetDescription sets Description field to given value.
### HasDescription
`func (o *SnapshotProperties) HasDescription() bool`
HasDescription returns a boolean if a field has been set.
### GetLocation
`func (o *SnapshotProperties) GetLocation() string`
GetLocation returns the Location field if non-nil, zero value otherwise.
### GetLocationOk
`func (o *SnapshotProperties) GetLocationOk() (*string, bool)`
GetLocationOk returns a tuple with the Location field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLocation
`func (o *SnapshotProperties) SetLocation(v string)`
SetLocation sets Location field to given value.
### HasLocation
`func (o *SnapshotProperties) HasLocation() bool`
HasLocation returns a boolean if a field has been set.
### GetSize
`func (o *SnapshotProperties) GetSize() float32`
GetSize returns the Size field if non-nil, zero value otherwise.
### GetSizeOk
`func (o *SnapshotProperties) GetSizeOk() (*float32, 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 *SnapshotProperties) SetSize(v float32)`
SetSize sets Size field to given value.
### HasSize
`func (o *SnapshotProperties) HasSize() bool`
HasSize returns a boolean if a field has been set.
### GetSecAuthProtection
`func (o *SnapshotProperties) GetSecAuthProtection() bool`
GetSecAuthProtection returns the SecAuthProtection field if non-nil, zero value otherwise.
### GetSecAuthProtectionOk
`func (o *SnapshotProperties) GetSecAuthProtectionOk() (*bool, bool)`
GetSecAuthProtectionOk returns a tuple with the SecAuthProtection field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSecAuthProtection
`func (o *SnapshotProperties) SetSecAuthProtection(v bool)`
SetSecAuthProtection sets SecAuthProtection field to given value.
### HasSecAuthProtection
`func (o *SnapshotProperties) HasSecAuthProtection() bool`
HasSecAuthProtection returns a boolean if a field has been set.
### GetCpuHotPlug
`func (o *SnapshotProperties) GetCpuHotPlug() bool`
GetCpuHotPlug returns the CpuHotPlug field if non-nil, zero value otherwise.
### GetCpuHotPlugOk
`func (o *SnapshotProperties) GetCpuHotPlugOk() (*bool, bool)`
GetCpuHotPlugOk returns a tuple with the CpuHotPlug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCpuHotPlug
`func (o *SnapshotProperties) SetCpuHotPlug(v bool)`
SetCpuHotPlug sets CpuHotPlug field to given value.
### HasCpuHotPlug
`func (o *SnapshotProperties) HasCpuHotPlug() bool`
HasCpuHotPlug returns a boolean if a field has been set.
### GetCpuHotUnplug
`func (o *SnapshotProperties) GetCpuHotUnplug() bool`
GetCpuHotUnplug returns the CpuHotUnplug field if non-nil, zero value otherwise.
### GetCpuHotUnplugOk
`func (o *SnapshotProperties) GetCpuHotUnplugOk() (*bool, bool)`
GetCpuHotUnplugOk returns a tuple with the CpuHotUnplug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCpuHotUnplug
`func (o *SnapshotProperties) SetCpuHotUnplug(v bool)`
SetCpuHotUnplug sets CpuHotUnplug field to given value.
### HasCpuHotUnplug
`func (o *SnapshotProperties) HasCpuHotUnplug() bool`
HasCpuHotUnplug returns a boolean if a field has been set.
### GetRamHotPlug
`func (o *SnapshotProperties) GetRamHotPlug() bool`
GetRamHotPlug returns the RamHotPlug field if non-nil, zero value otherwise.
### GetRamHotPlugOk
`func (o *SnapshotProperties) GetRamHotPlugOk() (*bool, bool)`
GetRamHotPlugOk returns a tuple with the RamHotPlug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRamHotPlug
`func (o *SnapshotProperties) SetRamHotPlug(v bool)`
SetRamHotPlug sets RamHotPlug field to given value.
### HasRamHotPlug
`func (o *SnapshotProperties) HasRamHotPlug() bool`
HasRamHotPlug returns a boolean if a field has been set.
### GetRamHotUnplug
`func (o *SnapshotProperties) GetRamHotUnplug() bool`
GetRamHotUnplug returns the RamHotUnplug field if non-nil, zero value otherwise.
### GetRamHotUnplugOk
`func (o *SnapshotProperties) GetRamHotUnplugOk() (*bool, bool)`
GetRamHotUnplugOk returns a tuple with the RamHotUnplug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRamHotUnplug
`func (o *SnapshotProperties) SetRamHotUnplug(v bool)`
SetRamHotUnplug sets RamHotUnplug field to given value.
### HasRamHotUnplug
`func (o *SnapshotProperties) HasRamHotUnplug() bool`
HasRamHotUnplug returns a boolean if a field has been set.
### GetNicHotPlug
`func (o *SnapshotProperties) GetNicHotPlug() bool`
GetNicHotPlug returns the NicHotPlug field if non-nil, zero value otherwise.
### GetNicHotPlugOk
`func (o *SnapshotProperties) GetNicHotPlugOk() (*bool, bool)`
GetNicHotPlugOk returns a tuple with the NicHotPlug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNicHotPlug
`func (o *SnapshotProperties) SetNicHotPlug(v bool)`
SetNicHotPlug sets NicHotPlug field to given value.
### HasNicHotPlug
`func (o *SnapshotProperties) HasNicHotPlug() bool`
HasNicHotPlug returns a boolean if a field has been set.
### GetNicHotUnplug
`func (o *SnapshotProperties) GetNicHotUnplug() bool`
GetNicHotUnplug returns the NicHotUnplug field if non-nil, zero value otherwise.
### GetNicHotUnplugOk
`func (o *SnapshotProperties) GetNicHotUnplugOk() (*bool, bool)`
GetNicHotUnplugOk returns a tuple with the NicHotUnplug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNicHotUnplug
`func (o *SnapshotProperties) SetNicHotUnplug(v bool)`
SetNicHotUnplug sets NicHotUnplug field to given value.
### HasNicHotUnplug
`func (o *SnapshotProperties) HasNicHotUnplug() bool`
HasNicHotUnplug returns a boolean if a field has been set.
### GetDiscVirtioHotPlug
`func (o *SnapshotProperties) GetDiscVirtioHotPlug() bool`
GetDiscVirtioHotPlug returns the DiscVirtioHotPlug field if non-nil, zero value otherwise.
### GetDiscVirtioHotPlugOk
`func (o *SnapshotProperties) GetDiscVirtioHotPlugOk() (*bool, bool)`
GetDiscVirtioHotPlugOk returns a tuple with the DiscVirtioHotPlug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscVirtioHotPlug
`func (o *SnapshotProperties) SetDiscVirtioHotPlug(v bool)`
SetDiscVirtioHotPlug sets DiscVirtioHotPlug field to given value.
### HasDiscVirtioHotPlug
`func (o *SnapshotProperties) HasDiscVirtioHotPlug() bool`
HasDiscVirtioHotPlug returns a boolean if a field has been set.
### GetDiscVirtioHotUnplug
`func (o *SnapshotProperties) GetDiscVirtioHotUnplug() bool`
GetDiscVirtioHotUnplug returns the DiscVirtioHotUnplug field if non-nil, zero value otherwise.
### GetDiscVirtioHotUnplugOk
`func (o *SnapshotProperties) GetDiscVirtioHotUnplugOk() (*bool, bool)`
GetDiscVirtioHotUnplugOk returns a tuple with the DiscVirtioHotUnplug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscVirtioHotUnplug
`func (o *SnapshotProperties) SetDiscVirtioHotUnplug(v bool)`
SetDiscVirtioHotUnplug sets DiscVirtioHotUnplug field to given value.
### HasDiscVirtioHotUnplug
`func (o *SnapshotProperties) HasDiscVirtioHotUnplug() bool`
HasDiscVirtioHotUnplug returns a boolean if a field has been set.
### GetDiscScsiHotPlug
`func (o *SnapshotProperties) GetDiscScsiHotPlug() bool`
GetDiscScsiHotPlug returns the DiscScsiHotPlug field if non-nil, zero value otherwise.
### GetDiscScsiHotPlugOk
`func (o *SnapshotProperties) GetDiscScsiHotPlugOk() (*bool, bool)`
GetDiscScsiHotPlugOk returns a tuple with the DiscScsiHotPlug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscScsiHotPlug
`func (o *SnapshotProperties) SetDiscScsiHotPlug(v bool)`
SetDiscScsiHotPlug sets DiscScsiHotPlug field to given value.
### HasDiscScsiHotPlug
`func (o *SnapshotProperties) HasDiscScsiHotPlug() bool`
HasDiscScsiHotPlug returns a boolean if a field has been set.
### GetExposeSerial
`func (o *SnapshotProperties) GetExposeSerial() bool`
GetExposeSerial returns the ExposeSerial field if non-nil, zero value otherwise.
### GetExposeSerialOk
`func (o *SnapshotProperties) GetExposeSerialOk() (*bool, bool)`
GetExposeSerialOk returns a tuple with the ExposeSerial field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetExposeSerial
`func (o *SnapshotProperties) SetExposeSerial(v bool)`
SetExposeSerial sets ExposeSerial field to given value.
### HasExposeSerial
`func (o *SnapshotProperties) HasExposeSerial() bool`
HasExposeSerial returns a boolean if a field has been set.
### GetDiscScsiHotUnplug
`func (o *SnapshotProperties) GetDiscScsiHotUnplug() bool`
GetDiscScsiHotUnplug returns the DiscScsiHotUnplug field if non-nil, zero value otherwise.
### GetDiscScsiHotUnplugOk
`func (o *SnapshotProperties) GetDiscScsiHotUnplugOk() (*bool, bool)`
GetDiscScsiHotUnplugOk returns a tuple with the DiscScsiHotUnplug field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDiscScsiHotUnplug
`func (o *SnapshotProperties) SetDiscScsiHotUnplug(v bool)`
SetDiscScsiHotUnplug sets DiscScsiHotUnplug field to given value.
### HasDiscScsiHotUnplug
`func (o *SnapshotProperties) HasDiscScsiHotUnplug() bool`
HasDiscScsiHotUnplug returns a boolean if a field has been set.
### GetLicenceType
`func (o *SnapshotProperties) GetLicenceType() string`
GetLicenceType returns the LicenceType field if non-nil, zero value otherwise.
### GetLicenceTypeOk
`func (o *SnapshotProperties) GetLicenceTypeOk() (*string, bool)`
GetLicenceTypeOk returns a tuple with the LicenceType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLicenceType
`func (o *SnapshotProperties) SetLicenceType(v string)`
SetLicenceType sets LicenceType field to given value.
### HasLicenceType
`func (o *SnapshotProperties) HasLicenceType() bool`
HasLicenceType returns a boolean if a field has been set.
|