utkarsharma2 commented on code in PR #31207: URL: https://github.com/apache/airflow/pull/31207#discussion_r1196586244
########## airflow/providers/pagerduty/notifications/pagerduty.py: ########## @@ -0,0 +1,140 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +from __future__ import annotations + +from typing import Any + +from airflow.compat.functools import cached_property +from airflow.exceptions import AirflowOptionalProviderFeatureException + +try: + from airflow.notifications.basenotifier import BaseNotifier +except ImportError: + raise AirflowOptionalProviderFeatureException( + "Failed to import BaseNotifier. This feature is only available in Airflow versions >= 2.6.0" + ) + +from airflow.providers.pagerduty.hooks.pagerduty_events import PagerdutyEventsHook + + +class PagerdutyNotifier(BaseNotifier): + """ + Pagerduty BaseNotifier + + :param summary: Summary for the event + :param severity: Severity for the event, needs to be one of: info, warning, error, critical + :param source: Specific human-readable unique identifier, such as a + hostname, for the system having the problem. + :param action: Event action, needs to be one of: trigger, acknowledge, + resolve. Default to trigger if not specified. + :param dedup_key: A string which identifies the alert triggered for the given event. + Required for the actions acknowledge and resolve. + :param custom_details: Free-form details from the event. Can be a dictionary or a string. + If a dictionary is passed it will show up in PagerDuty as a table. + :param group: A cluster or grouping of sources. For example, sources + "prod-datapipe-02" and "prod-datapipe-03" might both be part of "prod-datapipe" + :param component: The part or component of the affected system that is broken. + :param class_type: The class/type of the event. + :param images: List of images to include. Each dictionary in the list accepts the following keys: + `src`: The source (URL) of the image being attached to the incident. This image must be served via + HTTPS. + `href`: [Optional] URL to make the image a clickable link. + `alt`: [Optional] Alternative text for the image. + :param links: List of links to include. Each dictionary in the list accepts the following keys: + `href`: URL of the link to be attached. + `text`: [Optional] Plain text that describes the purpose of the link, and can be used as the + link's text. + :param integration_key: PagerDuty Events API token + :param pagerduty_events_conn_id: connection that has PagerDuty integration key in the Pagerduty + API token field + :return: PagerDuty Events API v2 response. Review Comment: ```suggestion ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
