verifyJob
- Print
- PDF
verifyJob
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Verify the job execution request items.
POST https://dataflow.apigw.ntruss.com/api/v1/jobs/verify
Requests
Request body
Parameter name | Required | Type | Service limits | Description |
---|---|---|---|---|
name | Yes | String | - Start with an English letter or an underscore ( _ ) - English letters, numbers, underscores ( _ ), or hyphens ( - ) can be used - Input 3 to 20 characters | Job name |
nodes | Yes | ETLJobNode | Job node |
Responses
Response status
HTTP Status | Desc |
---|---|
200 | OK (validation completed) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
Examples
Request examples
POST /api/v1/jobs/verify
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}
{
"name": "data-flow",
"nodes": [
{
"type": "SOURCE_OBS",
"id": 1697776914576,
"name": "Object Storage",
"parentNodeIds": [],
"regionNo": "1",
"bucketName": "aitems",
"prefix": "dataflow1",
"dataType": "CSV",
"fieldList": [
{
"name": "id",
"type": "string"
},
{
"name": "name",
"type": "string"
},
{
"name": "description",
"type": "string"
}
]
},
{
"type": "TRANSFORM_FILTER",
"id": 1697776942407,
"name": "filter",
"parentNodeIds": [
1697776914576
],
"filterType": "AND",
"filterConditionList": [
{
"name": "name",
"operator": "EQ",
"value": "A"
}
]
},
{
"type": "TARGET_OBS",
"id": 1697776948956,
"name": "Object Storage",
"parentNodeIds": [
1697776942407
],
"regionNo": "1",
"bucketName": "aitems",
"prefix": "dataflow1",
"dataType": "CSV",
"updateType" : "OVERWRITE",
"fieldList": [
{
"name": "id",
"type": "string"
},
{
"name": "name",
"type": "string"
},
{
"name": "description",
"type": "string"
}
]
}
]
}
Response examples
true
Was this article helpful?