airflow.providers.atlassian.jira.notifications.jira¶
Attributes¶
Classes¶
Jira notifier for creating Jira issues upon failures. |
Module Contents¶
- class airflow.providers.atlassian.jira.notifications.jira.JiraNotifier(*, jira_conn_id=JiraHook.default_conn_name, proxies=None, api_version='2', api_root='rest/api', description, summary, project_id, issue_type_id, labels=None, **kwargs)[source]¶
Bases:
airflow.providers.common.compat.sdk.BaseNotifierJira notifier for creating Jira issues upon failures.
- Parameters:
jira_conn_id (str) – The HTTP connection ID for the Jira instance.
proxies (Any | None) – Proxies to make the Jira REST API call. Optional
api_root (str) – root for the api requests. Optional
description (str) – The content for the body of the issue
summary (str) – The title of the issue
project_id (int) – The ID of the project under which the issue will be created
issue_type_id (int) – The ID of the issue category
labels (list[str] | None) – The labels to be applied to the issue
- property async_hook: airflow.providers.atlassian.jira.hooks.jira.JiraAsyncHook[source]¶