Databricks SDK for JavaScript
    Preparing search index...

    Interface ListRunsResponse

    List of runs was retrieved successfully.

    interface ListRunsResponse {
        hasMore?: boolean;
        nextPageToken?: string;
        prevPageToken?: string;
        runs?: BaseRun[];
    }
    Index

    Properties

    hasMore?: boolean

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

    nextPageToken?: string

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

    prevPageToken?: string

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

    runs?: BaseRun[]

    A list of runs, from most recently started to least. Only included in the response if there are runs to list.