mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 23:08:48 +00:00
gcloud: Wed Mar 5 10:41:25 UTC 2025
This commit is contained in:
parent
a597993b2e
commit
6dc93282df
279 changed files with 4198 additions and 801 deletions
|
|
@ -69,19 +69,23 @@ OPTIONAL FLAGS
|
|||
|
||||
--candidate-cloud-router-ip-address=CANDIDATE_CLOUD_ROUTER_IP_ADDRESS
|
||||
Single IPv4 address + prefix length to be configured on the cloud
|
||||
router interface for this interconnect attachment
|
||||
router interface for this interconnect attachment. Example:
|
||||
74.133.16.1/30
|
||||
|
||||
--candidate-cloud-router-ipv6-address=CANDIDATE_CLOUD_ROUTER_IPV6_ADDRESS
|
||||
Single IPv6 address + prefix length to be configured on the cloud
|
||||
router interface for this interconnect attachment
|
||||
router interface for this interconnect attachment. Example:
|
||||
2fff:eec0:3201:0:0:0:0:1/125
|
||||
|
||||
--candidate-customer-router-ip-address=CANDIDATE_CUSTOMER_ROUTER_IP_ADDRESS
|
||||
Single IPv4 address + prefix length to be configured on the customer
|
||||
router interface for this interconnect attachment
|
||||
router interface for this interconnect attachment. Example:
|
||||
74.133.16.2/30
|
||||
|
||||
--candidate-customer-router-ipv6-address=CANDIDATE_CUSTOMER_ROUTER_IPV6_ADDRESS
|
||||
Single IPv6 address + prefix length to be configured on the customer
|
||||
router interface for this interconnect attachment
|
||||
router interface for this interconnect attachment. Example:
|
||||
2fff:eec0:3201:0:0:0:0:2/125
|
||||
|
||||
--candidate-ipv6-subnets=[IPV6_SUBNET,...]
|
||||
The candididate-ipv6-subnets field is not available.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,10 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud alpha compute interconnects attachments dedicated update NAME
|
||||
[--bandwidth=BANDWIDTH] [--candidate-ipv6-subnets=[IPV6_SUBNET,...]]
|
||||
[--bandwidth=BANDWIDTH]
|
||||
[--candidate-cloud-router-ipv6-address=CANDIDATE_CLOUD_ROUTER_IPV6_ADDRESS]
|
||||
[--candidate-customer-router-ipv6-address=CANDIDATE_CUSTOMER_ROUTER_IPV6_ADDRESS]
|
||||
[--candidate-ipv6-subnets=[IPV6_SUBNET,...]]
|
||||
[--cloud-router-ipv6-interface-id=INTERFACE_ID]
|
||||
[--customer-router-ipv6-interface-id=PEER_INTERFACE_ID]
|
||||
[--description=DESCRIPTION] [--enable-admin] [--enable-multicast]
|
||||
|
|
@ -53,6 +56,16 @@ FLAGS
|
|||
100g
|
||||
100 Gbit/s
|
||||
|
||||
--candidate-cloud-router-ipv6-address=CANDIDATE_CLOUD_ROUTER_IPV6_ADDRESS
|
||||
Single IPv6 address + prefix length to be configured on the cloud
|
||||
router interface for this interconnect attachment. Example:
|
||||
2fff:eec0:3201:0:0:0:0:1/125
|
||||
|
||||
--candidate-customer-router-ipv6-address=CANDIDATE_CUSTOMER_ROUTER_IPV6_ADDRESS
|
||||
Single IPv6 address + prefix length to be configured on the customer
|
||||
router interface for this interconnect attachment. Example:
|
||||
2fff:eec0:3201:0:0:0:0:2/125
|
||||
|
||||
--candidate-ipv6-subnets=[IPV6_SUBNET,...]
|
||||
The candididate-ipv6-subnets field is not available.
|
||||
|
||||
|
|
|
|||
135
gcloud/alpha/compute/interconnects/groups/create-members
Normal file
135
gcloud/alpha/compute/interconnects/groups/create-members
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
NAME
|
||||
gcloud alpha compute interconnects groups create-members - create new
|
||||
member interconnects in a Compute Engine interconnect group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha compute interconnects groups create-members NAME
|
||||
--interconnect=[INTERCONNECT,...] [--admin-enabled]
|
||||
[--customer-name=CUSTOMER_NAME] [--description=DESCRIPTION]
|
||||
[--facility=FACILITY]
|
||||
[--intent-mismatch-behavior=INTENT_MISMATCH_BEHAVIOR]
|
||||
[--interconnect-type=INTERCONNECT_TYPE] [--link-type=LINK_TYPE]
|
||||
[--noc-contact-email=NOC_CONTACT_EMAIL]
|
||||
[--requested-features=[FEATURES,...]]
|
||||
[--requested-link-count=REQUESTED_LINK_COUNT] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) gcloud alpha compute interconnects groups create-members is used to
|
||||
create new member interconnects in an interconnect group.
|
||||
|
||||
For an example, refer to the EXAMPLES section below.
|
||||
|
||||
EXAMPLES
|
||||
To create interconnects interconnect1 and interconnect2 in interconnect
|
||||
group example-interconnect-group, run:
|
||||
|
||||
$ gcloud alpha compute interconnects groups create-members \
|
||||
example-interconnect-group --interconnect-type DEDICATED \
|
||||
--link-speed LINK_TYPE_ETHERNET_10G_LR \
|
||||
--requested-link-count 1 --facility iad-1 \
|
||||
--interconnect="name=interconnect1" \
|
||||
--interconnect="name=interconnect2"
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
Name of the interconnect group to create members.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--interconnect=[INTERCONNECT,...]
|
||||
New member interconnects to create in the interconnect group. To create
|
||||
multiple interconnects, this flag should be specified multiple times.
|
||||
|
||||
Each interconnect takes in the same set of flags as the gcloud compute
|
||||
interconnects create command, except instead of a location, a facility
|
||||
must be specified. These flags are defined as a comma separated list of
|
||||
flag=value pairs.
|
||||
|
||||
Example: --interconnect
|
||||
name=interconnect1,facility=iad-1,description="my
|
||||
interconnect",link-type=LINK_TYPE_ETHERNET_10G_LR,requested-link-count=1,
|
||||
interconnect-type=DEDICATED,admin-enabled,
|
||||
noc-contact-email=noc@google.com,customer-name=customer-name
|
||||
requested-features=MACSEC:CROSS_SITE_NETWORK
|
||||
|
||||
Note that for multiple requested-features, use a colon (:) as the
|
||||
delimiter, as the comma is used to separate the flags. Similarly, if
|
||||
you need to use a comma in another flag value, you should set an
|
||||
alternative delimiter for the --interconnect flag. Run gcloud topic
|
||||
escaping for more information.
|
||||
|
||||
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.
|
||||
|
||||
--customer-name=CUSTOMER_NAME
|
||||
Customer name to put in the Letter of Authorization as the party
|
||||
authorized to request an interconnect. This field is required for most
|
||||
interconnects, however it is prohibited when creating a Cross-Cloud
|
||||
Interconnect.
|
||||
|
||||
--description=DESCRIPTION
|
||||
An optional, textual description for the interconnect.
|
||||
|
||||
--facility=FACILITY
|
||||
The facility (zone free location) to create the interconnect in.
|
||||
|
||||
--intent-mismatch-behavior=INTENT_MISMATCH_BEHAVIOR
|
||||
The behavior when the intent of the interconnect group does not match
|
||||
the topology capability of the member interconnects.
|
||||
INTENT_MISMATCH_BEHAVIOR must be one of: REJECT, CREATE.
|
||||
|
||||
--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 one of:
|
||||
|
||||
LINK_TYPE_ETHERNET_100G_LR
|
||||
100Gbps Ethernet, LR Optics.
|
||||
LINK_TYPE_ETHERNET_10G_LR
|
||||
10Gbps Ethernet, LR Optics.
|
||||
|
||||
--noc-contact-email=NOC_CONTACT_EMAIL
|
||||
Email address to contact the customer NOC for operations and
|
||||
maintenance notifications regarding this interconnect.
|
||||
|
||||
--requested-features=[FEATURES,...]
|
||||
List of features requested for this interconnect. FEATURES must be one
|
||||
of:
|
||||
|
||||
CROSS_SITE_NETWORK
|
||||
If specified then the interconnect is created on Cross-Site Network
|
||||
capable hardware ports. This parameter can only be provided during
|
||||
interconnect INSERT and cannot be changed using interconnect PATCH.
|
||||
MACSEC
|
||||
If specified then the interconnect is created on MACsec capable
|
||||
hardware ports. If not specified, the interconnect is created on
|
||||
non-MACsec capable ports first, if available. This parameter can
|
||||
only be provided during interconnect INSERT and cannot be changed
|
||||
using interconnect PATCH.
|
||||
|
||||
--requested-link-count=REQUESTED_LINK_COUNT
|
||||
Target number of physical links in the link bundle.
|
||||
|
||||
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 alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
|
||||
|
|
@ -23,6 +23,10 @@ COMMANDS
|
|||
create
|
||||
(ALPHA) Create a Compute Engine interconnect group.
|
||||
|
||||
create-members
|
||||
(ALPHA) Create new member interconnects in a Compute Engine
|
||||
interconnect group.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete Compute Engine interconnect groups.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue