Parameter description
| Attribute |
Type |
Description |
| next_marker |
str |
Start resource ID on the next page. The value is null for the last page |
| max_item_count |
int |
Maximum number of actually returned resources. The default value is 50, and the maximum value is 100 |
Response description
- The list_clusters method returns a
ListResponse object, which contains a set of Cluster objects. - For more information about attributes of the
Cluster object, see the description of the Cluster class.
| Attribute |
Type |
Description |
| NextMarker |
str |
Start resource ID on the next page. The value is null for the last page |
| Items |
list |
List of Cluster classes |
Example
try: # Get a Client object. client = Client(... ... marker = "" max_item = 100 round = 0 while marker or round != 0: response = client.list_clusters(marker, max_item) marker = response.NextMarker for cluster in response.Items: print (cluster.Id, cluster.State) round += 1except ClientError, e: print(e)