Skip to content

Commit 27a2081

Browse files
1 parent 1ae58f8 commit 27a2081

File tree

18 files changed

+432
-12
lines changed

18 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@ public final class AddonsConfig extends com.google.api.client.json.GenericJson {
8181
@com.google.api.client.util.Key
8282
private GkeBackupAgentConfig gkeBackupAgentConfig;
8383

84+
/**
85+
* Configuration for the High Scale Checkpointing add-on.
86+
* The value may be {@code null}.
87+
*/
88+
@com.google.api.client.util.Key
89+
private HighScaleCheckpointingConfig highScaleCheckpointingConfig;
90+
8491
/**
8592
* Configuration for the horizontal pod autoscaling feature, which increases or decreases the
8693
* number of replica pods a replication controller has based on the resource usage of the existing
@@ -258,6 +265,23 @@ public AddonsConfig setGkeBackupAgentConfig(GkeBackupAgentConfig gkeBackupAgentC
258265
return this;
259266
}
260267

268+
/**
269+
* Configuration for the High Scale Checkpointing add-on.
270+
* @return value or {@code null} for none
271+
*/
272+
public HighScaleCheckpointingConfig getHighScaleCheckpointingConfig() {
273+
return highScaleCheckpointingConfig;
274+
}
275+
276+
/**
277+
* Configuration for the High Scale Checkpointing add-on.
278+
* @param highScaleCheckpointingConfig highScaleCheckpointingConfig or {@code null} for none
279+
*/
280+
public AddonsConfig setHighScaleCheckpointingConfig(HighScaleCheckpointingConfig highScaleCheckpointingConfig) {
281+
this.highScaleCheckpointingConfig = highScaleCheckpointingConfig;
282+
return this;
283+
}
284+
261285
/**
262286
* Configuration for the horizontal pod autoscaling feature, which increases or decreases the
263287
* number of replica pods a replication controller has based on the resource usage of the existing

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

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

40+
/**
41+
* Type of Performance Monitoring Unit (PMU) requested on node pool instances. If unset, PMU will
42+
* not be available to the node.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String performanceMonitoringUnit;
47+
4048
/**
4149
* The number of threads per physical core. To disable simultaneous multithreading (SMT) set this
4250
* to 1. If unset, the maximum number of threads supported per core by the underlying processor is
@@ -63,6 +71,25 @@ public AdvancedMachineFeatures setEnableNestedVirtualization(java.lang.Boolean e
6371
return this;
6472
}
6573

74+
/**
75+
* Type of Performance Monitoring Unit (PMU) requested on node pool instances. If unset, PMU will
76+
* not be available to the node.
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.String getPerformanceMonitoringUnit() {
80+
return performanceMonitoringUnit;
81+
}
82+
83+
/**
84+
* Type of Performance Monitoring Unit (PMU) requested on node pool instances. If unset, PMU will
85+
* not be available to the node.
86+
* @param performanceMonitoringUnit performanceMonitoringUnit or {@code null} for none
87+
*/
88+
public AdvancedMachineFeatures setPerformanceMonitoringUnit(java.lang.String performanceMonitoringUnit) {
89+
this.performanceMonitoringUnit = performanceMonitoringUnit;
90+
return this;
91+
}
92+
6693
/**
6794
* The number of threads per physical core. To disable simultaneous multithreading (SMT) set this
6895
* to 1. If unset, the maximum number of threads supported per core by the underlying processor is
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
* AnonymousAuthenticationConfig defines the settings needed to limit endpoints that allow anonymous
21+
* authentication.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Kubernetes Engine API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class AnonymousAuthenticationConfig extends com.google.api.client.json.GenericJson {
33+
34+
@Override
35+
public AnonymousAuthenticationConfig set(String fieldName, Object value) {
36+
return (AnonymousAuthenticationConfig) super.set(fieldName, value);
37+
}
38+
39+
@Override
40+
public AnonymousAuthenticationConfig clone() {
41+
return (AnonymousAuthenticationConfig) super.clone();
42+
}
43+
44+
}

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
@@ -45,6 +45,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.util.List<java.lang.String> alphaClusterFeatureGates;
4747

48+
/**
49+
* Configuration for limiting anonymous access to all endpoints except the health checks.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private AnonymousAuthenticationConfig anonymousAuthenticationConfig;
54+
4855
/**
4956
* Configuration controlling RBAC group membership information.
5057
* The value may be {@code null}.
@@ -695,6 +702,23 @@ public Cluster setAlphaClusterFeatureGates(java.util.List<java.lang.String> alph
695702
return this;
696703
}
697704

705+
/**
706+
* Configuration for limiting anonymous access to all endpoints except the health checks.
707+
* @return value or {@code null} for none
708+
*/
709+
public AnonymousAuthenticationConfig getAnonymousAuthenticationConfig() {
710+
return anonymousAuthenticationConfig;
711+
}
712+
713+
/**
714+
* Configuration for limiting anonymous access to all endpoints except the health checks.
715+
* @param anonymousAuthenticationConfig anonymousAuthenticationConfig or {@code null} for none
716+
*/
717+
public Cluster setAnonymousAuthenticationConfig(AnonymousAuthenticationConfig anonymousAuthenticationConfig) {
718+
this.anonymousAuthenticationConfig = anonymousAuthenticationConfig;
719+
return this;
720+
}
721+
698722
/**
699723
* Configuration controlling RBAC group membership information.
700724
* @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
@@ -46,6 +46,13 @@ public final class ClusterUpdate extends com.google.api.client.json.GenericJson
4646
@com.google.api.client.util.Key
4747
private AddonsConfig desiredAddonsConfig;
4848

49+
/**
50+
* Configuration for limiting anonymous access to all endpoints except the health checks.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private AnonymousAuthenticationConfig desiredAnonymousAuthenticationConfig;
55+
4956
/**
5057
* The desired authenticator groups config for the cluster.
5158
* The value may be {@code null}.
@@ -581,6 +588,23 @@ public ClusterUpdate setDesiredAddonsConfig(AddonsConfig desiredAddonsConfig) {
581588
return this;
582589
}
583590

591+
/**
592+
* Configuration for limiting anonymous access to all endpoints except the health checks.
593+
* @return value or {@code null} for none
594+
*/
595+
public AnonymousAuthenticationConfig getDesiredAnonymousAuthenticationConfig() {
596+
return desiredAnonymousAuthenticationConfig;
597+
}
598+
599+
/**
600+
* Configuration for limiting anonymous access to all endpoints except the health checks.
601+
* @param desiredAnonymousAuthenticationConfig desiredAnonymousAuthenticationConfig or {@code null} for none
602+
*/
603+
public ClusterUpdate setDesiredAnonymousAuthenticationConfig(AnonymousAuthenticationConfig desiredAnonymousAuthenticationConfig) {
604+
this.desiredAnonymousAuthenticationConfig = desiredAnonymousAuthenticationConfig;
605+
return this;
606+
}
607+
584608
/**
585609
* The desired authenticator groups config for the cluster.
586610
* @return value or {@code null} for none
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+
* Configuration for the High Scale Checkpointing.
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 HighScaleCheckpointingConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Whether the High Scale Checkpointing is enabled for this cluster.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Whether the High Scale Checkpointing is enabled for this cluster.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getEnabled() {
45+
return enabled;
46+
}
47+
48+
/**
49+
* Whether the High Scale Checkpointing is enabled for this cluster.
50+
* @param enabled enabled or {@code null} for none
51+
*/
52+
public HighScaleCheckpointingConfig setEnabled(java.lang.Boolean enabled) {
53+
this.enabled = enabled;
54+
return this;
55+
}
56+
57+
@Override
58+
public HighScaleCheckpointingConfig set(String fieldName, Object value) {
59+
return (HighScaleCheckpointingConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public HighScaleCheckpointingConfig clone() {
64+
return (HighScaleCheckpointingConfig) super.clone();
65+
}
66+
67+
}

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

0 commit comments

Comments
 (0)