All Products
Search
Document Center

Batch Compute:list_images

Last Updated:May 14, 2018

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
type_ str The default value is null. The optional value is System. If the parameter is set to System, the list of images provided by the system is returned

Response description

The list_images method returns a ListResponse object, which contains a set of Image objects. For more information about attributes of the Image object, see the description of the Image 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 Image classes

Example

  1. try:
  2. # Get a Client object.
  3. client = Client(...
  4. ...
  5. marker = ""
  6. max_item = 100
  7. round = 0
  8. while marker or round != 0:
  9. response = client.list_images(marker, max_item)
  10. marker = response.NextMarker
  11. for image in response.Items:
  12. print (image.Id, image.Platform)
  13. round += 1
  14. except ClientError, e:
  15. print(e)