Databricks SDK for JavaScript
    Preparing search index...
    interface PtServedModel {
        burstScalingEnabled?: boolean;
        entityName?: string;
        entityVersion?: string;
        name?: string;
        provisionedModelUnits?: bigint;
    }
    Index

    Properties

    burstScalingEnabled?: boolean

    Whether burst scaling is enabled. When enabled (default), the endpoint can automatically scale up beyond provisioned capacity to handle traffic spikes. When disabled, the endpoint maintains fixed capacity at provisioned_model_units.

    entityName?: string

    The name of the entity to be served. The entity may be a model in the Databricks Model Registry, a model in the Unity Catalog (UC), or a function of type FEATURE_SPEC in the UC. If it is a UC object, the full name of the object should be given in the form of catalog_name.schema_name.model_name.

    entityVersion?: string
    name?: string

    The name of a served entity. It must be unique across an endpoint. A served entity name can consist of alphanumeric characters, dashes, and underscores. If not specified for an external model, this field defaults to external_model.name, with '.' and ':' replaced with '-', and if not specified for other entities, it defaults to entity_name-entity_version.

    provisionedModelUnits?: bigint

    The number of model units to be provisioned.