1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-16 12:22:03 +00:00

gcloud: Wed Jul 23 10:59:14 UTC 2025

This commit is contained in:
Automated 2025-07-23 10:59:14 +00:00
parent fe3a430c1d
commit 0acbd64d02
208 changed files with 2473 additions and 622 deletions

View file

@ -10,6 +10,7 @@ SYNOPSIS
[--assign-inbound-public-ip=ASSIGN_INBOUND_PUBLIC_IP] [--async]
[--authorized-external-networks=[AUTHORIZED_NETWORK,...]]
[--availability-type=AVAILABILITY_TYPE]
[--connection-pooling-client-connection-idle-timeout=CONNECTION_POOLING_CLIENT_CONNECTION_IDLE_TIMEOUT]
[--connection-pooling-ignore-startup-parameters=[STARTUP_PARAMETERS,
...]]
[--connection-pooling-max-client-connections=CONNECTION_POOLING_MAX_CLIENT_CONNECTIONS]
@ -18,6 +19,7 @@ SYNOPSIS
[--connection-pooling-pool-mode=CONNECTION_POOLING_POOL_MODE]
[--connection-pooling-query-wait-timeout=CONNECTION_POOLING_QUERY_WAIT_TIMEOUT]
[--connection-pooling-server-idle-timeout=CONNECTION_POOLING_SERVER_IDLE_TIMEOUT]
[--connection-pooling-server-lifetime=CONNECTION_POOLING_SERVER_LIFETIME]
[--connection-pooling-stats-users=[STATS_USERS,...]]
[--cpu-count=CPU_COUNT] [--database-flags=FLAG=VALUE,[FLAG=VALUE,...]]
[--[no-]enable-connection-pooling]
@ -125,6 +127,10 @@ OPTIONAL FLAGS
production instances; instance does not automatically fail over to
another zone.
--connection-pooling-client-connection-idle-timeout=CONNECTION_POOLING_CLIENT_CONNECTION_IDLE_TIMEOUT
The maximum number of seconds a client is allowed to be idle before it
is disconnected.
--connection-pooling-ignore-startup-parameters=[STARTUP_PARAMETERS,...]
Comma-separated list of startup parameters that should be ignored by
the connection pool.
@ -153,6 +159,12 @@ OPTIONAL FLAGS
--connection-pooling-server-idle-timeout=CONNECTION_POOLING_SERVER_IDLE_TIMEOUT
The server idle timeout for managed connection pooling.
--connection-pooling-server-lifetime=CONNECTION_POOLING_SERVER_LIFETIME
The lifetime of a server connection in seconds. The pooler will close
an unused (not currently linked to any client connection) server
connection that has been connected longer than this. Setting it to 0
means the connection is to be used only once, then closed.
--connection-pooling-stats-users=[STATS_USERS,...]
Comma-separated list of database users to access connection pooling
stats.

View file

@ -10,6 +10,7 @@ SYNOPSIS
[--authorized-external-networks=[AUTHORIZED_NETWORK,...]]
[--availability-type=AVAILABILITY_TYPE]
[--clear-psc-network-attachment-uri]
[--connection-pooling-client-connection-idle-timeout=CONNECTION_POOLING_CLIENT_CONNECTION_IDLE_TIMEOUT]
[--connection-pooling-ignore-startup-parameters=[STARTUP_PARAMETERS,
...]]
[--connection-pooling-max-client-connections=CONNECTION_POOLING_MAX_CLIENT_CONNECTIONS]
@ -18,6 +19,7 @@ SYNOPSIS
[--connection-pooling-pool-mode=CONNECTION_POOLING_POOL_MODE]
[--connection-pooling-query-wait-timeout=CONNECTION_POOLING_QUERY_WAIT_TIMEOUT]
[--connection-pooling-server-idle-timeout=CONNECTION_POOLING_SERVER_IDLE_TIMEOUT]
[--connection-pooling-server-lifetime=CONNECTION_POOLING_SERVER_LIFETIME]
[--connection-pooling-stats-users=[STATS_USERS,...]]
[--cpu-count=CPU_COUNT] [--database-flags=FLAG=VALUE,[FLAG=VALUE,...]]
[--[no-]enable-connection-pooling]
@ -111,6 +113,10 @@ OPTIONAL FLAGS
Disable outbound connectivity from an AlloyDB instance which uses
Private Service Connect (PSC).
--connection-pooling-client-connection-idle-timeout=CONNECTION_POOLING_CLIENT_CONNECTION_IDLE_TIMEOUT
The maximum number of seconds a client is allowed to be idle before it
is disconnected.
--connection-pooling-ignore-startup-parameters=[STARTUP_PARAMETERS,...]
Comma-separated list of startup parameters that should be ignored by
the connection pool.
@ -139,6 +145,12 @@ OPTIONAL FLAGS
--connection-pooling-server-idle-timeout=CONNECTION_POOLING_SERVER_IDLE_TIMEOUT
The server idle timeout for managed connection pooling.
--connection-pooling-server-lifetime=CONNECTION_POOLING_SERVER_LIFETIME
The lifetime of a server connection in seconds. The pooler will close
an unused (not currently linked to any client connection) server
connection that has been connected longer than this. Setting it to 0
means the connection is to be used only once, then closed.
--connection-pooling-stats-users=[STATS_USERS,...]
Comma-separated list of database users to access connection pooling
stats.