Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

GetClusterResponse

Properties

Name Type Description Notes
id int
cluster_name str
display_name str
region str [optional]
deployment_creation_disabled bool [optional] [default to False]

Example

from platform_api_python_client.models.get_cluster_response import GetClusterResponse

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

# convert the object into a dict
get_cluster_response_dict = get_cluster_response_instance.to_dict()
# create an instance of GetClusterResponse from a dict
get_cluster_response_from_dict = GetClusterResponse.from_dict(get_cluster_response_dict)

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