File: //snap/google-cloud-cli/current/help/man/man1/gcloud_beta_compute_addresses_update.1
.TH "GCLOUD_BETA_COMPUTE_ADDRESSES_UPDATE" 1
.SH "NAME"
.HP
gcloud beta compute addresses update \- update a Compute Engine address
.SH "SYNOPSIS"
.HP
\f5gcloud beta compute addresses update\fR \fINAME\fR [\fB\-\-update\-labels\fR=[\fIKEY\fR=\fIVALUE\fR,...]] [\fB\-\-clear\-labels\fR\ |\ \fB\-\-remove\-labels\fR=[\fIKEY\fR,...]] [\fB\-\-global\fR\ |\ \fB\-\-region\fR=\fIREGION\fR] [\fIGCLOUD_WIDE_FLAG\ ...\fR]
.SH "DESCRIPTION"
\fB(BETA)\fR \fBgcloud beta compute addresses update\fR updates labels for a
Compute Engine address.
.SH "EXAMPLES"
To add/update labels 'k0' and 'k1' and remove labels with key 'k3' for address
\'example\-address', run:
.RS 2m
$ gcloud beta compute addresses update example\-address \e
\-\-region=us\-central1 \-\-update\-labels=k0=value1,k1=value2 \e
\-\-remove\-labels=k3
.RE
Labels can be used to identify the address and to filter them as in:
.RS 2m
$ gcloud beta compute addresses list \-\-filter='labels.k1:value2'
.RE
To list existing labels for address 'example\-address', run:
.RS 2m
$ gcloud beta compute addresses describe example\-address \e
\-\-format="default(labels)"
.RE
.SH "POSITIONAL ARGUMENTS"
.RS 2m
.TP 2m
\fINAME\fR
Name of the address to operate on.
.RE
.sp
.SH "FLAGS"
.RS 2m
.TP 2m
\fB\-\-update\-labels\fR=[\fIKEY\fR=\fIVALUE\fR,...]
List of label KEY=VALUE pairs to update. If a label exists, its value is
modified. Otherwise, a new label is created.
Keys must start with a lowercase character and contain only hyphens (\f5\-\fR),
underscores (\f5_\fR), lowercase characters, and numbers. Values must contain
only hyphens (\f5\-\fR), underscores (\f5_\fR), lowercase characters, and
numbers.
.TP 2m
At most one of these can be specified:
.RS 2m
.TP 2m
\fB\-\-clear\-labels\fR
Remove all labels. If \f5\-\-update\-labels\fR is also specified then
\f5\-\-clear\-labels\fR is applied first.
For example, to remove all labels:
.RS 2m
$ gcloud beta compute addresses update \-\-clear\-labels
.RE
To remove all existing labels and create two new labels, \f5\fIfoo\fR\fR and
\f5\fIbaz\fR\fR:
.RS 2m
$ gcloud beta compute addresses update \-\-clear\-labels \e
\-\-update\-labels foo=bar,baz=qux
.RE
.TP 2m
\fB\-\-remove\-labels\fR=[\fIKEY\fR,...]
List of label keys to remove. If a label does not exist it is silently ignored.
If \f5\-\-update\-labels\fR is also specified then \f5\-\-update\-labels\fR is
applied first.
.RE
.sp
.TP 2m
At most one of these can be specified:
.RS 2m
.TP 2m
\fB\-\-global\fR
If set, the address is global.
.TP 2m
\fB\-\-region\fR=\fIREGION\fR
Region of the address to operate on. Overrides the default \fBcompute/region\fR
property value for this command invocation.
.RE
.RE
.sp
.SH "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 \fB$ gcloud help\fR for details.
.SH "NOTES"
This command is currently in beta and might change without notice. This variant
is also available:
.RS 2m
$ gcloud alpha compute addresses update
.RE