Databricks SDK for JavaScript
    Preparing search index...

    Interface ListJobsResponse

    List of jobs was retrieved successfully.

    interface ListJobsResponse {
        hasMore?: boolean;
        jobs?: BaseJob[];
        nextPageToken?: string;
        prevPageToken?: string;
    }
    Index

    Properties

    hasMore?: boolean

    If true, additional jobs matching the provided filter are available for listing.

    jobs?: BaseJob[]

    The list of jobs. Only included in the response if there are jobs to list.

    nextPageToken?: string

    A token that can be used to list the next page of jobs (if applicable).

    prevPageToken?: string

    A token that can be used to list the previous page of jobs (if applicable).