Skip to content

Commit 18df9b9

Browse files
1 parent 2cbbbbf commit 18df9b9

16 files changed

+172
-70
lines changed

clients/google-api-services-alloydb/v1alpha/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-alloydb</artifactId>
25-
<version>v1alpha-rev20250605-2.0.0</version>
25+
<version>v1alpha-rev20250612-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250605-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250612-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/ConnectionPoolConfig.java

Lines changed: 48 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
public 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) {

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/GeminiClusterConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.alloydb.v1alpha.model;
1818

1919
/**
20-
* Deprecated and unused. This field will be removed in the near future.
20+
* Deprecated and unused. This message will be removed in the near future.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/GeminiInstanceConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.alloydb.v1alpha.model;
1818

1919
/**
20-
* Deprecated and unused. This field will be removed in the near future.
20+
* Deprecated and unused. This message will be removed in the near future.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSi
7575
@com.google.api.client.util.Key
7676
private java.lang.String externalUri;
7777

78+
/**
79+
* This is used to identify the location of the resource. Example: "us-central1"
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private java.lang.String location;
84+
7885
/**
7986
* Required. The name of the signal, ex: PUBLIC_SQL_INSTANCE, SQL_LOG_ERROR_VERBOSITY etc.
8087
* The value may be {@code null}.
@@ -238,6 +245,23 @@ public StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData set
238245
return this;
239246
}
240247

248+
/**
249+
* This is used to identify the location of the resource. Example: "us-central1"
250+
* @return value or {@code null} for none
251+
*/
252+
public java.lang.String getLocation() {
253+
return location;
254+
}
255+
256+
/**
257+
* This is used to identify the location of the resource. Example: "us-central1"
258+
* @param location location or {@code null} for none
259+
*/
260+
public StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData setLocation(java.lang.String location) {
261+
this.location = location;
262+
return this;
263+
}
264+
241265
/**
242266
* Required. The name of the signal, ex: PUBLIC_SQL_INSTANCE, SQL_LOG_ERROR_VERBOSITY etc.
243267
* @return value or {@code null} for none

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/StorageDatabasecenterPartnerapiV1mainDatabaseResourceId.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public final class StorageDatabasecenterPartnerapiV1mainDatabaseResourceId exten
4949
* bigtableadmin.googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance
5050
* compute.googleapis.com/Instance firestore.googleapis.com/Database,
5151
* redis.googleapis.com/Instance, redis.googleapis.com/Cluster,
52-
* oracledatabase.googleapis.com/cloudExadataInfrastructures
53-
* oracledatabase.googleapis.com/cloudVmClusters oracledatabase.googleapis.com/autonomousDatabases
52+
* oracledatabase.googleapis.com/CloudExadataInfrastructure
53+
* oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/AutonomousDatabase
5454
* spanner.googleapis.com/Instance, spanner.googleapis.com/Database,
5555
* sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please refer go/condor-common-
5656
* datamodel
@@ -107,8 +107,8 @@ public StorageDatabasecenterPartnerapiV1mainDatabaseResourceId setProviderDescri
107107
* bigtableadmin.googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance
108108
* compute.googleapis.com/Instance firestore.googleapis.com/Database,
109109
* redis.googleapis.com/Instance, redis.googleapis.com/Cluster,
110-
* oracledatabase.googleapis.com/cloudExadataInfrastructures
111-
* oracledatabase.googleapis.com/cloudVmClusters oracledatabase.googleapis.com/autonomousDatabases
110+
* oracledatabase.googleapis.com/CloudExadataInfrastructure
111+
* oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/AutonomousDatabase
112112
* spanner.googleapis.com/Instance, spanner.googleapis.com/Database,
113113
* sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please refer go/condor-common-
114114
* datamodel
@@ -124,8 +124,8 @@ public java.lang.String getResourceType() {
124124
* bigtableadmin.googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance
125125
* compute.googleapis.com/Instance firestore.googleapis.com/Database,
126126
* redis.googleapis.com/Instance, redis.googleapis.com/Cluster,
127-
* oracledatabase.googleapis.com/cloudExadataInfrastructures
128-
* oracledatabase.googleapis.com/cloudVmClusters oracledatabase.googleapis.com/autonomousDatabases
127+
* oracledatabase.googleapis.com/CloudExadataInfrastructure
128+
* oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/AutonomousDatabase
129129
* spanner.googleapis.com/Instance, spanner.googleapis.com/Database,
130130
* sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please refer go/condor-common-
131131
* datamodel

clients/google-api-services-alloydb/v1alpha/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-alloydb</artifactId>
11-
<version>v1alpha-rev20250605-2.0.0</version>
12-
<name>AlloyDB API v1alpha-rev20250605-2.0.0</name>
11+
<version>v1alpha-rev20250612-2.0.0</version>
12+
<name>AlloyDB API v1alpha-rev20250612-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-alloydb/v1alpha/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-alloydb</artifactId>
25-
<version>v1alpha-rev20250605-2.0.0</version>
25+
<version>v1alpha-rev20250612-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250605-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250612-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)