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] |
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)