Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

ClusterNodeGroupsCreateResponse

Properties

Name Type Description Notes
message str [optional]
node_group ClusterNodeGroupFields [optional]
nodes List[ClusterNodeFields] [optional]
status bool [optional]

Example

from hyperstack.models.cluster_node_groups_create_response import ClusterNodeGroupsCreateResponse

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

# convert the object into a dict
cluster_node_groups_create_response_dict = cluster_node_groups_create_response_instance.to_dict()
# create an instance of ClusterNodeGroupsCreateResponse from a dict
cluster_node_groups_create_response_from_dict = ClusterNodeGroupsCreateResponse.from_dict(cluster_node_groups_create_response_dict)

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