Databricks SDK for JavaScript
    Preparing search index...
    interface ListModelVersionsRequest {
        fullNameArg?: string;
        includeBrowse?: boolean;
        maxResults?: bigint;
        pageToken?: string;
    }
    Index

    Properties

    fullNameArg?: string

    The full three-level name of the registered model under which to list model versions

    includeBrowse?: boolean

    Whether to include model versions in the response for which the principal can only access selective metadata for

    maxResults?: bigint

    Maximum number of model versions to return. If not set, the page length is set to a server configured value (100, as of 1/3/2024).

    • when set to a value greater than 0, the page length is the minimum of this value and a server configured value(1000, as of 1/3/2024);
    • when set to 0, the page length is set to a server configured value (100, as of 1/3/2024) (recommended);
    • when set to a value less than 0, an invalid parameter error is returned;
    pageToken?: string

    Opaque pagination token to go to next page based on previous query.