Skip to content

Get Job Run

datazone_get_job_run R Documentation

The details of the job run

Description

The details of the job run.

Usage

datazone_get_job_run(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the domain.

identifier

[required] The ID of the job run.

Value

A list with the following syntax:

list(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  details = list(
    lineageRunDetails = list(
      sqlQueryRunDetails = list(
        errorMessages = list(
          "string"
        ),
        numQueriesFailed = 123,
        queryEndTime = as.POSIXct(
          "2015-01-01"
        ),
        queryStartTime = as.POSIXct(
          "2015-01-01"
        ),
        totalQueriesProcessed = 123
      )
    )
  ),
  domainId = "string",
  endTime = as.POSIXct(
    "2015-01-01"
  ),
  error = list(
    message = "string"
  ),
  id = "string",
  jobId = "string",
  jobType = "LINEAGE",
  runMode = "SCHEDULED"|"ON_DEMAND",
  startTime = as.POSIXct(
    "2015-01-01"
  ),
  status = "SCHEDULED"|"IN_PROGRESS"|"SUCCESS"|"PARTIALLY_SUCCEEDED"|"FAILED"|"ABORTED"|"TIMED_OUT"|"CANCELED"
)

Request syntax

svc$get_job_run(
  domainIdentifier = "string",
  identifier = "string"
)