From f83c93b2b746405556490196d3c555e043ca2ce3 Mon Sep 17 00:00:00 2001 From: Jasminekaur2005 Date: Sun, 25 Jan 2026 15:16:27 +0530 Subject: [PATCH] Update stackdriver.py Updated Stackdriver wording in docstrings to the newer Google Operations / Cloud Monitoring naming. No functional code changes. --- .../airflow/providers/google/cloud/links/stackdriver.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/providers/google/src/airflow/providers/google/cloud/links/stackdriver.py b/providers/google/src/airflow/providers/google/cloud/links/stackdriver.py index 44393e979b664..8d95c3698881a 100644 --- a/providers/google/src/airflow/providers/google/cloud/links/stackdriver.py +++ b/providers/google/src/airflow/providers/google/cloud/links/stackdriver.py @@ -15,7 +15,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -"""This module contains Google Stackdriver links.""" +"""This module contains Google Operations (Cloud Monitoring) links.""" + from __future__ import annotations @@ -27,7 +28,8 @@ class StackdriverNotificationsLink(BaseGoogleLink): - """Helper class for constructing Stackdriver Notifications Link.""" + """Helper class for constructing Cloud Monitoring Notifications Link.""" + name = "Cloud Monitoring Notifications" key = "stackdriver_notifications" @@ -35,7 +37,7 @@ class StackdriverNotificationsLink(BaseGoogleLink): class StackdriverPoliciesLink(BaseGoogleLink): - """Helper class for constructing Stackdriver Policies Link.""" + """Helper class for constructing Cloud Monitoring Policies Link.""" name = "Cloud Monitoring Policies" key = "stackdriver_policies"