Skip to content

Commit d2dac72

Browse files
1 parent e5c2964 commit d2dac72

File tree

15 files changed

+297
-18
lines changed

15 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
116116
@com.google.api.client.util.Key
117117
private java.lang.String databaseVersion;
118118

119+
/**
120+
* Optional. Configuration for Dataplex integration.
121+
* The value may be {@code null}.
122+
*/
123+
@com.google.api.client.util.Key
124+
private DataplexConfig dataplexConfig;
125+
119126
/**
120127
* Output only. Delete time stamp
121128
* The value may be {@code null}.
@@ -509,6 +516,23 @@ public Cluster setDatabaseVersion(java.lang.String databaseVersion) {
509516
return this;
510517
}
511518

519+
/**
520+
* Optional. Configuration for Dataplex integration.
521+
* @return value or {@code null} for none
522+
*/
523+
public DataplexConfig getDataplexConfig() {
524+
return dataplexConfig;
525+
}
526+
527+
/**
528+
* Optional. Configuration for Dataplex integration.
529+
* @param dataplexConfig dataplexConfig or {@code null} for none
530+
*/
531+
public Cluster setDataplexConfig(DataplexConfig dataplexConfig) {
532+
this.dataplexConfig = dataplexConfig;
533+
return this;
534+
}
535+
512536
/**
513537
* Output only. Delete time stamp
514538
* @return value or {@code null} for none
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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 Dataplex integration.
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 DataplexConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls
34+
* the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls
42+
* the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.Boolean getEnabled() {
46+
return enabled;
47+
}
48+
49+
/**
50+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls
51+
* the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
52+
* @param enabled enabled or {@code null} for none
53+
*/
54+
public DataplexConfig setEnabled(java.lang.Boolean enabled) {
55+
this.enabled = enabled;
56+
return this;
57+
}
58+
59+
@Override
60+
public DataplexConfig set(String fieldName, Object value) {
61+
return (DataplexConfig) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public DataplexConfig clone() {
66+
return (DataplexConfig) super.clone();
67+
}
68+
69+
}

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
116116
@com.google.api.client.util.Key
117117
private java.lang.String databaseVersion;
118118

119+
/**
120+
* Optional. Configuration for Dataplex integration.
121+
* The value may be {@code null}.
122+
*/
123+
@com.google.api.client.util.Key
124+
private DataplexConfig dataplexConfig;
125+
119126
/**
120127
* Output only. Delete time stamp
121128
* The value may be {@code null}.
@@ -540,6 +547,23 @@ public Cluster setDatabaseVersion(java.lang.String databaseVersion) {
540547
return this;
541548
}
542549

550+
/**
551+
* Optional. Configuration for Dataplex integration.
552+
* @return value or {@code null} for none
553+
*/
554+
public DataplexConfig getDataplexConfig() {
555+
return dataplexConfig;
556+
}
557+
558+
/**
559+
* Optional. Configuration for Dataplex integration.
560+
* @param dataplexConfig dataplexConfig or {@code null} for none
561+
*/
562+
public Cluster setDataplexConfig(DataplexConfig dataplexConfig) {
563+
this.dataplexConfig = dataplexConfig;
564+
return this;
565+
}
566+
543567
/**
544568
* Output only. Delete time stamp
545569
* @return value or {@code null} for none
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.v1alpha.model;
18+
19+
/**
20+
* Configuration for Dataplex integration.
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 DataplexConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls
34+
* the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls
42+
* the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.Boolean getEnabled() {
46+
return enabled;
47+
}
48+
49+
/**
50+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls
51+
* the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
52+
* @param enabled enabled or {@code null} for none
53+
*/
54+
public DataplexConfig setEnabled(java.lang.Boolean enabled) {
55+
this.enabled = enabled;
56+
return this;
57+
}
58+
59+
@Override
60+
public DataplexConfig set(String fieldName, Object value) {
61+
return (DataplexConfig) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public DataplexConfig clone() {
66+
return (DataplexConfig) super.clone();
67+
}
68+
69+
}

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

0 commit comments

Comments
 (0)