@@ -33,6 +33,10 @@ class StackdriverListAlertPoliciesOperator(BaseOperator):
33
33
which returns python dictionary, stringified JSON and protobuf
34
34
respectively.
35
35
36
+ .. seealso::
37
+ For more information on how to use this operator, take a look at the guide:
38
+ :ref:`howto/operator:StackdriverListAlertPoliciesOperator`
39
+
36
40
:param format_: (Optional) Desired output format of the result. The
37
41
supported formats are "dict", "json" and None which returns
38
42
python dictionary, stringified JSON and protobuf respectively.
@@ -127,6 +131,10 @@ class StackdriverEnableAlertPoliciesOperator(BaseOperator):
127
131
Enables one or more disabled alerting policies identified by filter
128
132
parameter. Inoperative in case the policy is already enabled.
129
133
134
+ .. seealso::
135
+ For more information on how to use this operator, take a look at the guide:
136
+ :ref:`howto/operator:StackdriverEnableAlertPoliciesOperator`
137
+
130
138
:param filter_: If provided, this field specifies the criteria that
131
139
must be met by alert policies to be enabled.
132
140
For more details, see https://cloud.google.com/monitoring/api/v3/sorting-and-filtering.
@@ -194,6 +202,10 @@ class StackdriverDisableAlertPoliciesOperator(BaseOperator):
194
202
Disables one or more enabled alerting policies identified by filter
195
203
parameter. Inoperative in case the policy is already disabled.
196
204
205
+ .. seealso::
206
+ For more information on how to use this operator, take a look at the guide:
207
+ :ref:`howto/operator:StackdriverDisableAlertPoliciesOperator`
208
+
197
209
:param filter_: If provided, this field specifies the criteria that
198
210
must be met by alert policies to be disabled.
199
211
For more details, see https://cloud.google.com/monitoring/api/v3/sorting-and-filtering.
@@ -261,6 +273,10 @@ class StackdriverUpsertAlertOperator(BaseOperator):
261
273
Creates a new alert or updates an existing policy identified
262
274
the name field in the alerts parameter.
263
275
276
+ .. seealso::
277
+ For more information on how to use this operator, take a look at the guide:
278
+ :ref:`howto/operator:StackdriverUpsertAlertOperator`
279
+
264
280
:param alerts: A JSON string or file that specifies all the alerts that needs
265
281
to be either created or updated. For more details, see
266
282
https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.alertPolicies#AlertPolicy.
@@ -330,6 +346,10 @@ class StackdriverDeleteAlertOperator(BaseOperator):
330
346
"""
331
347
Deletes an alerting policy.
332
348
349
+ .. seealso::
350
+ For more information on how to use this operator, take a look at the guide:
351
+ :ref:`howto/operator:StackdriverDeleteAlertOperator`
352
+
333
353
:param name: The alerting policy to delete. The format is:
334
354
``projects/[PROJECT_ID]/alertPolicies/[ALERT_POLICY_ID]``.
335
355
:type name: str
@@ -399,6 +419,10 @@ class StackdriverListNotificationChannelsOperator(BaseOperator):
399
419
which returns python dictionary, stringified JSON and protobuf
400
420
respectively.
401
421
422
+ .. seealso::
423
+ For more information on how to use this operator, take a look at the guide:
424
+ :ref:`howto/operator:StackdriverListNotificationChannelsOperator`
425
+
402
426
:param format_: (Optional) Desired output format of the result. The
403
427
supported formats are "dict", "json" and None which returns
404
428
python dictionary, stringified JSON and protobuf respectively.
@@ -495,6 +519,10 @@ class StackdriverEnableNotificationChannelsOperator(BaseOperator):
495
519
Enables one or more disabled alerting policies identified by filter
496
520
parameter. Inoperative in case the policy is already enabled.
497
521
522
+ .. seealso::
523
+ For more information on how to use this operator, take a look at the guide:
524
+ :ref:`howto/operator:StackdriverEnableNotificationChannelsOperator`
525
+
498
526
:param filter_: If provided, this field specifies the criteria that
499
527
must be met by notification channels to be enabled.
500
528
For more details, see https://cloud.google.com/monitoring/api/v3/sorting-and-filtering.
@@ -564,6 +592,10 @@ class StackdriverDisableNotificationChannelsOperator(BaseOperator):
564
592
Disables one or more enabled notification channels identified by filter
565
593
parameter. Inoperative in case the policy is already disabled.
566
594
595
+ .. seealso::
596
+ For more information on how to use this operator, take a look at the guide:
597
+ :ref:`howto/operator:StackdriverDisableNotificationChannelsOperator`
598
+
567
599
:param filter_: If provided, this field specifies the criteria that
568
600
must be met by alert policies to be disabled.
569
601
For more details, see https://cloud.google.com/monitoring/api/v3/sorting-and-filtering.
@@ -633,6 +665,10 @@ class StackdriverUpsertNotificationChannelOperator(BaseOperator):
633
665
Creates a new notification or updates an existing notification channel
634
666
identified the name field in the alerts parameter.
635
667
668
+ .. seealso::
669
+ For more information on how to use this operator, take a look at the guide:
670
+ :ref:`howto/operator:StackdriverUpsertNotificationChannelOperator`
671
+
636
672
:param channels: A JSON string or file that specifies all the alerts that needs
637
673
to be either created or updated. For more details, see
638
674
https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.notificationChannels.
@@ -703,6 +739,10 @@ class StackdriverDeleteNotificationChannelOperator(BaseOperator):
703
739
"""
704
740
Deletes a notification channel.
705
741
742
+ .. seealso::
743
+ For more information on how to use this operator, take a look at the guide:
744
+ :ref:`howto/operator:StackdriverDeleteNotificationChannelOperator`
745
+
706
746
:param name: The alerting policy to delete. The format is:
707
747
``projects/[PROJECT_ID]/notificationChannels/[CHANNEL_ID]``.
708
748
:type name: str
0 commit comments