Skip to content

Commit db87ff7

Browse files
feat(alloydb): update the api
#### alloydb:v1alpha The following keys were added: - schemas.ConnectionPoolConfig (Total Keys: 17) - schemas.Instance.properties.connectionPoolConfig.$ref (Total Keys: 1) #### alloydb:v1beta The following keys were added: - schemas.ConnectionPoolConfig (Total Keys: 17) - schemas.Instance.properties.connectionPoolConfig.$ref (Total Keys: 1)
1 parent 9d050ce commit db87ff7

File tree

4 files changed

+358
-2
lines changed

4 files changed

+358
-2
lines changed

docs/dyn/alloydb_v1alpha.projects.locations.clusters.instances.html

+100
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,26 @@ <h3>Method Details</h3>
137137
&quot;sslMode&quot;: &quot;A String&quot;, # Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.
138138
},
139139
},
140+
&quot;connectionPoolConfig&quot;: { # Configuration for Managed Connection Pool (MCP). # Optional. The configuration for Managed Connection Pool (MCP).
141+
&quot;defaultPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The default pool size. Defaults to 20.
142+
&quot;enable&quot;: True or False, # Optional. Deprecated; Prefer &#x27;enabled&#x27; as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.
143+
&quot;enabled&quot;: True or False, # Optional. Whether to enable Managed Connection Pool (MCP).
144+
&quot;flags&quot;: { # Optional. Connection Pool flags, as a list of &quot;key&quot;: &quot;value&quot; pairs.
145+
&quot;a_key&quot;: &quot;A String&quot;,
146+
},
147+
&quot;ignoreStartupParameters&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of startup parameters to ignore. Defaults to [&quot;extra_float_digits&quot;]
148+
&quot;A String&quot;,
149+
],
150+
&quot;maxClientConn&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of client connections allowed.
151+
&quot;maxPreparedStatements&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of prepared statements allowed. MCP makes sure that any statement prepared by a client, up to this limit, is available on the backing server connection in transaction and statement pooling mode. Even if the statement was originally prepared on another server connection. Defaults to 0.
152+
&quot;minPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The minimum pool size. Defaults to 0.
153+
&quot;poolMode&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
154+
&quot;queryWaitTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. 0 disables.
155+
&quot;serverIdleTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables.
156+
&quot;statsUsers&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of users that are allowed to connect to the MCP stats console. The users must exist in the database.
157+
&quot;A String&quot;,
158+
],
159+
},
140160
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time stamp
141161
&quot;databaseFlags&quot;: { # Database flags. Set at the instance level. They are copied from the primary instance on secondary instance creation. Flags that have restrictions default to the value at primary instance on read instances during creation. Read instances can set new flags or override existing flags that are relevant for reads, for example, for enabling columnar cache on a read instance. Flags set on read instance might or might not be present on the primary instance. This is a list of &quot;key&quot;: &quot;value&quot; pairs. &quot;key&quot;: The name of the flag. These flags are passed at instance setup time, so include both server options and system variables for Postgres. Flags are specified with underscores, not hyphens. &quot;value&quot;: The value of the flag. Booleans are set to **on** for true and **off** for false. This field must be omitted if the flag doesn&#x27;t take a value.
142162
&quot;a_key&quot;: &quot;A String&quot;,
@@ -294,6 +314,26 @@ <h3>Method Details</h3>
294314
&quot;sslMode&quot;: &quot;A String&quot;, # Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.
295315
},
296316
},
317+
&quot;connectionPoolConfig&quot;: { # Configuration for Managed Connection Pool (MCP). # Optional. The configuration for Managed Connection Pool (MCP).
318+
&quot;defaultPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The default pool size. Defaults to 20.
319+
&quot;enable&quot;: True or False, # Optional. Deprecated; Prefer &#x27;enabled&#x27; as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.
320+
&quot;enabled&quot;: True or False, # Optional. Whether to enable Managed Connection Pool (MCP).
321+
&quot;flags&quot;: { # Optional. Connection Pool flags, as a list of &quot;key&quot;: &quot;value&quot; pairs.
322+
&quot;a_key&quot;: &quot;A String&quot;,
323+
},
324+
&quot;ignoreStartupParameters&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of startup parameters to ignore. Defaults to [&quot;extra_float_digits&quot;]
325+
&quot;A String&quot;,
326+
],
327+
&quot;maxClientConn&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of client connections allowed.
328+
&quot;maxPreparedStatements&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of prepared statements allowed. MCP makes sure that any statement prepared by a client, up to this limit, is available on the backing server connection in transaction and statement pooling mode. Even if the statement was originally prepared on another server connection. Defaults to 0.
329+
&quot;minPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The minimum pool size. Defaults to 0.
330+
&quot;poolMode&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
331+
&quot;queryWaitTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. 0 disables.
332+
&quot;serverIdleTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables.
333+
&quot;statsUsers&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of users that are allowed to connect to the MCP stats console. The users must exist in the database.
334+
&quot;A String&quot;,
335+
],
336+
},
297337
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time stamp
298338
&quot;databaseFlags&quot;: { # Database flags. Set at the instance level. They are copied from the primary instance on secondary instance creation. Flags that have restrictions default to the value at primary instance on read instances during creation. Read instances can set new flags or override existing flags that are relevant for reads, for example, for enabling columnar cache on a read instance. Flags set on read instance might or might not be present on the primary instance. This is a list of &quot;key&quot;: &quot;value&quot; pairs. &quot;key&quot;: The name of the flag. These flags are passed at instance setup time, so include both server options and system variables for Postgres. Flags are specified with underscores, not hyphens. &quot;value&quot;: The value of the flag. Booleans are set to **on** for true and **off** for false. This field must be omitted if the flag doesn&#x27;t take a value.
299339
&quot;a_key&quot;: &quot;A String&quot;,
@@ -542,6 +582,26 @@ <h3>Method Details</h3>
542582
&quot;sslMode&quot;: &quot;A String&quot;, # Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.
543583
},
544584
},
585+
&quot;connectionPoolConfig&quot;: { # Configuration for Managed Connection Pool (MCP). # Optional. The configuration for Managed Connection Pool (MCP).
586+
&quot;defaultPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The default pool size. Defaults to 20.
587+
&quot;enable&quot;: True or False, # Optional. Deprecated; Prefer &#x27;enabled&#x27; as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.
588+
&quot;enabled&quot;: True or False, # Optional. Whether to enable Managed Connection Pool (MCP).
589+
&quot;flags&quot;: { # Optional. Connection Pool flags, as a list of &quot;key&quot;: &quot;value&quot; pairs.
590+
&quot;a_key&quot;: &quot;A String&quot;,
591+
},
592+
&quot;ignoreStartupParameters&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of startup parameters to ignore. Defaults to [&quot;extra_float_digits&quot;]
593+
&quot;A String&quot;,
594+
],
595+
&quot;maxClientConn&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of client connections allowed.
596+
&quot;maxPreparedStatements&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of prepared statements allowed. MCP makes sure that any statement prepared by a client, up to this limit, is available on the backing server connection in transaction and statement pooling mode. Even if the statement was originally prepared on another server connection. Defaults to 0.
597+
&quot;minPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The minimum pool size. Defaults to 0.
598+
&quot;poolMode&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
599+
&quot;queryWaitTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. 0 disables.
600+
&quot;serverIdleTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables.
601+
&quot;statsUsers&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of users that are allowed to connect to the MCP stats console. The users must exist in the database.
602+
&quot;A String&quot;,
603+
],
604+
},
545605
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time stamp
546606
&quot;databaseFlags&quot;: { # Database flags. Set at the instance level. They are copied from the primary instance on secondary instance creation. Flags that have restrictions default to the value at primary instance on read instances during creation. Read instances can set new flags or override existing flags that are relevant for reads, for example, for enabling columnar cache on a read instance. Flags set on read instance might or might not be present on the primary instance. This is a list of &quot;key&quot;: &quot;value&quot; pairs. &quot;key&quot;: The name of the flag. These flags are passed at instance setup time, so include both server options and system variables for Postgres. Flags are specified with underscores, not hyphens. &quot;value&quot;: The value of the flag. Booleans are set to **on** for true and **off** for false. This field must be omitted if the flag doesn&#x27;t take a value.
547607
&quot;a_key&quot;: &quot;A String&quot;,
@@ -750,6 +810,26 @@ <h3>Method Details</h3>
750810
&quot;sslMode&quot;: &quot;A String&quot;, # Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.
751811
},
752812
},
813+
&quot;connectionPoolConfig&quot;: { # Configuration for Managed Connection Pool (MCP). # Optional. The configuration for Managed Connection Pool (MCP).
814+
&quot;defaultPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The default pool size. Defaults to 20.
815+
&quot;enable&quot;: True or False, # Optional. Deprecated; Prefer &#x27;enabled&#x27; as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.
816+
&quot;enabled&quot;: True or False, # Optional. Whether to enable Managed Connection Pool (MCP).
817+
&quot;flags&quot;: { # Optional. Connection Pool flags, as a list of &quot;key&quot;: &quot;value&quot; pairs.
818+
&quot;a_key&quot;: &quot;A String&quot;,
819+
},
820+
&quot;ignoreStartupParameters&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of startup parameters to ignore. Defaults to [&quot;extra_float_digits&quot;]
821+
&quot;A String&quot;,
822+
],
823+
&quot;maxClientConn&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of client connections allowed.
824+
&quot;maxPreparedStatements&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of prepared statements allowed. MCP makes sure that any statement prepared by a client, up to this limit, is available on the backing server connection in transaction and statement pooling mode. Even if the statement was originally prepared on another server connection. Defaults to 0.
825+
&quot;minPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The minimum pool size. Defaults to 0.
826+
&quot;poolMode&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
827+
&quot;queryWaitTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. 0 disables.
828+
&quot;serverIdleTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables.
829+
&quot;statsUsers&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of users that are allowed to connect to the MCP stats console. The users must exist in the database.
830+
&quot;A String&quot;,
831+
],
832+
},
753833
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time stamp
754834
&quot;databaseFlags&quot;: { # Database flags. Set at the instance level. They are copied from the primary instance on secondary instance creation. Flags that have restrictions default to the value at primary instance on read instances during creation. Read instances can set new flags or override existing flags that are relevant for reads, for example, for enabling columnar cache on a read instance. Flags set on read instance might or might not be present on the primary instance. This is a list of &quot;key&quot;: &quot;value&quot; pairs. &quot;key&quot;: The name of the flag. These flags are passed at instance setup time, so include both server options and system variables for Postgres. Flags are specified with underscores, not hyphens. &quot;value&quot;: The value of the flag. Booleans are set to **on** for true and **off** for false. This field must be omitted if the flag doesn&#x27;t take a value.
755835
&quot;a_key&quot;: &quot;A String&quot;,
@@ -896,6 +976,26 @@ <h3>Method Details</h3>
896976
&quot;sslMode&quot;: &quot;A String&quot;, # Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.
897977
},
898978
},
979+
&quot;connectionPoolConfig&quot;: { # Configuration for Managed Connection Pool (MCP). # Optional. The configuration for Managed Connection Pool (MCP).
980+
&quot;defaultPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The default pool size. Defaults to 20.
981+
&quot;enable&quot;: True or False, # Optional. Deprecated; Prefer &#x27;enabled&#x27; as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.
982+
&quot;enabled&quot;: True or False, # Optional. Whether to enable Managed Connection Pool (MCP).
983+
&quot;flags&quot;: { # Optional. Connection Pool flags, as a list of &quot;key&quot;: &quot;value&quot; pairs.
984+
&quot;a_key&quot;: &quot;A String&quot;,
985+
},
986+
&quot;ignoreStartupParameters&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of startup parameters to ignore. Defaults to [&quot;extra_float_digits&quot;]
987+
&quot;A String&quot;,
988+
],
989+
&quot;maxClientConn&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of client connections allowed.
990+
&quot;maxPreparedStatements&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of prepared statements allowed. MCP makes sure that any statement prepared by a client, up to this limit, is available on the backing server connection in transaction and statement pooling mode. Even if the statement was originally prepared on another server connection. Defaults to 0.
991+
&quot;minPoolSize&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The minimum pool size. Defaults to 0.
992+
&quot;poolMode&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
993+
&quot;queryWaitTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. 0 disables.
994+
&quot;serverIdleTimeout&quot;: &quot;A String&quot;, # Optional. Deprecated. Use &#x27;flags&#x27; instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables.
995+
&quot;statsUsers&quot;: [ # Optional. Deprecated. Use &#x27;flags&#x27; instead. The list of users that are allowed to connect to the MCP stats console. The users must exist in the database.
996+
&quot;A String&quot;,
997+
],
998+
},
899999
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Create time stamp
9001000
&quot;databaseFlags&quot;: { # Database flags. Set at the instance level. They are copied from the primary instance on secondary instance creation. Flags that have restrictions default to the value at primary instance on read instances during creation. Read instances can set new flags or override existing flags that are relevant for reads, for example, for enabling columnar cache on a read instance. Flags set on read instance might or might not be present on the primary instance. This is a list of &quot;key&quot;: &quot;value&quot; pairs. &quot;key&quot;: The name of the flag. These flags are passed at instance setup time, so include both server options and system variables for Postgres. Flags are specified with underscores, not hyphens. &quot;value&quot;: The value of the flag. Booleans are set to **on** for true and **off** for false. This field must be omitted if the flag doesn&#x27;t take a value.
9011001
&quot;a_key&quot;: &quot;A String&quot;,

0 commit comments

Comments
 (0)