@@ -159,13 +159,17 @@ public final class Volume extends com.google.api.client.json.GenericJson {
159159
160160 /**
161161 * Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
162+ * This field is used for legacy FILE pools. For Unified pools, use the `large_capacity_config`
163+ * field instead. This field and `large_capacity_config` are mutually exclusive.
162164 * The value may be {@code null}.
163165 */
164166 @ com .google .api .client .util .Key
165167 private java .lang .Boolean largeCapacity ;
166168
167169 /**
168- * Optional. Large capacity config for the volume.
170+ * Optional. Large capacity config for the volume. Enables and configures large capacity for
171+ * volumes in Unified pools with File protocols. Not applicable for Block protocols in Unified
172+ * pools. This field and the legacy `large_capacity` boolean field are mutually exclusive.
169173 * The value may be {@code null}.
170174 */
171175 @ com .google .api .client .util .Key
@@ -655,6 +659,8 @@ public Volume setLabels(java.util.Map<String, java.lang.String> labels) {
655659
656660 /**
657661 * Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
662+ * This field is used for legacy FILE pools. For Unified pools, use the `large_capacity_config`
663+ * field instead. This field and `large_capacity_config` are mutually exclusive.
658664 * @return value or {@code null} for none
659665 */
660666 public java .lang .Boolean getLargeCapacity () {
@@ -663,6 +669,8 @@ public java.lang.Boolean getLargeCapacity() {
663669
664670 /**
665671 * Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
672+ * This field is used for legacy FILE pools. For Unified pools, use the `large_capacity_config`
673+ * field instead. This field and `large_capacity_config` are mutually exclusive.
666674 * @param largeCapacity largeCapacity or {@code null} for none
667675 */
668676 public Volume setLargeCapacity (java .lang .Boolean largeCapacity ) {
@@ -671,15 +679,19 @@ public Volume setLargeCapacity(java.lang.Boolean largeCapacity) {
671679 }
672680
673681 /**
674- * Optional. Large capacity config for the volume.
682+ * Optional. Large capacity config for the volume. Enables and configures large capacity for
683+ * volumes in Unified pools with File protocols. Not applicable for Block protocols in Unified
684+ * pools. This field and the legacy `large_capacity` boolean field are mutually exclusive.
675685 * @return value or {@code null} for none
676686 */
677687 public LargeCapacityConfig getLargeCapacityConfig () {
678688 return largeCapacityConfig ;
679689 }
680690
681691 /**
682- * Optional. Large capacity config for the volume.
692+ * Optional. Large capacity config for the volume. Enables and configures large capacity for
693+ * volumes in Unified pools with File protocols. Not applicable for Block protocols in Unified
694+ * pools. This field and the legacy `large_capacity` boolean field are mutually exclusive.
683695 * @param largeCapacityConfig largeCapacityConfig or {@code null} for none
684696 */
685697 public Volume setLargeCapacityConfig (LargeCapacityConfig largeCapacityConfig ) {
0 commit comments