mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +00:00
gcloud: Wed Jun 18 10:54:11 UTC 2025
This commit is contained in:
parent
fa40c10f6a
commit
3a534cb57c
83 changed files with 849 additions and 219 deletions
|
|
@ -286,10 +286,11 @@ FLAGS
|
|||
|
||||
--[no-]enable-cdn
|
||||
Enable or disable Cloud CDN for the backend service. Only available for
|
||||
backend services with --load-balancing-scheme=EXTERNAL that use a
|
||||
--protocol of HTTP, HTTPS, HTTP2 or H2C. Cloud CDN caches HTTP
|
||||
responses at the edge of Google's network. Cloud CDN is disabled by
|
||||
default. Use --enable-cdn to enable and --no-enable-cdn to disable.
|
||||
backend services with --load-balancing-scheme=EXTERNAL or
|
||||
EXTERNAL_MANAGED that use a --protocol of HTTP, HTTPS, HTTP2 or H2C.
|
||||
Cloud CDN caches HTTP responses at the edge of Google's network. Cloud
|
||||
CDN is disabled by default. Use --enable-cdn to enable and
|
||||
--no-enable-cdn to disable.
|
||||
|
||||
--[no-]enable-logging
|
||||
The logging options for the load balancer traffic served by this
|
||||
|
|
|
|||
|
|
@ -203,10 +203,11 @@ FLAGS
|
|||
|
||||
--[no-]enable-cdn
|
||||
Enable or disable Cloud CDN for the backend service. Only available for
|
||||
backend services with --load-balancing-scheme=EXTERNAL that use a
|
||||
--protocol of HTTP, HTTPS, HTTP2 or H2C. Cloud CDN caches HTTP
|
||||
responses at the edge of Google's network. Cloud CDN is disabled by
|
||||
default. Use --enable-cdn to enable and --no-enable-cdn to disable.
|
||||
backend services with --load-balancing-scheme=EXTERNAL or
|
||||
EXTERNAL_MANAGED that use a --protocol of HTTP, HTTPS, HTTP2 or H2C.
|
||||
Cloud CDN caches HTTP responses at the edge of Google's network. Cloud
|
||||
CDN is disabled by default. Use --enable-cdn to enable and
|
||||
--no-enable-cdn to disable.
|
||||
|
||||
--[no-]enable-logging
|
||||
The logging options for the load balancer traffic served by this
|
||||
|
|
|
|||
|
|
@ -671,6 +671,12 @@ OPTIONAL FLAGS
|
|||
be one of: IPV4_ONLY, IPV4_IPV6, IPV6_ONLY. The default value is
|
||||
IPV4_ONLY.
|
||||
|
||||
igmp-query
|
||||
Determines if the Compute Engine Instance can receive and respond
|
||||
to IGMP query packets on the specified network interface.
|
||||
IGMP_QUERY must be one of: IGMP_QUERY_V2, IGMP_QUERY_DISABLED. It
|
||||
is disabled by default.
|
||||
|
||||
--network-performance-configs=[PROPERTY=VALUE,...]
|
||||
Configures network performance settings for the instance. If this flag
|
||||
is not specified, the instance will be created with its default network
|
||||
|
|
|
|||
|
|
@ -844,6 +844,12 @@ FLAGS
|
|||
VLAN tag of a dynamic network interface, must be an integer in the
|
||||
range from 2 to 255 inclusively.
|
||||
|
||||
igmp-query
|
||||
Determines if the Compute Engine Instance can receive and respond
|
||||
to IGMP query packets on the specified network interface.
|
||||
IGMP_QUERY must be one of: IGMP_QUERY_V2, IGMP_QUERY_DISABLED. It
|
||||
is disabled by default.
|
||||
|
||||
--network-performance-configs=[PROPERTY=VALUE,...]
|
||||
Configures network performance settings for the instance. If this flag
|
||||
is not specified, the instance will be created with its default network
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ SYNOPSIS
|
|||
gcloud beta compute instances network-interfaces update INSTANCE_NAME
|
||||
[--aliases=ALIASES] [--external-ipv6-address=EXTERNAL_IPV6_ADDRESS]
|
||||
[--external-ipv6-prefix-length=EXTERNAL_IPV6_PREFIX_LENGTH]
|
||||
[--igmp-query=IGMP_QUERY]
|
||||
[--internal-ipv6-address=INTERNAL_IPV6_ADDRESS]
|
||||
[--internal-ipv6-prefix-length=INTERNAL_IPV6_PREFIX_LENGTH]
|
||||
[--ipv6-network-tier=IPV6_NETWORK_TIER] [--network=NETWORK]
|
||||
|
|
@ -58,6 +59,16 @@ FLAGS
|
|||
be used together with --external-ipv6-address. Currently only /96 is
|
||||
supported and the default value is 96.
|
||||
|
||||
--igmp-query=IGMP_QUERY
|
||||
Determines if the Compute Engine instance can receive and respond to
|
||||
IGMP query packets on the specified network interface. IGMP_QUERY must
|
||||
be one of:
|
||||
|
||||
IGMP_QUERY_DISABLED
|
||||
IGMP Query on the network interface is disabled.
|
||||
IGMP_QUERY_V2
|
||||
IGMP Query V2 on the network interface is enabled.
|
||||
|
||||
--internal-ipv6-address=INTERNAL_IPV6_ADDRESS
|
||||
Assigns the given internal IPv6 address or range to an instance. The
|
||||
address must be the first IP address in the range or a /96 IP address
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue