Skip to content

Commit 747b866

Browse files
1 parent 5296ed6 commit 747b866

File tree

12 files changed

+292
-14
lines changed

12 files changed

+292
-14
lines changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.redis.v1.model;
18+
19+
/**
20+
* BackupDRConfiguration to capture the backup and disaster recovery details of database resource.
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 Google Cloud Memorystore for Redis API. For a
24+
* detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class BackupDRConfiguration extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Indicates if the resource is managed by BackupDR.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean backupdrManaged;
39+
40+
/**
41+
* Indicates if the resource is managed by BackupDR.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getBackupdrManaged() {
45+
return backupdrManaged;
46+
}
47+
48+
/**
49+
* Indicates if the resource is managed by BackupDR.
50+
* @param backupdrManaged backupdrManaged or {@code null} for none
51+
*/
52+
public BackupDRConfiguration setBackupdrManaged(java.lang.Boolean backupdrManaged) {
53+
this.backupdrManaged = backupdrManaged;
54+
return this;
55+
}
56+
57+
@Override
58+
public BackupDRConfiguration set(String fieldName, Object value) {
59+
return (BackupDRConfiguration) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public BackupDRConfiguration clone() {
64+
return (BackupDRConfiguration) super.clone();
65+
}
66+
67+
}

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,20 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
227227
@com.google.api.client.util.Key
228228
private java.lang.Integer replicaCount;
229229

230+
/**
231+
* Optional. Output only. Reserved for future use.
232+
* The value may be {@code null}.
233+
*/
234+
@com.google.api.client.util.Key
235+
private java.lang.Boolean satisfiesPzi;
236+
237+
/**
238+
* Optional. Output only. Reserved for future use.
239+
* The value may be {@code null}.
240+
*/
241+
@com.google.api.client.util.Key
242+
private java.lang.Boolean satisfiesPzs;
243+
230244
/**
231245
* Optional. Number of shards for the Redis cluster.
232246
* The value may be {@code null}.
@@ -758,6 +772,40 @@ public Cluster setReplicaCount(java.lang.Integer replicaCount) {
758772
return this;
759773
}
760774

775+
/**
776+
* Optional. Output only. Reserved for future use.
777+
* @return value or {@code null} for none
778+
*/
779+
public java.lang.Boolean getSatisfiesPzi() {
780+
return satisfiesPzi;
781+
}
782+
783+
/**
784+
* Optional. Output only. Reserved for future use.
785+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
786+
*/
787+
public Cluster setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
788+
this.satisfiesPzi = satisfiesPzi;
789+
return this;
790+
}
791+
792+
/**
793+
* Optional. Output only. Reserved for future use.
794+
* @return value or {@code null} for none
795+
*/
796+
public java.lang.Boolean getSatisfiesPzs() {
797+
return satisfiesPzs;
798+
}
799+
800+
/**
801+
* Optional. Output only. Reserved for future use.
802+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
803+
*/
804+
public Cluster setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
805+
this.satisfiesPzs = satisfiesPzs;
806+
return this;
807+
}
808+
761809
/**
762810
* Optional. Number of shards for the Redis cluster.
763811
* @return value or {@code null} for none

clients/google-api-services-redis/v1/2.0.0/com/google/api/services/redis/v1/model/DatabaseResourceMetadata.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Common model for database resource instance metadata. Next ID: 25
20+
* Common model for database resource instance metadata. Next ID: 26
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 Google Cloud Memorystore for Redis API. For a
@@ -51,6 +51,13 @@ public final class DatabaseResourceMetadata extends com.google.api.client.json.G
5151
@com.google.api.client.util.Key
5252
private BackupRun backupRun;
5353

54+
/**
55+
* Optional. BackupDR Configuration for the resource.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private BackupDRConfiguration backupdrConfiguration;
60+
5461
/**
5562
* The creation time of the resource, i.e. the time when resource is created and recorded in
5663
* partner service.
@@ -253,6 +260,23 @@ public DatabaseResourceMetadata setBackupRun(BackupRun backupRun) {
253260
return this;
254261
}
255262

263+
/**
264+
* Optional. BackupDR Configuration for the resource.
265+
* @return value or {@code null} for none
266+
*/
267+
public BackupDRConfiguration getBackupdrConfiguration() {
268+
return backupdrConfiguration;
269+
}
270+
271+
/**
272+
* Optional. BackupDR Configuration for the resource.
273+
* @param backupdrConfiguration backupdrConfiguration or {@code null} for none
274+
*/
275+
public DatabaseResourceMetadata setBackupdrConfiguration(BackupDRConfiguration backupdrConfiguration) {
276+
this.backupdrConfiguration = backupdrConfiguration;
277+
return this;
278+
}
279+
256280
/**
257281
* The creation time of the resource, i.e. the time when resource is created and recorded in
258282
* partner service.

clients/google-api-services-redis/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-redis</artifactId>
11-
<version>v1-rev20250701-2.0.0</version>
12-
<name>Google Cloud Memorystore for Redis API v1-rev20250701-2.0.0</name>
11+
<version>v1-rev20250718-2.0.0</version>
12+
<name>Google Cloud Memorystore for Redis API v1-rev20250718-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-redis/v1beta1/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-redis</artifactId>
25-
<version>v1beta1-rev20250701-2.0.0</version>
25+
<version>v1beta1-rev20250718-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-redis:v1beta1-rev20250701-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20250718-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.redis.v1beta1.model;
18+
19+
/**
20+
* BackupDRConfiguration to capture the backup and disaster recovery details of database resource.
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 Google Cloud Memorystore for Redis API. For a
24+
* detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class BackupDRConfiguration extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Indicates if the resource is managed by BackupDR.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean backupdrManaged;
39+
40+
/**
41+
* Indicates if the resource is managed by BackupDR.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getBackupdrManaged() {
45+
return backupdrManaged;
46+
}
47+
48+
/**
49+
* Indicates if the resource is managed by BackupDR.
50+
* @param backupdrManaged backupdrManaged or {@code null} for none
51+
*/
52+
public BackupDRConfiguration setBackupdrManaged(java.lang.Boolean backupdrManaged) {
53+
this.backupdrManaged = backupdrManaged;
54+
return this;
55+
}
56+
57+
@Override
58+
public BackupDRConfiguration set(String fieldName, Object value) {
59+
return (BackupDRConfiguration) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public BackupDRConfiguration clone() {
64+
return (BackupDRConfiguration) super.clone();
65+
}
66+
67+
}

clients/google-api-services-redis/v1beta1/2.0.0/com/google/api/services/redis/v1beta1/model/Cluster.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,20 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
227227
@com.google.api.client.util.Key
228228
private java.lang.Integer replicaCount;
229229

230+
/**
231+
* Optional. Output only. Reserved for future use.
232+
* The value may be {@code null}.
233+
*/
234+
@com.google.api.client.util.Key
235+
private java.lang.Boolean satisfiesPzi;
236+
237+
/**
238+
* Optional. Output only. Reserved for future use.
239+
* The value may be {@code null}.
240+
*/
241+
@com.google.api.client.util.Key
242+
private java.lang.Boolean satisfiesPzs;
243+
230244
/**
231245
* Optional. Number of shards for the Redis cluster.
232246
* The value may be {@code null}.
@@ -758,6 +772,40 @@ public Cluster setReplicaCount(java.lang.Integer replicaCount) {
758772
return this;
759773
}
760774

775+
/**
776+
* Optional. Output only. Reserved for future use.
777+
* @return value or {@code null} for none
778+
*/
779+
public java.lang.Boolean getSatisfiesPzi() {
780+
return satisfiesPzi;
781+
}
782+
783+
/**
784+
* Optional. Output only. Reserved for future use.
785+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
786+
*/
787+
public Cluster setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
788+
this.satisfiesPzi = satisfiesPzi;
789+
return this;
790+
}
791+
792+
/**
793+
* Optional. Output only. Reserved for future use.
794+
* @return value or {@code null} for none
795+
*/
796+
public java.lang.Boolean getSatisfiesPzs() {
797+
return satisfiesPzs;
798+
}
799+
800+
/**
801+
* Optional. Output only. Reserved for future use.
802+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
803+
*/
804+
public Cluster setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
805+
this.satisfiesPzs = satisfiesPzs;
806+
return this;
807+
}
808+
761809
/**
762810
* Optional. Number of shards for the Redis cluster.
763811
* @return value or {@code null} for none

0 commit comments

Comments
 (0)