Method: googleapis.dataflow.v1b3.projects.locations.jobs.getExecutionDetails

Request detailed information about the execution status of the job. EXPERIMENTAL. This API is subject to change or removal without notice.

Arguments

Parameters
jobId

string

Required. The job to get execution details for.

location

string

Required. The regional endpoint that contains the job specified by job_id.

projectId

string

Required. A project id.

pageSize

integer (int32 format)

If specified, determines the maximum number of stages to return. If unspecified, the service may choose an appropriate default, or may return an arbitrarily large number of results.

pageToken

string

If supplied, this should be the value of next_page_token returned by an earlier call. This will cause the next page of results to be returned.

Raised exceptions

Exceptions
ConnectionError In case of a network problem (such as DNS failure or refused connection).
HttpError If the response status is >= 400 (excluding 429 and 503).
TimeoutError If a long-running operation takes longer to finish than the specified timeout limit.
TypeError If an operation or function receives an argument of the wrong type.
ValueError If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout.

Response

If successful, the response contains an instance of JobExecutionDetails.

Subworkflow snippet

Some fields might be optional or required. To identify required fields, refer to the API documentation.

YAML

- getExecutionDetails:
    call: googleapis.dataflow.v1b3.projects.locations.jobs.getExecutionDetails
    args:
        jobId: ...
        location: ...
        projectId: ...
        pageSize: ...
        pageToken: ...
    result: getExecutionDetailsResult

JSON

[
  {
    "getExecutionDetails": {
      "call": "googleapis.dataflow.v1b3.projects.locations.jobs.getExecutionDetails",
      "args": {
        "jobId": "...",
        "location": "...",
        "projectId": "...",
        "pageSize": "...",
        "pageToken": "..."
      },
      "result": "getExecutionDetailsResult"
    }
  }
]