Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.48 KB

PortVlanAssignmentBatch.md

File metadata and controls

38 lines (29 loc) · 1.48 KB

PortVlanAssignmentBatch

Properties

Name Type Description Notes
created_at datetime [optional]
error_messages List[str] [optional]
href str [optional]
id str [optional]
port Port [optional]
project Href [optional]
quantity int [optional]
state str [optional]
updated_at datetime [optional]
vlan_assignments List[PortVlanAssignmentBatchVlanAssignmentsInner] [optional]

Example

from equinix_metal.models.port_vlan_assignment_batch import PortVlanAssignmentBatch

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

# convert the object into a dict
port_vlan_assignment_batch_dict = port_vlan_assignment_batch_instance.to_dict()
# create an instance of PortVlanAssignmentBatch from a dict
port_vlan_assignment_batch_form_dict = port_vlan_assignment_batch.from_dict(port_vlan_assignment_batch_dict)

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