Skip to main content
Version: 1.0 prerelease

MicrosoftTeamsNotificationAction

class great_expectations.checkpoint.MicrosoftTeamsNotificationAction(*, type: Literal['microsoft'] = 'microsoft', name: str, notify_on: Literal['all', 'failure', 'success'] = 'all', teams_webhook: str, renderer: great_expectations.render.renderer.microsoft_teams_renderer.MicrosoftTeamsRenderer = None)#

Sends a Microsoft Teams notification to a given webhook.

- name: send_microsoft_teams_notification_on_validation_result
action:
class_name: MicrosoftTeamsNotificationAction
# put the actual webhook URL in the uncommitted/config_variables.yml file
# or pass in as environment variable
microsoft_teams_webhook: ${validation_notification_microsoft_teams_webhook}
notify_on: all
renderer:
# the class that implements the message to be sent
# this is the default implementation, but you can
# implement a custom one
module_name: great_expectations.render.renderer.microsoft_teams_renderer
class_name: MicrosoftTeamsRenderer

Parameters:

renderer – Specifies the renderer used to generate a query consumable by teams API, e.g.:

                 {
"module_name": "great_expectations.render.renderer.microsoft_teams_renderer",
"class_name": "MicrosoftTeamsRenderer",
}

:param microsoft_teams_webhook: Incoming Microsoft Teams webhook to which to send notifications. :param notify_on: Specifies validation status that triggers notification. One of "all", "failure", "success".