Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

SetAggregationModeOperation

Properties

Name Type Description Notes
aggregated bool The desired aggregation mode. [optional]
controllers List[NodesByController] The controllers that the compute nodes are part of. [optional]

Example

from cyperf.models.set_aggregation_mode_operation import SetAggregationModeOperation

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

# convert the object into a dict
set_aggregation_mode_operation_dict = set_aggregation_mode_operation_instance.to_dict()
# create an instance of SetAggregationModeOperation from a dict
set_aggregation_mode_operation_from_dict = SetAggregationModeOperation.from_dict(set_aggregation_mode_operation_dict)

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