mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +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
|
|
@ -4,11 +4,14 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud beta bigtable tables update (TABLE : --instance=INSTANCE) [--async]
|
||||
[--deletion-protection]
|
||||
[--deletion-protection] [--row-key-schema-pre-encoded-bytes]
|
||||
[--automated-backup-retention-period=AUTOMATED_BACKUP_RETENTION_PERIOD
|
||||
| --disable-automated-backup | --enable-automated-backup]
|
||||
[--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD
|
||||
| --clear-change-stream-retention-period] [GCLOUD_WIDE_FLAG ...]
|
||||
| --clear-change-stream-retention-period]
|
||||
[--clear-row-key-schema
|
||||
| --row-key-schema-definition-file=ROW_KEY_SCHEMA_DEFINITION_FILE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Update an existing new Cloud Bigtable table with the specified
|
||||
|
|
@ -92,6 +95,16 @@ FLAGS
|
|||
--deletion-protection
|
||||
Once specified, the table is deletion protected.
|
||||
|
||||
--row-key-schema-pre-encoded-bytes
|
||||
By default, Base64 encoding is applied to all binary fields in the
|
||||
YAML/JSON file (for example, encoding.delimitedBytes.delimiter).
|
||||
|
||||
Use this to indicate that all binary fields are already encoded in the
|
||||
YAML/JSON file and should not be encoded again.
|
||||
|
||||
This field is only used when row-key-schema-definition-file is set. It
|
||||
is ignored if clear-row-key-schema is set.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--automated-backup-retention-period=AUTOMATED_BACKUP_RETENTION_PERIOD
|
||||
|
|
@ -120,6 +133,35 @@ FLAGS
|
|||
This disables the change stream and eventually removes the change
|
||||
stream data.
|
||||
|
||||
Whether to update or clear the row key schema in the updated table. Only
|
||||
one of these flags can be set.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-row-key-schema
|
||||
Whether to clear the row key schema in the updated table.
|
||||
|
||||
--row-key-schema-definition-file=ROW_KEY_SCHEMA_DEFINITION_FILE
|
||||
The row key schema for the table. The schema is defined in a YAML or
|
||||
JSON file, equivalent to the StructType protobuf message.
|
||||
|
||||
Example YAML:
|
||||
|
||||
encoding:
|
||||
delimitedBytes:
|
||||
delimiter: '#'
|
||||
fields:
|
||||
- fieldName: field1
|
||||
type:
|
||||
bytesType:
|
||||
encoding:
|
||||
raw: {}
|
||||
- fieldName: field2
|
||||
type:
|
||||
bytesType:
|
||||
encoding:
|
||||
raw: {}
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue