Gets running Data Tools jobs

get

/data-tools/jobs/running

Gets running Data Tools jobs

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

201 Response

Data Tools jobs
Body ()
Root Schema : data-tools-jobs
Type: object
Show Source
Nested Schema : data_loads
Type: array
Show Source
Nested Schema : schema
Type: object
Show Source
Nested Schema : data-tools-job-reporting
Type: object
Show Source
Nested Schema : steps
Type: array
Show Source
  • Discriminator: type
    Discriminator: { "propertyName":"type", "mapping":{ "data_load":"data_tools_step_data_load", "smart_table":"data_tools_step_smart_table", "procedure":"data_tools_step_procedure", "live_feed":"data_tools_step_live_feed", "http":"data_tools_step_http" } }
    Step of a Data Tools job
Example:
[
    {
        "type":"data_load",
        "step_name":"Load the SALES table",
        "data_load_name":"SALES_LOAD",
        "on_errors":"stop"
    },
    {
        "type":"smart_table",
        "step_name":"Get the birth year from the date",
        "recipe":"EXTRACT_BIRTH_YEAR_FROM_DATE",
        "on_errors":"continue"
    },
    {
        "type":"procedure",
        "procedure":"DBMS_OUTPUT.PUT_LINE",
        "arguments":[
            "Print this!"
        ]
    },
    {
        "type":"http",
        "url":"https://data-tools-enthusiast.adb.us-ashburn-1.oraclecloudapps.com/my-endpoint",
        "method":"POST",
        "credential_name":"MYAUTHTOKEN",
        "body":"{ \"status\": \"done\" }"
    }
]
Nested Schema : data-tools-job-reporting-options
Type: object
Show Source
Nested Schema : email-array
Type: array
Show Source
Example:
[
    "data_studio_user@oracle.com",
    "oci_enthusiast@oracle.com"
]
Nested Schema : Discriminator: type
Type: object
Discriminator: type

Discriminator Values

Step of a Data Tools job
Show Source
  • Allowed Values: [ "stop", "continue" ]
    Action when encountering step error
    Example: continue
  • Optional name of step
    Example: LOAD_MY_TABLE
  • Allowed Values: [ "data_load", "smart_table", "procedure", "live_feed", "http" ]
    Type of step
    Example: data_load

204 Response

No content
Back to Top