Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.36 KB

File metadata and controls

35 lines (26 loc) · 1.36 KB

ClusterList

List of clusters.

Properties

Name Type Description Notes
offset int The offset specified in the request (if none was specified, the default offset is 0). [optional] [default to 0]
limit int The limit specified in the request (if none was specified, the default limit is 100). [optional] [default to 100]
links PaginationLinks [optional]
type ResourceType [optional]
id str The unique ID of the resource. [optional]
items list[ClusterResponse] [optional]

Example

from ionoscloud_dbaas_postgres.models.cluster_list import ClusterList

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

# convert the object into a dict
cluster_list_dict = cluster_list_instance.to_dict()
# create an instance of ClusterList from a dict
cluster_list_from_dict = ClusterList.from_dict(cluster_list_dict)

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