Request payload to change a cluster.
| Name | Type | Description | Notes |
|---|---|---|---|
| metadata | ClusterMetadata | [optional] | |
| properties | PatchClusterProperties | [optional] |
from ionoscloud_dbaas_postgres.models.patch_cluster_request import PatchClusterRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchClusterRequest from a JSON string
patch_cluster_request_instance = PatchClusterRequest.from_json(json)
# print the JSON string representation of the object
print(PatchClusterRequest.to_json())
# convert the object into a dict
patch_cluster_request_dict = patch_cluster_request_instance.to_dict()
# create an instance of PatchClusterRequest from a dict
patch_cluster_request_from_dict = PatchClusterRequest.from_dict(patch_cluster_request_dict)