mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +00:00
gcloud: Thu Jul 20 11:47:24 UTC 2023
This commit is contained in:
parent
b4c2508b12
commit
64e67b443c
325 changed files with 10090 additions and 1806 deletions
54
gcloud/alpha/firestore/databases/delete
Normal file
54
gcloud/alpha/firestore/databases/delete
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
NAME
|
||||
gcloud alpha firestore databases delete - delete a Google Cloud Firestore
|
||||
database
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha firestore databases delete --database=DATABASE
|
||||
[--allow-missing] [--etag=ETAG] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
EXAMPLES
|
||||
To delete a Firestore database test.
|
||||
|
||||
$ gcloud alpha firestore databases delete --database=test
|
||||
|
||||
To delete the Firestore (default) database.
|
||||
|
||||
$ gcloud alpha firestore databases delete --database=(default)
|
||||
|
||||
To delete a Firestore database test providing etag.
|
||||
|
||||
$ gcloud alpha firestore databases delete --database=test --etag=etag
|
||||
|
||||
To delete a Firestore database test and allow missing.
|
||||
|
||||
$ gcloud alpha firestore databases delete --database=test \
|
||||
--allow-missing
|
||||
|
||||
REQUIRED FLAGS
|
||||
--database=DATABASE
|
||||
The database to operate on.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--allow-missing
|
||||
If set and the Database is not found, the request will succeed but no
|
||||
action will be taken.
|
||||
|
||||
--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 alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -19,6 +19,9 @@ COMMANDS
|
|||
create
|
||||
(ALPHA) Create a Google Cloud Firestore database via Firestore API.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete a Google Cloud Firestore database.
|
||||
|
||||
describe
|
||||
(ALPHA) Describes information about a Cloud Firestore database.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue