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

    Properties

    filter?: string

    String filter condition, like "name='my-model-name'". Must be a single boolean condition, with string values wrapped in single quotes.

    maxResults?: bigint

    Maximum number of models desired. Max threshold is 10K.

    orderBy?: string[]

    List of columns to be ordered by including model name, version, stage with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by latest stage transition timestamp, followed by name ASC, followed by version DESC.

    pageToken?: string

    Pagination token to go to next page based on previous search query.