Skip to content

Commit ad1f548

Browse files
1 parent d4d6f29 commit ad1f548

22 files changed

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

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ public final class LinuxNodeConfig extends com.google.api.client.json.GenericJso
4444
@com.google.api.client.util.Key
4545
private HugepagesConfig hugepages;
4646

47+
/**
48+
* Optional. Configuration for kernel module loading on nodes. When enabled, the node pool will be
49+
* provisioned with a Container-Optimized OS image that enforces kernel module signature
50+
* verification.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private NodeKernelModuleLoading nodeKernelModuleLoading;
55+
4756
/**
4857
* The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The
4958
* following parameters are supported. net.core.busy_poll net.core.busy_read
@@ -117,6 +126,27 @@ public LinuxNodeConfig setHugepages(HugepagesConfig hugepages) {
117126
return this;
118127
}
119128

129+
/**
130+
* Optional. Configuration for kernel module loading on nodes. When enabled, the node pool will be
131+
* provisioned with a Container-Optimized OS image that enforces kernel module signature
132+
* verification.
133+
* @return value or {@code null} for none
134+
*/
135+
public NodeKernelModuleLoading getNodeKernelModuleLoading() {
136+
return nodeKernelModuleLoading;
137+
}
138+
139+
/**
140+
* Optional. Configuration for kernel module loading on nodes. When enabled, the node pool will be
141+
* provisioned with a Container-Optimized OS image that enforces kernel module signature
142+
* verification.
143+
* @param nodeKernelModuleLoading nodeKernelModuleLoading or {@code null} for none
144+
*/
145+
public LinuxNodeConfig setNodeKernelModuleLoading(NodeKernelModuleLoading nodeKernelModuleLoading) {
146+
this.nodeKernelModuleLoading = nodeKernelModuleLoading;
147+
return this;
148+
}
149+
120150
/**
121151
* The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The
122152
* following parameters are supported. net.core.busy_poll net.core.busy_read

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,37 @@
3030
@SuppressWarnings("javadoc")
3131
public final class MaintenanceExclusionOptions extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* EndTimeBehavior specifies the behavior of the exclusion end time.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String endTimeBehavior;
39+
3340
/**
3441
* Scope specifies the upgrade scope which upgrades are blocked by the exclusion.
3542
* The value may be {@code null}.
3643
*/
3744
@com.google.api.client.util.Key
3845
private java.lang.String scope;
3946

47+
/**
48+
* EndTimeBehavior specifies the behavior of the exclusion end time.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getEndTimeBehavior() {
52+
return endTimeBehavior;
53+
}
54+
55+
/**
56+
* EndTimeBehavior specifies the behavior of the exclusion end time.
57+
* @param endTimeBehavior endTimeBehavior or {@code null} for none
58+
*/
59+
public MaintenanceExclusionOptions setEndTimeBehavior(java.lang.String endTimeBehavior) {
60+
this.endTimeBehavior = endTimeBehavior;
61+
return this;
62+
}
63+
4064
/**
4165
* Scope specifies the upgrade scope which upgrades are blocked by the exclusion.
4266
* @return value or {@code null} for none
Lines changed: 67 additions & 0 deletions
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 kernel module loading on nodes.
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 NodeKernelModuleLoading extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Set the node module loading policy for nodes in the node pool.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String policy;
39+
40+
/**
41+
* Set the node module loading policy for nodes in the node pool.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getPolicy() {
45+
return policy;
46+
}
47+
48+
/**
49+
* Set the node module loading policy for nodes in the node pool.
50+
* @param policy policy or {@code null} for none
51+
*/
52+
public NodeKernelModuleLoading setPolicy(java.lang.String policy) {
53+
this.policy = policy;
54+
return this;
55+
}
56+
57+
@Override
58+
public NodeKernelModuleLoading set(String fieldName, Object value) {
59+
return (NodeKernelModuleLoading) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public NodeKernelModuleLoading clone() {
64+
return (NodeKernelModuleLoading) super.clone();
65+
}
66+
67+
}

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

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,12 @@ public final class UpdateNodePoolRequest extends com.google.api.client.json.Gene
167167
* [zones](https://{$universe.dns_names.final_documentation_domain}/compute/docs/zones#available)
168168
* in which the node pool's nodes should be located. Changing the locations for a node pool will
169169
* result in nodes being either created or removed from the node pool, depending on whether
170-
* locations are being added or removed.
170+
* locations are being added or removed. Warning: It is recommended to update node pool locations
171+
* in a standalone API call. Do not combine a location update with changes to other fields (such
172+
* as `tags`, `labels`, `taints`, etc.) in the same request. Otherwise, the API performs a
173+
* structural modification where changes to other fields will only apply to newly created nodes
174+
* and will not be applied to existing nodes in the node pool. To ensure all nodes are updated
175+
* consistently, use a separate API call for location changes.
171176
* The value may be {@code null}.
172177
*/
173178
@com.google.api.client.util.Key
@@ -627,7 +632,12 @@ public UpdateNodePoolRequest setLinuxNodeConfig(LinuxNodeConfig linuxNodeConfig)
627632
* [zones](https://{$universe.dns_names.final_documentation_domain}/compute/docs/zones#available)
628633
* in which the node pool's nodes should be located. Changing the locations for a node pool will
629634
* result in nodes being either created or removed from the node pool, depending on whether
630-
* locations are being added or removed.
635+
* locations are being added or removed. Warning: It is recommended to update node pool locations
636+
* in a standalone API call. Do not combine a location update with changes to other fields (such
637+
* as `tags`, `labels`, `taints`, etc.) in the same request. Otherwise, the API performs a
638+
* structural modification where changes to other fields will only apply to newly created nodes
639+
* and will not be applied to existing nodes in the node pool. To ensure all nodes are updated
640+
* consistently, use a separate API call for location changes.
631641
* @return value or {@code null} for none
632642
*/
633643
public java.util.List<java.lang.String> getLocations() {
@@ -639,7 +649,12 @@ public java.util.List<java.lang.String> getLocations() {
639649
* [zones](https://{$universe.dns_names.final_documentation_domain}/compute/docs/zones#available)
640650
* in which the node pool's nodes should be located. Changing the locations for a node pool will
641651
* result in nodes being either created or removed from the node pool, depending on whether
642-
* locations are being added or removed.
652+
* locations are being added or removed. Warning: It is recommended to update node pool locations
653+
* in a standalone API call. Do not combine a location update with changes to other fields (such
654+
* as `tags`, `labels`, `taints`, etc.) in the same request. Otherwise, the API performs a
655+
* structural modification where changes to other fields will only apply to newly created nodes
656+
* and will not be applied to existing nodes in the node pool. To ensure all nodes are updated
657+
* consistently, use a separate API call for location changes.
643658
* @param locations locations or {@code null} for none
644659
*/
645660
public UpdateNodePoolRequest setLocations(java.util.List<java.lang.String> locations) {

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

Lines changed: 91 additions & 0 deletions
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.v1beta1.model;
18+
19+
/**
20+
* Swap on the node's boot disk.
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 BootDiskProfile extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Specifies the size of the swap space in gibibytes (GiB).
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long swapSizeGib;
39+
40+
/**
41+
* Specifies the size of the swap space as a percentage of the boot disk size.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Integer swapSizePercent;
46+
47+
/**
48+
* Specifies the size of the swap space in gibibytes (GiB).
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Long getSwapSizeGib() {
52+
return swapSizeGib;
53+
}
54+
55+
/**
56+
* Specifies the size of the swap space in gibibytes (GiB).
57+
* @param swapSizeGib swapSizeGib or {@code null} for none
58+
*/
59+
public BootDiskProfile setSwapSizeGib(java.lang.Long swapSizeGib) {
60+
this.swapSizeGib = swapSizeGib;
61+
return this;
62+
}
63+
64+
/**
65+
* Specifies the size of the swap space as a percentage of the boot disk size.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.Integer getSwapSizePercent() {
69+
return swapSizePercent;
70+
}
71+
72+
/**
73+
* Specifies the size of the swap space as a percentage of the boot disk size.
74+
* @param swapSizePercent swapSizePercent or {@code null} for none
75+
*/
76+
public BootDiskProfile setSwapSizePercent(java.lang.Integer swapSizePercent) {
77+
this.swapSizePercent = swapSizePercent;
78+
return this;
79+
}
80+
81+
@Override
82+
public BootDiskProfile set(String fieldName, Object value) {
83+
return (BootDiskProfile) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public BootDiskProfile clone() {
88+
return (BootDiskProfile) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)