# SnapshotProperties

## Properties

\| **cpu\_hot\_plug** | **Boolean** | Hot-plug capable CPU (no reboot required). | \[optional] |

\| **cpu\_hot\_unplug** | **Boolean** | Hot-unplug capable CPU (no reboot required). | \[optional] |

\| **description** | **String** | Human-readable description. | \[optional] |

\| **disc\_scsi\_hot\_plug** | **Boolean** | Hot-plug capable SCSI drive (no reboot required). | \[optional] |

\| **disc\_scsi\_hot\_unplug** | **Boolean** | Is capable of SCSI drive hot unplug (no reboot required). This works only for non-Windows virtual Machines. | \[optional] |

\| **disc\_virtio\_hot\_plug** | **Boolean** | Hot-plug capable Virt-IO drive (no reboot required). | \[optional] |

\| **disc\_virtio\_hot\_unplug** | **Boolean** | Hot-unplug capable Virt-IO drive (no reboot required). Not supported with Windows VMs. | \[optional] |

\| **licence\_type** | **String** | OS type of this snapshot | \[optional] |

\| **location** | **String** | Location of that image/snapshot. | \[optional]\[readonly] |

\| **name** | **String** | The name of the resource. | \[optional] |

\| **nic\_hot\_plug** | **Boolean** | Hot-plug capable NIC (no reboot required). | \[optional] |

\| **nic\_hot\_unplug** | **Boolean** | Hot-unplug capable NIC (no reboot required). | \[optional] |

\| **ram\_hot\_plug** | **Boolean** | Hot-plug capable RAM (no reboot required). | \[optional] |

\| **ram\_hot\_unplug** | **Boolean** | Hot-unplug capable RAM (no reboot required). | \[optional] |

\| **sec\_auth\_protection** | **Boolean** | Boolean value representing if the snapshot requires extra protection, such as two-step verification. | \[optional] |

\| **size** | **Float** | The size of the image in GB. | \[optional]\[readonly] |

## Example

```ruby
require 'ionoscloud'


instance = Ionoscloud::SnapshotProperties.new(
  cpu_hot_plug: true,

  cpu_hot_unplug: true,

  description: Image/Snapshot of Ubuntu ,

  disc_scsi_hot_plug: true,

  disc_scsi_hot_unplug: true,

  disc_virtio_hot_plug: true,

  disc_virtio_hot_unplug: true,

  licence_type: LINUX,

  location: us/las,

  name: My resource,

  nic_hot_plug: true,

  nic_hot_unplug: true,

  ram_hot_plug: true,

  ram_hot_unplug: true,

  sec_auth_protection: true,

  size: 100.0
)
```
