Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

File metadata and controls

33 lines (24 loc) · 1.06 KB

ClusterRead

Properties

Name Type Description Notes
id str The ID (UUID) of the Cluster.
type str The type of the resource.
href str The URL of the Cluster.
metadata ClusterMetadata
properties Cluster

Example

from ionoscloud_dbaas_postgres.models.cluster_read import ClusterRead

# TODO update the JSON string below
json = "{}"
# create an instance of ClusterRead from a JSON string
cluster_read_instance = ClusterRead.from_json(json)
# print the JSON string representation of the object
print(ClusterRead.to_json())

# convert the object into a dict
cluster_read_dict = cluster_read_instance.to_dict()
# create an instance of ClusterRead from a dict
cluster_read_from_dict = ClusterRead.from_dict(cluster_read_dict)

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