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) · 870 Bytes

Raid.md

File metadata and controls

32 lines (23 loc) · 870 Bytes

Raid

Properties

Name Type Description Notes
devices List[str] [optional]
href str [optional]
level str [optional]
name str [optional]

Example

from equinix_metal.models.raid import Raid

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

# convert the object into a dict
raid_dict = raid_instance.to_dict()
# create an instance of Raid from a dict
raid_form_dict = raid.from_dict(raid_dict)

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