ListJobs
描述
獲取作業列表。
請求語法
GET /jobs?Marker={Marker}&MaxItemCount={MaxItemCount}
屬性說明
屬性名稱 | 類型 | 是否必須 | 描述 |
Marker | string | 否 | 本頁起始資源標識符。默認為空字符串。 |
MaxItemCount | int | 否 | 實際返回最大資源數量。默認值50,最大值100。 |
返回信息
成功
返回200狀態碼以及Job列表信息,如下。
{
"NextMarker": "",
"Items":[{
"Name": "demoJob",
"Id": "job-0000000058184218000008150000000D",
"OwnerId": 123456,
"CreationTime": "2016-11-01T15:25:02.837728Z",
"State": "Running",
"Message": "",
"StartTime": "2016-11-01T15:25:03.837728Z",
"EndTime": "2016-11-01T15:25:16.827737Z",
"TaskMetrics": {
"WaitingCount": 0,
"RunningCount": 1,
"FinishedCount": 0,
"FailedCount": 0,
"StoppedCount": 0
},
"InstanceMetrics": {
"WaitingCount": 0,
"RunningCount": 1,
"FinishedCount": 0,
"FailedCount": 0,
"StoppedCount": 0
}
}]
}
屬性說明
屬性名稱 | 類型 | 是否必須 | 描述 |
NextMarker | string | 是 | 下一頁起始資源標識符。最后一頁該值為空。 |
Items | array | 是 | 資源列表。 |
錯誤
狀態碼 | 錯誤碼 | 錯誤信息 | 語義 |
400 | InvalidMaxItemCount | Specified parameter MaxItemCount is not valid. Its type must be integer. | MaxItemCount必須是一個integer。 |
400 | InvalidMaxItemCount | Specified parameter MaxItemCount is not valid. It must be in [0, 100]. | MaxItemCount的大小必須在0與100之間。 |
文檔內容是否對您有幫助?