1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-17 06:11:59 +00:00

gcloud: Wed Oct 25 11:42:23 UTC 2023

This commit is contained in:
Automated 2023-10-25 11:42:23 +00:00
parent a15665661a
commit d34c41a2ce
305 changed files with 5549 additions and 699 deletions

View file

@ -0,0 +1,53 @@
NAME
gcloud beta compute project-zonal-metadata add - add or update project
zonal metadata
SYNOPSIS
gcloud beta compute project-zonal-metadata add
--metadata=KEY=VALUE,[KEY=VALUE,...] --zone=ZONE [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) gcloud beta compute project-zonal-metadata add is used to add or
update project zonal metadata for your VM instances. Project zonal metadata
values propagate to all VMs within the specified zone. Every VM has access
to a metadata server that you can use to query the configured project zonal
metadata values. To set metadata for individual instances, use gcloud
compute instances add-metadata. For information about metadata, see
https://cloud.google.com/compute/docs/metadata.
Only the metadata keys that you provide in the command get mutated. All
other existing metadata entries remain the same.
EXAMPLES
To set the project zonal metadata with key=value in the zone us-central1-a
for the project my-gcp-project, run:
$ gcloud beta compute project-zonal-metadata add \
--metadata=key=value --zone=us-central1-a \
--project=my-gcp-project
For more information and examples for setting project zonal metadata, see
https://cloud.google.com/compute/docs/metadata/setting-custom-metadata#set-custom-project-zonal-metadata
REQUIRED FLAGS
--metadata=KEY=VALUE,[KEY=VALUE,...]
The project zonal metadata key-value pairs that you want to add or
update
--zone=ZONE
The zone in which you want to add or update project zonal metadata
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 beta and might change without notice. This
variant is also available:
$ gcloud alpha compute project-zonal-metadata add

View file

@ -0,0 +1,36 @@
NAME
gcloud beta compute project-zonal-metadata describe - describe project
zonal metadata
SYNOPSIS
gcloud beta compute project-zonal-metadata describe --zone=ZONE
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Describe project zonal metadata.
EXAMPLES
To describe the project zonal metadata in the zone us-central1-a for the
project my-gcp-project, run:
$ gcloud beta compute project-zonal-metadata describe \
--zone=us-central1-a --project=my-gcp-project
REQUIRED FLAGS
--zone=ZONE
Zone for project zonal metadata
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 beta and might change without notice. This
variant is also available:
$ gcloud alpha compute project-zonal-metadata describe

View file

@ -0,0 +1,33 @@
NAME
gcloud beta compute project-zonal-metadata - describe and update project
zonal metadata
SYNOPSIS
gcloud beta compute project-zonal-metadata COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Describe and update Compute Engine project zonal metadata.
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
add
(BETA) Add or update project zonal metadata.
describe
(BETA) Describe project zonal metadata.
remove
(BETA) Remove project zonal metadata.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha compute project-zonal-metadata

View file

@ -0,0 +1,60 @@
NAME
gcloud beta compute project-zonal-metadata remove - remove project zonal
metadata
SYNOPSIS
gcloud beta compute project-zonal-metadata remove --zone=ZONE
[--all | --keys=KEY,[KEY,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) gcloud beta compute project-zonal-metadata remove is used to remove
project zonal metadata from all VMs within the specified zone. For
information about metadata, see
https://cloud.google.com/compute/docs/metadata.
Only the metadata keys that you provide in the command get removed. All
other existing metadata entries remain the same.
After you remove a specific project zonal metadata entry, if that metadata
key has any project-wide value configured, then the VMs in the zone
automatically inherit that project-wide value.
EXAMPLES
To remove the project zonal metadata with key=value in the zone
us-central1-a for the project my-gcp-project, run:
$ gcloud beta compute project-zonal-metadata remove --keys=key \
--zone=us-central1-a --project=my-gcp-project
For more information and examples about how to remove project zonal
metadata, see
https://cloud.google.com/compute/docs/metadata/setting-custom-metadata#remove-custom-project-zonal-metadata
REQUIRED FLAGS
--zone=ZONE
The zone in which you want to remove project zonal metadata
OPTIONAL FLAGS
At most one of these can be specified:
--all
If provided, all project zonal metadata entries are removed from VM
instances in the zone.
--keys=KEY,[KEY,...]
The keys for which you want to remove project zonal metadata
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 beta and might change without notice. This
variant is also available:
$ gcloud alpha compute project-zonal-metadata remove