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 controllers that the compute nodes are part of.
[optional]
Example
fromcyperf.models.set_aggregation_mode_operationimportSetAggregationModeOperation# TODO update the JSON string belowjson="{}"# create an instance of SetAggregationModeOperation from a JSON stringset_aggregation_mode_operation_instance=SetAggregationModeOperation.from_json(json)
# print the JSON string representation of the objectprint(SetAggregationModeOperation.to_json())
# convert the object into a dictset_aggregation_mode_operation_dict=set_aggregation_mode_operation_instance.to_dict()
# create an instance of SetAggregationModeOperation from a dictset_aggregation_mode_operation_from_dict=SetAggregationModeOperation.from_dict(set_aggregation_mode_operation_dict)