1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 23:08:48 +00:00

gcloud: Wed Apr 30 11:00:00 UTC 2025

This commit is contained in:
Automated 2025-04-30 11:00:00 +00:00
parent 4d8dd33b3e
commit b03a332ad8
196 changed files with 7097 additions and 313 deletions

View file

@ -0,0 +1,74 @@
NAME
gcloud beta compute interconnects attachments groups update - update a
Compute Engine interconnect attachment group
SYNOPSIS
gcloud beta compute interconnects attachments groups update NAME
[--attachments=[INTERCONNECT_ATTACHMENT,...]]
[--description=DESCRIPTION]
[--intended-availability-sla=INTENDED_AVAILABILITY_SLA]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) gcloud beta compute interconnects attachments groups update is used
to update interconnect attachment groups.
For an example, refer to the EXAMPLES section below.
EXAMPLES
To update an interconnect attachment group example-attachment-group's
intended availability SLA to PRODUCTION_CRITICAL, run:
$ gcloud beta compute interconnects attachments groups update \
example-attachment-group \
--intended-availability-sla=PRODUCTION_CRITICAL
To update an interconnect attachment group example-attachment-group's
description to "example attachment group description", run:
$ gcloud beta compute interconnects attachments groups update \
example-attachment-group \
--description="example attachment group description"
To update an interconnect attachment group example-attachment-group's
member attachments to attachment-1 and attachment-2, run:
$ gcloud beta compute interconnects attachments groups update \
example-attachment-group \
--attachments=region-1/attachment-1,region-2/attachment-2
Although you can add or remove member attachments using this command, it is
recommended to add or remove member attachments using the add-members and
remove-members commands.
POSITIONAL ARGUMENTS
NAME
Name of the interconnect attachment group to update.
FLAGS
--attachments=[INTERCONNECT_ATTACHMENT,...]
Member interconnect attachments to add to the interconnect attachment
group initially.
--description=DESCRIPTION
An optional, textual description for the interconnect attachment group.
--intended-availability-sla=INTENDED_AVAILABILITY_SLA
The availability SLA that the user intends this group to support.
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. These
variants are also available:
$ gcloud compute interconnects attachments groups update
$ gcloud alpha compute interconnects attachments groups update