From 67aea33a7876a4498234fb72204e038b6339613d Mon Sep 17 00:00:00 2001 From: averikitsch Date: Tue, 11 Jun 2019 09:53:42 -0700 Subject: [PATCH] update gcloud --- appengine/flexible/tasks/README.md | 6 +++--- tasks/README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/appengine/flexible/tasks/README.md b/appengine/flexible/tasks/README.md index c2888ba647b..4210bcb05aa 100644 --- a/appengine/flexible/tasks/README.md +++ b/appengine/flexible/tasks/README.md @@ -35,7 +35,7 @@ To set up authentication, please refer to our To create a queue using the Cloud SDK, use the following gcloud command: ``` -gcloud beta tasks queues create-app-engine-queue my-appengine-queue +gcloud tasks queues create my-appengine-queue ``` Note: A newly created queue will route to the default App Engine service and @@ -79,14 +79,14 @@ export PROJECT_ID=my-project-id ``` Then the queue ID, as specified at queue creation time. Queue IDs already -created can be listed with `gcloud beta tasks queues list`. +created can be listed with `gcloud tasks queues list`. ``` export QUEUE_ID=my-appengine-queue ``` And finally the location ID, which can be discovered with -`gcloud beta tasks queues describe $QUEUE_ID`, with the location embedded in +`gcloud tasks queues describe $QUEUE_ID`, with the location embedded in the "name" value (for instance, if the name is "projects/my-project/locations/us-central1/queues/my-appengine-queue", then the location is "us-central1"). diff --git a/tasks/README.md b/tasks/README.md index 2c23e482447..2af8ecee03f 100644 --- a/tasks/README.md +++ b/tasks/README.md @@ -29,7 +29,7 @@ To create a queue (named `my-queue`) using the Cloud SDK, use the following gcloud command: ``` -gcloud beta tasks queues create my-queue +gcloud tasks queues create my-queue ``` ## Run the Sample Using the Command Line @@ -43,14 +43,14 @@ export PROJECT_ID=my-project-id ``` Then the queue ID, as specified at queue creation time. Queue IDs already -created can be listed with `gcloud beta tasks queues list`. +created can be listed with `gcloud tasks queues list`. ``` export QUEUE_ID=my-queue ``` And finally the location ID, which can be discovered with -`gcloud beta tasks queues describe my-queue`, with the location embedded in +`gcloud tasks queues describe my-queue`, with the location embedded in the "name" value (for instance, if the name is "projects/my-project/locations/us-central1/queues/my-queue", then the location is "us-central1").