Skip to content

Commit 99e3dd8

Browse files
1 parent d0e57ae commit 99e3dd8

File tree

9 files changed

+134
-12
lines changed

9 files changed

+134
-12
lines changed

clients/google-api-services-netapp/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-netapp</artifactId>
25-
<version>v1-rev20260326-2.0.0</version>
25+
<version>v1-rev20260331-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-netapp:v1-rev20260326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260331-2.0.0'
3939
}
4040
```
4141

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.netapp.v1.model;
18+
19+
/**
20+
* Configuration for a Large Capacity Volume. A Large Capacity Volume supports sizes ranging from
21+
* 4.8 TiB to 20 PiB, it is composed of multiple internal constituents, and must be created in a
22+
* large capacity pool.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the NetApp API. For a detailed explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class LargeCapacityConfig extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Optional. The number of internal constituents (e.g., FlexVols) for this large volume. The
36+
* minimum number of constituents is 2.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.Integer constituentCount;
41+
42+
/**
43+
* Optional. The number of internal constituents (e.g., FlexVols) for this large volume. The
44+
* minimum number of constituents is 2.
45+
* @return value or {@code null} for none
46+
*/
47+
public java.lang.Integer getConstituentCount() {
48+
return constituentCount;
49+
}
50+
51+
/**
52+
* Optional. The number of internal constituents (e.g., FlexVols) for this large volume. The
53+
* minimum number of constituents is 2.
54+
* @param constituentCount constituentCount or {@code null} for none
55+
*/
56+
public LargeCapacityConfig setConstituentCount(java.lang.Integer constituentCount) {
57+
this.constituentCount = constituentCount;
58+
return this;
59+
}
60+
61+
@Override
62+
public LargeCapacityConfig set(String fieldName, Object value) {
63+
return (LargeCapacityConfig) super.set(fieldName, value);
64+
}
65+
66+
@Override
67+
public LargeCapacityConfig clone() {
68+
return (LargeCapacityConfig) super.clone();
69+
}
70+
71+
}

clients/google-api-services-netapp/v1/2.0.0/com/google/api/services/netapp/v1/model/StoragePool.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,14 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
206206
@com.google.api.client.util.Key
207207
private java.lang.Boolean satisfiesPzs;
208208

209+
/**
210+
* Optional. The scale type of the storage pool. Defaults to `SCALE_TYPE_DEFAULT` if not
211+
* specified.
212+
* The value may be {@code null}.
213+
*/
214+
@com.google.api.client.util.Key
215+
private java.lang.String scaleType;
216+
209217
/**
210218
* Required. Service level of the storage pool
211219
* The value may be {@code null}.
@@ -696,6 +704,25 @@ public StoragePool setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
696704
return this;
697705
}
698706

707+
/**
708+
* Optional. The scale type of the storage pool. Defaults to `SCALE_TYPE_DEFAULT` if not
709+
* specified.
710+
* @return value or {@code null} for none
711+
*/
712+
public java.lang.String getScaleType() {
713+
return scaleType;
714+
}
715+
716+
/**
717+
* Optional. The scale type of the storage pool. Defaults to `SCALE_TYPE_DEFAULT` if not
718+
* specified.
719+
* @param scaleType scaleType or {@code null} for none
720+
*/
721+
public StoragePool setScaleType(java.lang.String scaleType) {
722+
this.scaleType = scaleType;
723+
return this;
724+
}
725+
699726
/**
700727
* Required. Service level of the storage pool
701728
* @return value or {@code null} for none

clients/google-api-services-netapp/v1/2.0.0/com/google/api/services/netapp/v1/model/Volume.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,13 @@ public final class Volume extends com.google.api.client.json.GenericJson {
164164
@com.google.api.client.util.Key
165165
private java.lang.Boolean largeCapacity;
166166

167+
/**
168+
* Optional. Large capacity config for the volume.
169+
* The value may be {@code null}.
170+
*/
171+
@com.google.api.client.util.Key
172+
private LargeCapacityConfig largeCapacityConfig;
173+
167174
/**
168175
* Output only. Flag indicating if the volume is NFS LDAP enabled or not.
169176
* The value may be {@code null}.
@@ -663,6 +670,23 @@ public Volume setLargeCapacity(java.lang.Boolean largeCapacity) {
663670
return this;
664671
}
665672

673+
/**
674+
* Optional. Large capacity config for the volume.
675+
* @return value or {@code null} for none
676+
*/
677+
public LargeCapacityConfig getLargeCapacityConfig() {
678+
return largeCapacityConfig;
679+
}
680+
681+
/**
682+
* Optional. Large capacity config for the volume.
683+
* @param largeCapacityConfig largeCapacityConfig or {@code null} for none
684+
*/
685+
public Volume setLargeCapacityConfig(LargeCapacityConfig largeCapacityConfig) {
686+
this.largeCapacityConfig = largeCapacityConfig;
687+
return this;
688+
}
689+
666690
/**
667691
* Output only. Flag indicating if the volume is NFS LDAP enabled or not.
668692
* @return value or {@code null} for none

clients/google-api-services-netapp/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-netapp</artifactId>
11-
<version>v1-rev20260326-2.0.0</version>
12-
<name>NetApp API v1-rev20260326-2.0.0</name>
11+
<version>v1-rev20260331-2.0.0</version>
12+
<name>NetApp API v1-rev20260331-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-netapp/v1/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-netapp</artifactId>
25-
<version>v1-rev20260326-2.0.0</version>
25+
<version>v1-rev20260331-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-netapp:v1-rev20260326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260331-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-netapp/v1beta1/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-netapp</artifactId>
25-
<version>v1beta1-rev20260326-2.0.0</version>
25+
<version>v1beta1-rev20260331-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-netapp:v1beta1-rev20260326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20260331-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-netapp/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-netapp</artifactId>
11-
<version>v1beta1-rev20260326-2.0.0</version>
12-
<name>NetApp API v1beta1-rev20260326-2.0.0</name>
11+
<version>v1beta1-rev20260331-2.0.0</version>
12+
<name>NetApp API v1beta1-rev20260331-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-netapp/v1beta1/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-netapp</artifactId>
25-
<version>v1beta1-rev20260326-2.0.0</version>
25+
<version>v1beta1-rev20260331-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-netapp:v1beta1-rev20260326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20260331-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)