mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-15 01:15:34 +00:00
gcloud: Wed Mar 23 08:27:29 UTC 2022
This commit is contained in:
parent
971306823a
commit
cd34e797ae
109 changed files with 1563 additions and 627 deletions
|
|
@ -2,7 +2,7 @@ NAME
|
|||
gcloud alpha bms instances update - update a Bare Metal Solution instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms instances update (INSTANCE : --region=REGION)
|
||||
gcloud alpha bms instances update (INSTANCE : --region=REGION) [--async]
|
||||
[--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -52,6 +52,10 @@ POSITIONAL ARGUMENTS
|
|||
▸ provide the argument --region on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--update-labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to update. If a label exists, its value
|
||||
is modified. Otherwise, a new label is created.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ NAME
|
|||
gcloud alpha bms networks update - update a Bare Metal Solution network
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms networks update (NETWORK : --region=REGION)
|
||||
gcloud alpha bms networks update (NETWORK : --region=REGION) [--async]
|
||||
[--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -52,6 +52,10 @@ POSITIONAL ARGUMENTS
|
|||
▸ provide the argument --region on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--update-labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to update. If a label exists, its value
|
||||
is modified. Otherwise, a new label is created.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ NAME
|
|||
gcloud alpha bms nfs-shares update - update a Bare Metal Solution NFS share
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms nfs-shares update (NFS_SHARE : --region=REGION)
|
||||
gcloud alpha bms nfs-shares update (NFS_SHARE : --region=REGION) [--async]
|
||||
[--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -57,6 +57,10 @@ POSITIONAL ARGUMENTS
|
|||
▸ provide the argument --region on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--update-labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to update. If a label exists, its value
|
||||
is modified. Otherwise, a new label is created.
|
||||
|
|
|
|||
|
|
@ -19,9 +19,6 @@ GROUPS
|
|||
(ALPHA) Manage bare metal logical unit numbers (LUNs) in Bare Metal
|
||||
Solution.
|
||||
|
||||
snapshots
|
||||
(ALPHA) Manage snapshots for Bare Metal Solution volumes.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
|
|
@ -31,12 +28,6 @@ COMMANDS
|
|||
list
|
||||
(ALPHA) List Bare Metal Solution volumes in a project.
|
||||
|
||||
restore
|
||||
(ALPHA) Restore a Bare Metal Solution volume to an existing snapshot.
|
||||
|
||||
snapshot
|
||||
(ALPHA) Create a snapshot of a Bare Metal Solution volume.
|
||||
|
||||
update
|
||||
(ALPHA) Update a Bare Metal Solution volume.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,66 +0,0 @@
|
|||
NAME
|
||||
gcloud alpha bms volumes restore - restore a Bare Metal Solution volume to
|
||||
an existing snapshot
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes restore (VOLUME : --region=REGION)
|
||||
--snapshot=SNAPSHOT [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Restore a Bare Metal Solution volume to an existing snapshot.
|
||||
|
||||
This call returns immediately, but the restore operation may take several
|
||||
minutes to complete. To check if the operation is complete, use the
|
||||
describe command for the volume.
|
||||
|
||||
EXAMPLES
|
||||
To restore a volume named my-volume in region us-central1 to a snapshot
|
||||
named my-snapshot, run:
|
||||
|
||||
$ gcloud alpha bms volumes restore my-volume --region=us-central1 \
|
||||
--snapshot=my-snapshot
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Volume resource - volume. The arguments in this group can be used to
|
||||
specify the attributes of this resource. (NOTE) Some attributes are not
|
||||
given arguments in this group but can be set in other ways. To set the
|
||||
project attribute:
|
||||
◆ provide the argument volume on the command line with a fully
|
||||
specified name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
VOLUME
|
||||
ID of the volume or fully qualified identifier for the volume. To set
|
||||
the volume attribute:
|
||||
▸ provide the argument volume on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--region=REGION
|
||||
Region of the resource. To set the region attribute:
|
||||
▸ provide the argument volume on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --region on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--snapshot=SNAPSHOT
|
||||
Name of the snapshot to restore.
|
||||
|
||||
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
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
NAME
|
||||
gcloud alpha bms volumes snapshot - create a snapshot of a Bare Metal
|
||||
Solution volume
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes snapshot (VOLUME : --region=REGION)
|
||||
[--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create a snapshot of a Bare Metal Solution volume.
|
||||
|
||||
EXAMPLES
|
||||
To create a snapshot of a volume named my-volume in region us-central1 with
|
||||
the description my-description, run:
|
||||
|
||||
$ gcloud alpha bms volumes snapshot my-volume --region=us-central1 \
|
||||
--description=my-description
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Volume resource - volume. The arguments in this group can be used to
|
||||
specify the attributes of this resource. (NOTE) Some attributes are not
|
||||
given arguments in this group but can be set in other ways. To set the
|
||||
project attribute:
|
||||
◆ provide the argument volume on the command line with a fully
|
||||
specified name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
VOLUME
|
||||
ID of the volume or fully qualified identifier for the volume. To set
|
||||
the volume attribute:
|
||||
▸ provide the argument volume on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--region=REGION
|
||||
Region of the resource. To set the region attribute:
|
||||
▸ provide the argument volume on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --region on the command line.
|
||||
|
||||
FLAGS
|
||||
--description=DESCRIPTION
|
||||
Textual description of the snapshot.
|
||||
|
||||
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
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -1,64 +0,0 @@
|
|||
NAME
|
||||
gcloud alpha bms volumes snapshots delete - delete a Bare Metal Solution
|
||||
volume snapshot
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes snapshots delete
|
||||
(SNAPSHOT : --region=REGION --volume=VOLUME) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete a Bare Metal Solution volume snapshot.
|
||||
|
||||
EXAMPLES
|
||||
To delete a snapshot called my-snapshot on volume my-volume in region
|
||||
us-central1, run:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots delete my-snapshot \
|
||||
--region=us-central1 --volume=my-volume
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Snapshot resource - snapshot. The arguments in this group can be used to
|
||||
specify the attributes of this resource. (NOTE) Some attributes are not
|
||||
given arguments in this group but can be set in other ways. To set the
|
||||
project attribute:
|
||||
◆ provide the argument snapshot on the command line with a fully
|
||||
specified name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
SNAPSHOT
|
||||
ID of the snapshot or fully qualified identifier for the snapshot. To
|
||||
set the snapshot attribute:
|
||||
▸ provide the argument snapshot on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--region=REGION
|
||||
Region of the resource. To set the region attribute:
|
||||
▸ provide the argument snapshot on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --region on the command line.
|
||||
|
||||
--volume=VOLUME
|
||||
Bare Metal Solution volume. To set the volume attribute:
|
||||
▸ provide the argument snapshot on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --volume on the command line.
|
||||
|
||||
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
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -1,64 +0,0 @@
|
|||
NAME
|
||||
gcloud alpha bms volumes snapshots describe - describe a Bare Metal
|
||||
Solution volume snapshot
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes snapshots describe
|
||||
(SNAPSHOT : --region=REGION --volume=VOLUME) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe a Bare Metal Solution volume snapshot.
|
||||
|
||||
EXAMPLES
|
||||
To get a description of a snapshot called my-snapshot on volume my-volume
|
||||
in region us-central1, run:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots describe my-snapshot \
|
||||
--region=us-central1 --volume=my-volume
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Snapshot resource - snapshot. The arguments in this group can be used to
|
||||
specify the attributes of this resource. (NOTE) Some attributes are not
|
||||
given arguments in this group but can be set in other ways. To set the
|
||||
project attribute:
|
||||
◆ provide the argument snapshot on the command line with a fully
|
||||
specified name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
SNAPSHOT
|
||||
ID of the snapshot or fully qualified identifier for the snapshot. To
|
||||
set the snapshot attribute:
|
||||
▸ provide the argument snapshot on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--region=REGION
|
||||
Region of the resource. To set the region attribute:
|
||||
▸ provide the argument snapshot on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --region on the command line.
|
||||
|
||||
--volume=VOLUME
|
||||
Bare Metal Solution volume. To set the volume attribute:
|
||||
▸ provide the argument snapshot on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --volume on the command line.
|
||||
|
||||
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
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
NAME
|
||||
gcloud alpha bms volumes snapshots - manage snapshots for Bare Metal
|
||||
Solution volumes
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes snapshots COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage snapshots for Bare Metal Solution volumes.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
delete
|
||||
(ALPHA) Delete a Bare Metal Solution volume snapshot.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe a Bare Metal Solution volume snapshot.
|
||||
|
||||
list
|
||||
(ALPHA) List snapshots for a Bare Metal Solution volume.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
NAME
|
||||
gcloud alpha bms volumes snapshots list - list snapshots for a Bare Metal
|
||||
Solution volume
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes snapshots list (--volume=VOLUME : --region=REGION)
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List snapshots for a Bare Metal Solution volume.
|
||||
|
||||
EXAMPLES
|
||||
To list snapshots on volume my-volume in region us-central1, run:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots list --region=us-central1 \
|
||||
--volume=my-volume
|
||||
|
||||
REQUIRED FLAGS
|
||||
Volume resource - The Bare Metal Solution volume to list snapshots of. The
|
||||
arguments in this group can be used to specify the attributes of this
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways. To set the project attribute:
|
||||
◆ provide the argument --volume on the command line with a fully
|
||||
specified name;
|
||||
◆ set the property core/project;
|
||||
◆ provide the argument --project on the command line.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--volume=VOLUME
|
||||
ID of the volume or fully qualified identifier for the volume. To set
|
||||
the volume attribute:
|
||||
▸ provide the argument --volume on the command line.
|
||||
|
||||
This flag must be specified if any of the other arguments in this
|
||||
group are specified.
|
||||
|
||||
--region=REGION
|
||||
Region of the resource. To set the region attribute:
|
||||
▸ provide the argument --volume on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --region on the command line.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --filter, --limit.
|
||||
|
||||
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
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -2,7 +2,7 @@ NAME
|
|||
gcloud alpha bms volumes update - update a Bare Metal Solution volume
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha bms volumes update (VOLUME : --region=REGION)
|
||||
gcloud alpha bms volumes update (VOLUME : --region=REGION) [--async]
|
||||
[--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -50,6 +50,10 @@ POSITIONAL ARGUMENTS
|
|||
▸ provide the argument --region on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--update-labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to update. If a label exists, its value
|
||||
is modified. Otherwise, a new label is created.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue