getJobs
- 인쇄
- PDF
getJobs
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
작업 목록을 조회합니다.
GET https://dataflow.apigw.ntruss.com/api/v1/jobs?page={page}&limit={limit}
요청
요청 파라미터
파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
name | No | String | 작업 이름 | |
status | No | String | RUNNABLE, RUNNING, DELETED, UNKNOWN, DRAFT, STOPPED, EDITING | 작업 상태 |
page | No | Number | 페이지 | |
limit | No | Number | 페이지별 최대 개수 |
응답
필드명 | 타입 | 설명 | 비고 |
---|---|---|---|
list[].jobId | String | 작업 ID | |
list[].name | String | 작업 이름 | |
list[].type | String | 작업 타입 | |
list[].status | String | 작업 상태 | |
list[].lastExecutionStatus | String | 최종 실행 상태 | |
list[].createdDate | String | 작업 생성일 | |
list[].updatedDate | String | 최종 업데이트 | |
list[].lastExecutionDate | String | 최종 실행일 | |
list[].resourceId | String | 리소스ID (작업ID와 동일) | |
list[].disabled | Boolean | 리소스조회 권한 여부 | |
count | Number | 총 개수 | |
page | Number | 페이지 | |
limit | Number | 페이지별 최대 개수 |
응답 Status
HTTP Status | Desc |
---|---|
200 | OK(조회 완료) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
예시
요청 예시
GET /api/v1/jobs?page=0&limit=1000
Host: dataflow.apigw.ntruss.com
x-ncp-iam-access-key: {Access key}
x-ncp-apigw-signature-v2: {API GW signature}
x-ncp-apigw-timestamp: {timestamp}
응답 예시
{
"list": [
{
"jobId": "5Yns7JgRt25f",
"name": "data-flow",
"type": "DATAFLOW",
"status": "RUNNABLE",
"lastExecutionStatus": "COMPLETED",
"createdDate": "2023-10-20T13:45:15.000",
"updatedDate": "2023-10-20T13:46:56.000",
"lastExecutionStatus": "2023-10-20T13:46:56.000",
"resourceId": "5Yns7JgRt25f",
"disabled": false
},
{
"jobId": "qOxHK8QR61ZB",
"name": "test",
"description": "",
"type": "DATAFLOW",
"status": "RUNNABLE",
"lastExecutionStatus": "COMPLETED",
"createdDate": "2023-09-18T17:45:03.000",
"updatedDate": "2023-10-20T14:20:19.000",
"lastExecutionStatus": "2023-10-20T13:46:56.000",
"resourceId": "qOxHK8QR61ZB",
"disabled": false
}
],
"count": 2,
"page": 0,
"limit": 1000
}
이 문서가 도움이 되었습니까?