Skip to content

Commit cdffcf7

Browse files
chore: regenerate backupdr client
1 parent 0a03140 commit cdffcf7

22 files changed

+1767
-57
lines changed

clients/google-api-services-backupdr/v1/2.0.0/README.md

+2-2
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-backupdr</artifactId>
25-
<version>v1-rev20241106-2.0.0</version>
25+
<version>v1-rev20250317-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-backupdr:v1-rev20241106-2.0.0'
38+
implementation 'com.google.apis:google-api-services-backupdr:v1-rev20250317-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/Backupdr.java

+411-2
Large diffs are not rendered by default.

clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/model/Backup.java

+48
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,20 @@ public final class Backup extends com.google.api.client.json.GenericJson {
131131
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
132132
private java.lang.Long resourceSizeBytes;
133133

134+
/**
135+
* Optional. Output only. Reserved for future use.
136+
* The value may be {@code null}.
137+
*/
138+
@com.google.api.client.util.Key
139+
private java.lang.Boolean satisfiesPzi;
140+
141+
/**
142+
* Optional. Output only. Reserved for future use.
143+
* The value may be {@code null}.
144+
*/
145+
@com.google.api.client.util.Key
146+
private java.lang.Boolean satisfiesPzs;
147+
134148
/**
135149
* Output only. The list of BackupLocks taken by the service to prevent the deletion of the
136150
* backup.
@@ -397,6 +411,40 @@ public Backup setResourceSizeBytes(java.lang.Long resourceSizeBytes) {
397411
return this;
398412
}
399413

414+
/**
415+
* Optional. Output only. Reserved for future use.
416+
* @return value or {@code null} for none
417+
*/
418+
public java.lang.Boolean getSatisfiesPzi() {
419+
return satisfiesPzi;
420+
}
421+
422+
/**
423+
* Optional. Output only. Reserved for future use.
424+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
425+
*/
426+
public Backup setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
427+
this.satisfiesPzi = satisfiesPzi;
428+
return this;
429+
}
430+
431+
/**
432+
* Optional. Output only. Reserved for future use.
433+
* @return value or {@code null} for none
434+
*/
435+
public java.lang.Boolean getSatisfiesPzs() {
436+
return satisfiesPzs;
437+
}
438+
439+
/**
440+
* Optional. Output only. Reserved for future use.
441+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
442+
*/
443+
public Backup setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
444+
this.satisfiesPzs = satisfiesPzs;
445+
return this;
446+
}
447+
400448
/**
401449
* Output only. The list of BackupLocks taken by the service to prevent the deletion of the
402450
* backup.

0 commit comments

Comments
 (0)