Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

UpdateClusterNodeGroupPayload

Properties

Name Type Description Notes
max_count int [optional]
min_count int [optional]

Example

from hyperstack.models.update_cluster_node_group_payload import UpdateClusterNodeGroupPayload

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

# convert the object into a dict
update_cluster_node_group_payload_dict = update_cluster_node_group_payload_instance.to_dict()
# create an instance of UpdateClusterNodeGroupPayload from a dict
update_cluster_node_group_payload_from_dict = UpdateClusterNodeGroupPayload.from_dict(update_cluster_node_group_payload_dict)

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