| Name |
Type |
Description |
Notes |
| count |
int |
|
[optional] |
| created_at |
datetime |
|
[optional] |
| flavor |
ClusterFlavorFields |
|
[optional] |
| id |
int |
|
[optional] |
| max_count |
int |
|
[optional] |
| min_count |
int |
|
[optional] |
| name |
str |
|
[optional] |
| role |
str |
|
[optional] |
| updated_at |
datetime |
|
[optional] |
from hyperstack.models.cluster_node_group_fields import ClusterNodeGroupFields
# TODO update the JSON string below
json = "{}"
# create an instance of ClusterNodeGroupFields from a JSON string
cluster_node_group_fields_instance = ClusterNodeGroupFields.from_json(json)
# print the JSON string representation of the object
print(ClusterNodeGroupFields.to_json())
# convert the object into a dict
cluster_node_group_fields_dict = cluster_node_group_fields_instance.to_dict()
# create an instance of ClusterNodeGroupFields from a dict
cluster_node_group_fields_from_dict = ClusterNodeGroupFields.from_dict(cluster_node_group_fields_dict)
[Back to Model list] [Back to API list] [Back to README]