Skip to content

Commit 36515bc

Browse files
1 parent c630280 commit 36515bc

File tree

10 files changed

+156
-12
lines changed

10 files changed

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

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.lang.Boolean allowAutoTiering;
4747

48+
/**
49+
* Output only. Available throughput of the storage pool (in MiB/s).
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Double availableThroughputMibps;
54+
4855
/**
4956
* Required. Capacity in GIB of the pool
5057
* The value may be {@code null}.
@@ -148,6 +155,13 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
148155
@com.google.api.client.util.Key
149156
private java.lang.String psaRange;
150157

158+
/**
159+
* Optional. QoS (Quality of Service) Type of the storage pool
160+
* The value may be {@code null}.
161+
*/
162+
@com.google.api.client.util.Key
163+
private java.lang.String qosType;
164+
151165
/**
152166
* Optional. Specifies the replica zone for regional storagePool.
153167
* The value may be {@code null}.
@@ -262,6 +276,23 @@ public StoragePool setAllowAutoTiering(java.lang.Boolean allowAutoTiering) {
262276
return this;
263277
}
264278

279+
/**
280+
* Output only. Available throughput of the storage pool (in MiB/s).
281+
* @return value or {@code null} for none
282+
*/
283+
public java.lang.Double getAvailableThroughputMibps() {
284+
return availableThroughputMibps;
285+
}
286+
287+
/**
288+
* Output only. Available throughput of the storage pool (in MiB/s).
289+
* @param availableThroughputMibps availableThroughputMibps or {@code null} for none
290+
*/
291+
public StoragePool setAvailableThroughputMibps(java.lang.Double availableThroughputMibps) {
292+
this.availableThroughputMibps = availableThroughputMibps;
293+
return this;
294+
}
295+
265296
/**
266297
* Required. Capacity in GIB of the pool
267298
* @return value or {@code null} for none
@@ -510,6 +541,23 @@ public StoragePool setPsaRange(java.lang.String psaRange) {
510541
return this;
511542
}
512543

544+
/**
545+
* Optional. QoS (Quality of Service) Type of the storage pool
546+
* @return value or {@code null} for none
547+
*/
548+
public java.lang.String getQosType() {
549+
return qosType;
550+
}
551+
552+
/**
553+
* Optional. QoS (Quality of Service) Type of the storage pool
554+
* @param qosType qosType or {@code null} for none
555+
*/
556+
public StoragePool setQosType(java.lang.String qosType) {
557+
this.qosType = qosType;
558+
return this;
559+
}
560+
513561
/**
514562
* Optional. Specifies the replica zone for regional storagePool.
515563
* @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
@@ -278,6 +278,13 @@ public final class Volume extends com.google.api.client.json.GenericJson {
278278
@com.google.api.client.util.Key
279279
private java.lang.String storagePool;
280280

281+
/**
282+
* Optional. Throughput of the volume (in MiB/s)
283+
* The value may be {@code null}.
284+
*/
285+
@com.google.api.client.util.Key
286+
private java.lang.Double throughputMibps;
287+
281288
/**
282289
* Tiering policy for the volume.
283290
* The value may be {@code null}.
@@ -896,6 +903,23 @@ public Volume setStoragePool(java.lang.String storagePool) {
896903
return this;
897904
}
898905

906+
/**
907+
* Optional. Throughput of the volume (in MiB/s)
908+
* @return value or {@code null} for none
909+
*/
910+
public java.lang.Double getThroughputMibps() {
911+
return throughputMibps;
912+
}
913+
914+
/**
915+
* Optional. Throughput of the volume (in MiB/s)
916+
* @param throughputMibps throughputMibps or {@code null} for none
917+
*/
918+
public Volume setThroughputMibps(java.lang.Double throughputMibps) {
919+
this.throughputMibps = throughputMibps;
920+
return this;
921+
}
922+
899923
/**
900924
* Tiering policy for the volume.
901925
* @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-rev20250604-2.0.0</version>
12-
<name>NetApp API v1-rev20250604-2.0.0</name>
11+
<version>v1-rev20250811-2.0.0</version>
12+
<name>NetApp API v1-rev20250811-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-rev20250604-2.0.0</version>
25+
<version>v1-rev20250811-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-rev20250604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20250811-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-rev20250630-2.0.0</version>
25+
<version>v1beta1-rev20250811-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-rev20250630-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20250811-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.lang.Boolean allowAutoTiering;
4747

48+
/**
49+
* Output only. Available throughput of the storage pool (in MiB/s).
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Double availableThroughputMibps;
54+
4855
/**
4956
* Required. Capacity in GIB of the pool
5057
* The value may be {@code null}.
@@ -148,6 +155,13 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
148155
@com.google.api.client.util.Key
149156
private java.lang.String psaRange;
150157

158+
/**
159+
* Optional. QoS (Quality of Service) Type of the storage pool
160+
* The value may be {@code null}.
161+
*/
162+
@com.google.api.client.util.Key
163+
private java.lang.String qosType;
164+
151165
/**
152166
* Optional. Specifies the replica zone for regional storagePool.
153167
* The value may be {@code null}.
@@ -262,6 +276,23 @@ public StoragePool setAllowAutoTiering(java.lang.Boolean allowAutoTiering) {
262276
return this;
263277
}
264278

279+
/**
280+
* Output only. Available throughput of the storage pool (in MiB/s).
281+
* @return value or {@code null} for none
282+
*/
283+
public java.lang.Double getAvailableThroughputMibps() {
284+
return availableThroughputMibps;
285+
}
286+
287+
/**
288+
* Output only. Available throughput of the storage pool (in MiB/s).
289+
* @param availableThroughputMibps availableThroughputMibps or {@code null} for none
290+
*/
291+
public StoragePool setAvailableThroughputMibps(java.lang.Double availableThroughputMibps) {
292+
this.availableThroughputMibps = availableThroughputMibps;
293+
return this;
294+
}
295+
265296
/**
266297
* Required. Capacity in GIB of the pool
267298
* @return value or {@code null} for none
@@ -510,6 +541,23 @@ public StoragePool setPsaRange(java.lang.String psaRange) {
510541
return this;
511542
}
512543

544+
/**
545+
* Optional. QoS (Quality of Service) Type of the storage pool
546+
* @return value or {@code null} for none
547+
*/
548+
public java.lang.String getQosType() {
549+
return qosType;
550+
}
551+
552+
/**
553+
* Optional. QoS (Quality of Service) Type of the storage pool
554+
* @param qosType qosType or {@code null} for none
555+
*/
556+
public StoragePool setQosType(java.lang.String qosType) {
557+
this.qosType = qosType;
558+
return this;
559+
}
560+
513561
/**
514562
* Optional. Specifies the replica zone for regional storagePool.
515563
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,13 @@ public final class Volume extends com.google.api.client.json.GenericJson {
278278
@com.google.api.client.util.Key
279279
private java.lang.String storagePool;
280280

281+
/**
282+
* Optional. Throughput of the volume (in MiB/s)
283+
* The value may be {@code null}.
284+
*/
285+
@com.google.api.client.util.Key
286+
private java.lang.Double throughputMibps;
287+
281288
/**
282289
* Tiering policy for the volume.
283290
* The value may be {@code null}.
@@ -896,6 +903,23 @@ public Volume setStoragePool(java.lang.String storagePool) {
896903
return this;
897904
}
898905

906+
/**
907+
* Optional. Throughput of the volume (in MiB/s)
908+
* @return value or {@code null} for none
909+
*/
910+
public java.lang.Double getThroughputMibps() {
911+
return throughputMibps;
912+
}
913+
914+
/**
915+
* Optional. Throughput of the volume (in MiB/s)
916+
* @param throughputMibps throughputMibps or {@code null} for none
917+
*/
918+
public Volume setThroughputMibps(java.lang.Double throughputMibps) {
919+
this.throughputMibps = throughputMibps;
920+
return this;
921+
}
922+
899923
/**
900924
* Tiering policy for the volume.
901925
* @return value or {@code null} for none

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-rev20250630-2.0.0</version>
12-
<name>NetApp API v1beta1-rev20250630-2.0.0</name>
11+
<version>v1beta1-rev20250811-2.0.0</version>
12+
<name>NetApp API v1beta1-rev20250811-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-rev20250630-2.0.0</version>
25+
<version>v1beta1-rev20250811-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-rev20250630-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20250811-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)