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"