| Name | Type | Description | Notes |
|---|---|---|---|
| api_address | str | [optional] | |
| created_at | datetime | [optional] | |
| environment_name | str | [optional] | |
| id | int | [optional] | |
| is_reconciling | bool | [optional] | |
| keypair_name | str | [optional] | |
| kube_config | str | [optional] | |
| kubernetes_version | str | [optional] | |
| master_flavor | ClusterFlavorFields | [optional] | |
| name | str | [optional] | |
| node_groups | List[ClusterNodeGroupFields] | [optional] | |
| nodes | List[ClusterNodeFields] | [optional] | |
| status | str | [optional] | |
| status_reason | str | [optional] |
from hyperstack.models.cluster_fields import ClusterFields
# TODO update the JSON string below
json = "{}"
# create an instance of ClusterFields from a JSON string
cluster_fields_instance = ClusterFields.from_json(json)
# print the JSON string representation of the object
print(ClusterFields.to_json())
# convert the object into a dict
cluster_fields_dict = cluster_fields_instance.to_dict()
# create an instance of ClusterFields from a dict
cluster_fields_from_dict = ClusterFields.from_dict(cluster_fields_dict)