Databricks SDK for JavaScript
    Preparing search index...

    Interface ModelServiceConfig_ProvisionedThroughputConfig

    Configuration for a provisioned-throughput foundation-model destination. References a pre-existing Model Serving endpoint that serves the model; sizing (provisioned throughput, burst scaling, model version) is owned by the Model Serving endpoint itself, not by this message.

    interface ModelServiceConfig_ProvisionedThroughputConfig {
        model?: string;
        modelServingEndpoint?: string;
    }
    Index

    Properties

    model?: string

    UC model FQN of the model served by the backing endpoint (e.g., system.ai.databricks-claude-opus-4-6). Resolved from Model Serving at Create/Update time.

    modelServingEndpoint?: string

    Name of the backing Model Serving endpoint serving the provisioned- throughput foundation model, as the AIP-122 typed resource name serving-endpoints/{name}. The same UC model can be served on multiple Model Serving endpoints (different throughput / region / config); the caller picks which one this destination routes to. The endpoint must exist at create time.