Skip to main content

serving_endpoint_rate_limits

Creates, updates, deletes, gets or lists a serving_endpoint_rate_limits resource.

Overview

Nameserving_endpoint_rate_limits
TypeResource
Iddatabricks_workspace.serving.serving_endpoint_rate_limits

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
updatereplacename, deployment_nameDeprecated: Please use AI Gateway to manage rate limits instead.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)
namestringThe name of the serving endpoint whose rate limits are being updated. This field is required.

REPLACE examples

Deprecated: Please use AI Gateway to manage rate limits instead.

REPLACE databricks_workspace.serving.serving_endpoint_rate_limits
SET
rate_limits = '{{ rate_limits }}'
WHERE
name = '{{ name }}' --required
AND deployment_name = '{{ deployment_name }}' --required
RETURNING
rate_limits;