Request payload with all data needed to create a new PostgreSQL cluster.
| Name | Type | Description | Notes |
|---|---|---|---|
| metadata | ClusterMetadata | [optional] | |
| properties | CreateClusterProperties | [optional] |
from ionoscloud_dbaas_postgres.models.create_cluster_request import CreateClusterRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateClusterRequest from a JSON string
create_cluster_request_instance = CreateClusterRequest.from_json(json)
# print the JSON string representation of the object
print(CreateClusterRequest.to_json())
# convert the object into a dict
create_cluster_request_dict = create_cluster_request_instance.to_dict()
# create an instance of CreateClusterRequest from a dict
create_cluster_request_from_dict = CreateClusterRequest.from_dict(create_cluster_request_dict)