Request model for listing clusters.
| 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] |
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)