mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-19 07:15:23 +00:00
gcloud: Tue Oct 18 11:38:19 UTC 2022
This commit is contained in:
parent
389ff42bae
commit
5c08d21169
159 changed files with 4170 additions and 656 deletions
|
|
@ -18,6 +18,9 @@ GROUPS
|
|||
luns
|
||||
Manage bare metal logical unit numbers (LUNs) in Bare Metal Solution.
|
||||
|
||||
snapshots
|
||||
Manage snapshots for Bare Metal Solution volumes.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
|
|
@ -27,6 +30,12 @@ COMMANDS
|
|||
list
|
||||
List Bare Metal Solution volumes in a project.
|
||||
|
||||
restore
|
||||
Restore a Bare Metal Solution boot volume from an existing snapshot.
|
||||
|
||||
snapshot
|
||||
Create a snapshot of a Bare Metal Solution boot volume.
|
||||
|
||||
update
|
||||
Update a Bare Metal Solution volume.
|
||||
|
||||
|
|
|
|||
66
gcloud/bms/volumes/restore
Normal file
66
gcloud/bms/volumes/restore
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud bms volumes restore - restore a Bare Metal Solution boot volume from
|
||||
an existing snapshot
|
||||
|
||||
SYNOPSIS
|
||||
gcloud bms volumes restore (VOLUME : --region=REGION) --snapshot=SNAPSHOT
|
||||
[--async] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Restore a Bare Metal Solution boot volume from an existing snapshot.
|
||||
|
||||
EXAMPLES
|
||||
To restore a boot volume named my-boot-volume in region us-central1 from
|
||||
snapshot named my-snapshot, run:
|
||||
|
||||
$ gcloud bms volumes restore my-boot-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 argument 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.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
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 variant is also available:
|
||||
|
||||
$ gcloud alpha bms volumes restore
|
||||
|
||||
65
gcloud/bms/volumes/snapshot
Normal file
65
gcloud/bms/volumes/snapshot
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
NAME
|
||||
gcloud bms volumes snapshot - create a snapshot of a Bare Metal Solution
|
||||
boot volume
|
||||
|
||||
SYNOPSIS
|
||||
gcloud bms volumes snapshot (VOLUME : --region=REGION)
|
||||
--description=DESCRIPTION --snapshot-name=SNAPSHOT_NAME
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a snapshot of a Bare Metal Solution boot volume.
|
||||
|
||||
EXAMPLES
|
||||
To create a snapshot of a boot volume named my-boot-volume in region
|
||||
us-central1 with the name my-snapshot and description my-description, run:
|
||||
|
||||
$ gcloud bms volumes snapshot my-boot-volume --region=us-central1 \
|
||||
--snapshot-name=my-snapshot --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 argument 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
|
||||
--description=DESCRIPTION
|
||||
Textual description of the created snapshot.
|
||||
|
||||
--snapshot-name=SNAPSHOT_NAME
|
||||
Name to assign to the created 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 variant is also available:
|
||||
|
||||
$ gcloud alpha bms volumes snapshot
|
||||
|
||||
63
gcloud/bms/volumes/snapshots/delete
Normal file
63
gcloud/bms/volumes/snapshots/delete
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
NAME
|
||||
gcloud bms volumes snapshots delete - delete a Bare Metal Solution boot
|
||||
volume snapshot
|
||||
|
||||
SYNOPSIS
|
||||
gcloud bms volumes snapshots delete
|
||||
(SNAPSHOT : --region=REGION --volume=VOLUME) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Delete a Bare Metal Solution boot volume snapshot.
|
||||
|
||||
EXAMPLES
|
||||
To delete a snapshot called my-snapshot on boot volume my-boot-volume in
|
||||
region us-central1, run:
|
||||
|
||||
$ gcloud bms volumes snapshots delete my-snapshot \
|
||||
--region=us-central1 --volume=my-boot-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 argument 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 variant is also available:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots delete
|
||||
|
||||
63
gcloud/bms/volumes/snapshots/describe
Normal file
63
gcloud/bms/volumes/snapshots/describe
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
NAME
|
||||
gcloud bms volumes snapshots describe - describe a Bare Metal Solution boot
|
||||
volume snapshot
|
||||
|
||||
SYNOPSIS
|
||||
gcloud bms volumes snapshots describe
|
||||
(SNAPSHOT : --region=REGION --volume=VOLUME) [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Describe a Bare Metal Solution boot volume snapshot.
|
||||
|
||||
EXAMPLES
|
||||
To get a description of a snapshot called my-snapshot on boot volume
|
||||
my-boot-volume in region us-central1, run:
|
||||
|
||||
$ gcloud bms volumes snapshots describe my-snapshot \
|
||||
--region=us-central1 --volume=my-boot-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 argument 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 variant is also available:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots describe
|
||||
|
||||
32
gcloud/bms/volumes/snapshots/help
Normal file
32
gcloud/bms/volumes/snapshots/help
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
NAME
|
||||
gcloud bms volumes snapshots - manage snapshots for Bare Metal Solution
|
||||
volumes
|
||||
|
||||
SYNOPSIS
|
||||
gcloud bms volumes snapshots COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
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
|
||||
Delete a Bare Metal Solution boot volume snapshot.
|
||||
|
||||
describe
|
||||
Describe a Bare Metal Solution boot volume snapshot.
|
||||
|
||||
list
|
||||
List snapshots for a Bare Metal Solution boot volume.
|
||||
|
||||
NOTES
|
||||
This variant is also available:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots
|
||||
|
||||
69
gcloud/bms/volumes/snapshots/list
Normal file
69
gcloud/bms/volumes/snapshots/list
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
NAME
|
||||
gcloud bms volumes snapshots list - list snapshots for a Bare Metal
|
||||
Solution boot volume
|
||||
|
||||
SYNOPSIS
|
||||
gcloud bms volumes snapshots list (--volume=VOLUME : --region=REGION)
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List snapshots for a Bare Metal Solution boot volume.
|
||||
|
||||
EXAMPLES
|
||||
To list snapshots on boot volume my-boot-volume in region us-central1, run:
|
||||
|
||||
$ gcloud bms volumes snapshots list --region=us-central1 \
|
||||
--volume=my-boot-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 argument 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 variant is also available:
|
||||
|
||||
$ gcloud alpha bms volumes snapshots list
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue