1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-15 01:15:34 +00:00

gcloud: Wed Nov 15 11:42:54 UTC 2023

This commit is contained in:
Automated 2023-11-15 11:42:54 +00:00
parent 03f0979970
commit d3074f94bb
224 changed files with 6432 additions and 626 deletions

View file

@ -0,0 +1,45 @@
NAME
gcloud beta firestore databases delete - delete a Google Cloud Firestore
database
SYNOPSIS
gcloud beta firestore databases delete --database=DATABASE [--etag=ETAG]
[GCLOUD_WIDE_FLAG ...]
EXAMPLES
To delete a Firestore database test.
$ gcloud beta firestore databases delete --database=test
To delete the Firestore (default) database.
$ gcloud beta firestore databases delete --database=(default)
To delete a Firestore database test providing etag.
$ gcloud beta firestore databases delete --database=test --etag=etag
REQUIRED FLAGS
--database=DATABASE
The database to operate on.
OPTIONAL FLAGS
--etag=ETAG
The current etag of the Database. If an etag is provided and does not
match the current etag of the database, deletion will be blocked and a
FAILED_PRECONDITION error will be returned.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha firestore databases delete

View file

@ -19,6 +19,9 @@ COMMANDS
create
(BETA) Create a Google Cloud Firestore database via Firestore API.
delete
(BETA) Delete a Google Cloud Firestore database.
describe
(BETA) Describes information about a Cloud Firestore database.