mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-17 14:26:34 +00:00
gcloud: Wed Mar 27 09:52:07 UTC 2024
This commit is contained in:
parent
5b4fac9106
commit
4ade1b44cc
148 changed files with 5765 additions and 482 deletions
|
|
@ -1,5 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha spanner operations cancel - cancel a Cloud Spanner operation
|
||||
with ALPHA features
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha spanner operations cancel OPERATION-ID
|
||||
|
|
@ -7,7 +8,7 @@ SYNOPSIS
|
|||
[--backup=BACKUP] [--database=DATABASE] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Cancel a Cloud Spanner operation.
|
||||
(ALPHA) Cancel a Cloud Spanner operation with ALPHA features.
|
||||
|
||||
EXAMPLES
|
||||
To cancel an instance operation with ID auto_12345, run:
|
||||
|
|
@ -25,6 +26,12 @@ EXAMPLES
|
|||
$ gcloud alpha spanner operations cancel _auto_12345 \
|
||||
--instance=my-instance-id --backup=my-backup-id
|
||||
|
||||
To cancel a Cloud Spanner instance partition operation with ID auto_12345,
|
||||
run:
|
||||
|
||||
$ gcloud alpha spanner operations cancel auto_12345 \
|
||||
--instance=my-instance-id --instance-partition=my-partition-id
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
OPERATION-ID
|
||||
ID of the operation
|
||||
|
|
|
|||
|
|
@ -16,14 +16,13 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
cancel
|
||||
(ALPHA) Cancel a Cloud Spanner operation.
|
||||
(ALPHA) Cancel a Cloud Spanner operation with ALPHA features.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe a Cloud Spanner operation.
|
||||
|
||||
list
|
||||
(ALPHA) List the Cloud Spanner operations on the given instance or
|
||||
database or instance configuration.
|
||||
(ALPHA) List the Cloud Spanner operations with ALPHA features.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha spanner operations list - list the Cloud Spanner operations on
|
||||
the given instance or database or instance configuration
|
||||
gcloud alpha spanner operations list - list the Cloud Spanner operations
|
||||
with ALPHA features
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha spanner operations list
|
||||
|
|
@ -10,8 +10,7 @@ SYNOPSIS
|
|||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List the Cloud Spanner operations on the given instance or database
|
||||
or instance configuration.
|
||||
(ALPHA) List the Cloud Spanner operations with ALPHA features.
|
||||
|
||||
EXAMPLES
|
||||
To list Cloud Spanner instance operations for an instance, run:
|
||||
|
|
@ -44,6 +43,12 @@ EXAMPLES
|
|||
$ gcloud alpha spanner operations list --instance=my-instance-id \
|
||||
--backup=my-backup-id --type=BACKUP
|
||||
|
||||
To list Cloud Spanner instance partition operations for an instance
|
||||
partition, run:
|
||||
|
||||
$ gcloud alpha spanner operations list --instance=my-instance-id \
|
||||
--instance-partition=my-partition-id --type=INSTANCE_PARTITION
|
||||
|
||||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
|
|
@ -101,6 +106,12 @@ FLAGS
|
|||
INSTANCE_CONFIG_UPDATE
|
||||
Instance configuration update operations are returned for the given
|
||||
instance configuration (--instance-config).
|
||||
INSTANCE_PARTITION
|
||||
If only the instance is specified (--instance), returns all
|
||||
instance partition operations associated with instance partitions
|
||||
in the instance. When an instance partition is specified
|
||||
(--instance-partition), only the instance partition operations for
|
||||
the given instance partition are returned.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue