Skip to content

Commit 91c9ecd

Browse files
1 parent e82a1d4 commit 91c9ecd

File tree

14 files changed

+159
-21
lines changed

14 files changed

+159
-21
lines changed

clients/google-api-services-alloydb/v1/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>v1-rev20250904-2.0.0</version>
25+
<version>v1-rev20250910-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:v1-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20250910-2.0.0'
3939
}
4040
```
4141

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.alloydb.v1.model;
18+
19+
/**
20+
* Configuration for Managed Connection Pool (MCP).
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ConnectionPoolConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Whether to enable Managed Connection Pool (MCP).
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean enabled;
38+
39+
/**
40+
* Optional. Connection Pool flags, as a list of "key": "value" pairs.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.Map<String, java.lang.String> flags;
45+
46+
/**
47+
* Output only. The number of running poolers per instance.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.Integer poolerCount;
52+
53+
/**
54+
* Optional. Whether to enable Managed Connection Pool (MCP).
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.Boolean getEnabled() {
58+
return enabled;
59+
}
60+
61+
/**
62+
* Optional. Whether to enable Managed Connection Pool (MCP).
63+
* @param enabled enabled or {@code null} for none
64+
*/
65+
public ConnectionPoolConfig setEnabled(java.lang.Boolean enabled) {
66+
this.enabled = enabled;
67+
return this;
68+
}
69+
70+
/**
71+
* Optional. Connection Pool flags, as a list of "key": "value" pairs.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.Map<String, java.lang.String> getFlags() {
75+
return flags;
76+
}
77+
78+
/**
79+
* Optional. Connection Pool flags, as a list of "key": "value" pairs.
80+
* @param flags flags or {@code null} for none
81+
*/
82+
public ConnectionPoolConfig setFlags(java.util.Map<String, java.lang.String> flags) {
83+
this.flags = flags;
84+
return this;
85+
}
86+
87+
/**
88+
* Output only. The number of running poolers per instance.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.Integer getPoolerCount() {
92+
return poolerCount;
93+
}
94+
95+
/**
96+
* Output only. The number of running poolers per instance.
97+
* @param poolerCount poolerCount or {@code null} for none
98+
*/
99+
public ConnectionPoolConfig setPoolerCount(java.lang.Integer poolerCount) {
100+
this.poolerCount = poolerCount;
101+
return this;
102+
}
103+
104+
@Override
105+
public ConnectionPoolConfig set(String fieldName, Object value) {
106+
return (ConnectionPoolConfig) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public ConnectionPoolConfig clone() {
111+
return (ConnectionPoolConfig) super.clone();
112+
}
113+
114+
}

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/Instance.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class Instance extends com.google.api.client.json.GenericJson {
6666
@com.google.api.client.util.Key
6767
private ClientConnectionConfig clientConnectionConfig;
6868

69+
/**
70+
* Optional. The configuration for Managed Connection Pool (MCP).
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private ConnectionPoolConfig connectionPoolConfig;
75+
6976
/**
7077
* Output only. Create time stamp
7178
* The value may be {@code null}.
@@ -350,6 +357,23 @@ public Instance setClientConnectionConfig(ClientConnectionConfig clientConnectio
350357
return this;
351358
}
352359

360+
/**
361+
* Optional. The configuration for Managed Connection Pool (MCP).
362+
* @return value or {@code null} for none
363+
*/
364+
public ConnectionPoolConfig getConnectionPoolConfig() {
365+
return connectionPoolConfig;
366+
}
367+
368+
/**
369+
* Optional. The configuration for Managed Connection Pool (MCP).
370+
* @param connectionPoolConfig connectionPoolConfig or {@code null} for none
371+
*/
372+
public Instance setConnectionPoolConfig(ConnectionPoolConfig connectionPoolConfig) {
373+
this.connectionPoolConfig = connectionPoolConfig;
374+
return this;
375+
}
376+
353377
/**
354378
* Output only. Create time stamp
355379
* @return value or {@code null} for none

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource
21-
* level events into Condor platform. Next ID: 12
21+
* level events into Condor platform. Next ID: 13
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:

clients/google-api-services-alloydb/v1/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>v1-rev20250904-2.0.0</version>
12-
<name>AlloyDB API v1-rev20250904-2.0.0</name>
11+
<version>v1-rev20250910-2.0.0</version>
12+
<name>AlloyDB API v1-rev20250910-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-alloydb/v1/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>v1-rev20250904-2.0.0</version>
25+
<version>v1-rev20250910-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:v1-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20250910-2.0.0'
3939
}
4040
```
4141

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-rev20250904-2.0.0</version>
25+
<version>v1alpha-rev20250910-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-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250910-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource
21-
* level events into Condor platform. Next ID: 12
21+
* level events into Condor platform. Next ID: 13
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the AlloyDB API. For a detailed explanation see:

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-rev20250904-2.0.0</version>
12-
<name>AlloyDB API v1alpha-rev20250904-2.0.0</name>
11+
<version>v1alpha-rev20250910-2.0.0</version>
12+
<name>AlloyDB API v1alpha-rev20250910-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-rev20250904-2.0.0</version>
25+
<version>v1alpha-rev20250910-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-rev20250904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250910-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)