Skip to contents

Returns one page of job details. Use next_page_token to retrieve additional tasks, clusters, environments, or parameters for large jobs.

Usage

db_jobs_get(
  job_id,
  page_token = NULL,
  host = db_host(),
  token = db_token(),
  perform_request = TRUE
)

Arguments

job_id

The canonical identifier of the job.

page_token

Token from a previous response, or NULL for the first page.

host

Databricks workspace URL, defaults to calling db_host().

token

Databricks workspace token, defaults to calling db_token().

perform_request

If TRUE (default) the request is performed, if FALSE the httr2 request is returned without being performed.

Value

If perform_request = TRUE, returns a nested list with class db_job, preserving next_page_token when present. If FALSE, returns an httr2_request.