From ca573287a35ae590040ba31f8c262aabf18d668c Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Fri, 28 Aug 2026 18:12:32 -0700
Subject: [PATCH] chore: regenerate container client
---
.../v1/2.0.0/README.md | 4 ++--
.../services/container/model/NodeConfig.java | 15 +++++++-----
.../container/model/ReleaseChannelConfig.java | 24 +++++++++++++++++++
.../v1/2.0.0/pom.xml | 4 ++--
.../v1/README.md | 4 ++--
.../v1beta1/2.0.0/README.md | 4 ++--
.../AutoprovisioningNodePoolDefaults.java | 15 +++++++-----
.../container/v1beta1/model/NodeConfig.java | 15 +++++++-----
.../v1beta1/model/ReleaseChannelConfig.java | 24 +++++++++++++++++++
.../v1beta1/2.0.0/pom.xml | 4 ++--
.../v1beta1/README.md | 4 ++--
11 files changed, 87 insertions(+), 30 deletions(-)
diff --git a/clients/google-api-services-container/v1/2.0.0/README.md b/clients/google-api-services-container/v1/2.0.0/README.md
index 78e0ee256a2..cbf03742fe0 100644
--- a/clients/google-api-services-container/v1/2.0.0/README.md
+++ b/clients/google-api-services-container/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-container
- v1-rev20260727-2.0.0
+ v1-rev20260818-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-container:v1-rev20260727-2.0.0'
+ implementation 'com.google.apis:google-api-services-container:v1-rev20260818-2.0.0'
}
```
diff --git a/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/NodeConfig.java b/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/NodeConfig.java
index 09eccb7b12b..aaa4158027d 100644
--- a/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/NodeConfig.java
+++ b/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/NodeConfig.java
@@ -94,8 +94,9 @@ public final class NodeConfig extends com.google.api.client.json.GenericJson {
private ContainerdConfig containerdConfig;
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.3-gke.1480000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
@@ -573,8 +574,9 @@ public NodeConfig setContainerdConfig(ContainerdConfig containerdConfig) {
}
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.3-gke.1480000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* @return value or {@code null} for none
*/
public java.lang.Integer getDiskSizeGb() {
@@ -582,8 +584,9 @@ public java.lang.Integer getDiskSizeGb() {
}
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.3-gke.1480000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* @param diskSizeGb diskSizeGb or {@code null} for none
*/
public NodeConfig setDiskSizeGb(java.lang.Integer diskSizeGb) {
diff --git a/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/ReleaseChannelConfig.java b/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/ReleaseChannelConfig.java
index fb4dea37a7e..d149214baef 100644
--- a/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/ReleaseChannelConfig.java
+++ b/clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/model/ReleaseChannelConfig.java
@@ -51,6 +51,13 @@ public final class ReleaseChannelConfig extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private java.lang.String defaultVersion;
+ /**
+ * Output only. List of preview versions for the channel.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.util.List previewVersions;
+
/**
* The auto upgrade target version for clusters on the channel.
* The value may be {@code null}.
@@ -116,6 +123,23 @@ public ReleaseChannelConfig setDefaultVersion(java.lang.String defaultVersion) {
return this;
}
+ /**
+ * Output only. List of preview versions for the channel.
+ * @return value or {@code null} for none
+ */
+ public java.util.List getPreviewVersions() {
+ return previewVersions;
+ }
+
+ /**
+ * Output only. List of preview versions for the channel.
+ * @param previewVersions previewVersions or {@code null} for none
+ */
+ public ReleaseChannelConfig setPreviewVersions(java.util.List previewVersions) {
+ this.previewVersions = previewVersions;
+ return this;
+ }
+
/**
* The auto upgrade target version for clusters on the channel.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-container/v1/2.0.0/pom.xml b/clients/google-api-services-container/v1/2.0.0/pom.xml
index f8578f6ae9c..91e5fd418e8 100644
--- a/clients/google-api-services-container/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-container/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-container
- v1-rev20260727-2.0.0
- Kubernetes Engine API v1-rev20260727-2.0.0
+ v1-rev20260818-2.0.0
+ Kubernetes Engine API v1-rev20260818-2.0.0
jar
2011
diff --git a/clients/google-api-services-container/v1/README.md b/clients/google-api-services-container/v1/README.md
index 78e0ee256a2..cbf03742fe0 100644
--- a/clients/google-api-services-container/v1/README.md
+++ b/clients/google-api-services-container/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-container
- v1-rev20260727-2.0.0
+ v1-rev20260818-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-container:v1-rev20260727-2.0.0'
+ implementation 'com.google.apis:google-api-services-container:v1-rev20260818-2.0.0'
}
```
diff --git a/clients/google-api-services-container/v1beta1/2.0.0/README.md b/clients/google-api-services-container/v1beta1/2.0.0/README.md
index 5cf555e22fb..fce91ce2208 100644
--- a/clients/google-api-services-container/v1beta1/2.0.0/README.md
+++ b/clients/google-api-services-container/v1beta1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-container
- v1beta1-rev20260727-2.0.0
+ v1beta1-rev20260818-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-container:v1beta1-rev20260727-2.0.0'
+ implementation 'com.google.apis:google-api-services-container:v1beta1-rev20260818-2.0.0'
}
```
diff --git a/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/AutoprovisioningNodePoolDefaults.java b/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/AutoprovisioningNodePoolDefaults.java
index 856a67259ac..9ac79241500 100644
--- a/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/AutoprovisioningNodePoolDefaults.java
+++ b/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/AutoprovisioningNodePoolDefaults.java
@@ -42,8 +42,9 @@ public final class AutoprovisioningNodePoolDefaults extends com.google.api.clien
private java.lang.String bootDiskKmsKey;
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.3-gke.1480000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
@@ -155,8 +156,9 @@ public AutoprovisioningNodePoolDefaults setBootDiskKmsKey(java.lang.String bootD
}
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.3-gke.1480000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* @return value or {@code null} for none
*/
public java.lang.Integer getDiskSizeGb() {
@@ -164,8 +166,9 @@ public java.lang.Integer getDiskSizeGb() {
}
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.3-gke.1480000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* @param diskSizeGb diskSizeGb or {@code null} for none
*/
public AutoprovisioningNodePoolDefaults setDiskSizeGb(java.lang.Integer diskSizeGb) {
diff --git a/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/NodeConfig.java b/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/NodeConfig.java
index 77f07282662..1c7132522bd 100644
--- a/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/NodeConfig.java
+++ b/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/NodeConfig.java
@@ -94,8 +94,9 @@ public final class NodeConfig extends com.google.api.client.json.GenericJson {
private ContainerdConfig containerdConfig;
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.2-gke.2933000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
@@ -590,8 +591,9 @@ public NodeConfig setContainerdConfig(ContainerdConfig containerdConfig) {
}
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.2-gke.2933000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* @return value or {@code null} for none
*/
public java.lang.Integer getDiskSizeGb() {
@@ -599,8 +601,9 @@ public java.lang.Integer getDiskSizeGb() {
}
/**
- * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is
- * 10GB. If unspecified, the default disk size is 100GB.
+ * Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 15
+ * GB for node pools running GKE versions 1.36.2-gke.2933000 or later. Or, for earlier versions,
+ * the smallest allowed disk size is 12 GB. If unspecified, the default disk size is 100GB.
* @param diskSizeGb diskSizeGb or {@code null} for none
*/
public NodeConfig setDiskSizeGb(java.lang.Integer diskSizeGb) {
diff --git a/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/ReleaseChannelConfig.java b/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/ReleaseChannelConfig.java
index 7d3bc5b37b9..aff213fd2cd 100644
--- a/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/ReleaseChannelConfig.java
+++ b/clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/ReleaseChannelConfig.java
@@ -64,6 +64,13 @@ public final class ReleaseChannelConfig extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private java.lang.String defaultVersion;
+ /**
+ * Output only. List of preview versions for the channel.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.util.List previewVersions;
+
/**
* The auto upgrade target version for clusters on the channel.
* The value may be {@code null}.
@@ -146,6 +153,23 @@ public ReleaseChannelConfig setDefaultVersion(java.lang.String defaultVersion) {
return this;
}
+ /**
+ * Output only. List of preview versions for the channel.
+ * @return value or {@code null} for none
+ */
+ public java.util.List getPreviewVersions() {
+ return previewVersions;
+ }
+
+ /**
+ * Output only. List of preview versions for the channel.
+ * @param previewVersions previewVersions or {@code null} for none
+ */
+ public ReleaseChannelConfig setPreviewVersions(java.util.List previewVersions) {
+ this.previewVersions = previewVersions;
+ return this;
+ }
+
/**
* The auto upgrade target version for clusters on the channel.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-container/v1beta1/2.0.0/pom.xml b/clients/google-api-services-container/v1beta1/2.0.0/pom.xml
index b276e6901eb..29b4e931975 100644
--- a/clients/google-api-services-container/v1beta1/2.0.0/pom.xml
+++ b/clients/google-api-services-container/v1beta1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-container
- v1beta1-rev20260727-2.0.0
- Kubernetes Engine API v1beta1-rev20260727-2.0.0
+ v1beta1-rev20260818-2.0.0
+ Kubernetes Engine API v1beta1-rev20260818-2.0.0
jar
2011
diff --git a/clients/google-api-services-container/v1beta1/README.md b/clients/google-api-services-container/v1beta1/README.md
index 5cf555e22fb..fce91ce2208 100644
--- a/clients/google-api-services-container/v1beta1/README.md
+++ b/clients/google-api-services-container/v1beta1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-container
- v1beta1-rev20260727-2.0.0
+ v1beta1-rev20260818-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-container:v1beta1-rev20260727-2.0.0'
+ implementation 'com.google.apis:google-api-services-container:v1beta1-rev20260818-2.0.0'
}
```