Package com.databricks.sdk.service.sql
Interface AlertsService
-
@Generated public interface AlertsService
The alerts API can be used to perform CRUD operations on alerts. An alert is a Databricks SQL object that periodically runs a query, evaluates a condition of its result, and notifies one or more users and/or notification destinations if the condition was met.This is the high-level interface, that contains generated methods.
Evolving: this interface is under development. Method signatures may change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Alert
create(CreateAlert createAlert)
Create an alert.void
delete(DeleteAlertRequest deleteAlertRequest)
Delete an alert.Alert
get(GetAlertRequest getAlertRequest)
Get an alert.Collection<Alert>
list()
Get alerts.void
update(EditAlert editAlert)
Update an alert.
-
-
-
Method Detail
-
create
Alert create(CreateAlert createAlert)
Create an alert.Creates an alert. An alert is a Databricks SQL object that periodically runs a query, evaluates a condition of its result, and notifies users or notification destinations if the condition was met.
-
delete
void delete(DeleteAlertRequest deleteAlertRequest)
Delete an alert.Deletes an alert. Deleted alerts are no longer accessible and cannot be restored. **Note:** Unlike queries and dashboards, alerts cannot be moved to the trash.
-
get
Alert get(GetAlertRequest getAlertRequest)
Get an alert.Gets an alert.
-
list
Collection<Alert> list()
Get alerts.Gets a list of alerts.
-
update
void update(EditAlert editAlert)
Update an alert.Updates an alert.
-
-