Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

NodesByController

Properties

Name Type Description Notes
compute_nodes List[str] The compute node ids. [optional]
controller_id str The id of the controller that the compute nodes are part of. [optional]

Example

from cyperf.models.nodes_by_controller import NodesByController

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

# convert the object into a dict
nodes_by_controller_dict = nodes_by_controller_instance.to_dict()
# create an instance of NodesByController from a dict
nodes_by_controller_from_dict = NodesByController.from_dict(nodes_by_controller_dict)

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