mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +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
67
gcloud/compute/interconnects/groups/create
Normal file
67
gcloud/compute/interconnects/groups/create
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
NAME
|
||||
gcloud compute interconnects groups create - create a Compute Engine
|
||||
interconnect group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud compute interconnects groups create NAME
|
||||
--intended-topology-capability=INTENDED_TOPOLOGY_CAPABILITY
|
||||
[--description=DESCRIPTION] [--interconnects=[INTERCONNECT,...]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
gcloud compute interconnects groups create is used to create interconnect
|
||||
groups. An interconnect group connects a set of redundant interconnects
|
||||
between Google and the customer.
|
||||
|
||||
For an example, refer to the EXAMPLES section below.
|
||||
|
||||
EXAMPLES
|
||||
To create an interconnect group capable of PRODUCTION_CRITICAL, run:
|
||||
|
||||
$ gcloud compute interconnects groups create \
|
||||
example-interconnect-group \
|
||||
--intended-topology-capability=PRODUCTION_CRITICAL \
|
||||
--description="Example interconnect group"
|
||||
|
||||
It is easy to add members to an existing interconnect group after creation
|
||||
using the add-members command.
|
||||
|
||||
To create an interconnect group capable of PRODUCTION_NON_CRITICAL, with
|
||||
two members at creation time, run:
|
||||
|
||||
$ gcloud compute interconnects groups create \
|
||||
example-interconnect-group \
|
||||
--intended-topology-capability=PRODUCTION_NON_CRITICAL \
|
||||
--interconnects=interconnect-1,interconnect-2
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the interconnect group to create.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--intended-topology-capability=INTENDED_TOPOLOGY_CAPABILITY
|
||||
The reliability the user intends this group to be capable of, in terms
|
||||
of the Interconnect product SLAs.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--description=DESCRIPTION
|
||||
An optional, textual description for the interconnect group.
|
||||
|
||||
--interconnects=[INTERCONNECT,...]
|
||||
Member interconnects to add to the interconnect group initially.
|
||||
|
||||
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 groups create
|
||||
|
||||
$ gcloud beta compute interconnects groups create
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue