Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1023 Bytes

BondPortData.md

File metadata and controls

31 lines (22 loc) · 1023 Bytes

BondPortData

Properties

Name Type Description Notes
href str [optional]
id str ID of the bonding port [optional]
name str Name of the port interface for the bond ("bond0") [optional]

Example

from equinix_metal.models.bond_port_data import BondPortData

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

# convert the object into a dict
bond_port_data_dict = bond_port_data_instance.to_dict()
# create an instance of BondPortData from a dict
bond_port_data_form_dict = bond_port_data.from_dict(bond_port_data_dict)

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