Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.43 KB

File metadata and controls

35 lines (26 loc) · 1.43 KB

ClusterReadList

Properties

Name Type Description Notes
offset int The offset specified in the request (if none was specified, the default offset is 0). [readonly]
limit int The limit specified in the request (if none was specified, use the endpoint's default pagination limit). [readonly]
links Links
id str ID of the list of Cluster resources.
type str The type of the resource.
href str The URL of the list of Cluster resources.
items list[ClusterRead] The list of Cluster resources. [optional]

Example

from ionoscloud_dbaas_postgres.models.cluster_read_list import ClusterReadList

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

# convert the object into a dict
cluster_read_list_dict = cluster_read_list_instance.to_dict()
# create an instance of ClusterReadList from a dict
cluster_read_list_from_dict = ClusterReadList.from_dict(cluster_read_list_dict)

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