3030public final class ConnectionPoolConfig extends com .google .api .client .json .GenericJson {
3131
3232 /**
33- * Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20.
33+ * Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20. Note: This
34+ * field should not be added to client libraries if not present already.
3435 * The value may be {@code null}.
3536 */
3637 @ com .google .api .client .util .Key
@@ -59,14 +60,16 @@ public final class ConnectionPoolConfig extends com.google.api.client.json.Gener
5960
6061 /**
6162 * Optional. Deprecated. Use 'flags' instead. The list of startup parameters to ignore. Defaults
62- * to ["extra_float_digits"]
63+ * to ["extra_float_digits"] Note: This field should not be added to client libraries if not
64+ * present already.
6365 * The value may be {@code null}.
6466 */
6567 @ com .google .api .client .util .Key
6668 private java .util .List <java .lang .String > ignoreStartupParameters ;
6769
6870 /**
6971 * Optional. Deprecated. Use 'flags' instead. The maximum number of client connections allowed.
72+ * Note: This field should not be added to client libraries if not present already.
7073 * The value may be {@code null}.
7174 */
7275 @ com .google .api .client .util .Key
@@ -76,21 +79,24 @@ public final class ConnectionPoolConfig extends com.google.api.client.json.Gener
7679 * Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed.
7780 * MCP makes sure that any statement prepared by a client, up to this limit, is available on the
7881 * backing server connection in transaction and statement pooling mode. Even if the statement was
79- * originally prepared on another server connection. Defaults to 0.
82+ * originally prepared on another server connection. Defaults to 0. Note: This field should not be
83+ * added to client libraries if not present already.
8084 * The value may be {@code null}.
8185 */
8286 @ com .google .api .client .util .Key
8387 private java .lang .String maxPreparedStatements ;
8488
8589 /**
86- * Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0.
90+ * Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0. Note: This
91+ * field should not be added to client libraries if not present already.
8792 * The value may be {@code null}.
8893 */
8994 @ com .google .api .client .util .Key
9095 private java .lang .String minPoolSize ;
9196
9297 /**
9398 * Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
99+ * Note: This field should not be added to client libraries if not present already.
94100 * The value may be {@code null}.
95101 */
96102 @ com .google .api .client .util .Key
@@ -106,38 +112,43 @@ public final class ConnectionPoolConfig extends com.google.api.client.json.Gener
106112 /**
107113 * Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to
108114 * spend waiting for execution. If the query is not assigned to a server during that time, the
109- * client is disconnected. 0 disables.
115+ * client is disconnected. 0 disables. Note: This field should not be added to client libraries if
116+ * not present already.
110117 * The value may be {@code null}.
111118 */
112119 @ com .google .api .client .util .Key
113120 private java .lang .String queryWaitTimeout ;
114121
115122 /**
116123 * Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a server is allowed to
117- * be idle before it is disconnected. 0 disables.
124+ * be idle before it is disconnected. 0 disables. Note: This field should not be added to client
125+ * libraries if not present already.
118126 * The value may be {@code null}.
119127 */
120128 @ com .google .api .client .util .Key
121129 private java .lang .String serverIdleTimeout ;
122130
123131 /**
124132 * Optional. Deprecated. Use 'flags' instead. The list of users that are allowed to connect to the
125- * MCP stats console. The users must exist in the database.
133+ * MCP stats console. The users must exist in the database. Note: This field should not be added
134+ * to client libraries if not present already.
126135 * The value may be {@code null}.
127136 */
128137 @ com .google .api .client .util .Key
129138 private java .util .List <java .lang .String > statsUsers ;
130139
131140 /**
132- * Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20.
141+ * Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20. Note: This
142+ * field should not be added to client libraries if not present already.
133143 * @return value or {@code null} for none
134144 */
135145 public java .lang .String getDefaultPoolSize () {
136146 return defaultPoolSize ;
137147 }
138148
139149 /**
140- * Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20.
150+ * Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20. Note: This
151+ * field should not be added to client libraries if not present already.
141152 * @param defaultPoolSize defaultPoolSize or {@code null} for none
142153 */
143154 public ConnectionPoolConfig setDefaultPoolSize (java .lang .String defaultPoolSize ) {
@@ -198,7 +209,8 @@ public ConnectionPoolConfig setFlags(java.util.Map<String, java.lang.String> fla
198209
199210 /**
200211 * Optional. Deprecated. Use 'flags' instead. The list of startup parameters to ignore. Defaults
201- * to ["extra_float_digits"]
212+ * to ["extra_float_digits"] Note: This field should not be added to client libraries if not
213+ * present already.
202214 * @return value or {@code null} for none
203215 */
204216 public java .util .List <java .lang .String > getIgnoreStartupParameters () {
@@ -207,7 +219,8 @@ public java.util.List<java.lang.String> getIgnoreStartupParameters() {
207219
208220 /**
209221 * Optional. Deprecated. Use 'flags' instead. The list of startup parameters to ignore. Defaults
210- * to ["extra_float_digits"]
222+ * to ["extra_float_digits"] Note: This field should not be added to client libraries if not
223+ * present already.
211224 * @param ignoreStartupParameters ignoreStartupParameters or {@code null} for none
212225 */
213226 public ConnectionPoolConfig setIgnoreStartupParameters (java .util .List <java .lang .String > ignoreStartupParameters ) {
@@ -217,6 +230,7 @@ public ConnectionPoolConfig setIgnoreStartupParameters(java.util.List<java.lang.
217230
218231 /**
219232 * Optional. Deprecated. Use 'flags' instead. The maximum number of client connections allowed.
233+ * Note: This field should not be added to client libraries if not present already.
220234 * @return value or {@code null} for none
221235 */
222236 public java .lang .String getMaxClientConn () {
@@ -225,6 +239,7 @@ public java.lang.String getMaxClientConn() {
225239
226240 /**
227241 * Optional. Deprecated. Use 'flags' instead. The maximum number of client connections allowed.
242+ * Note: This field should not be added to client libraries if not present already.
228243 * @param maxClientConn maxClientConn or {@code null} for none
229244 */
230245 public ConnectionPoolConfig setMaxClientConn (java .lang .String maxClientConn ) {
@@ -236,7 +251,8 @@ public ConnectionPoolConfig setMaxClientConn(java.lang.String maxClientConn) {
236251 * Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed.
237252 * MCP makes sure that any statement prepared by a client, up to this limit, is available on the
238253 * backing server connection in transaction and statement pooling mode. Even if the statement was
239- * originally prepared on another server connection. Defaults to 0.
254+ * originally prepared on another server connection. Defaults to 0. Note: This field should not be
255+ * added to client libraries if not present already.
240256 * @return value or {@code null} for none
241257 */
242258 public java .lang .String getMaxPreparedStatements () {
@@ -247,7 +263,8 @@ public java.lang.String getMaxPreparedStatements() {
247263 * Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed.
248264 * MCP makes sure that any statement prepared by a client, up to this limit, is available on the
249265 * backing server connection in transaction and statement pooling mode. Even if the statement was
250- * originally prepared on another server connection. Defaults to 0.
266+ * originally prepared on another server connection. Defaults to 0. Note: This field should not be
267+ * added to client libraries if not present already.
251268 * @param maxPreparedStatements maxPreparedStatements or {@code null} for none
252269 */
253270 public ConnectionPoolConfig setMaxPreparedStatements (java .lang .String maxPreparedStatements ) {
@@ -256,15 +273,17 @@ public ConnectionPoolConfig setMaxPreparedStatements(java.lang.String maxPrepare
256273 }
257274
258275 /**
259- * Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0.
276+ * Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0. Note: This
277+ * field should not be added to client libraries if not present already.
260278 * @return value or {@code null} for none
261279 */
262280 public java .lang .String getMinPoolSize () {
263281 return minPoolSize ;
264282 }
265283
266284 /**
267- * Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0.
285+ * Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0. Note: This
286+ * field should not be added to client libraries if not present already.
268287 * @param minPoolSize minPoolSize or {@code null} for none
269288 */
270289 public ConnectionPoolConfig setMinPoolSize (java .lang .String minPoolSize ) {
@@ -274,6 +293,7 @@ public ConnectionPoolConfig setMinPoolSize(java.lang.String minPoolSize) {
274293
275294 /**
276295 * Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
296+ * Note: This field should not be added to client libraries if not present already.
277297 * @return value or {@code null} for none
278298 */
279299 public java .lang .String getPoolMode () {
@@ -282,6 +302,7 @@ public java.lang.String getPoolMode() {
282302
283303 /**
284304 * Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.
305+ * Note: This field should not be added to client libraries if not present already.
285306 * @param poolMode poolMode or {@code null} for none
286307 */
287308 public ConnectionPoolConfig setPoolMode (java .lang .String poolMode ) {
@@ -309,7 +330,8 @@ public ConnectionPoolConfig setPoolerCount(java.lang.Integer poolerCount) {
309330 /**
310331 * Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to
311332 * spend waiting for execution. If the query is not assigned to a server during that time, the
312- * client is disconnected. 0 disables.
333+ * client is disconnected. 0 disables. Note: This field should not be added to client libraries if
334+ * not present already.
313335 * @return value or {@code null} for none
314336 */
315337 public java .lang .String getQueryWaitTimeout () {
@@ -319,7 +341,8 @@ public java.lang.String getQueryWaitTimeout() {
319341 /**
320342 * Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to
321343 * spend waiting for execution. If the query is not assigned to a server during that time, the
322- * client is disconnected. 0 disables.
344+ * client is disconnected. 0 disables. Note: This field should not be added to client libraries if
345+ * not present already.
323346 * @param queryWaitTimeout queryWaitTimeout or {@code null} for none
324347 */
325348 public ConnectionPoolConfig setQueryWaitTimeout (java .lang .String queryWaitTimeout ) {
@@ -329,7 +352,8 @@ public ConnectionPoolConfig setQueryWaitTimeout(java.lang.String queryWaitTimeou
329352
330353 /**
331354 * Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a server is allowed to
332- * be idle before it is disconnected. 0 disables.
355+ * be idle before it is disconnected. 0 disables. Note: This field should not be added to client
356+ * libraries if not present already.
333357 * @return value or {@code null} for none
334358 */
335359 public java .lang .String getServerIdleTimeout () {
@@ -338,7 +362,8 @@ public java.lang.String getServerIdleTimeout() {
338362
339363 /**
340364 * Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a server is allowed to
341- * be idle before it is disconnected. 0 disables.
365+ * be idle before it is disconnected. 0 disables. Note: This field should not be added to client
366+ * libraries if not present already.
342367 * @param serverIdleTimeout serverIdleTimeout or {@code null} for none
343368 */
344369 public ConnectionPoolConfig setServerIdleTimeout (java .lang .String serverIdleTimeout ) {
@@ -348,7 +373,8 @@ public ConnectionPoolConfig setServerIdleTimeout(java.lang.String serverIdleTime
348373
349374 /**
350375 * Optional. Deprecated. Use 'flags' instead. The list of users that are allowed to connect to the
351- * MCP stats console. The users must exist in the database.
376+ * MCP stats console. The users must exist in the database. Note: This field should not be added
377+ * to client libraries if not present already.
352378 * @return value or {@code null} for none
353379 */
354380 public java .util .List <java .lang .String > getStatsUsers () {
@@ -357,7 +383,8 @@ public java.util.List<java.lang.String> getStatsUsers() {
357383
358384 /**
359385 * Optional. Deprecated. Use 'flags' instead. The list of users that are allowed to connect to the
360- * MCP stats console. The users must exist in the database.
386+ * MCP stats console. The users must exist in the database. Note: This field should not be added
387+ * to client libraries if not present already.
361388 * @param statsUsers statsUsers or {@code null} for none
362389 */
363390 public ConnectionPoolConfig setStatsUsers (java .util .List <java .lang .String > statsUsers ) {
0 commit comments