Skip to content

Commit 17827bc

Browse files
1 parent bc2affe commit 17827bc

File tree

13 files changed

+171
-31
lines changed

13 files changed

+171
-31
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-rev20250725-2.0.0</version>
25+
<version>v1-rev20250807-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-rev20250725-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20250807-2.0.0'
3939
}
4040
```
4141

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

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

3333
/**
34-
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988.
34+
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988. This
35+
* serves as a workaround for a port conflict with the gke-metadata-server. This field is required
36+
* ONLY under the following conditions: 1. The GKE node version is older than 1.33.2-gke.4655000.
37+
* 2. You're connecting to a Lustre instance that has the 'gke-support-enabled' flag.
3538
* The value may be {@code null}.
3639
*/
3740
@com.google.api.client.util.Key
@@ -45,15 +48,21 @@ public final class LustreCsiDriverConfig extends com.google.api.client.json.Gene
4548
private java.lang.Boolean enabled;
4649

4750
/**
48-
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988.
51+
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988. This
52+
* serves as a workaround for a port conflict with the gke-metadata-server. This field is required
53+
* ONLY under the following conditions: 1. The GKE node version is older than 1.33.2-gke.4655000.
54+
* 2. You're connecting to a Lustre instance that has the 'gke-support-enabled' flag.
4955
* @return value or {@code null} for none
5056
*/
5157
public java.lang.Boolean getEnableLegacyLustrePort() {
5258
return enableLegacyLustrePort;
5359
}
5460

5561
/**
56-
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988.
62+
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988. This
63+
* serves as a workaround for a port conflict with the gke-metadata-server. This field is required
64+
* ONLY under the following conditions: 1. The GKE node version is older than 1.33.2-gke.4655000.
65+
* 2. You're connecting to a Lustre instance that has the 'gke-support-enabled' flag.
5766
* @param enableLegacyLustrePort enableLegacyLustrePort or {@code null} for none
5867
*/
5968
public LustreCsiDriverConfig setEnableLegacyLustrePort(java.lang.Boolean enableLegacyLustrePort) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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+
* RotationConfig is config for secret manager auto rotation.
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 RotationConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Whether the rotation is enabled.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* The interval between two consecutive rotations. Default rotation interval is 2 minutes.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private String rotationInterval;
46+
47+
/**
48+
* Whether the rotation is enabled.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Boolean getEnabled() {
52+
return enabled;
53+
}
54+
55+
/**
56+
* Whether the rotation is enabled.
57+
* @param enabled enabled or {@code null} for none
58+
*/
59+
public RotationConfig setEnabled(java.lang.Boolean enabled) {
60+
this.enabled = enabled;
61+
return this;
62+
}
63+
64+
/**
65+
* The interval between two consecutive rotations. Default rotation interval is 2 minutes.
66+
* @return value or {@code null} for none
67+
*/
68+
public String getRotationInterval() {
69+
return rotationInterval;
70+
}
71+
72+
/**
73+
* The interval between two consecutive rotations. Default rotation interval is 2 minutes.
74+
* @param rotationInterval rotationInterval or {@code null} for none
75+
*/
76+
public RotationConfig setRotationInterval(String rotationInterval) {
77+
this.rotationInterval = rotationInterval;
78+
return this;
79+
}
80+
81+
@Override
82+
public RotationConfig set(String fieldName, Object value) {
83+
return (RotationConfig) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public RotationConfig clone() {
88+
return (RotationConfig) super.clone();
89+
}
90+
91+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class SecretManagerConfig extends com.google.api.client.json.Generi
3737
@com.google.api.client.util.Key
3838
private java.lang.Boolean enabled;
3939

40+
/**
41+
* Rotation config for secret manager.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private RotationConfig rotationConfig;
46+
4047
/**
4148
* Enable/Disable Secret Manager Config.
4249
* @return value or {@code null} for none
@@ -54,6 +61,23 @@ public SecretManagerConfig setEnabled(java.lang.Boolean enabled) {
5461
return this;
5562
}
5663

64+
/**
65+
* Rotation config for secret manager.
66+
* @return value or {@code null} for none
67+
*/
68+
public RotationConfig getRotationConfig() {
69+
return rotationConfig;
70+
}
71+
72+
/**
73+
* Rotation config for secret manager.
74+
* @param rotationConfig rotationConfig or {@code null} for none
75+
*/
76+
public SecretManagerConfig setRotationConfig(RotationConfig rotationConfig) {
77+
this.rotationConfig = rotationConfig;
78+
return this;
79+
}
80+
5781
@Override
5882
public SecretManagerConfig set(String fieldName, Object value) {
5983
return (SecretManagerConfig) super.set(fieldName, value);

clients/google-api-services-container/v1/2.0.0/pom.xml

Lines changed: 5 additions & 5 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-rev20250725-2.0.0</version>
12-
<name>Kubernetes Engine API v1-rev20250725-2.0.0</name>
11+
<version>v1-rev20250807-2.0.0</version>
12+
<name>Kubernetes Engine API v1-rev20250807-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -89,9 +89,9 @@
8989
<windowtitle>Kubernetes Engine API ${project.version}</windowtitle>
9090
<links>
9191
<link>http://docs.oracle.com/javase/7/docs/api</link>
92-
<link>https://googleapis.dev/java/google-http-client/1.47.0/</link>
92+
<link>https://googleapis.dev/java/google-http-client/2.0.0/</link>
9393
<link>https://googleapis.dev/java/google-oauth-client/1.39.0/</link>
94-
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
94+
<link>https://googleapis.dev/java/google-api-client/2.8.1/</link>
9595
</links>
9696
</configuration>
9797
</plugin>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.google.api-client</groupId>
126126
<artifactId>google-api-client</artifactId>
127-
<version>2.7.2</version>
127+
<version>2.8.1</version>
128128
</dependency>
129129
</dependencies>
130130

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

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

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,8 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
717717
private VerticalPodAutoscaling verticalPodAutoscaling;
718718

719719
/**
720-
* Configuration for direct-path (via ALTS) with workload identity.
720+
* Configuration for direct-path (via ALTS) with workload identity. This feature is not officially
721+
* supported for external customers in Kubernetes Engine when using Workload Identity.
721722
* The value may be {@code null}.
722723
*/
723724
@com.google.api.client.util.Key
@@ -2371,15 +2372,17 @@ public Cluster setVerticalPodAutoscaling(VerticalPodAutoscaling verticalPodAutos
23712372
}
23722373

23732374
/**
2374-
* Configuration for direct-path (via ALTS) with workload identity.
2375+
* Configuration for direct-path (via ALTS) with workload identity. This feature is not officially
2376+
* supported for external customers in Kubernetes Engine when using Workload Identity.
23752377
* @return value or {@code null} for none
23762378
*/
23772379
public WorkloadALTSConfig getWorkloadAltsConfig() {
23782380
return workloadAltsConfig;
23792381
}
23802382

23812383
/**
2382-
* Configuration for direct-path (via ALTS) with workload identity.
2384+
* Configuration for direct-path (via ALTS) with workload identity. This feature is not officially
2385+
* supported for external customers in Kubernetes Engine when using Workload Identity.
23832386
* @param workloadAltsConfig workloadAltsConfig or {@code null} for none
23842387
*/
23852388
public Cluster setWorkloadAltsConfig(WorkloadALTSConfig workloadAltsConfig) {

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,8 @@ public final class ClusterUpdate extends com.google.api.client.json.GenericJson
583583
private VerticalPodAutoscaling desiredVerticalPodAutoscaling;
584584

585585
/**
586-
* Configuration for direct-path (via ALTS) with workload identity.
586+
* Configuration for direct-path (via ALTS) with workload identity. This feature is not officially
587+
* supported for external customers in Kubernetes Engine when using Workload Identity.
587588
* The value may be {@code null}.
588589
*/
589590
@com.google.api.client.util.Key
@@ -1968,15 +1969,17 @@ public ClusterUpdate setDesiredVerticalPodAutoscaling(VerticalPodAutoscaling des
19681969
}
19691970

19701971
/**
1971-
* Configuration for direct-path (via ALTS) with workload identity.
1972+
* Configuration for direct-path (via ALTS) with workload identity. This feature is not officially
1973+
* supported for external customers in Kubernetes Engine when using Workload Identity.
19721974
* @return value or {@code null} for none
19731975
*/
19741976
public WorkloadALTSConfig getDesiredWorkloadAltsConfig() {
19751977
return desiredWorkloadAltsConfig;
19761978
}
19771979

19781980
/**
1979-
* Configuration for direct-path (via ALTS) with workload identity.
1981+
* Configuration for direct-path (via ALTS) with workload identity. This feature is not officially
1982+
* supported for external customers in Kubernetes Engine when using Workload Identity.
19801983
* @param desiredWorkloadAltsConfig desiredWorkloadAltsConfig or {@code null} for none
19811984
*/
19821985
public ClusterUpdate setDesiredWorkloadAltsConfig(WorkloadALTSConfig desiredWorkloadAltsConfig) {

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

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

3333
/**
34-
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988.
34+
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988. This
35+
* serves as a workaround for a port conflict with the gke-metadata-server. This field is required
36+
* ONLY under the following conditions: 1. The GKE node version is older than 1.33.2-gke.4655000.
37+
* 2. You're connecting to a Lustre instance that has the 'gke-support-enabled' flag.
3538
* The value may be {@code null}.
3639
*/
3740
@com.google.api.client.util.Key
@@ -45,15 +48,21 @@ public final class LustreCsiDriverConfig extends com.google.api.client.json.Gene
4548
private java.lang.Boolean enabled;
4649

4750
/**
48-
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988.
51+
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988. This
52+
* serves as a workaround for a port conflict with the gke-metadata-server. This field is required
53+
* ONLY under the following conditions: 1. The GKE node version is older than 1.33.2-gke.4655000.
54+
* 2. You're connecting to a Lustre instance that has the 'gke-support-enabled' flag.
4955
* @return value or {@code null} for none
5056
*/
5157
public java.lang.Boolean getEnableLegacyLustrePort() {
5258
return enableLegacyLustrePort;
5359
}
5460

5561
/**
56-
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988.
62+
* If set to true, the Lustre CSI driver will install Lustre kernel modules using port 6988. This
63+
* serves as a workaround for a port conflict with the gke-metadata-server. This field is required
64+
* ONLY under the following conditions: 1. The GKE node version is older than 1.33.2-gke.4655000.
65+
* 2. You're connecting to a Lustre instance that has the 'gke-support-enabled' flag.
5766
* @param enableLegacyLustrePort enableLegacyLustrePort or {@code null} for none
5867
*/
5968
public LustreCsiDriverConfig setEnableLegacyLustrePort(java.lang.Boolean enableLegacyLustrePort) {

0 commit comments

Comments
 (0)