Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ComputeResourcesByNode

Properties

Name Type Description Notes
compute_node_id str The id of the compute node that the compute resources are part of. [optional]
compute_resources List[str] The compute resource ids. [optional]

Example

from cyperf.models.compute_resources_by_node import ComputeResourcesByNode

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

# convert the object into a dict
compute_resources_by_node_dict = compute_resources_by_node_instance.to_dict()
# create an instance of ComputeResourcesByNode from a dict
compute_resources_by_node_from_dict = ComputeResourcesByNode.from_dict(compute_resources_by_node_dict)

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