All Products
Search
Document Center

Batch Compute:list_jobs

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. The maximum value is 200.

Response description

  • The list_jobs method returns a ListResponse object, which contains a set of Job objects.
  • For more information about attributes of the Job object, see the description of the Job 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 Job 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_jobs(marker, max_item)
  10. marker = response.NextMarker
  11. for job in response.Items:
  12. print (job.Id, job.State)
  13. round += 1
  14. except ClientError, e:
  15. print(e)