Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

PatchClusterRequest

Request payload to change a cluster.

Properties

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

Example

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)

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