Skip to content

Commit 718b461

Browse files
1 parent 7753c92 commit 718b461

File tree

5 files changed

+93
-6
lines changed

5 files changed

+93
-6
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-rev20250528-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250528-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20250604-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: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
7474
@com.google.api.client.util.Key
7575
private java.lang.String description;
7676

77+
/**
78+
* Optional. Flag indicating that the hot-tier threshold will be auto-increased by 10% of the hot-
79+
* tier when it hits 100%. Default is true. The increment will kick in only if the new size after
80+
* increment is still less than or equal to storage pool size.
81+
* The value may be {@code null}.
82+
*/
83+
@com.google.api.client.util.Key
84+
private java.lang.Boolean enableHotTierAutoResize;
85+
7786
/**
7887
* Output only. Specifies the current pool encryption key source.
7988
* The value may be {@code null}.
@@ -88,6 +97,15 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
8897
@com.google.api.client.util.Key
8998
private java.lang.Boolean globalAccessAllowed;
9099

100+
/**
101+
* Optional. Total hot tier capacity for the Storage Pool. It is applicable only to Flex service
102+
* level. It should be less than the minimum storage pool size and cannot be more than the current
103+
* storage pool size. It cannot be decreased once set.
104+
* The value may be {@code null}.
105+
*/
106+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
107+
private java.lang.Long hotTierSizeGib;
108+
91109
/**
92110
* Optional. Specifies the KMS config to be used for volume encryption.
93111
* The value may be {@code null}.
@@ -314,6 +332,27 @@ public StoragePool setDescription(java.lang.String description) {
314332
return this;
315333
}
316334

335+
/**
336+
* Optional. Flag indicating that the hot-tier threshold will be auto-increased by 10% of the hot-
337+
* tier when it hits 100%. Default is true. The increment will kick in only if the new size after
338+
* increment is still less than or equal to storage pool size.
339+
* @return value or {@code null} for none
340+
*/
341+
public java.lang.Boolean getEnableHotTierAutoResize() {
342+
return enableHotTierAutoResize;
343+
}
344+
345+
/**
346+
* Optional. Flag indicating that the hot-tier threshold will be auto-increased by 10% of the hot-
347+
* tier when it hits 100%. Default is true. The increment will kick in only if the new size after
348+
* increment is still less than or equal to storage pool size.
349+
* @param enableHotTierAutoResize enableHotTierAutoResize or {@code null} for none
350+
*/
351+
public StoragePool setEnableHotTierAutoResize(java.lang.Boolean enableHotTierAutoResize) {
352+
this.enableHotTierAutoResize = enableHotTierAutoResize;
353+
return this;
354+
}
355+
317356
/**
318357
* Output only. Specifies the current pool encryption key source.
319358
* @return value or {@code null} for none
@@ -348,6 +387,27 @@ public StoragePool setGlobalAccessAllowed(java.lang.Boolean globalAccessAllowed)
348387
return this;
349388
}
350389

390+
/**
391+
* Optional. Total hot tier capacity for the Storage Pool. It is applicable only to Flex service
392+
* level. It should be less than the minimum storage pool size and cannot be more than the current
393+
* storage pool size. It cannot be decreased once set.
394+
* @return value or {@code null} for none
395+
*/
396+
public java.lang.Long getHotTierSizeGib() {
397+
return hotTierSizeGib;
398+
}
399+
400+
/**
401+
* Optional. Total hot tier capacity for the Storage Pool. It is applicable only to Flex service
402+
* level. It should be less than the minimum storage pool size and cannot be more than the current
403+
* storage pool size. It cannot be decreased once set.
404+
* @param hotTierSizeGib hotTierSizeGib or {@code null} for none
405+
*/
406+
public StoragePool setHotTierSizeGib(java.lang.Long hotTierSizeGib) {
407+
this.hotTierSizeGib = hotTierSizeGib;
408+
return this;
409+
}
410+
351411
/**
352412
* Optional. Specifies the KMS config to be used for volume encryption.
353413
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class TieringPolicy extends com.google.api.client.json.GenericJson
3737
@com.google.api.client.util.Key
3838
private java.lang.Integer coolingThresholdDays;
3939

40+
/**
41+
* Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false. This is
42+
* only applicable to Flex service level.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean hotTierBypassModeEnabled;
47+
4048
/**
4149
* Optional. Flag indicating if the volume has tiering policy enable/pause. Default is PAUSED.
4250
* The value may be {@code null}.
@@ -63,6 +71,25 @@ public TieringPolicy setCoolingThresholdDays(java.lang.Integer coolingThresholdD
6371
return this;
6472
}
6573

74+
/**
75+
* Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false. This is
76+
* only applicable to Flex service level.
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.Boolean getHotTierBypassModeEnabled() {
80+
return hotTierBypassModeEnabled;
81+
}
82+
83+
/**
84+
* Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false. This is
85+
* only applicable to Flex service level.
86+
* @param hotTierBypassModeEnabled hotTierBypassModeEnabled or {@code null} for none
87+
*/
88+
public TieringPolicy setHotTierBypassModeEnabled(java.lang.Boolean hotTierBypassModeEnabled) {
89+
this.hotTierBypassModeEnabled = hotTierBypassModeEnabled;
90+
return this;
91+
}
92+
6693
/**
6794
* Optional. Flag indicating if the volume has tiering policy enable/pause. Default is PAUSED.
6895
* @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-rev20250528-2.0.0</version>
12-
<name>NetApp API v1-rev20250528-2.0.0</name>
11+
<version>v1-rev20250604-2.0.0</version>
12+
<name>NetApp API v1-rev20250604-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-rev20250528-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250528-2.0.0'
38+
implementation 'com.google.apis:google-api-services-netapp:v1-rev20250604-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)