mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-15 01:15:34 +00:00
gcloud: Wed Aug 27 10:57:46 UTC 2025
This commit is contained in:
parent
470b35e498
commit
93c043aaa0
176 changed files with 5452 additions and 264 deletions
|
|
@ -14,7 +14,8 @@ SYNOPSIS
|
|||
[--[no-]enable-cdn] [--load-balancing-scheme=LOAD_BALANCING_SCHEME]
|
||||
[--max-ttl=MAX_TTL] [--[no-]negative-caching]
|
||||
[--negative-caching-policy=[[CODE=TTL],...]]
|
||||
[--[no-]request-coalescing] [--serve-while-stale=SERVE_WHILE_STALE]
|
||||
[--[no-]request-coalescing] [--resource-manager-tags=[KEY=VALUE,...]]
|
||||
[--serve-while-stale=SERVE_WHILE_STALE]
|
||||
[--signed-url-cache-max-age=SIGNED_URL_CACHE_MAX_AGE]
|
||||
[--global | --region=REGION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -163,7 +164,7 @@ OPTIONAL FLAGS
|
|||
The load balancing scheme of the backend bucket. If left blank, the
|
||||
backend bucket will be compatible with Global External Application Load
|
||||
Balancer or Classic Application Load Balancer. LOAD_BALANCING_SCHEME
|
||||
must be (only one value is supported): INTERNAL_MANAGED.
|
||||
must be one of: INTERNAL_MANAGED, EXTERNAL_MANAGED.
|
||||
|
||||
--max-ttl=MAX_TTL
|
||||
Specifies the maximum allowed TTL for cached content served by this
|
||||
|
|
@ -258,6 +259,10 @@ OPTIONAL FLAGS
|
|||
Use --request-coalescing to enable and --no-request-coalescing to
|
||||
disable.
|
||||
|
||||
--resource-manager-tags=[KEY=VALUE,...]
|
||||
Comma-separated list of Resource Manager tags to apply to the backend
|
||||
bucket.
|
||||
|
||||
--serve-while-stale=SERVE_WHILE_STALE
|
||||
Serve existing content from the cache (if available) when revalidating
|
||||
content with the origin; this allows content to be served more quickly,
|
||||
|
|
|
|||
|
|
@ -35,7 +35,8 @@ SYNOPSIS
|
|||
[--logging-sample-rate=LOGGING_SAMPLE_RATE] [--max-ttl=MAX_TTL]
|
||||
[--[no-]negative-caching] [--negative-caching-policy=[[CODE=TTL],...]]
|
||||
[--network=NETWORK] [--port-name=PORT_NAME] [--protocol=PROTOCOL]
|
||||
[--[no-]request-coalescing] [--serve-while-stale=SERVE_WHILE_STALE]
|
||||
[--[no-]request-coalescing] [--resource-manager-tags=[KEY=VALUE,...]]
|
||||
[--serve-while-stale=SERVE_WHILE_STALE]
|
||||
[--service-bindings=SERVICE_BINDING,[...]]
|
||||
[--service-lb-policy=SERVICE_LOAD_BALANCING_POLICY]
|
||||
[--session-affinity=SESSION_AFFINITY]
|
||||
|
|
@ -592,6 +593,10 @@ FLAGS
|
|||
Use --request-coalescing to enable and --no-request-coalescing to
|
||||
disable.
|
||||
|
||||
--resource-manager-tags=[KEY=VALUE,...]
|
||||
A comma-separated list of Resource Manager tags to apply to the backend
|
||||
service.
|
||||
|
||||
--serve-while-stale=SERVE_WHILE_STALE
|
||||
Serve existing content from the cache (if available) when revalidating
|
||||
content with the origin; this allows content to be served more quickly,
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha compute interconnects wire-groups create NAME
|
||||
--bandwidth-unmetered=BANDWIDTH_UNMETERED
|
||||
--cross-site-network=CROSS_SITE_NETWORK --type=TYPE [--admin-enabled]
|
||||
--cross-site-network=CROSS_SITE_NETWORK [--admin-enabled]
|
||||
[--bandwidth-allocation=BANDWIDTH_ALLOCATION]
|
||||
[--bandwidth-metered=BANDWIDTH_METERED] [--description=DESCRIPTION]
|
||||
[--fault-response=FAULT_RESPONSE]
|
||||
[--network-service-class=NETWORK_SERVICE_CLASS] [--validate-only]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
[--network-service-class=NETWORK_SERVICE_CLASS] [--type=TYPE]
|
||||
[--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) gcloud alpha compute interconnects wire-groups create is used to
|
||||
|
|
@ -26,7 +26,7 @@ EXAMPLES
|
|||
$ gcloud alpha compute interconnects wire-groups create \
|
||||
example-wire-group --project my-project \
|
||||
--cross-site-network example-cross-site-network \
|
||||
--type REDUNDANT --bandwidth-unmetered 1
|
||||
--bandwidth-unmetered 1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
NAME
|
||||
|
|
@ -39,18 +39,6 @@ REQUIRED FLAGS
|
|||
--cross-site-network=CROSS_SITE_NETWORK
|
||||
Name of the crossSiteNetwork to operate on.
|
||||
|
||||
--type=TYPE
|
||||
The type for the wire group. TYPE must be one of:
|
||||
|
||||
BOX_AND_CROSS
|
||||
Box and cross type wire groups must have two VLAN tags. The first
|
||||
is for the same-zone pseudowire, and the second is for the
|
||||
cross-zone pseudowire.
|
||||
REDUNDANT
|
||||
Redundant type wire groups must have only one VLAN tag.
|
||||
WIRE
|
||||
Single wire type wire groups must have only one VLAN tag.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--admin-enabled
|
||||
Administrative status of the wire group. If not provided on creation,
|
||||
|
|
@ -97,6 +85,18 @@ OPTIONAL FLAGS
|
|||
GOLD
|
||||
The highest service class.
|
||||
|
||||
--type=TYPE
|
||||
The type for the wire group. TYPE must be one of:
|
||||
|
||||
BOX_AND_CROSS
|
||||
Box and cross type wire groups must have two VLAN tags. The first
|
||||
is for the same-zone pseudowire, and the second is for the
|
||||
cross-zone pseudowire.
|
||||
REDUNDANT
|
||||
Redundant type wire groups must have only one VLAN tag.
|
||||
WIRE
|
||||
Single wire type wire groups must have only one VLAN tag.
|
||||
|
||||
--validate-only
|
||||
Validate the new configuration, but don't update it.
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,9 @@ 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. This variant is also available:
|
||||
access allowlist. These variants are also available:
|
||||
|
||||
$ gcloud compute networks peerings request-delete
|
||||
|
||||
$ gcloud beta compute networks peerings request-delete
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,8 @@ SYNOPSIS
|
|||
[--nat-subnets=NAT_SUBNETS,[NAT_SUBNETS,...]]
|
||||
[--nat-subnets-region=NAT_SUBNETS_REGION]
|
||||
[--propagated-connection-limit=PROPAGATED_CONNECTION_LIMIT]
|
||||
[--[no-]reconcile-connections] [--region=REGION] [GCLOUD_WIDE_FLAG ...]
|
||||
[--[no-]reconcile-connections] [--region=REGION]
|
||||
[--target-service=TARGET_SERVICE] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) gcloud alpha compute service-attachments update is used to update
|
||||
|
|
@ -146,6 +147,9 @@ FLAGS
|
|||
Alternatively, the region can be stored in the environment variable
|
||||
CLOUDSDK_COMPUTE_REGION.
|
||||
|
||||
--target-service=TARGET_SERVICE
|
||||
URL of the target service that receives forwarded traffic.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud alpha compute target-vpn-gateways create NAME --network=NETWORK
|
||||
[--description=DESCRIPTION] [--region=REGION] [GCLOUD_WIDE_FLAG ...]
|
||||
[--description=DESCRIPTION] [--region=REGION]
|
||||
[--resource-manager-tags=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) gcloud alpha compute target-vpn-gateways create is used to create a
|
||||
|
|
@ -45,6 +46,10 @@ OPTIONAL FLAGS
|
|||
Alternatively, the region can be stored in the environment variable
|
||||
CLOUDSDK_COMPUTE_REGION.
|
||||
|
||||
--resource-manager-tags=[KEY=VALUE,...]
|
||||
A comma-separated list of Resource Manager tags to apply to the target
|
||||
VPN gateway.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue