Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
32 lines (23 loc) · 973 Bytes

Storage.md

File metadata and controls

32 lines (23 loc) · 973 Bytes

Storage

Properties

Name Type Description Notes
disks List[Disk] [optional]
filesystems List[Filesystem] [optional]
href str [optional]
raid List[Raid] [optional]

Example

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)

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