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

gcloud: Thu Jul 17 11:02:31 UTC 2025

This commit is contained in:
Automated 2025-07-17 11:02:31 +00:00
parent e53f7148d8
commit fe3a430c1d
365 changed files with 6027 additions and 1863 deletions

View file

@ -1,6 +1,6 @@
NAME
gcloud compute reservations sub-blocks describe - describe a Compute Engine
reservation sub block
reservation sub-block
SYNOPSIS
gcloud compute reservations sub-blocks describe RESERVATION
@ -8,11 +8,11 @@ SYNOPSIS
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Describe a Compute Engine reservation sub block.
Describe a Compute Engine reservation sub-block.
EXAMPLES
To describe a reservation sub block in reservation exr1 in my-zone with
block name my-block and sub block name my-sub-block, run:
To describe a reservation sub-block in reservation exr1 in my-zone with
block name my-block and sub-block name my-sub-block, run:
$ gcloud compute reservations sub-blocks describe exr1 \
--zone=my-zone --block-name=my-block \

View file

@ -17,10 +17,13 @@ COMMANDS
COMMAND is one of the following:
describe
Describe a Compute Engine reservation sub block.
Describe a Compute Engine reservation sub-block.
list
List Compute Engine reservation sub blocks.
List Compute Engine reservation sub-blocks.
perform-maintenance
Perform maintenance on a reservation sub-block.
NOTES
These variants are also available:

View file

@ -1,6 +1,6 @@
NAME
gcloud compute reservations sub-blocks list - list Compute Engine
reservation sub blocks
reservation sub-blocks
SYNOPSIS
gcloud compute reservations sub-blocks list RESERVATION
@ -10,10 +10,10 @@ SYNOPSIS
DESCRIPTION
gcloud compute reservations sub-blocks list displays all Compute Engine
reservation sub blocks in an extended reservation's block.
reservation sub-blocks in an extended reservation's block.
EXAMPLES
To list all reservation sub blocks in an extended reservation's block
To list all reservation sub-blocks in an extended reservation's block
my-block in table form, run:
$ gcloud compute reservations sub-blocks list extended-reservation \

View file

@ -0,0 +1,67 @@
NAME
gcloud compute reservations sub-blocks perform-maintenance - perform
maintenance on a reservation sub-block
SYNOPSIS
gcloud compute reservations sub-blocks perform-maintenance RESERVATION
--block-name=BLOCK_NAME --sub-block-name=SUB_BLOCK_NAME [--zone=ZONE]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Perform maintenance on a reservation sub-block.
EXAMPLES
To perform maintenance on a reservation sub-block in reservation exr-1 in
ZONE with block name block-1 and sub-block name sub-block-1, run:
$ gcloud compute reservations sub-blocks perform-maintenance exr-1 \
--zone=ZONE --block-name=block-1 --sub-block-name=sub-block-1
POSITIONAL ARGUMENTS
RESERVATION
Name of the reservation to perform-maintenance.
REQUIRED FLAGS
--block-name=BLOCK_NAME
The name of the reservation block.
--sub-block-name=SUB_BLOCK_NAME
The name of the reservation sub block.
OPTIONAL FLAGS
--zone=ZONE
Zone of the reservation to perform-maintenance. If not specified and
the compute/zone property isn't set, you might be prompted to select a
zone (interactive mode only).
To avoid prompting when this flag is omitted, you can set the
compute/zone property:
$ gcloud config set compute/zone ZONE
A list of zones can be fetched by running:
$ gcloud compute zones list
To unset the property, run:
$ gcloud config unset compute/zone
Alternatively, the zone can be stored in the environment variable
CLOUDSDK_COMPUTE_ZONE.
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
These variants are also available:
$ gcloud alpha compute reservations sub-blocks perform-maintenance
$ gcloud beta compute reservations sub-blocks perform-maintenance