Skip to content

Commit 3888ad3

Browse files
1 parent c7d5e82 commit 3888ad3

File tree

9 files changed

+44
-14
lines changed

9 files changed

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

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/InstanceUpgradeDetails.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.v1.model;
1818

1919
/**
20-
* Details regarding the upgrade of instaces associated with a cluster.
20+
* Details regarding the upgrade of instances associated with a cluster.
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/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-rev20250508-2.0.0</version>
12-
<name>AlloyDB API v1-rev20250508-2.0.0</name>
11+
<version>v1-rev20250522-2.0.0</version>
12+
<name>AlloyDB API v1-rev20250522-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-rev20250508-2.0.0</version>
25+
<version>v1-rev20250522-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-rev20250508-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1-rev20250522-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-rev20250508-2.0.0</version>
25+
<version>v1alpha-rev20250522-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-rev20250508-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250522-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: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,15 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
255255
@com.google.api.client.util.Key
256256
private SecondaryConfig secondaryConfig;
257257

258+
/**
259+
* Output only. AlloyDB per-cluster service agent email. This service account is created per-
260+
* cluster per-project, and is different from that of the primary service agent which is created
261+
* per-project. The service account naming format is subject to change.
262+
* The value may be {@code null}.
263+
*/
264+
@com.google.api.client.util.Key
265+
private java.lang.String serviceAccountEmail;
266+
258267
/**
259268
* SSL configuration for this AlloyDB cluster.
260269
* The value may be {@code null}.
@@ -841,6 +850,27 @@ public Cluster setSecondaryConfig(SecondaryConfig secondaryConfig) {
841850
return this;
842851
}
843852

853+
/**
854+
* Output only. AlloyDB per-cluster service agent email. This service account is created per-
855+
* cluster per-project, and is different from that of the primary service agent which is created
856+
* per-project. The service account naming format is subject to change.
857+
* @return value or {@code null} for none
858+
*/
859+
public java.lang.String getServiceAccountEmail() {
860+
return serviceAccountEmail;
861+
}
862+
863+
/**
864+
* Output only. AlloyDB per-cluster service agent email. This service account is created per-
865+
* cluster per-project, and is different from that of the primary service agent which is created
866+
* per-project. The service account naming format is subject to change.
867+
* @param serviceAccountEmail serviceAccountEmail or {@code null} for none
868+
*/
869+
public Cluster setServiceAccountEmail(java.lang.String serviceAccountEmail) {
870+
this.serviceAccountEmail = serviceAccountEmail;
871+
return this;
872+
}
873+
844874
/**
845875
* SSL configuration for this AlloyDB cluster.
846876
* @return value or {@code null} for none

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/InstanceUpgradeDetails.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-
* Details regarding the upgrade of instaces associated with a cluster.
20+
* Details regarding the upgrade of instances associated with a cluster.
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/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-rev20250508-2.0.0</version>
12-
<name>AlloyDB API v1alpha-rev20250508-2.0.0</name>
11+
<version>v1alpha-rev20250522-2.0.0</version>
12+
<name>AlloyDB API v1alpha-rev20250522-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-rev20250508-2.0.0</version>
25+
<version>v1alpha-rev20250522-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-rev20250508-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20250522-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)