Skip to content

Commit c6c01e0

Browse files
1 parent 9f1c387 commit c6c01e0

File tree

4 files changed

+40
-7
lines changed

4 files changed

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

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

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource
21-
* level events into Condor platform. Next ID: 10
21+
* level events into Condor platform. Next ID: 11
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a
@@ -92,6 +92,16 @@ public final class DatabaseResourceFeed extends com.google.api.client.json.Gener
9292
@com.google.api.client.util.Key
9393
private DatabaseResourceMetadata resourceMetadata;
9494

95+
/**
96+
* Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is
97+
* intentionally skipped. For example, BackupDR feeds are only needed for resources integrated
98+
* with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute
99+
* Engine, Persistent Disk) can be skipped.
100+
* The value may be {@code null}.
101+
*/
102+
@com.google.api.client.util.Key
103+
private java.lang.Boolean skipIngestion;
104+
95105
/**
96106
* BackupDR metadata is used to ingest metadata from BackupDR.
97107
* @return value or {@code null} for none
@@ -241,6 +251,29 @@ public DatabaseResourceFeed setResourceMetadata(DatabaseResourceMetadata resourc
241251
return this;
242252
}
243253

254+
/**
255+
* Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is
256+
* intentionally skipped. For example, BackupDR feeds are only needed for resources integrated
257+
* with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute
258+
* Engine, Persistent Disk) can be skipped.
259+
* @return value or {@code null} for none
260+
*/
261+
public java.lang.Boolean getSkipIngestion() {
262+
return skipIngestion;
263+
}
264+
265+
/**
266+
* Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is
267+
* intentionally skipped. For example, BackupDR feeds are only needed for resources integrated
268+
* with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute
269+
* Engine, Persistent Disk) can be skipped.
270+
* @param skipIngestion skipIngestion or {@code null} for none
271+
*/
272+
public DatabaseResourceFeed setSkipIngestion(java.lang.Boolean skipIngestion) {
273+
this.skipIngestion = skipIngestion;
274+
return this;
275+
}
276+
244277
@Override
245278
public DatabaseResourceFeed set(String fieldName, Object value) {
246279
return (DatabaseResourceFeed) super.set(fieldName, value);

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-rev20250729-2.0.0</version>
12-
<name>Google Cloud Memorystore for Redis API v1-rev20250729-2.0.0</name>
11+
<version>v1-rev20250807-2.0.0</version>
12+
<name>Google Cloud Memorystore for Redis API v1-rev20250807-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-rev20250729-2.0.0</version>
25+
<version>v1-rev20250807-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-rev20250729-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1-rev20250807-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)