serving_endpoint_notifications
Creates, updates, deletes, gets or lists a serving_endpoint_notifications resource.
Overview
| Name | serving_endpoint_notifications |
| Type | Resource |
| Id | databricks_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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update | update | name, deployment_name | Updates 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.
| Name | Datatype | Description |
|---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
name | string | The name of the serving endpoint whose notifications are being updated. This field is required. |
UPDATE examples
- update
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;