| Name | Type | Description | Notes |
|---|---|---|---|
| components | ClusterComponents |
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)