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
IDs of the firewalls to apply to all nodes in this node group
[optional]
flavor_name
str
max_count
int
[optional]
min_count
int
[optional]
name
str
role
str
[default to 'worker']
Example
fromhyperstack.models.create_cluster_node_group_payloadimportCreateClusterNodeGroupPayload# TODO update the JSON string belowjson="{}"# create an instance of CreateClusterNodeGroupPayload from a JSON stringcreate_cluster_node_group_payload_instance=CreateClusterNodeGroupPayload.from_json(json)
# print the JSON string representation of the objectprint(CreateClusterNodeGroupPayload.to_json())
# convert the object into a dictcreate_cluster_node_group_payload_dict=create_cluster_node_group_payload_instance.to_dict()
# create an instance of CreateClusterNodeGroupPayload from a dictcreate_cluster_node_group_payload_from_dict=CreateClusterNodeGroupPayload.from_dict(create_cluster_node_group_payload_dict)