File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
appengine/php72/tasks/snippets Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
26
26
5. Create a Queue
27
27
To create a queue using the Cloud SDK, use the following gcloud command:
28
28
` ` ` sh
29
- gcloud beta tasks queues create-app-engine-queue my-appengine-queue
29
+ gcloud tasks queues create my-appengine-queue
30
30
` ` `
31
31
6. Set environment variables:
32
32
@@ -42,7 +42,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
42
42
Then, identify the queue location
43
43
44
44
Determine the location ID, which can be discovered with
45
- ` gcloud beta tasks queues describe $QUEUE_ID ` , with the location embedded in
45
+ ` gcloud tasks queues describe $QUEUE_ID ` , with the location embedded in
46
46
the " name" value (for instance, if the name is
47
47
" projects/my-project/locations/us-central1/queues/my-pull-queue" , then the
48
48
location is " us-central1" ).
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
26
26
5. Create a Queue
27
27
To create a queue using the Cloud SDK, use the following gcloud command:
28
28
` ` ` sh
29
- gcloud beta tasks queues create < QUEUE_NAME>
29
+ gcloud tasks queues create < QUEUE_NAME>
30
30
` ` `
31
31
32
32
# # Using an HTTP Target
@@ -43,7 +43,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
43
43
Queue IDs already created can be listed with ` gcloud alpha tasks queues list` .
44
44
* ` LOCATION_ID` is the location of your queue.
45
45
Determine the location ID, which can be discovered with
46
- ` gcloud beta tasks queues describe < QUEUE_NAME> ` , with the location embedded in
46
+ ` gcloud tasks queues describe < QUEUE_NAME> ` , with the location embedded in
47
47
the " name" value (for instance, if the name is
48
48
" projects/my-project/locations/us-central1/queues/my-queue" , then the
49
49
location is " us-central1" ).
You can’t perform that action at this time.
0 commit comments