mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-19 07:15:23 +00:00
gcloud: Wed Sep 21 11:28:40 UTC 2022
This commit is contained in:
parent
8f4214beb2
commit
29683b8af4
122 changed files with 2393 additions and 199 deletions
|
|
@ -6,9 +6,9 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha edge-cloud networking interconnects attachments dedicated
|
||||
create (INTERCONNECT_ATTACHMENT : --location=LOCATION --zone=ZONE)
|
||||
--interconnect=INTERCONNECT --router=ROUTER --vlan-id=VLAN_ID [--async]
|
||||
[--description=DESCRIPTION] [--labels=[KEY=VALUE,...]] [--mtu=MTU]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
--interconnect=INTERCONNECT --router=ROUTER [--async]
|
||||
[--description=DESCRIPTION] [--labels=[KEY=VALUE,...]]
|
||||
[--mtu=MTU; default=1500] [--vlan-id=VLAN_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create a new dedicated Distributed Cloud Edge Network interconnect
|
||||
|
|
@ -66,9 +66,6 @@ REQUIRED FLAGS
|
|||
--router=ROUTER
|
||||
The router to use for dynamic routing.
|
||||
|
||||
--vlan-id=VLAN_ID
|
||||
The ID of the vlan to tag the subnetwork.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
|
|
@ -85,11 +82,14 @@ OPTIONAL FLAGS
|
|||
contain only hyphens (-), underscores (_), lowercase characters, and
|
||||
numbers.
|
||||
|
||||
--mtu=MTU
|
||||
--mtu=MTU; default=1500
|
||||
Maximum transmission unit (MTU) is the size of the largest IP packet
|
||||
that can be transmitted on this attachment. Default value is 1500
|
||||
bytes, and the valid values are 1500 and 9000.
|
||||
|
||||
--vlan-id=VLAN_ID
|
||||
The ID of the vlan to tag the subnetwork. Default value is 0.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -17,8 +17,7 @@ EXAMPLES
|
|||
|
||||
$ gcloud alpha edge-cloud networking routers create my-router \
|
||||
--network=my-network --location=us-central1 \
|
||||
--zone=us-central1-edge-den1 --asn=65555 \
|
||||
--keepalive-interval-in-seconds=20
|
||||
--zone=us-central1-edge-den1 --asn=65555
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Router resource - Distributed Cloud Edge Network router to create. The
|
||||
|
|
|
|||
|
|
@ -43,8 +43,7 @@ COMMANDS
|
|||
Network router.
|
||||
|
||||
remove-interface
|
||||
(ALPHA) remove a list of interfaces on a Distributed Cloud Edge Network
|
||||
router.
|
||||
(ALPHA) remove an interface on a Distributed Cloud Edge Network router.
|
||||
|
||||
update
|
||||
(ALPHA) Update a Distributed Cloud Edge Network router.
|
||||
|
|
|
|||
|
|
@ -1,27 +1,28 @@
|
|||
NAME
|
||||
gcloud alpha edge-cloud networking routers remove-interface - remove a list
|
||||
of interfaces on a Distributed Cloud Edge Network router
|
||||
gcloud alpha edge-cloud networking routers remove-interface - remove an
|
||||
interface on a Distributed Cloud Edge Network router
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha edge-cloud networking routers remove-interface
|
||||
(ROUTER : --location=LOCATION --zone=ZONE)
|
||||
--interface-names=[INTERFACE_NAME,...] [--async] [GCLOUD_WIDE_FLAG ...]
|
||||
(--interface-name=INTERFACE_NAME
|
||||
| --interface-names=[INTERFACE_NAME,...]) [--async]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Remove a list of interfaces on a Distributed Cloud Edge Network
|
||||
router.
|
||||
(ALPHA) Remove an interface on a Distributed Cloud Edge Network router.
|
||||
|
||||
EXAMPLES
|
||||
To remove a list of interfaces contains 'my-int-r1' on Distributed Cloud
|
||||
Edge Network router 'my-router' in edge zone 'us-central1-edge-den1' , run:
|
||||
To remove the interface 'my-int-r1' on Distributed Cloud Edge Network
|
||||
router 'my-router' in edge zone 'us-central1-edge-den1' , run:
|
||||
|
||||
$ gcloud alpha edge-cloud networking routers remove-interface \
|
||||
my-router --interface-names=my-int-r1 --location=us-central1 \
|
||||
my-router --interface-name=my-int-r1 --location=us-central1 \
|
||||
--zone=us-central1-edge-den1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Router resource - The router from which we remove a list of interfaces.
|
||||
The arguments in this group can be used to specify the attributes of this
|
||||
Router resource - The router from which we remove an interface. The
|
||||
arguments in this group can be used to specify the attributes of this
|
||||
resource. (NOTE) Some attributes are not given arguments in this group but
|
||||
can be set in other ways. To set the project attribute:
|
||||
◆ provide the argument router on the command line with a fully
|
||||
|
|
@ -52,8 +53,13 @@ POSITIONAL ARGUMENTS
|
|||
▸ provide the argument --zone on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--interface-names=[INTERFACE_NAME,...]
|
||||
The list of names for interfaces being removed.
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--interface-name=INTERFACE_NAME
|
||||
The name of the interface being removed.
|
||||
|
||||
--interface-names=[INTERFACE_NAME,...]
|
||||
The list of names for interfaces being removed.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue