Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

GetClusterResponse

Properties

Name Type Description Notes
id int
cluster_name str
display_name str
region str [optional]

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]