@@ -79,6 +79,13 @@ public final class Backup extends com.google.api.client.json.GenericJson {
79
79
@ com .google .api .client .util .Key
80
80
private java .lang .String description ;
81
81
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
+
82
89
/**
83
90
* Optional. The backup can not be deleted before this time.
84
91
* The value may be {@code null}.
@@ -131,6 +138,20 @@ public final class Backup extends com.google.api.client.json.GenericJson {
131
138
@ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
132
139
private java .lang .Long resourceSizeBytes ;
133
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 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
+
134
155
/**
135
156
* Output only. The list of BackupLocks taken by the service to prevent the deletion of the
136
157
* backup.
@@ -272,6 +293,23 @@ public Backup setDescription(java.lang.String description) {
272
293
return this ;
273
294
}
274
295
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
+
275
313
/**
276
314
* Optional. The backup can not be deleted before this time.
277
315
* @return value or {@code null} for none
@@ -397,6 +435,40 @@ public Backup setResourceSizeBytes(java.lang.Long resourceSizeBytes) {
397
435
return this ;
398
436
}
399
437
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
+
400
472
/**
401
473
* Output only. The list of BackupLocks taken by the service to prevent the deletion of the
402
474
* backup.
0 commit comments