Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.2 KB

PlanSpecs.md

File metadata and controls

34 lines (25 loc) · 1.2 KB

PlanSpecs

Properties

Name Type Description Notes
cpus List[PlanSpecsCpusInner] [optional]
drives List[PlanSpecsDrivesInner] [optional]
features PlanSpecsFeatures [optional]
href str [optional]
memory PlanSpecsMemory [optional]
nics List[PlanSpecsNicsInner] [optional]

Example

from equinix_metal.models.plan_specs import PlanSpecs

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

# convert the object into a dict
plan_specs_dict = plan_specs_instance.to_dict()
# create an instance of PlanSpecs from a dict
plan_specs_form_dict = plan_specs.from_dict(plan_specs_dict)

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