Databricks SDK for JavaScript
    Preparing search index...

    Interface UpdateModelServiceRequest

    Request to update a model service. name cannot appear in update_mask; the model service name is immutable.

    interface UpdateModelServiceRequest {
        etag?: Uint8Array<ArrayBufferLike>;
        modelService?: ModelService;
        updateMask?: FieldMask<ModelService>;
    }
    Index

    Properties

    etag?: Uint8Array<ArrayBufferLike>

    Optimistic concurrency token from the most recent read. When set, the update succeeds only if the resource has not changed. Leave unset for an unconditional update. For REST requests, URL-encode the base64 string returned by the API when setting the etag query parameter.

    modelService?: ModelService

    The model service with the updated field values. name identifies the resource (model-services/{catalog}.{schema}.{model_service}); only fields listed in update_mask are applied.

    updateMask?: FieldMask<ModelService>

    Fields to update. Use config to replace the entire configuration. The replacement must include every required field; any optional field you omit is cleared. To preserve sibling fields, use one or more granular paths: comment, config.routing.destinations, config.routing.fallback.destinations, config.rate_limits, or config.inference_table. Intermediate paths such as config.routing and config.routing.fallback, and wildcard paths such as *, are not supported.