Skip to content

Commit e4fd515

Browse files
1 parent 25af96d commit e4fd515

34 files changed

+4555
-177
lines changed

clients/google-api-services-backupdr/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-backupdr</artifactId>
25-
<version>v1-rev20241106-2.0.0</version>
25+
<version>v1-rev20250605-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-rev20250605-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 1379 additions & 110 deletions
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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ public final class Backup extends com.google.api.client.json.GenericJson {
7979
@com.google.api.client.util.Key
8080
private java.lang.String description;
8181

82+
/**
83+
* Output only. Disk specific backup properties.
84+
* The value may be {@code null}.
85+
*/
86+
@com.google.api.client.util.Key
87+
private DiskBackupProperties diskBackupProperties;
88+
8289
/**
8390
* Optional. The backup can not be deleted before this time.
8491
* The value may be {@code null}.
@@ -131,6 +138,20 @@ public final class Backup extends com.google.api.client.json.GenericJson {
131138
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
132139
private java.lang.Long resourceSizeBytes;
133140

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 satisfiesPzi;
147+
148+
/**
149+
* Optional. Output only. Reserved for future use.
150+
* The value may be {@code null}.
151+
*/
152+
@com.google.api.client.util.Key
153+
private java.lang.Boolean satisfiesPzs;
154+
134155
/**
135156
* Output only. The list of BackupLocks taken by the service to prevent the deletion of the
136157
* backup.
@@ -272,6 +293,23 @@ public Backup setDescription(java.lang.String description) {
272293
return this;
273294
}
274295

296+
/**
297+
* Output only. Disk specific backup properties.
298+
* @return value or {@code null} for none
299+
*/
300+
public DiskBackupProperties getDiskBackupProperties() {
301+
return diskBackupProperties;
302+
}
303+
304+
/**
305+
* Output only. Disk specific backup properties.
306+
* @param diskBackupProperties diskBackupProperties or {@code null} for none
307+
*/
308+
public Backup setDiskBackupProperties(DiskBackupProperties diskBackupProperties) {
309+
this.diskBackupProperties = diskBackupProperties;
310+
return this;
311+
}
312+
275313
/**
276314
* Optional. The backup can not be deleted before this time.
277315
* @return value or {@code null} for none
@@ -397,6 +435,40 @@ public Backup setResourceSizeBytes(java.lang.Long resourceSizeBytes) {
397435
return this;
398436
}
399437

438+
/**
439+
* Optional. Output only. Reserved for future use.
440+
* @return value or {@code null} for none
441+
*/
442+
public java.lang.Boolean getSatisfiesPzi() {
443+
return satisfiesPzi;
444+
}
445+
446+
/**
447+
* Optional. Output only. Reserved for future use.
448+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
449+
*/
450+
public Backup setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
451+
this.satisfiesPzi = satisfiesPzi;
452+
return this;
453+
}
454+
455+
/**
456+
* Optional. Output only. Reserved for future use.
457+
* @return value or {@code null} for none
458+
*/
459+
public java.lang.Boolean getSatisfiesPzs() {
460+
return satisfiesPzs;
461+
}
462+
463+
/**
464+
* Optional. Output only. Reserved for future use.
465+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
466+
*/
467+
public Backup setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
468+
this.satisfiesPzs = satisfiesPzs;
469+
return this;
470+
}
471+
400472
/**
401473
* Output only. The list of BackupLocks taken by the service to prevent the deletion of the
402474
* backup.

0 commit comments

Comments
 (0)