1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 23:08:48 +00:00

gcloud: Tue Jan 20 11:05:01 UTC 2026

This commit is contained in:
Automated 2026-01-20 11:05:01 +00:00
parent bdd724fcf3
commit 582f364023
247 changed files with 5698 additions and 1205 deletions

View file

@ -4,6 +4,7 @@ NAME
SYNOPSIS
gcloud beta functions deploy (NAME : --region=REGION)
[--[no-]allow-unauthenticated] [--concurrency=CONCURRENCY]
[--direct-vpc-egress=DIRECT_VPC_EGRESS]
[--docker-registry=DOCKER_REGISTRY] [--egress-settings=EGRESS_SETTINGS]
[--entry-point=ENTRY_POINT] [--gen2] [--ignore-file=IGNORE_FILE]
[--ingress-settings=INGRESS_SETTINGS] [--retry]
@ -33,6 +34,9 @@ SYNOPSIS
[--clear-labels | --remove-labels=[KEY,...]]
[--clear-max-instances | --max-instances=MAX_INSTANCES]
[--clear-min-instances | --min-instances=MIN_INSTANCES]
[--clear-network
| --network=NETWORK --subnet=SUBNET --clear-network-tags
| --network-tags=[TAGS,...]]
[--clear-secrets
| --set-secrets=[SECRET_ENV_VAR=SECRET_VALUE_REF,
/secret_path=SECRET_VALUE_REF,
@ -111,6 +115,11 @@ FLAGS
instance. Leave concurrency unspecified to receive the server default
value.
--direct-vpc-egress=DIRECT_VPC_EGRESS
Specify which of the outbound traffic to send through Direct VPC
egress. Configuring Direct VPC network is required to use this flag.
DIRECT_VPC_EGRESS must be one of: private-ranges-only, all.
--docker-registry=DOCKER_REGISTRY
(DEPRECATED) Docker Registry to use for storing the function's Docker
images. The option artifact-registry is used by default.
@ -481,6 +490,37 @@ FLAGS
Sets the minimum number of instances for the function. This is
helpful for reducing cold start times. Defaults to zero.
At most one of these can be specified:
--clear-network
Disconnect this Cloud Function from the Direct VPC network it is
connected to.
Direct VPC egress setting flags group.
--network=NETWORK
The VPC network that the Cloud Function will be able to send
traffic to. If --subnet is also specified, subnet must be a
subnetwork of the network specified by this --network flag. To
clear existing VPC network settings, use --clear-network.
--subnet=SUBNET
The VPC subnetwork that the Cloud Function will get IPs from. The
subnetwork must be /26 or larger. If --network is also specified,
subnet must be a subnetwork of the network specified by the
--network flag. If --network is not specified, network will be
looked up from this subnetwork. To clear existing VPC network
settings, use --clear-network.
At most one of these can be specified:
--clear-network-tags
Clears all existing network tags from the Cloud Function.
--network-tags=[TAGS,...]
Applies the given network tags (comma separated) to the Cloud
Function. To clear existing tags, use --clear-network-tags.
At most one of these can be specified:
--clear-secrets