Skip to content

Commit 43d39fc

Browse files
authored
update gcloud (#2208)
1 parent 3a3fe63 commit 43d39fc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

appengine/flexible/tasks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To set up authentication, please refer to our
3535
To create a queue using the Cloud SDK, use the following gcloud command:
3636

3737
```
38-
gcloud beta tasks queues create-app-engine-queue my-appengine-queue
38+
gcloud tasks queues create my-appengine-queue
3939
```
4040

4141
Note: A newly created queue will route to the default App Engine service and
@@ -79,14 +79,14 @@ export PROJECT_ID=my-project-id
7979
```
8080

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

8484
```
8585
export QUEUE_ID=my-appengine-queue
8686
```
8787

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

tasks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To create a queue (named `my-queue`) using the Cloud SDK, use the following
2929
gcloud command:
3030

3131
```
32-
gcloud beta tasks queues create my-queue
32+
gcloud tasks queues create my-queue
3333
```
3434

3535
## Run the Sample Using the Command Line
@@ -43,14 +43,14 @@ export PROJECT_ID=my-project-id
4343
```
4444

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

4848
```
4949
export QUEUE_ID=my-queue
5050
```
5151

5252
And finally the location ID, which can be discovered with
53-
`gcloud beta tasks queues describe my-queue`, with the location embedded in
53+
`gcloud tasks queues describe my-queue`, with the location embedded in
5454
the "name" value (for instance, if the name is
5555
"projects/my-project/locations/us-central1/queues/my-queue", then the
5656
location is "us-central1").

0 commit comments

Comments
 (0)