Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.54 KB

File metadata and controls

42 lines (33 loc) · 1.54 KB

ClusterFields

Properties

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]

Example

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)

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