Skip to content

Commit 5c28f6b

Browse files
1 parent 1dc5d1d commit 5c28f6b

File tree

6 files changed

+60
-9
lines changed

6 files changed

+60
-9
lines changed

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

clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/NodeConfig.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,13 @@ public final class NodeConfig extends com.google.api.client.json.GenericJson {
348348
@com.google.api.client.util.Key
349349
private java.lang.Boolean spot;
350350

351+
/**
352+
* List of Storage Pools where boot disks are provisioned.
353+
* The value may be {@code null}.
354+
*/
355+
@com.google.api.client.util.Key
356+
private java.util.List<java.lang.String> storagePools;
357+
351358
/**
352359
* The list of instance tags applied to all nodes. Tags are used to identify valid sources or
353360
* targets for network firewalls and are specified by the client during cluster or node pool
@@ -1112,6 +1119,23 @@ public NodeConfig setSpot(java.lang.Boolean spot) {
11121119
return this;
11131120
}
11141121

1122+
/**
1123+
* List of Storage Pools where boot disks are provisioned.
1124+
* @return value or {@code null} for none
1125+
*/
1126+
public java.util.List<java.lang.String> getStoragePools() {
1127+
return storagePools;
1128+
}
1129+
1130+
/**
1131+
* List of Storage Pools where boot disks are provisioned.
1132+
* @param storagePools storagePools or {@code null} for none
1133+
*/
1134+
public NodeConfig setStoragePools(java.util.List<java.lang.String> storagePools) {
1135+
this.storagePools = storagePools;
1136+
return this;
1137+
}
1138+
11151139
/**
11161140
* The list of instance tags applied to all nodes. Tags are used to identify valid sources or
11171141
* targets for network firewalls and are specified by the client during cluster or node pool

clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/SecretManagerConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@
3131
public final class SecretManagerConfig extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Whether the cluster is configured to use secret manager CSI component.
34+
* Enable/Disable Secret Manager Config.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.Boolean enabled;
3939

4040
/**
41-
* Whether the cluster is configured to use secret manager CSI component.
41+
* Enable/Disable Secret Manager Config.
4242
* @return value or {@code null} for none
4343
*/
4444
public java.lang.Boolean getEnabled() {
4545
return enabled;
4646
}
4747

4848
/**
49-
* Whether the cluster is configured to use secret manager CSI component.
49+
* Enable/Disable Secret Manager Config.
5050
* @param enabled enabled or {@code null} for none
5151
*/
5252
public SecretManagerConfig setEnabled(java.lang.Boolean enabled) {

clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/UpdateNodePoolRequest.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,14 @@ public final class UpdateNodePoolRequest extends com.google.api.client.json.Gene
237237
@com.google.api.client.util.Key
238238
private ResourceManagerTags resourceManagerTags;
239239

240+
/**
241+
* List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
242+
* with storage-pools.
243+
* The value may be {@code null}.
244+
*/
245+
@com.google.api.client.util.Key
246+
private java.util.List<java.lang.String> storagePools;
247+
240248
/**
241249
* The desired network tags to be applied to all nodes in the node pool. If this field is not
242250
* present, the tags will not be changed. Otherwise, the existing network tags will be *replaced*
@@ -762,6 +770,25 @@ public UpdateNodePoolRequest setResourceManagerTags(ResourceManagerTags resource
762770
return this;
763771
}
764772

773+
/**
774+
* List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
775+
* with storage-pools.
776+
* @return value or {@code null} for none
777+
*/
778+
public java.util.List<java.lang.String> getStoragePools() {
779+
return storagePools;
780+
}
781+
782+
/**
783+
* List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
784+
* with storage-pools.
785+
* @param storagePools storagePools or {@code null} for none
786+
*/
787+
public UpdateNodePoolRequest setStoragePools(java.util.List<java.lang.String> storagePools) {
788+
this.storagePools = storagePools;
789+
return this;
790+
}
791+
765792
/**
766793
* The desired network tags to be applied to all nodes in the node pool. If this field is not
767794
* present, the tags will not be changed. Otherwise, the existing network tags will be *replaced*

clients/google-api-services-container/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-container</artifactId>
11-
<version>v1beta1-rev20240722-2.0.0</version>
12-
<name>Kubernetes Engine API v1beta1-rev20240722-2.0.0</name>
11+
<version>v1beta1-rev20240730-2.0.0</version>
12+
<name>Kubernetes Engine API v1beta1-rev20240730-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)