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

    Properties

    filter?: string

    String filter condition, like "name LIKE 'my-model-name'". Interpreted in the backend automatically as "name LIKE '%my-model-name%'". Single boolean condition, with string values wrapped in single quotes.

    maxResults?: bigint

    Maximum number of models desired. Default is 100. Max threshold is 1000.

    orderBy?: string[]

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

    pageToken?: string

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