|
18 | 18 |
|
19 | 19 | /**
|
20 | 20 | * 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 |
22 | 22 | *
|
23 | 23 | * <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
|
24 | 24 | * 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
|
92 | 92 | @com.google.api.client.util.Key
|
93 | 93 | private DatabaseResourceMetadata resourceMetadata;
|
94 | 94 |
|
| 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 | + |
95 | 105 | /**
|
96 | 106 | * BackupDR metadata is used to ingest metadata from BackupDR.
|
97 | 107 | * @return value or {@code null} for none
|
@@ -241,6 +251,29 @@ public DatabaseResourceFeed setResourceMetadata(DatabaseResourceMetadata resourc
|
241 | 251 | return this;
|
242 | 252 | }
|
243 | 253 |
|
| 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 | + |
244 | 277 | @Override
|
245 | 278 | public DatabaseResourceFeed set(String fieldName, Object value) {
|
246 | 279 | return (DatabaseResourceFeed) super.set(fieldName, value);
|
|
0 commit comments