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:
parent
4d8dd33b3e
commit
b03a332ad8
196 changed files with 7097 additions and 313 deletions
68
gcloud/compute/interconnects/attachments/groups/create
Normal file
68
gcloud/compute/interconnects/attachments/groups/create
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
NAME
|
||||
gcloud compute interconnects attachments groups create - create a Compute
|
||||
Engine interconnect attachment group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud compute interconnects attachments groups create NAME
|
||||
--intended-availability-sla=INTENDED_AVAILABILITY_SLA
|
||||
[--attachments=[INTERCONNECT_ATTACHMENT,...]]
|
||||
[--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
gcloud compute interconnects attachments groups create is used to create
|
||||
interconnect attachment groups. An interconnect attachment group connects a
|
||||
set of redundant interconnect attachments between Google and the customer.
|
||||
|
||||
For an example, refer to the EXAMPLES section below.
|
||||
|
||||
EXAMPLES
|
||||
To create an interconnect attachment group capable of PRODUCTION_CRITICAL,
|
||||
run:
|
||||
|
||||
$ gcloud compute interconnects attachments groups create \
|
||||
example-attachment-group \
|
||||
--intended-availability-sla=PRODUCTION_CRITICAL \
|
||||
--description="Example interconnect attachment group"
|
||||
|
||||
It is easy to add members to an existing interconnect attachment group
|
||||
after creation using the add-members command.
|
||||
|
||||
To create an interconnect attachment group capable of
|
||||
PRODUCTION_NON_CRITICAL, with two members at creation time, run:
|
||||
|
||||
$ gcloud compute interconnects attachments groups create \
|
||||
example-attachment-group \
|
||||
--intended-availability-sla=PRODUCTION_NON_CRITICAL \
|
||||
--attachments=region-1/attachment-1,region-2/attachment-2
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the interconnect attachment group to create.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--intended-availability-sla=INTENDED_AVAILABILITY_SLA
|
||||
The availability SLA that the user intends this group to support.
|
||||
|
||||
OPTIONAL 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.
|
||||
|
||||
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 interconnects attachments groups create
|
||||
|
||||
$ gcloud beta compute interconnects attachments groups create
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue