Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

CreateClusterRequest

Request payload with all data needed to create a new PostgreSQL cluster.

Properties

Name Type Description Notes
metadata ClusterMetadata [optional]
properties CreateClusterProperties [optional]

Example

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)

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