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

Latest commit

 

History

History
30 lines (22 loc) · 1.7 KB

WebhookNotifications.md

File metadata and controls

30 lines (22 loc) · 1.7 KB

WebhookNotifications

Properties

Name Type Description Notes
on_start List[WebhookNotificationsOnStartInner] An optional list of notification IDs to call when the run starts. A maximum of 3 destinations can be specified for the `on_start` property. [optional]
on_success List[WebhookNotificationsOnStartInner] An optional list of notification IDs to call when the run completes successfully. A maximum of 3 destinations can be specified for the `on_success` property. [optional]
on_failure List[WebhookNotificationsOnStartInner] An optional list of notification IDs to call when the run fails. A maximum of 3 destinations can be specified for the `on_failure` property. [optional]

Example

from databricks_jobs.models.webhook_notifications import WebhookNotifications

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

# convert the object into a dict
webhook_notifications_dict = webhook_notifications_instance.to_dict()
# create an instance of WebhookNotifications from a dict
webhook_notifications_form_dict = webhook_notifications.from_dict(webhook_notifications_dict)

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