You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compute nodes that the compute resources are part of.
[optional]
controller_id
str
The id of the controller that the compute resources are part of.
[optional]
Example
fromcyperf.models.compute_resources_by_controllerimportComputeResourcesByController# TODO update the JSON string belowjson="{}"# create an instance of ComputeResourcesByController from a JSON stringcompute_resources_by_controller_instance=ComputeResourcesByController.from_json(json)
# print the JSON string representation of the objectprint(ComputeResourcesByController.to_json())
# convert the object into a dictcompute_resources_by_controller_dict=compute_resources_by_controller_instance.to_dict()
# create an instance of ComputeResourcesByController from a dictcompute_resources_by_controller_from_dict=ComputeResourcesByController.from_dict(compute_resources_by_controller_dict)