Name | Type | Description | Notes |
---|---|---|---|
disks | List[Disk] | [optional] | |
filesystems | List[Filesystem] | [optional] | |
href | str | [optional] | |
raid | List[Raid] | [optional] |
from equinix_metal.models.storage import Storage
# TODO update the JSON string below
json = "{}"
# create an instance of Storage from a JSON string
storage_instance = Storage.from_json(json)
# print the JSON string representation of the object
print(Storage.to_json())
# convert the object into a dict
storage_dict = storage_instance.to_dict()
# create an instance of Storage from a dict
storage_form_dict = storage.from_dict(storage_dict)