Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.38 KB

File metadata and controls

38 lines (29 loc) · 1.38 KB

CreateClusterPayload

Properties

Name Type Description Notes
deployment_mode str [optional] [default to 'full']
environment_name str
keypair_name str
kubernetes_version str
master_count int [optional]
master_flavor_name str
name str
node_count int [optional]
node_flavor_name str [optional]
node_groups List[CreateClusterNodeGroupPayload] [optional]

Example

from hyperstack.models.create_cluster_payload import CreateClusterPayload

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

# convert the object into a dict
create_cluster_payload_dict = create_cluster_payload_instance.to_dict()
# create an instance of CreateClusterPayload from a dict
create_cluster_payload_from_dict = CreateClusterPayload.from_dict(create_cluster_payload_dict)

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