Skip to content

Commit f7bbd7a

Browse files
1 parent efc281c commit f7bbd7a

File tree

8 files changed

+66
-12
lines changed

8 files changed

+66
-12
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-rev20250429-2.0.0</version>
25+
<version>v1-rev20250506-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-rev20250429-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20250506-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: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private AddonsConfig addonsConfig;
3939

40+
/**
41+
* The list of user specified Kubernetes feature gates. Each string represents the activation
42+
* status of a feature gate (e.g. "featureX=true" or "featureX=false")
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<java.lang.String> alphaClusterFeatureGates;
47+
4048
/**
4149
* Configuration controlling RBAC group membership information.
4250
* The value may be {@code null}.
@@ -668,6 +676,25 @@ public Cluster setAddonsConfig(AddonsConfig addonsConfig) {
668676
return this;
669677
}
670678

679+
/**
680+
* The list of user specified Kubernetes feature gates. Each string represents the activation
681+
* status of a feature gate (e.g. "featureX=true" or "featureX=false")
682+
* @return value or {@code null} for none
683+
*/
684+
public java.util.List<java.lang.String> getAlphaClusterFeatureGates() {
685+
return alphaClusterFeatureGates;
686+
}
687+
688+
/**
689+
* The list of user specified Kubernetes feature gates. Each string represents the activation
690+
* status of a feature gate (e.g. "featureX=true" or "featureX=false")
691+
* @param alphaClusterFeatureGates alphaClusterFeatureGates or {@code null} for none
692+
*/
693+
public Cluster setAlphaClusterFeatureGates(java.util.List<java.lang.String> alphaClusterFeatureGates) {
694+
this.alphaClusterFeatureGates = alphaClusterFeatureGates;
695+
return this;
696+
}
697+
671698
/**
672699
* Configuration controlling RBAC group membership information.
673700
* @return value or {@code null} for none

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-rev20250429-2.0.0</version>
12-
<name>Kubernetes Engine API v1-rev20250429-2.0.0</name>
11+
<version>v1-rev20250506-2.0.0</version>
12+
<name>Kubernetes Engine API v1-rev20250506-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-rev20250429-2.0.0</version>
25+
<version>v1-rev20250506-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-rev20250429-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20250506-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-rev20250429-2.0.0</version>
25+
<version>v1beta1-rev20250506-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-rev20250429-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1beta1-rev20250506-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: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private AddonsConfig addonsConfig;
3939

40+
/**
41+
* The list of user specified Kubernetes feature gates. Each string represents the activation
42+
* status of a feature gate (e.g. "featureX=true" or "featureX=false")
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<java.lang.String> alphaClusterFeatureGates;
47+
4048
/**
4149
* Configuration controlling RBAC group membership information.
4250
* The value may be {@code null}.
@@ -738,6 +746,25 @@ public Cluster setAddonsConfig(AddonsConfig addonsConfig) {
738746
return this;
739747
}
740748

749+
/**
750+
* The list of user specified Kubernetes feature gates. Each string represents the activation
751+
* status of a feature gate (e.g. "featureX=true" or "featureX=false")
752+
* @return value or {@code null} for none
753+
*/
754+
public java.util.List<java.lang.String> getAlphaClusterFeatureGates() {
755+
return alphaClusterFeatureGates;
756+
}
757+
758+
/**
759+
* The list of user specified Kubernetes feature gates. Each string represents the activation
760+
* status of a feature gate (e.g. "featureX=true" or "featureX=false")
761+
* @param alphaClusterFeatureGates alphaClusterFeatureGates or {@code null} for none
762+
*/
763+
public Cluster setAlphaClusterFeatureGates(java.util.List<java.lang.String> alphaClusterFeatureGates) {
764+
this.alphaClusterFeatureGates = alphaClusterFeatureGates;
765+
return this;
766+
}
767+
741768
/**
742769
* Configuration controlling RBAC group membership information.
743770
* @return value or {@code null} for none

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-rev20250429-2.0.0</version>
12-
<name>Kubernetes Engine API v1beta1-rev20250429-2.0.0</name>
11+
<version>v1beta1-rev20250506-2.0.0</version>
12+
<name>Kubernetes Engine API v1beta1-rev20250506-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-rev20250429-2.0.0</version>
25+
<version>v1beta1-rev20250506-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-rev20250429-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1beta1-rev20250506-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)