Skip to content

Commit 583350a

Browse files
1 parent 46a8f6c commit 583350a

File tree

10 files changed

+162
-12
lines changed

10 files changed

+162
-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-rev20250817-2.0.0</version>
25+
<version>v1-rev20250901-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-rev20250817-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20250901-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
@@ -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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@ public final class Volume extends com.google.api.client.json.GenericJson {
9292
@com.google.api.client.util.Key
9393
private java.lang.Boolean hasReplication;
9494

95+
/**
96+
* Output only. Total hot tier data rounded down to the nearest GiB used by the Volume. This field
97+
* is only used for flex Service Level
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
101+
private java.lang.Long hotTierSizeUsedGib;
102+
95103
/**
96104
* Optional. The Hybrid Replication parameters for the volume.
97105
* The value may be {@code null}.
@@ -468,6 +476,25 @@ public Volume setHasReplication(java.lang.Boolean hasReplication) {
468476
return this;
469477
}
470478

479+
/**
480+
* Output only. Total hot tier data rounded down to the nearest GiB used by the Volume. This field
481+
* is only used for flex Service Level
482+
* @return value or {@code null} for none
483+
*/
484+
public java.lang.Long getHotTierSizeUsedGib() {
485+
return hotTierSizeUsedGib;
486+
}
487+
488+
/**
489+
* Output only. Total hot tier data rounded down to the nearest GiB used by the Volume. This field
490+
* is only used for flex Service Level
491+
* @param hotTierSizeUsedGib hotTierSizeUsedGib or {@code null} for none
492+
*/
493+
public Volume setHotTierSizeUsedGib(java.lang.Long hotTierSizeUsedGib) {
494+
this.hotTierSizeUsedGib = hotTierSizeUsedGib;
495+
return this;
496+
}
497+
471498
/**
472499
* Optional. The Hybrid Replication parameters for the volume.
473500
* @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-rev20250817-2.0.0</version>
12-
<name>NetApp API v1-rev20250817-2.0.0</name>
11+
<version>v1-rev20250901-2.0.0</version>
12+
<name>NetApp API v1-rev20250901-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-rev20250817-2.0.0</version>
25+
<version>v1-rev20250901-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-rev20250817-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20250901-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-rev20250817-2.0.0</version>
25+
<version>v1beta1-rev20250901-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-rev20250817-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20250901-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
@@ -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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,14 @@ public final class Volume extends com.google.api.client.json.GenericJson {
9999
@com.google.api.client.util.Key
100100
private java.lang.Boolean hasReplication;
101101

102+
/**
103+
* Output only. Total hot tier data rounded down to the nearest GiB used by the Volume. This field
104+
* is only used for flex Service Level
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
108+
private java.lang.Long hotTierSizeUsedGib;
109+
102110
/**
103111
* Optional. The Hybrid Replication parameters for the volume.
104112
* The value may be {@code null}.
@@ -492,6 +500,25 @@ public Volume setHasReplication(java.lang.Boolean hasReplication) {
492500
return this;
493501
}
494502

503+
/**
504+
* Output only. Total hot tier data rounded down to the nearest GiB used by the Volume. This field
505+
* is only used for flex Service Level
506+
* @return value or {@code null} for none
507+
*/
508+
public java.lang.Long getHotTierSizeUsedGib() {
509+
return hotTierSizeUsedGib;
510+
}
511+
512+
/**
513+
* Output only. Total hot tier data rounded down to the nearest GiB used by the Volume. This field
514+
* is only used for flex Service Level
515+
* @param hotTierSizeUsedGib hotTierSizeUsedGib or {@code null} for none
516+
*/
517+
public Volume setHotTierSizeUsedGib(java.lang.Long hotTierSizeUsedGib) {
518+
this.hotTierSizeUsedGib = hotTierSizeUsedGib;
519+
return this;
520+
}
521+
495522
/**
496523
* Optional. The Hybrid Replication parameters for the volume.
497524
* @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-rev20250817-2.0.0</version>
12-
<name>NetApp API v1beta1-rev20250817-2.0.0</name>
11+
<version>v1beta1-rev20250901-2.0.0</version>
12+
<name>NetApp API v1beta1-rev20250901-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-rev20250817-2.0.0</version>
25+
<version>v1beta1-rev20250901-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-rev20250817-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20250901-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)