@@ -38,6 +38,10 @@ class CloudTasksQueueCreateOperator(BaseOperator):
38
38
"""
39
39
Creates a queue in Cloud Tasks.
40
40
41
+ .. seealso::
42
+ For more information on how to use this operator, take a look at the guide:
43
+ :ref:`howto/operator:CloudTasksQueueCreateOperator`
44
+
41
45
:param location: The location name in which the queue will be created.
42
46
:type location: str
43
47
:param task_queue: The task queue to create.
@@ -140,6 +144,10 @@ class CloudTasksQueueUpdateOperator(BaseOperator):
140
144
"""
141
145
Updates a queue in Cloud Tasks.
142
146
147
+ .. seealso::
148
+ For more information on how to use this operator, take a look at the guide:
149
+ :ref:`howto/operator:CloudTasksQueueUpdateOperator`
150
+
143
151
:param task_queue: The task queue to update.
144
152
This method creates the queue if it does not exist and updates the queue if
145
153
it does exist. The queue's name must be specified.
@@ -240,6 +248,10 @@ class CloudTasksQueueGetOperator(BaseOperator):
240
248
"""
241
249
Gets a queue from Cloud Tasks.
242
250
251
+ .. seealso::
252
+ For more information on how to use this operator, take a look at the guide:
253
+ :ref:`howto/operator:CloudTasksQueueGetOperator`
254
+
243
255
:param location: The location name in which the queue was created.
244
256
:type location: str
245
257
:param queue_name: The queue's name.
@@ -322,6 +334,10 @@ class CloudTasksQueuesListOperator(BaseOperator):
322
334
"""
323
335
Lists queues from Cloud Tasks.
324
336
337
+ .. seealso::
338
+ For more information on how to use this operator, take a look at the guide:
339
+ :ref:`howto/operator:CloudTasksQueuesListOperator`
340
+
325
341
:param location: The location name in which the queues were created.
326
342
:type location: str
327
343
:param project_id: (Optional) The ID of the Google Cloud project that owns the Cloud Tasks.
@@ -409,6 +425,10 @@ class CloudTasksQueueDeleteOperator(BaseOperator):
409
425
"""
410
426
Deletes a queue from Cloud Tasks, even if it has tasks in it.
411
427
428
+ .. seealso::
429
+ For more information on how to use this operator, take a look at the guide:
430
+ :ref:`howto/operator:CloudTasksQueueDeleteOperator`
431
+
412
432
:param location: The location name in which the queue will be deleted.
413
433
:type location: str
414
434
:param queue_name: The queue's name.
@@ -488,6 +508,10 @@ class CloudTasksQueuePurgeOperator(BaseOperator):
488
508
"""
489
509
Purges a queue by deleting all of its tasks from Cloud Tasks.
490
510
511
+ .. seealso::
512
+ For more information on how to use this operator, take a look at the guide:
513
+ :ref:`howto/operator:CloudTasksQueuePurgeOperator`
514
+
491
515
:param location: The location name in which the queue will be purged.
492
516
:type location: str
493
517
:param queue_name: The queue's name.
@@ -570,6 +594,10 @@ class CloudTasksQueuePauseOperator(BaseOperator):
570
594
"""
571
595
Pauses a queue in Cloud Tasks.
572
596
597
+ .. seealso::
598
+ For more information on how to use this operator, take a look at the guide:
599
+ :ref:`howto/operator:CloudTasksQueuePauseOperator`
600
+
573
601
:param location: The location name in which the queue will be paused.
574
602
:type location: str
575
603
:param queue_name: The queue's name.
@@ -652,6 +680,10 @@ class CloudTasksQueueResumeOperator(BaseOperator):
652
680
"""
653
681
Resumes a queue in Cloud Tasks.
654
682
683
+ .. seealso::
684
+ For more information on how to use this operator, take a look at the guide:
685
+ :ref:`howto/operator:CloudTasksQueueResumeOperator`
686
+
655
687
:param location: The location name in which the queue will be resumed.
656
688
:type location: str
657
689
:param queue_name: The queue's name.
@@ -734,6 +766,10 @@ class CloudTasksTaskCreateOperator(BaseOperator):
734
766
"""
735
767
Creates a task in Cloud Tasks.
736
768
769
+ .. seealso::
770
+ For more information on how to use this operator, take a look at the guide:
771
+ :ref:`howto/operator:CloudTasksTaskCreateOperator`
772
+
737
773
:param location: The location name in which the task will be created.
738
774
:type location: str
739
775
:param queue_name: The queue's name.
@@ -836,6 +872,10 @@ class CloudTasksTaskGetOperator(BaseOperator):
836
872
"""
837
873
Gets a task from Cloud Tasks.
838
874
875
+ .. seealso::
876
+ For more information on how to use this operator, take a look at the guide:
877
+ :ref:`howto/operator:CloudTasksTaskGetOperator`
878
+
839
879
:param location: The location name in which the task was created.
840
880
:type location: str
841
881
:param queue_name: The queue's name.
@@ -930,6 +970,10 @@ class CloudTasksTasksListOperator(BaseOperator):
930
970
"""
931
971
Lists the tasks in Cloud Tasks.
932
972
973
+ .. seealso::
974
+ For more information on how to use this operator, take a look at the guide:
975
+ :ref:`howto/operator:CloudTasksTasksListOperator`
976
+
933
977
:param location: The location name in which the tasks were created.
934
978
:type location: str
935
979
:param queue_name: The queue's name.
@@ -1024,6 +1068,10 @@ class CloudTasksTaskDeleteOperator(BaseOperator):
1024
1068
"""
1025
1069
Deletes a task from Cloud Tasks.
1026
1070
1071
+ .. seealso::
1072
+ For more information on how to use this operator, take a look at the guide:
1073
+ :ref:`howto/operator:CloudTasksTaskDeleteOperator`
1074
+
1027
1075
:param location: The location name in which the task will be deleted.
1028
1076
:type location: str
1029
1077
:param queue_name: The queue's name.
@@ -1109,6 +1157,10 @@ class CloudTasksTaskRunOperator(BaseOperator):
1109
1157
"""
1110
1158
Forces to run a task in Cloud Tasks.
1111
1159
1160
+ .. seealso::
1161
+ For more information on how to use this operator, take a look at the guide:
1162
+ :ref:`howto/operator:CloudTasksTaskRunOperator`
1163
+
1112
1164
:param location: The location name in which the task was created.
1113
1165
:type location: str
1114
1166
:param queue_name: The queue's name.
0 commit comments