@@ -59,6 +59,13 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
5959 @ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
6060 private java .lang .Long capacityGib ;
6161
62+ /**
63+ * Output only. Total cold tier data rounded down to the nearest GiB used by the storage pool.
64+ * The value may be {@code null}.
65+ */
66+ @ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
67+ private java .lang .Long coldTierSizeUsedGib ;
68+
6269 /**
6370 * Output only. Create time of the storage pool
6471 * The value may be {@code null}.
@@ -113,6 +120,13 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
113120 @ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
114121 private java .lang .Long hotTierSizeGib ;
115122
123+ /**
124+ * Output only. Total hot tier data rounded down to the nearest GiB used by the storage pool.
125+ * The value may be {@code null}.
126+ */
127+ @ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
128+ private java .lang .Long hotTierSizeUsedGib ;
129+
116130 /**
117131 * Optional. Specifies the KMS config to be used for volume encryption.
118132 * The value may be {@code null}.
@@ -310,6 +324,23 @@ public StoragePool setCapacityGib(java.lang.Long capacityGib) {
310324 return this ;
311325 }
312326
327+ /**
328+ * Output only. Total cold tier data rounded down to the nearest GiB used by the storage pool.
329+ * @return value or {@code null} for none
330+ */
331+ public java .lang .Long getColdTierSizeUsedGib () {
332+ return coldTierSizeUsedGib ;
333+ }
334+
335+ /**
336+ * Output only. Total cold tier data rounded down to the nearest GiB used by the storage pool.
337+ * @param coldTierSizeUsedGib coldTierSizeUsedGib or {@code null} for none
338+ */
339+ public StoragePool setColdTierSizeUsedGib (java .lang .Long coldTierSizeUsedGib ) {
340+ this .coldTierSizeUsedGib = coldTierSizeUsedGib ;
341+ return this ;
342+ }
343+
313344 /**
314345 * Output only. Create time of the storage pool
315346 * @return value or {@code null} for none
@@ -439,6 +470,23 @@ public StoragePool setHotTierSizeGib(java.lang.Long hotTierSizeGib) {
439470 return this ;
440471 }
441472
473+ /**
474+ * Output only. Total hot tier data rounded down to the nearest GiB used by the storage pool.
475+ * @return value or {@code null} for none
476+ */
477+ public java .lang .Long getHotTierSizeUsedGib () {
478+ return hotTierSizeUsedGib ;
479+ }
480+
481+ /**
482+ * Output only. Total hot tier data rounded down to the nearest GiB used by the storage pool.
483+ * @param hotTierSizeUsedGib hotTierSizeUsedGib or {@code null} for none
484+ */
485+ public StoragePool setHotTierSizeUsedGib (java .lang .Long hotTierSizeUsedGib ) {
486+ this .hotTierSizeUsedGib = hotTierSizeUsedGib ;
487+ return this ;
488+ }
489+
442490 /**
443491 * Optional. Specifies the KMS config to be used for volume encryption.
444492 * @return value or {@code null} for none
0 commit comments