Skip to content

Commit b640e75

Browse files
authored
Merge pull request GoogleCloudPlatform#916 from GoogleCloudPlatform/gcloud
Cloud Tasks update gcloud command
2 parents edf8d66 + 4edb2ca commit b640e75

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

appengine/php72/tasks/snippets/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
2626
5. Create a Queue
2727
To create a queue using the Cloud SDK, use the following gcloud command:
2828
```sh
29-
gcloud beta tasks queues create-app-engine-queue my-appengine-queue
29+
gcloud tasks queues create my-appengine-queue
3030
```
3131
6. Set environment variables:
3232

@@ -42,7 +42,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
4242
Then, identify the queue location
4343

4444
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
4646
the "name" value (for instance, if the name is
4747
"projects/my-project/locations/us-central1/queues/my-pull-queue", then the
4848
location is "us-central1").

tasks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
2626
5. Create a Queue
2727
To create a queue using the Cloud SDK, use the following gcloud command:
2828
```sh
29-
gcloud beta tasks queues create <QUEUE_NAME>
29+
gcloud tasks queues create <QUEUE_NAME>
3030
```
3131

3232
## Using an HTTP Target
@@ -43,7 +43,7 @@ Al code in the snippets directory demonstrate how to invoke Cloud Tasks from PHP
4343
Queue IDs already created can be listed with `gcloud alpha tasks queues list`.
4444
* `LOCATION_ID` is the location of your queue.
4545
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
4747
the "name" value (for instance, if the name is
4848
"projects/my-project/locations/us-central1/queues/my-queue", then the
4949
location is "us-central1").

0 commit comments

Comments
 (0)