@@ -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