Skip to content

Commit ba3d831

Browse files
authored
Update gcloud command (GoogleCloudPlatform#1455)
1 parent ce1858b commit ba3d831

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

appengine-java11/tasks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ App Engine task attempts.
2828
To create a queue using the Cloud SDK, use the following gcloud command:
2929

3030
```
31-
gcloud beta tasks queues create my-appengine-queue
31+
gcloud tasks queues create my-appengine-queue
3232
```
3333

3434
Note: A newly created queue will route to the default App Engine service and
@@ -71,14 +71,14 @@ export GOOGLE_CLOUD_PROJECT="<YOUR_GOOGLE_CLOUD_PROJECT>"
7171
```
7272

7373
Then the queue ID, as specified at queue creation time. Queue IDs already
74-
created can be listed with `gcloud beta tasks queues list`.
74+
created can be listed with `gcloud tasks queues list`.
7575

7676
```
7777
export QUEUE_ID="my-appengine-queue"
7878
```
7979

8080
And finally the location ID, which can be discovered with
81-
`gcloud beta tasks queues describe $QUEUE_ID`, with the location embedded in
81+
`gcloud tasks queues describe $QUEUE_ID`, with the location embedded in
8282
the "name" value (for instance, if the name is
8383
"projects/my-project/locations/us-central1/queues/my-appengine-queue", then the
8484
location is "us-central1").

appengine-java8/tasks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ App Engine task attempts.
2828
To create a queue using the Cloud SDK, use the following gcloud command:
2929

3030
```
31-
gcloud beta tasks queues create-app-engine-queue my-appengine-queue
31+
gcloud tasks queues create my-appengine-queue
3232
```
3333

3434
Note: A newly created queue will route to the default App Engine service and
@@ -53,14 +53,14 @@ export GOOGLE_CLOUD_PROJECT=<YOUR_GOOGLE_CLOUD_PROJECT>
5353
```
5454

5555
Then the queue ID, as specified at queue creation time. Queue IDs already
56-
created can be listed with `gcloud beta tasks queues list`.
56+
created can be listed with `gcloud tasks queues list`.
5757

5858
```
5959
export QUEUE_ID=my-appengine-queue
6060
```
6161

6262
And finally the location ID, which can be discovered with
63-
`gcloud beta tasks queues describe $QUEUE_ID`, with the location embedded in
63+
`gcloud tasks queues describe $QUEUE_ID`, with the location embedded in
6464
the "name" value (for instance, if the name is
6565
"projects/my-project/locations/us-central1/queues/my-appengine-queue", then the
6666
location is "us-central1").

tasks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pushes it to your queue.
2222
To create a queue using the Cloud SDK, use the following gcloud command:
2323

2424
```
25-
gcloud beta tasks queues create <QUEUE_NAME>
25+
gcloud tasks queues create <QUEUE_NAME>
2626
```
2727

2828
## Run the Sample Using the Command Line
@@ -36,14 +36,14 @@ export GOOGLE_CLOUD_PROJECT=<YOUR_GOOGLE_CLOUD_PROJECT>
3636
```
3737

3838
Then the queue ID, as specified at queue creation time. Queue IDs already
39-
created can be listed with `gcloud beta tasks queues list`.
39+
created can be listed with `gcloud tasks queues list`.
4040

4141
```
4242
export QUEUE_ID=<QUEUE_NAME>
4343
```
4444

4545
And finally the location ID, which can be discovered with
46-
`gcloud beta tasks queues describe $QUEUE_ID`, with the location embedded in
46+
`gcloud tasks queues describe $QUEUE_ID`, 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)