Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

RebootPortsOperation

Properties

Name Type Description Notes
controllers List[PortsByController] The controllers that the ports are part of. [optional]

Example

from cyperf.models.reboot_ports_operation import RebootPortsOperation

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

# convert the object into a dict
reboot_ports_operation_dict = reboot_ports_operation_instance.to_dict()
# create an instance of RebootPortsOperation from a dict
reboot_ports_operation_from_dict = RebootPortsOperation.from_dict(reboot_ports_operation_dict)

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