Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

ClusterConfig

Properties

Name Type Description Notes
components ClusterComponents

Example

from platform_api_python_client.models.cluster_config import ClusterConfig

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

# convert the object into a dict
cluster_config_dict = cluster_config_instance.to_dict()
# create an instance of ClusterConfig from a dict
cluster_config_from_dict = ClusterConfig.from_dict(cluster_config_dict)

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