File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ To set up authentication, please refer to our
35
35
To create a queue using the Cloud SDK, use the following gcloud command:
36
36
37
37
```
38
- gcloud beta tasks queues create-app-engine-queue my-appengine-queue
38
+ gcloud tasks queues create my-appengine-queue
39
39
```
40
40
41
41
Note: A newly created queue will route to the default App Engine service and
@@ -79,14 +79,14 @@ export PROJECT_ID=my-project-id
79
79
```
80
80
81
81
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 ` .
83
83
84
84
```
85
85
export QUEUE_ID=my-appengine-queue
86
86
```
87
87
88
88
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
90
90
the "name" value (for instance, if the name is
91
91
"projects/my-project/locations/us-central1/queues/my-appengine-queue", then the
92
92
location is "us-central1").
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ To create a queue (named `my-queue`) using the Cloud SDK, use the following
29
29
gcloud command:
30
30
31
31
```
32
- gcloud beta tasks queues create my-queue
32
+ gcloud tasks queues create my-queue
33
33
```
34
34
35
35
## Run the Sample Using the Command Line
@@ -43,14 +43,14 @@ export PROJECT_ID=my-project-id
43
43
```
44
44
45
45
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 ` .
47
47
48
48
```
49
49
export QUEUE_ID=my-queue
50
50
```
51
51
52
52
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
54
54
the "name" value (for instance, if the name is
55
55
"projects/my-project/locations/us-central1/queues/my-queue", then the
56
56
location is "us-central1").
You can’t perform that action at this time.
0 commit comments