mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 20:36:39 +00:00
gcloud: Wed Mar 13 09:56:21 UTC 2024
This commit is contained in:
parent
7f632e0c5d
commit
75379bf68b
273 changed files with 9390 additions and 532 deletions
|
|
@ -5,7 +5,8 @@ SYNOPSIS
|
|||
gcloud bigtable instances tables create (TABLE : --instance=INSTANCE)
|
||||
--column-families=[COLUMN_FAMILIES,...]
|
||||
[--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD]
|
||||
[--deletion-protection] [--splits=[SPLITS,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
[--deletion-protection] [--enable-automated-backup]
|
||||
[--splits=[SPLITS,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a new Cloud Bigtable table.
|
||||
|
|
@ -58,6 +59,14 @@ EXAMPLES
|
|||
--instance=my-instance --column-families="my-family" \
|
||||
--no-deletion-protection
|
||||
|
||||
To create a table my-table with automated backup policy
|
||||
(retention_period=72h, frequency=24h) enabled in instance my-instance with
|
||||
a column family my-family, run:
|
||||
|
||||
$ gcloud bigtable instances tables create my-table \
|
||||
--instance=my-instance --column-families="my-family" \
|
||||
--enable-automated-backup
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Table resource - Cloud Bigtable table to create. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
|
|
@ -106,6 +115,10 @@ OPTIONAL FLAGS
|
|||
--deletion-protection
|
||||
Once specified, the table is deletion protected.
|
||||
|
||||
--enable-automated-backup
|
||||
Once set, enables the default automated backup policy
|
||||
(retention_period=72h, frequency=24h) for the table.
|
||||
|
||||
--splits=[SPLITS,...]
|
||||
Row keys where the table should initially be split. For example:
|
||||
car,key
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud bigtable instances tables update (TABLE : --instance=INSTANCE)
|
||||
[--async] [--deletion-protection]
|
||||
[--async] [--deletion-protection] [--disable-automated-backup]
|
||||
[--enable-automated-backup]
|
||||
[--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD
|
||||
| --clear-change-stream-retention-period] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -34,6 +35,17 @@ EXAMPLES
|
|||
$ gcloud bigtable instances tables update my-table \
|
||||
--instance=my-instance --clear-change-stream-retention-period
|
||||
|
||||
To enable default automated backup policy (retention_period=72h,
|
||||
frequency=24h), run:
|
||||
|
||||
$ gcloud bigtable instances tables update my-table \
|
||||
--instance=my-instance --enable-automated-backup
|
||||
|
||||
To disable automated backup: run:
|
||||
|
||||
$ gcloud bigtable instances tables update my-table \
|
||||
--instance=my-instance --disable-automated-backup
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Table resource - Cloud Bigtable table to update. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
|
|
@ -73,6 +85,13 @@ FLAGS
|
|||
--deletion-protection
|
||||
Once specified, the table is deletion protected.
|
||||
|
||||
--disable-automated-backup
|
||||
Once set, disables automated backup policy for the table.
|
||||
|
||||
--enable-automated-backup
|
||||
Once set, enables the default automated backup policy
|
||||
(retention_period=72h, frequency=24h) for the table.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@ SYNOPSIS
|
|||
gcloud bigtable tables create (TABLE : --instance=INSTANCE)
|
||||
--column-families=[COLUMN_FAMILIES,...]
|
||||
[--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD]
|
||||
[--deletion-protection] [--splits=[SPLITS,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
[--deletion-protection] [--enable-automated-backup]
|
||||
[--splits=[SPLITS,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a new Cloud Bigtable table.
|
||||
|
|
@ -53,6 +54,13 @@ EXAMPLES
|
|||
$ gcloud bigtable tables create my-table --instance=my-instance \
|
||||
--column-families="my-family" --no-deletion-protection
|
||||
|
||||
To create a table my-table with automated backup policy
|
||||
(retention_period=72h, frequency=24h) enabled in instance my-instance with
|
||||
a column family my-family, run:
|
||||
|
||||
$ gcloud bigtable tables create my-table --instance=my-instance \
|
||||
--column-families="my-family" --enable-automated-backup
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Table resource - Cloud Bigtable table to create. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
|
|
@ -101,6 +109,10 @@ OPTIONAL FLAGS
|
|||
--deletion-protection
|
||||
Once specified, the table is deletion protected.
|
||||
|
||||
--enable-automated-backup
|
||||
Once set, enables the default automated backup policy
|
||||
(retention_period=72h, frequency=24h) for the table.
|
||||
|
||||
--splits=[SPLITS,...]
|
||||
Row keys where the table should initially be split. For example:
|
||||
car,key
|
||||
|
|
|
|||
|
|
@ -3,7 +3,8 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud bigtable tables update (TABLE : --instance=INSTANCE) [--async]
|
||||
[--deletion-protection]
|
||||
[--deletion-protection] [--disable-automated-backup]
|
||||
[--enable-automated-backup]
|
||||
[--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD
|
||||
| --clear-change-stream-retention-period] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -33,6 +34,17 @@ EXAMPLES
|
|||
$ gcloud bigtable tables update my-table --instance=my-instance \
|
||||
--clear-change-stream-retention-period
|
||||
|
||||
To enable default automated backup policy (retention_period=72h,
|
||||
frequency=24h), run:
|
||||
|
||||
$ gcloud bigtable tables update my-table --instance=my-instance \
|
||||
--enable-automated-backup
|
||||
|
||||
To disable automated backup: run:
|
||||
|
||||
$ gcloud bigtable tables update my-table --instance=my-instance \
|
||||
--disable-automated-backup
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Table resource - Cloud Bigtable table to update. The arguments in this
|
||||
group can be used to specify the attributes of this resource. (NOTE) Some
|
||||
|
|
@ -72,6 +84,13 @@ FLAGS
|
|||
--deletion-protection
|
||||
Once specified, the table is deletion protected.
|
||||
|
||||
--disable-automated-backup
|
||||
Once set, disables automated backup policy for the table.
|
||||
|
||||
--enable-automated-backup
|
||||
Once set, enables the default automated backup policy
|
||||
(retention_period=72h, frequency=24h) for the table.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--change-stream-retention-period=CHANGE_STREAM_RETENTION_PERIOD
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue