Databricks SDK for JavaScript
    Preparing search index...
    interface SearchExperimentsRequest {
        filter?: string;
        maxResults?: bigint;
        orderBy?: string[];
        pageToken?: string;
        viewType?: ViewType;
    }
    Index

    Properties

    filter?: string

    String representing a SQL filter condition (e.g. "name ILIKE 'my-experiment%'")

    maxResults?: bigint

    Maximum number of experiments desired. Max threshold is 3000.

    orderBy?: string[]

    List of columns for ordering search results, which can include experiment name and last updated timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by experiment id DESC.

    pageToken?: string

    Token indicating the page of experiments to fetch

    viewType?: ViewType

    Qualifier for type of experiments to be returned. If unspecified, return only active experiments.