Databricks SDK for JavaScript
    Preparing search index...

    Interface ListModelServicesRequest

    Request to list model services. Accepts parent, page_size, page_token, and view.

    interface ListModelServicesRequest {
        pageSize?: number;
        pageToken?: string;
        parent?: string;
        view?: ListModelServicesRequest_View;
    }
    Index

    Properties

    pageSize?: number

    Maximum number of model services to return. Defaults to 100 when unset or 0; the maximum is 100. Use page_token to retrieve additional pages.

    pageToken?: string

    Opaque pagination token from the previous response.

    parent?: string

    Parent schema to list within, in the form schemas/{catalog}.{schema}. Required. Each {...} component is capped at 255 characters individually.

    Fields to return for each service. FULL includes destinations, inference-table details, and rate-limit principal names. BASIC omits destinations and inference-table details and omits principal names from rate limits. Defaults to BASIC when unset.