Skip to main content

serving_endpoint_notifications

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

Overview

Nameserving_endpoint_notifications
TypeResource
Iddatabricks_workspace.serving.serving_endpoint_notifications

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
updateupdatename, deployment_nameUpdates the email and webhook notification settings for an endpoint.

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 notifications are being updated. This field is required.

UPDATE examples

Updates the email and webhook notification settings for an endpoint.

UPDATE databricks_workspace.serving.serving_endpoint_notifications
SET
email_notifications = '{{ email_notifications }}'
WHERE
name = '{{ name }}' --required
AND deployment_name = '{{ deployment_name }}' --required
RETURNING
name,
email_notifications;