Databricks SDK for JavaScript
    Preparing search index...

    Interface ListJobsRequest

    Lists all jobs.

    interface ListJobsRequest {
        expandTasks?: boolean;
        limit?: number;
        name?: string;
        offset?: number;
        pageToken?: string;
    }
    Index

    Properties

    expandTasks?: boolean

    Whether to include task and cluster details in the response. Note that only the first 100 elements will be shown. Use :method:jobs/get to paginate through all tasks and clusters.

    limit?: number

    The number of jobs to return. This value must be greater than 0 and less or equal to 100. The default value is 20.

    name?: string

    A filter on the list based on the exact (case insensitive) job name.

    offset?: number

    The offset of the first job to return, relative to the most recently created job. Deprecated since June 2023. Use page_token to iterate through the pages instead.

    pageToken?: string

    Use next_page_token or prev_page_token returned from the previous request to list the next or previous page of jobs respectively.