Skip to content

Commit e3e9b70

Browse files
1 parent f570dbb commit e3e9b70

File tree

10 files changed

+114
-12
lines changed

10 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Checks for existence of (multi-cluster) routing configuration that allows automatic failover to
34+
* a different zone/region in case of an outage. Applicable to Bigtable resources.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean automaticFailoverRoutingConfigured;
39+
3240
/**
3341
* Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone.
3442
* Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from
@@ -58,6 +66,25 @@ public final class StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguratio
5866
@com.google.api.client.util.Key
5967
private java.lang.Boolean promotableReplicaConfigured;
6068

69+
/**
70+
* Checks for existence of (multi-cluster) routing configuration that allows automatic failover to
71+
* a different zone/region in case of an outage. Applicable to Bigtable resources.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.Boolean getAutomaticFailoverRoutingConfigured() {
75+
return automaticFailoverRoutingConfigured;
76+
}
77+
78+
/**
79+
* Checks for existence of (multi-cluster) routing configuration that allows automatic failover to
80+
* a different zone/region in case of an outage. Applicable to Bigtable resources.
81+
* @param automaticFailoverRoutingConfigured automaticFailoverRoutingConfigured or {@code null} for none
82+
*/
83+
public StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration setAutomaticFailoverRoutingConfigured(java.lang.Boolean automaticFailoverRoutingConfigured) {
84+
this.automaticFailoverRoutingConfigured = automaticFailoverRoutingConfigured;
85+
return this;
86+
}
87+
6188
/**
6289
* Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone.
6390
* Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class User extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.util.List<java.lang.String> databaseRoles;
3939

40+
/**
41+
* Input only. If the user already exists and it has additional roles, keep them granted.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean keepExtraRoles;
46+
4047
/**
4148
* Output only. Name of the resource in the form of
4249
* projects/{project}/locations/{location}/cluster/{cluster}/users/{user}.
@@ -78,6 +85,23 @@ public User setDatabaseRoles(java.util.List<java.lang.String> databaseRoles) {
7885
return this;
7986
}
8087

88+
/**
89+
* Input only. If the user already exists and it has additional roles, keep them granted.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.Boolean getKeepExtraRoles() {
93+
return keepExtraRoles;
94+
}
95+
96+
/**
97+
* Input only. If the user already exists and it has additional roles, keep them granted.
98+
* @param keepExtraRoles keepExtraRoles or {@code null} for none
99+
*/
100+
public User setKeepExtraRoles(java.lang.Boolean keepExtraRoles) {
101+
this.keepExtraRoles = keepExtraRoles;
102+
return this;
103+
}
104+
81105
/**
82106
* Output only. Name of the resource in the form of
83107
* projects/{project}/locations/{location}/cluster/{cluster}/users/{user}.

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Checks for existence of (multi-cluster) routing configuration that allows automatic failover to
34+
* a different zone/region in case of an outage. Applicable to Bigtable resources.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean automaticFailoverRoutingConfigured;
39+
3240
/**
3341
* Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone.
3442
* Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from
@@ -58,6 +66,25 @@ public final class StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguratio
5866
@com.google.api.client.util.Key
5967
private java.lang.Boolean promotableReplicaConfigured;
6068

69+
/**
70+
* Checks for existence of (multi-cluster) routing configuration that allows automatic failover to
71+
* a different zone/region in case of an outage. Applicable to Bigtable resources.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.Boolean getAutomaticFailoverRoutingConfigured() {
75+
return automaticFailoverRoutingConfigured;
76+
}
77+
78+
/**
79+
* Checks for existence of (multi-cluster) routing configuration that allows automatic failover to
80+
* a different zone/region in case of an outage. Applicable to Bigtable resources.
81+
* @param automaticFailoverRoutingConfigured automaticFailoverRoutingConfigured or {@code null} for none
82+
*/
83+
public StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration setAutomaticFailoverRoutingConfigured(java.lang.Boolean automaticFailoverRoutingConfigured) {
84+
this.automaticFailoverRoutingConfigured = automaticFailoverRoutingConfigured;
85+
return this;
86+
}
87+
6188
/**
6289
* Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone.
6390
* Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class User extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.util.List<java.lang.String> databaseRoles;
3939

40+
/**
41+
* Input only. If the user already exists and it has additional roles, keep them granted.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean keepExtraRoles;
46+
4047
/**
4148
* Output only. Name of the resource in the form of
4249
* projects/{project}/locations/{location}/cluster/{cluster}/users/{user}.
@@ -78,6 +85,23 @@ public User setDatabaseRoles(java.util.List<java.lang.String> databaseRoles) {
7885
return this;
7986
}
8087

88+
/**
89+
* Input only. If the user already exists and it has additional roles, keep them granted.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.Boolean getKeepExtraRoles() {
93+
return keepExtraRoles;
94+
}
95+
96+
/**
97+
* Input only. If the user already exists and it has additional roles, keep them granted.
98+
* @param keepExtraRoles keepExtraRoles or {@code null} for none
99+
*/
100+
public User setKeepExtraRoles(java.lang.Boolean keepExtraRoles) {
101+
this.keepExtraRoles = keepExtraRoles;
102+
return this;
103+
}
104+
81105
/**
82106
* Output only. Name of the resource in the form of
83107
* projects/{project}/locations/{location}/cluster/{cluster}/users/{user}.

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

0 commit comments

Comments
 (0)