1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed Mar 30 09:07:09 UTC 2022

This commit is contained in:
Automated 2022-03-30 09:07:09 +00:00
parent cd34e797ae
commit 9bf28f1efe
90 changed files with 1554 additions and 258 deletions

View file

@ -522,6 +522,10 @@ OPTIONAL FLAGS
key is also specified this must be a subnetwork of the specified
network.
nic-type
Specifies the Network Interface Controller (NIC) type for the
interface. NIC_TYPE must be one of: GVNIC, VIRTIO_NET.
--network-tier=NETWORK_TIER
Specifies the network tier that will be used to configure the instance.
NETWORK_TIER must be one of: PREMIUM, STANDARD, FIXED_STANDARD. The

View file

@ -4,7 +4,8 @@ NAME
SYNOPSIS
gcloud compute networks create NAME
[--bgp-routing-mode=MODE; default="regional"]
[--description=DESCRIPTION] [--mtu=MTU] [--range=RANGE]
[--description=DESCRIPTION] [--[no-]enable-ula-internal-ipv6]
[--internal-ipv6-range=INTERNAL_IPV6_RANGE] [--mtu=MTU] [--range=RANGE]
[--subnet-mode=MODE] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
@ -49,6 +50,21 @@ FLAGS
--description=DESCRIPTION
An optional, textual description for the network.
--[no-]enable-ula-internal-ipv6
Enable/disable ULA internal IPv6 on this network. Enabling this feature
will assign a /48 from google defined ULA prefix fd20::/20.
Use --enable-ula-internal-ipv6 to enable and
--no-enable-ula-internal-ipv6 to disable.
--internal-ipv6-range=INTERNAL_IPV6_RANGE
When enabling ULA internal IPv6, caller can optionally specify the /48
range they want from the google defined ULA prefix fd20::/20.
ULA_IPV6_RANGE must be a valid /48 ULA IPv6 address and within the
fd20::/20. Operation will fail if the speficied /48 is already in used
by another resource. If the field is not speficied, then a /48 range
will be randomly allocated from fd20::/20 and returned via this field.
--mtu=MTU
Maximum transmission unit (MTU) is the size of the largest IP packet
that can be transmitted on this network. Default value is 1460 bytes,

View file

@ -2,7 +2,9 @@ NAME
gcloud compute networks update - update a Compute Engine network
SYNOPSIS
gcloud compute networks update NAME [--async] [--mtu=MTU]
gcloud compute networks update NAME [--async]
[--[no-]enable-ula-internal-ipv6]
[--internal-ipv6-range=INTERNAL_IPV6_RANGE] [--mtu=MTU]
[--bgp-routing-mode=MODE | --switch-to-custom-subnet-mode]
[GCLOUD_WIDE_FLAG ...]
@ -30,6 +32,21 @@ FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--[no-]enable-ula-internal-ipv6
Enable/disable ULA internal IPv6 on this network. Enabling this feature
will assign a /48 from google defined ULA prefix fd20::/20.
Use --enable-ula-internal-ipv6 to enable and
--no-enable-ula-internal-ipv6 to disable.
--internal-ipv6-range=INTERNAL_IPV6_RANGE
When enabling ULA internal IPv6, caller can optionally specify the /48
range they want from the google defined ULA prefix fd20::/20.
ULA_IPV6_RANGE must be a valid /48 ULA IPv6 address and within the
fd20::/20. Operation will fail if the speficied /48 is already in used
by another resource. If the field is not speficied, then a /48 range
will be randomly allocated from fd20::/20 and returned via this field.
--mtu=MTU
Maximum transmission unit (MTU) is the size of the largest IP packet
that can be transmitted on this network. Default value is 1460 bytes,