Skip to content

Commit 2bbcd47

Browse files
1 parent 700b41f commit 2bbcd47

File tree

5 files changed

+84
-12
lines changed

5 files changed

+84
-12
lines changed

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. A list of extra location types that should be used as conditions for
449-
* controlling the visibility of the locations.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. A list of extra location types that should be used as conditions for controlling the
455-
visibility of the locations.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. A list of extra location types that should be used as conditions for
463-
* controlling the visibility of the locations.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,34 @@ public final class BackupCollection extends com.google.api.client.json.GenericJs
5959
@com.google.api.client.util.Key
6060
private java.lang.String kmsKey;
6161

62+
/**
63+
* Output only. The last time a backup was created in the backup collection.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private String lastBackupTime;
68+
6269
/**
6370
* Identifier. Full resource path of the backup collection.
6471
* The value may be {@code null}.
6572
*/
6673
@com.google.api.client.util.Key
6774
private java.lang.String name;
6875

76+
/**
77+
* Output only. Total number of backups in the backup collection.
78+
* The value may be {@code null}.
79+
*/
80+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
81+
private java.lang.Long totalBackupCount;
82+
83+
/**
84+
* Output only. Total size of all backups in the backup collection.
85+
* The value may be {@code null}.
86+
*/
87+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
88+
private java.lang.Long totalBackupSizeBytes;
89+
6990
/**
7091
* Output only. System assigned unique identifier of the backup collection.
7192
* The value may be {@code null}.
@@ -143,6 +164,23 @@ public BackupCollection setKmsKey(java.lang.String kmsKey) {
143164
return this;
144165
}
145166

167+
/**
168+
* Output only. The last time a backup was created in the backup collection.
169+
* @return value or {@code null} for none
170+
*/
171+
public String getLastBackupTime() {
172+
return lastBackupTime;
173+
}
174+
175+
/**
176+
* Output only. The last time a backup was created in the backup collection.
177+
* @param lastBackupTime lastBackupTime or {@code null} for none
178+
*/
179+
public BackupCollection setLastBackupTime(String lastBackupTime) {
180+
this.lastBackupTime = lastBackupTime;
181+
return this;
182+
}
183+
146184
/**
147185
* Identifier. Full resource path of the backup collection.
148186
* @return value or {@code null} for none
@@ -160,6 +198,40 @@ public BackupCollection setName(java.lang.String name) {
160198
return this;
161199
}
162200

201+
/**
202+
* Output only. Total number of backups in the backup collection.
203+
* @return value or {@code null} for none
204+
*/
205+
public java.lang.Long getTotalBackupCount() {
206+
return totalBackupCount;
207+
}
208+
209+
/**
210+
* Output only. Total number of backups in the backup collection.
211+
* @param totalBackupCount totalBackupCount or {@code null} for none
212+
*/
213+
public BackupCollection setTotalBackupCount(java.lang.Long totalBackupCount) {
214+
this.totalBackupCount = totalBackupCount;
215+
return this;
216+
}
217+
218+
/**
219+
* Output only. Total size of all backups in the backup collection.
220+
* @return value or {@code null} for none
221+
*/
222+
public java.lang.Long getTotalBackupSizeBytes() {
223+
return totalBackupSizeBytes;
224+
}
225+
226+
/**
227+
* Output only. Total size of all backups in the backup collection.
228+
* @param totalBackupSizeBytes totalBackupSizeBytes or {@code null} for none
229+
*/
230+
public BackupCollection setTotalBackupSizeBytes(java.lang.Long totalBackupSizeBytes) {
231+
this.totalBackupSizeBytes = totalBackupSizeBytes;
232+
return this;
233+
}
234+
163235
/**
164236
* Output only. System assigned unique identifier of the backup collection.
165237
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)