30
30
public final class ConnectionPoolConfig extends com .google .api .client .json .GenericJson {
31
31
32
32
/**
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.
34
35
* The value may be {@code null}.
35
36
*/
36
37
@ com .google .api .client .util .Key
@@ -59,14 +60,16 @@ public final class ConnectionPoolConfig extends com.google.api.client.json.Gener
59
60
60
61
/**
61
62
* 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.
63
65
* The value may be {@code null}.
64
66
*/
65
67
@ com .google .api .client .util .Key
66
68
private java .util .List <java .lang .String > ignoreStartupParameters ;
67
69
68
70
/**
69
71
* 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.
70
73
* The value may be {@code null}.
71
74
*/
72
75
@ com .google .api .client .util .Key
@@ -76,21 +79,24 @@ public final class ConnectionPoolConfig extends com.google.api.client.json.Gener
76
79
* Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed.
77
80
* MCP makes sure that any statement prepared by a client, up to this limit, is available on the
78
81
* 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.
80
84
* The value may be {@code null}.
81
85
*/
82
86
@ com .google .api .client .util .Key
83
87
private java .lang .String maxPreparedStatements ;
84
88
85
89
/**
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.
87
92
* The value may be {@code null}.
88
93
*/
89
94
@ com .google .api .client .util .Key
90
95
private java .lang .String minPoolSize ;
91
96
92
97
/**
93
98
* 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.
94
100
* The value may be {@code null}.
95
101
*/
96
102
@ com .google .api .client .util .Key
@@ -106,38 +112,43 @@ public final class ConnectionPoolConfig extends com.google.api.client.json.Gener
106
112
/**
107
113
* Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to
108
114
* 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.
110
117
* The value may be {@code null}.
111
118
*/
112
119
@ com .google .api .client .util .Key
113
120
private java .lang .String queryWaitTimeout ;
114
121
115
122
/**
116
123
* 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.
118
126
* The value may be {@code null}.
119
127
*/
120
128
@ com .google .api .client .util .Key
121
129
private java .lang .String serverIdleTimeout ;
122
130
123
131
/**
124
132
* 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.
126
135
* The value may be {@code null}.
127
136
*/
128
137
@ com .google .api .client .util .Key
129
138
private java .util .List <java .lang .String > statsUsers ;
130
139
131
140
/**
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.
133
143
* @return value or {@code null} for none
134
144
*/
135
145
public java .lang .String getDefaultPoolSize () {
136
146
return defaultPoolSize ;
137
147
}
138
148
139
149
/**
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.
141
152
* @param defaultPoolSize defaultPoolSize or {@code null} for none
142
153
*/
143
154
public ConnectionPoolConfig setDefaultPoolSize (java .lang .String defaultPoolSize ) {
@@ -198,7 +209,8 @@ public ConnectionPoolConfig setFlags(java.util.Map<String, java.lang.String> fla
198
209
199
210
/**
200
211
* 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.
202
214
* @return value or {@code null} for none
203
215
*/
204
216
public java .util .List <java .lang .String > getIgnoreStartupParameters () {
@@ -207,7 +219,8 @@ public java.util.List<java.lang.String> getIgnoreStartupParameters() {
207
219
208
220
/**
209
221
* 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.
211
224
* @param ignoreStartupParameters ignoreStartupParameters or {@code null} for none
212
225
*/
213
226
public ConnectionPoolConfig setIgnoreStartupParameters (java .util .List <java .lang .String > ignoreStartupParameters ) {
@@ -217,6 +230,7 @@ public ConnectionPoolConfig setIgnoreStartupParameters(java.util.List<java.lang.
217
230
218
231
/**
219
232
* 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.
220
234
* @return value or {@code null} for none
221
235
*/
222
236
public java .lang .String getMaxClientConn () {
@@ -225,6 +239,7 @@ public java.lang.String getMaxClientConn() {
225
239
226
240
/**
227
241
* 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.
228
243
* @param maxClientConn maxClientConn or {@code null} for none
229
244
*/
230
245
public ConnectionPoolConfig setMaxClientConn (java .lang .String maxClientConn ) {
@@ -236,7 +251,8 @@ public ConnectionPoolConfig setMaxClientConn(java.lang.String maxClientConn) {
236
251
* Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed.
237
252
* MCP makes sure that any statement prepared by a client, up to this limit, is available on the
238
253
* 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.
240
256
* @return value or {@code null} for none
241
257
*/
242
258
public java .lang .String getMaxPreparedStatements () {
@@ -247,7 +263,8 @@ public java.lang.String getMaxPreparedStatements() {
247
263
* Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed.
248
264
* MCP makes sure that any statement prepared by a client, up to this limit, is available on the
249
265
* 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.
251
268
* @param maxPreparedStatements maxPreparedStatements or {@code null} for none
252
269
*/
253
270
public ConnectionPoolConfig setMaxPreparedStatements (java .lang .String maxPreparedStatements ) {
@@ -256,15 +273,17 @@ public ConnectionPoolConfig setMaxPreparedStatements(java.lang.String maxPrepare
256
273
}
257
274
258
275
/**
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.
260
278
* @return value or {@code null} for none
261
279
*/
262
280
public java .lang .String getMinPoolSize () {
263
281
return minPoolSize ;
264
282
}
265
283
266
284
/**
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.
268
287
* @param minPoolSize minPoolSize or {@code null} for none
269
288
*/
270
289
public ConnectionPoolConfig setMinPoolSize (java .lang .String minPoolSize ) {
@@ -274,6 +293,7 @@ public ConnectionPoolConfig setMinPoolSize(java.lang.String minPoolSize) {
274
293
275
294
/**
276
295
* 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.
277
297
* @return value or {@code null} for none
278
298
*/
279
299
public java .lang .String getPoolMode () {
@@ -282,6 +302,7 @@ public java.lang.String getPoolMode() {
282
302
283
303
/**
284
304
* 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.
285
306
* @param poolMode poolMode or {@code null} for none
286
307
*/
287
308
public ConnectionPoolConfig setPoolMode (java .lang .String poolMode ) {
@@ -309,7 +330,8 @@ public ConnectionPoolConfig setPoolerCount(java.lang.Integer poolerCount) {
309
330
/**
310
331
* Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to
311
332
* 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.
313
335
* @return value or {@code null} for none
314
336
*/
315
337
public java .lang .String getQueryWaitTimeout () {
@@ -319,7 +341,8 @@ public java.lang.String getQueryWaitTimeout() {
319
341
/**
320
342
* Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to
321
343
* 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.
323
346
* @param queryWaitTimeout queryWaitTimeout or {@code null} for none
324
347
*/
325
348
public ConnectionPoolConfig setQueryWaitTimeout (java .lang .String queryWaitTimeout ) {
@@ -329,7 +352,8 @@ public ConnectionPoolConfig setQueryWaitTimeout(java.lang.String queryWaitTimeou
329
352
330
353
/**
331
354
* 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.
333
357
* @return value or {@code null} for none
334
358
*/
335
359
public java .lang .String getServerIdleTimeout () {
@@ -338,7 +362,8 @@ public java.lang.String getServerIdleTimeout() {
338
362
339
363
/**
340
364
* 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.
342
367
* @param serverIdleTimeout serverIdleTimeout or {@code null} for none
343
368
*/
344
369
public ConnectionPoolConfig setServerIdleTimeout (java .lang .String serverIdleTimeout ) {
@@ -348,7 +373,8 @@ public ConnectionPoolConfig setServerIdleTimeout(java.lang.String serverIdleTime
348
373
349
374
/**
350
375
* 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.
352
378
* @return value or {@code null} for none
353
379
*/
354
380
public java .util .List <java .lang .String > getStatsUsers () {
@@ -357,7 +383,8 @@ public java.util.List<java.lang.String> getStatsUsers() {
357
383
358
384
/**
359
385
* 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.
361
388
* @param statsUsers statsUsers or {@code null} for none
362
389
*/
363
390
public ConnectionPoolConfig setStatsUsers (java .util .List <java .lang .String > statsUsers ) {
0 commit comments