Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

ListClustersRequest

Request model for listing clusters.

Properties

Name Type Description Notes
filters LogicalOperatorInput Filters to apply when listing clusters [optional]
sort SortOption Sort options for the results [optional]
search str Search term for wildcard search across cluster_id, cluster_name, description, and other text fields [optional]

Example

from mixpeek.models.list_clusters_request import ListClustersRequest

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

# convert the object into a dict
list_clusters_request_dict = list_clusters_request_instance.to_dict()
# create an instance of ListClustersRequest from a dict
list_clusters_request_from_dict = ListClustersRequest.from_dict(list_clusters_request_dict)

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