mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +00:00
gcloud: Wed Apr 16 10:41:40 UTC 2025
This commit is contained in:
parent
4637d39593
commit
b589c4c4ad
316 changed files with 13928 additions and 1163 deletions
|
|
@ -5,10 +5,17 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud firestore databases create --location=LOCATION
|
||||
[--database=DATABASE; default="(default)"] [--delete-protection]
|
||||
[--enable-pitr] [--kms-key-name=KMS_KEY_NAME]
|
||||
[--type=TYPE; default="firestore-native"] [GCLOUD_WIDE_FLAG ...]
|
||||
[--edition=EDITION; default="standard"] [--enable-pitr]
|
||||
[--kms-key-name=KMS_KEY_NAME] [--type=TYPE; default="firestore-native"]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
EXAMPLES
|
||||
To create a Firestore Enterprise database named foo in nam5 for use with
|
||||
Ignite APIs.
|
||||
|
||||
$ gcloud firestore databases create --database=foo \
|
||||
--edition=enterprise --location=nam5
|
||||
|
||||
To create a Firestore Native database in nam5.
|
||||
|
||||
$ gcloud firestore databases create --location=nam5
|
||||
|
|
@ -71,6 +78,10 @@ OPTIONAL FLAGS
|
|||
|
||||
Default to false.
|
||||
|
||||
--edition=EDITION; default="standard"
|
||||
The edition of the database. EDITION must be one of: standard,
|
||||
enterprise.
|
||||
|
||||
--enable-pitr
|
||||
Whether to enable Point In Time Recovery (PITR) on the created
|
||||
database.
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ SYNOPSIS
|
|||
[field-path=FIELD-PATH],[order=ORDER],[vector-config=VECTOR-CONFIG]
|
||||
(--collection-group=COLLECTION_GROUP : --database=DATABASE)
|
||||
[--api-scope=API_SCOPE; default="any-api"] [--async]
|
||||
[--density=DENSITY] [--multikey]
|
||||
[--query-scope=QUERY_SCOPE; default="collection"]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -102,12 +103,25 @@ REQUIRED FLAGS
|
|||
OPTIONAL FLAGS
|
||||
--api-scope=API_SCOPE; default="any-api"
|
||||
Api scope the index applies to. API_SCOPE must be one of: any-api,
|
||||
datastore-mode-api.
|
||||
datastore-mode-api, mongodb-compatible-api.
|
||||
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--density=DENSITY
|
||||
Density of the index. DENSITY must be one of: dense,
|
||||
density-unspecified, sparse-all, sparse-any.
|
||||
|
||||
--multikey
|
||||
Optional. Whether the index is multikey. By default, the index is not
|
||||
multikey. For non-multikey indexes, none of the paths in the index
|
||||
definition reach or traverse an array, except via an explicit array
|
||||
index. For multikey indexes, at most one of the paths in the index
|
||||
definition reach or traverse an array, except via an explicit array
|
||||
index. Violations will result in errors. Note this field only applies
|
||||
to index with MONGODB_COMPATIBLE_API ApiScope.
|
||||
|
||||
--query-scope=QUERY_SCOPE; default="collection"
|
||||
Query scope the index applies to. QUERY_SCOPE must be one of:
|
||||
collection, collection-group, collection-recursive.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue