Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 905 Bytes

SqlTaskAlert.md

File metadata and controls

28 lines (20 loc) · 905 Bytes

SqlTaskAlert

Properties

Name Type Description Notes
alert_id str The canonical identifier of the SQL alert.

Example

from databricks_jobs.models.sql_task_alert import SqlTaskAlert

# TODO update the JSON string below
json = "{}"
# create an instance of SqlTaskAlert from a JSON string
sql_task_alert_instance = SqlTaskAlert.from_json(json)
# print the JSON string representation of the object
print SqlTaskAlert.to_json()

# convert the object into a dict
sql_task_alert_dict = sql_task_alert_instance.to_dict()
# create an instance of SqlTaskAlert from a dict
sql_task_alert_form_dict = sql_task_alert.from_dict(sql_task_alert_dict)

[Back to Model list] [Back to API list] [Back to README]