mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 18:45:13 +00:00
126 lines
4.4 KiB
Text
126 lines
4.4 KiB
Text
NAME
|
|
gcloud logging buckets update - update a bucket
|
|
|
|
SYNOPSIS
|
|
gcloud logging buckets update BUCKET_ID --location=LOCATION
|
|
[--add-index=[KEY=VALUE, ...,...]] [--clear-indexes]
|
|
[--cmek-kms-key-name=CMEK_KMS_KEY_NAME] [--description=DESCRIPTION]
|
|
[--locked] [--remove-indexes=[FIELD PATH,...]]
|
|
[--restricted-fields=[RESTRICTED_FIELD,...]]
|
|
[--retention-days=RETENTION_DAYS] [--update-index=[KEY=VALUE, ...,...]]
|
|
[GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
Update the properties of a bucket.
|
|
|
|
EXAMPLES
|
|
To update a bucket in your project, run:
|
|
|
|
$ gcloud logging buckets update my-bucket --location=global \
|
|
--description=my-new-description
|
|
|
|
To update a bucket in your project and remove all indexes, run:
|
|
|
|
$ gcloud logging buckets update my-bucket --location=global \
|
|
--clear-indexes
|
|
|
|
To update a bucket in your project and remove an index, run:
|
|
|
|
$ gcloud logging buckets update my-bucket --location=global \
|
|
--remove-indexes=jsonPayload.foo2
|
|
|
|
To update a bucket in your project and add an index, run:
|
|
|
|
$ gcloud logging buckets update my-bucket --location=global \
|
|
--add-index=fieldPath=jsonPayload.foo2,type=INDEX_TYPE_STRING
|
|
|
|
To update a bucket in your project and update an existing index, run:
|
|
|
|
$ gcloud logging buckets update my-bucket --location=global \
|
|
--update-index=fieldPath=jsonPayload.foo,type=INDEX_TYPE_INTEGER
|
|
|
|
To update a bucket in your project and update existing cmek, run:
|
|
|
|
$ gcloud logging buckets update my-bucket --location=global \
|
|
--cmek-kms-key-name=CMEK_KEY_NAME
|
|
|
|
POSITIONAL ARGUMENTS
|
|
BUCKET_ID
|
|
The id of the bucket to update.
|
|
|
|
REQUIRED FLAGS
|
|
--location=LOCATION
|
|
Location of the bucket.
|
|
|
|
OPTIONAL FLAGS
|
|
--add-index=[KEY=VALUE, ...,...]
|
|
Add an index to be added to the log bucket. This flag can be repeated.
|
|
The fieldPath and type attributes are required. For example:
|
|
--index=fieldPath=jsonPayload.foo,type=INDEX_TYPE_STRING. The following
|
|
keys are accepted:
|
|
|
|
fieldPath
|
|
The LogEntry field path to index. For example:
|
|
jsonPayload.request.status. Paths are limited to 800 characters and
|
|
can include only letters, digits, underscores, hyphens, and
|
|
periods.
|
|
|
|
type
|
|
The type of data in this index. For example: INDEX_TYPE_STRING
|
|
Supported types are strings and integers.
|
|
|
|
--clear-indexes
|
|
Remove all logging indexes from the bucket.
|
|
|
|
--cmek-kms-key-name=CMEK_KMS_KEY_NAME
|
|
A valid kms_key_name will enable CMEK for the bucket.
|
|
|
|
--description=DESCRIPTION
|
|
A new description for the bucket.
|
|
|
|
--locked
|
|
Lock the bucket and prevent it from being modified or deleted (unless
|
|
it is empty).
|
|
|
|
--remove-indexes=[FIELD PATH,...]
|
|
Specify the field path of the logging index(es) to delete.
|
|
|
|
--restricted-fields=[RESTRICTED_FIELD,...]
|
|
A new set of restricted fields for the bucket.
|
|
|
|
--retention-days=RETENTION_DAYS
|
|
A new retention period for the bucket.
|
|
|
|
--update-index=[KEY=VALUE, ...,...]
|
|
Update an index to be added to the log bucket. This will update the
|
|
type of the index, and also update its createTime to the new update
|
|
time. This flag can be repeated. The fieldPath and type attributes are
|
|
required. For example:
|
|
--index=fieldPath=jsonPayload.foo,type=INDEX_TYPE_STRING. The following
|
|
keys are accepted:
|
|
|
|
fieldPath
|
|
The LogEntry field path to index. For example:
|
|
jsonPayload.request.status. Paths are limited to 800 characters and
|
|
can include only letters, digits, underscores, hyphens, and
|
|
periods.
|
|
|
|
type
|
|
The type of data in this index. For example: INDEX_TYPE_STRING
|
|
Supported types are strings and integers.
|
|
|
|
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
|
|
These variants are also available:
|
|
|
|
$ gcloud alpha logging buckets update
|
|
|
|
$ gcloud beta logging buckets update
|
|
|