Skip to content

Commit c58ae17

Browse files
1 parent 824648b commit c58ae17

File tree

8 files changed

+172
-6
lines changed

8 files changed

+172
-6
lines changed

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

clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/Cluster.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
519519
@com.google.api.client.util.Key
520520
private java.lang.Boolean satisfiesPzs;
521521

522+
/**
523+
* Secret CSI driver configuration.
524+
* The value may be {@code null}.
525+
*/
526+
@com.google.api.client.util.Key
527+
private SecretManagerConfig secretManagerConfig;
528+
522529
/**
523530
* Enable/Disable Security Posture API features for the cluster.
524531
* The value may be {@code null}.
@@ -1760,6 +1767,23 @@ public Cluster setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
17601767
return this;
17611768
}
17621769

1770+
/**
1771+
* Secret CSI driver configuration.
1772+
* @return value or {@code null} for none
1773+
*/
1774+
public SecretManagerConfig getSecretManagerConfig() {
1775+
return secretManagerConfig;
1776+
}
1777+
1778+
/**
1779+
* Secret CSI driver configuration.
1780+
* @param secretManagerConfig secretManagerConfig or {@code null} for none
1781+
*/
1782+
public Cluster setSecretManagerConfig(SecretManagerConfig secretManagerConfig) {
1783+
this.secretManagerConfig = secretManagerConfig;
1784+
return this;
1785+
}
1786+
17631787
/**
17641788
* Enable/Disable Security Posture API features for the cluster.
17651789
* @return value or {@code null} for none

clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/ClusterUpdate.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,13 @@ public final class ClusterUpdate extends com.google.api.client.json.GenericJson
400400
@com.google.api.client.util.Key
401401
private ResourceUsageExportConfig desiredResourceUsageExportConfig;
402402

403+
/**
404+
* Enable/Disable Secret Manager Config.
405+
* The value may be {@code null}.
406+
*/
407+
@com.google.api.client.util.Key
408+
private SecretManagerConfig desiredSecretManagerConfig;
409+
403410
/**
404411
* Enable/Disable Security Posture API features for the cluster.
405412
* The value may be {@code null}.
@@ -1349,6 +1356,23 @@ public ClusterUpdate setDesiredResourceUsageExportConfig(ResourceUsageExportConf
13491356
return this;
13501357
}
13511358

1359+
/**
1360+
* Enable/Disable Secret Manager Config.
1361+
* @return value or {@code null} for none
1362+
*/
1363+
public SecretManagerConfig getDesiredSecretManagerConfig() {
1364+
return desiredSecretManagerConfig;
1365+
}
1366+
1367+
/**
1368+
* Enable/Disable Secret Manager Config.
1369+
* @param desiredSecretManagerConfig desiredSecretManagerConfig or {@code null} for none
1370+
*/
1371+
public ClusterUpdate setDesiredSecretManagerConfig(SecretManagerConfig desiredSecretManagerConfig) {
1372+
this.desiredSecretManagerConfig = desiredSecretManagerConfig;
1373+
return this;
1374+
}
1375+
13521376
/**
13531377
* Enable/Disable Security Posture API features for the cluster.
13541378
* @return value or {@code null} for none

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

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

334+
/**
335+
* List of Storage Pools where boot disks are provisioned.
336+
* The value may be {@code null}.
337+
*/
338+
@com.google.api.client.util.Key
339+
private java.util.List<java.lang.String> storagePools;
340+
334341
/**
335342
* The list of instance tags applied to all nodes. Tags are used to identify valid sources or
336343
* targets for network firewalls and are specified by the client during cluster or node pool
@@ -1055,6 +1062,23 @@ public NodeConfig setSpot(java.lang.Boolean spot) {
10551062
return this;
10561063
}
10571064

1065+
/**
1066+
* List of Storage Pools where boot disks are provisioned.
1067+
* @return value or {@code null} for none
1068+
*/
1069+
public java.util.List<java.lang.String> getStoragePools() {
1070+
return storagePools;
1071+
}
1072+
1073+
/**
1074+
* List of Storage Pools where boot disks are provisioned.
1075+
* @param storagePools storagePools or {@code null} for none
1076+
*/
1077+
public NodeConfig setStoragePools(java.util.List<java.lang.String> storagePools) {
1078+
this.storagePools = storagePools;
1079+
return this;
1080+
}
1081+
10581082
/**
10591083
* The list of instance tags applied to all nodes. Tags are used to identify valid sources or
10601084
* targets for network firewalls and are specified by the client during cluster or node pool
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.container.model;
18+
19+
/**
20+
* SecretManagerConfig is config for secret manager enablement.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Kubernetes Engine API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class SecretManagerConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Enable/Disable Secret Manager Config.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Enable/Disable Secret Manager Config.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getEnabled() {
45+
return enabled;
46+
}
47+
48+
/**
49+
* Enable/Disable Secret Manager Config.
50+
* @param enabled enabled or {@code null} for none
51+
*/
52+
public SecretManagerConfig setEnabled(java.lang.Boolean enabled) {
53+
this.enabled = enabled;
54+
return this;
55+
}
56+
57+
@Override
58+
public SecretManagerConfig set(String fieldName, Object value) {
59+
return (SecretManagerConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public SecretManagerConfig clone() {
64+
return (SecretManagerConfig) super.clone();
65+
}
66+
67+
}

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

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

244+
/**
245+
* List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
246+
* with storage-pools.
247+
* The value may be {@code null}.
248+
*/
249+
@com.google.api.client.util.Key
250+
private java.util.List<java.lang.String> storagePools;
251+
244252
/**
245253
* The desired network tags to be applied to all nodes in the node pool. If this field is not
246254
* present, the tags will not be changed. Otherwise, the existing network tags will be *replaced*
@@ -774,6 +782,25 @@ public UpdateNodePoolRequest setResourceManagerTags(ResourceManagerTags resource
774782
return this;
775783
}
776784

785+
/**
786+
* List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
787+
* with storage-pools.
788+
* @return value or {@code null} for none
789+
*/
790+
public java.util.List<java.lang.String> getStoragePools() {
791+
return storagePools;
792+
}
793+
794+
/**
795+
* List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
796+
* with storage-pools.
797+
* @param storagePools storagePools or {@code null} for none
798+
*/
799+
public UpdateNodePoolRequest setStoragePools(java.util.List<java.lang.String> storagePools) {
800+
this.storagePools = storagePools;
801+
return this;
802+
}
803+
777804
/**
778805
* The desired network tags to be applied to all nodes in the node pool. If this field is not
779806
* present, the tags will not be changed. Otherwise, the existing network tags will be *replaced*

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)