1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed Jul 20 08:59:31 UTC 2022

This commit is contained in:
Automated 2022-07-20 08:59:31 +00:00
parent 879929cbc6
commit 380c3aa29f
Failed to extract signature
83 changed files with 1945 additions and 446 deletions

View file

@ -3,6 +3,7 @@ NAME
SYNOPSIS
gcloud bms instances update (INSTANCE : --region=REGION) [--async]
[--[no-]enable-hyperthreading] [--os-image=OS_IMAGE]
[--update-labels=[KEY=VALUE,...]]
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
@ -56,6 +57,13 @@ FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--[no-]enable-hyperthreading
Enable hyperthreading for the server. Use --enable-hyperthreading to
enable and --no-enable-hyperthreading to disable.
--os-image=OS_IMAGE
OS image to install on the server.
--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.

View file

@ -21,6 +21,10 @@ COMMANDS
list
List Bare Metal Solution networks in a project.
list-ip-reservations
List IP range reservations for Bare Metal Solution networks in a
project.
update
Update a Bare Metal Solution network.

View file

@ -0,0 +1,62 @@
NAME
gcloud bms networks list-ip-reservations - list IP range reservations for
Bare Metal Solution networks in a project
SYNOPSIS
gcloud bms networks list-ip-reservations --region=REGION
[--filter=EXPRESSION] [--limit=LIMIT] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
List IP range reservations for Bare Metal Solution networks in a project.
EXAMPLES
To list IP range reservations for networks in the region us-central1, run:
$ gcloud bms networks list-ip-reservations --region=us-central1
Or:
To list all IP range reservations in the project, run:
$ gcloud bms networks list-ip-reservations
FLAGS
Region resource - region. This represents a Cloud 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 --region on the command line with a fully
specified name;
◆ set the property core/project;
◆ provide the argument --project on the command line.
--region=REGION
ID of the region or fully qualified identifier for the region. To set
the region attribute:
▸ 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, --sort-by, --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, --sort-by, --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 networks list-ip-reservations

View file

@ -4,6 +4,9 @@ NAME
SYNOPSIS
gcloud bms networks update (NETWORK : --region=REGION) [--async]
[--update-labels=[KEY=VALUE,...]]
[--add-ip-range-reservation=[PROPERTY=VALUE,...]
| --clear-ip-range-reservations
| --remove-ip-range-reservation=[PROPERTY=VALUE,...]]
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
@ -65,6 +68,36 @@ FLAGS
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
At most one of these can be specified:
--add-ip-range-reservation=[PROPERTY=VALUE,...]
Add a reservation of a range of IP addresses in the network.
start_address
The first address of this reservation block. Must be specified as
a single IPv4 address, e.g. 10.1.2.2.
end_address
The last address of this reservation block, inclusive. I.e., for
cases when reservations are only single addresses, end_address
and start_address will be the same. Must be specified as a single
IPv4 address, e.g. 10.1.2.2.
note
A note about this reservation, intended for human consumption.
--clear-ip-range-reservations
Removes all IP range reservations in the network.
--remove-ip-range-reservation=[PROPERTY=VALUE,...]
Remove a reservation of a range of IP addresses in the network.
start_address
The first address of the reservation block to remove.
end_address
The last address of the reservation block to remove.
At most one of these can be specified:
--clear-labels

View file

@ -3,7 +3,8 @@ NAME
operation
SYNOPSIS
gcloud bms operations describe OPERATION [GCLOUD_WIDE_FLAG ...]
gcloud bms operations describe (OPERATION : --region=REGION)
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Display all metadata associated with a Bare Metal Solution operation given
@ -16,7 +17,14 @@ EXAMPLES
POSITIONAL ARGUMENTS
Operation resource - Arguments and flags that specify the Bare Metal
Solution operation you want to describe. This represents a Cloud resource.
Solution operation you want to describe. 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 operation 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.
@ -25,6 +33,16 @@ POSITIONAL ARGUMENTS
To set the operation attribute:
▸ provide the argument operation 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 operation on the command line with a fully
specified name;
▸ provide the argument --region on the command line;
▸ global is the only supported location.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
@ -34,5 +52,5 @@ GCLOUD WIDE FLAGS
Run $ gcloud help for details.
API REFERENCE
This command uses the baremetalsolution/v1 API. The full documentation for
This command uses the baremetalsolution/v2 API. The full documentation for
this API can be found at: https://cloud.google.com/bare-metal

View file

@ -3,7 +3,8 @@ NAME
operation until it completes
SYNOPSIS
gcloud bms operations wait OPERATION [GCLOUD_WIDE_FLAG ...]
gcloud bms operations wait (OPERATION : --region=REGION)
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Poll a long-running Bare Metal Solution operation until it completes. When
@ -18,7 +19,14 @@ EXAMPLES
POSITIONAL ARGUMENTS
Operation resource - Arguments and flags that specify the Bare Metal
Solution operation you want to wait for. This represents a Cloud resource.
Solution operation you want to wait for. 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 operation 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.
@ -27,6 +35,16 @@ POSITIONAL ARGUMENTS
To set the operation attribute:
▸ provide the argument operation 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 operation on the command line with a fully
specified name;
▸ provide the argument --region on the command line;
▸ global is the only supported location.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
@ -36,5 +54,5 @@ GCLOUD WIDE FLAGS
Run $ gcloud help for details.
API REFERENCE
This command uses the baremetalsolution/v1 API. The full documentation for
This command uses the baremetalsolution/v2 API. The full documentation for
this API can be found at: https://cloud.google.com/bare-metal