Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

CreateClusterNodeFields

Properties

Name Type Description Notes
count int [optional]
node_group str [optional]
role str [optional]

Example

from hyperstack.models.create_cluster_node_fields import CreateClusterNodeFields

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

# convert the object into a dict
create_cluster_node_fields_dict = create_cluster_node_fields_instance.to_dict()
# create an instance of CreateClusterNodeFields from a dict
create_cluster_node_fields_from_dict = CreateClusterNodeFields.from_dict(create_cluster_node_fields_dict)

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