Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.01 KB

File metadata and controls

50 lines (41 loc) · 2.01 KB

SnapshotRetrieveFields

Properties

Name Type Description Notes
created_at datetime Creation timestamp
custom_image str [optional]
description str Description of the snapshot
has_floating_ip bool Indicates if the VM had a floating IP assigned [optional]
id int Snapshot ID
is_image bool Indicates if the snapshot is an image
labels str [optional]
name str Snapshot name
region str [optional]
region_id int Region where the snapshot will be available
size int Size in GB of the snapshot
status str Status of the snapshot
updated_at datetime Last update timestamp
vm_environment str [optional]
vm_flavor str [optional]
vm_id int ID of the VM from which the snapshot is created
vm_image str [optional]
vm_keypair str [optional]
vm_name str [optional]
vm_status str [optional]
volume_id str [optional]
volume_name str [optional]

Example

from hyperstack.models.snapshot_retrieve_fields import SnapshotRetrieveFields

# TODO update the JSON string below
json = "{}"
# create an instance of SnapshotRetrieveFields from a JSON string
snapshot_retrieve_fields_instance = SnapshotRetrieveFields.from_json(json)
# print the JSON string representation of the object
print(SnapshotRetrieveFields.to_json())

# convert the object into a dict
snapshot_retrieve_fields_dict = snapshot_retrieve_fields_instance.to_dict()
# create an instance of SnapshotRetrieveFields from a dict
snapshot_retrieve_fields_from_dict = SnapshotRetrieveFields.from_dict(snapshot_retrieve_fields_dict)

[Back to Model list] [Back to API list] [Back to README]