gcloud_compute_interconnects_create (1)
NAME
- gcloud compute interconnects create - create a Google Compute Engine interconnect
SYNOPSIS
-
gcloud compute interconnects create NAME --customer-name=CUSTOMER_NAME --interconnect-type=INTERCONNECT_TYPE --link-type=LINK_TYPE --location=LOCATION --requested-link-count=REQUESTED_LINK_COUNT [--admin-enabled] [--description=DESCRIPTION] [--noc-contact-email=NOC_CONTACT_EMAIL] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
gcloud compute interconnects create is used to create interconnects. An
For an example, refer to the EXAMPLES section below.
POSITIONAL ARGUMENTS
-
- NAME
-
Name of the interconnect to create.
REQUIRED FLAGS
-
- --customer-name=CUSTOMER_NAME
-
Customer name to put in the Letter of Authorization as the party authorized to
request an interconnect.
- --interconnect-type=INTERCONNECT_TYPE
-
Type of the interconnect. INTERCONNECT_TYPE must be one of:
-
- DEDICATED
- Dedicated private interconnect.
- PARTNER
- Partner interconnect. Only available to approved partners.
-
- --link-type=LINK_TYPE
-
Type of the link for the interconnect. LINK_TYPE must be (currently only
one value is supported):
-
- LINK_TYPE_ETHERNET_10G_LR
- 10Gbps Ethernet, LR Optics.
-
- --location=LOCATION
-
The location for the interconnect. The locations can be listed by using the
gcloud compute interconnects locations list command to find the
appropriate location to use when creating an interconnect.
- --requested-link-count=REQUESTED_LINK_COUNT
-
Target number of physical links in the link bundle.
OPTIONAL FLAGS
-
- --admin-enabled
-
Administrative status of the interconnect. If not provided on creation, defaults
to enabled. When this is enabled, the interconnect is operational and will carry
traffic across any functioning linked interconnect attachments. Use
--no-admin-enabled to disable it.
- --description=DESCRIPTION
-
An optional, textual description for the interconnect.
- --noc-contact-email=NOC_CONTACT_EMAIL
-
Email address to contact the customer NOC for operations and maintenance
notifications regarding this interconnect.
GCLOUD WIDE FLAGS
These flags are available to all commands: --account, --configuration, --flags-file, --flatten, --format, --help, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity. Run $ gcloud help for details.
EXAMPLES
To create an interconnect of type DEDICATED, run:
-
$ gcloud compute interconnects create example-interconnect \
--customer-name "Example Customer Name" \
--interconnect-type DEDICATED \
--link-type LINK_TYPE_ETHERNET_10G_LR \
--location example-zone1-1 --requested-link-count 1 \
--noc-contact-email noc@example.com \
--description "Example interconnect"
NOTES
These variants are also available:
- $ gcloud alpha compute interconnects create $ gcloud beta compute interconnects create