| Name |
Type |
Description |
Notes |
| bootable |
bool |
|
[optional] |
| description |
str |
|
[optional] |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| size |
int |
|
[optional] |
| volume_type |
str |
|
[optional] |
from hyperstack.models.volume_fields_for_instance import VolumeFieldsForInstance
# TODO update the JSON string below
json = "{}"
# create an instance of VolumeFieldsForInstance from a JSON string
volume_fields_for_instance_instance = VolumeFieldsForInstance.from_json(json)
# print the JSON string representation of the object
print(VolumeFieldsForInstance.to_json())
# convert the object into a dict
volume_fields_for_instance_dict = volume_fields_for_instance_instance.to_dict()
# create an instance of VolumeFieldsForInstance from a dict
volume_fields_for_instance_from_dict = VolumeFieldsForInstance.from_dict(volume_fields_for_instance_dict)
[Back to Model list] [Back to API list] [Back to README]