diff --git a/clients/google-api-services-gkehub/v1/2.0.0/README.md b/clients/google-api-services-gkehub/v1/2.0.0/README.md
index 3ec9fa935bb..303454f33f9 100644
--- a/clients/google-api-services-gkehub/v1/2.0.0/README.md
+++ b/clients/google-api-services-gkehub/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-gkehub
- v1-rev20260616-2.0.0
+ v1-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/CommonFeatureSpec.java b/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/CommonFeatureSpec.java
index 87d18495108..0a5dfb15a16 100644
--- a/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/CommonFeatureSpec.java
+++ b/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/CommonFeatureSpec.java
@@ -57,6 +57,13 @@ public final class CommonFeatureSpec extends com.google.api.client.json.GenericJ
@com.google.api.client.util.Key
private FleetObservabilityFeatureSpec fleetobservability;
+ /**
+ * Servicemesh feature spec.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private ServiceMeshFeatureSpec mesh;
+
/**
* Multicluster Ingress-specific spec.
* The value may be {@code null}.
@@ -146,6 +153,23 @@ public CommonFeatureSpec setFleetobservability(FleetObservabilityFeatureSpec fle
return this;
}
+ /**
+ * Servicemesh feature spec.
+ * @return value or {@code null} for none
+ */
+ public ServiceMeshFeatureSpec getMesh() {
+ return mesh;
+ }
+
+ /**
+ * Servicemesh feature spec.
+ * @param mesh mesh or {@code null} for none
+ */
+ public CommonFeatureSpec setMesh(ServiceMeshFeatureSpec mesh) {
+ this.mesh = mesh;
+ return this;
+ }
+
/**
* Multicluster Ingress-specific spec.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/ServiceMeshFeatureSpec.java b/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/ServiceMeshFeatureSpec.java
new file mode 100644
index 00000000000..21f7ec11486
--- /dev/null
+++ b/clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/ServiceMeshFeatureSpec.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+/*
+ * This code was generated by https://github.com/googleapis/google-api-java-client-services/
+ * Modify at your own risk.
+ */
+
+package com.google.api.services.gkehub.v1.model;
+
+/**
+ * **Service Mesh**: Spec for the fleet for the servicemesh feature
+ *
+ *
This is the Java data model class that specifies how to parse/serialize into the JSON that is
+ * transmitted over HTTP when working with the GKE Hub API. For a detailed explanation see:
+ * https://developers.google.com/api-client-library/java/google-http-java-client/json
+ *
+ *
+ * @author Google, Inc.
+ */
+@SuppressWarnings("javadoc")
+public final class ServiceMeshFeatureSpec extends com.google.api.client.json.GenericJson {
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String modernizationCompatibility;
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getModernizationCompatibility() {
+ return modernizationCompatibility;
+ }
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * @param modernizationCompatibility modernizationCompatibility or {@code null} for none
+ */
+ public ServiceMeshFeatureSpec setModernizationCompatibility(java.lang.String modernizationCompatibility) {
+ this.modernizationCompatibility = modernizationCompatibility;
+ return this;
+ }
+
+ @Override
+ public ServiceMeshFeatureSpec set(String fieldName, Object value) {
+ return (ServiceMeshFeatureSpec) super.set(fieldName, value);
+ }
+
+ @Override
+ public ServiceMeshFeatureSpec clone() {
+ return (ServiceMeshFeatureSpec) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-gkehub/v1/2.0.0/pom.xml b/clients/google-api-services-gkehub/v1/2.0.0/pom.xml
index 0d0efed9d1a..c3e9fa168a4 100644
--- a/clients/google-api-services-gkehub/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-gkehub/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkehub
- v1-rev20260616-2.0.0
- GKE Hub API v1-rev20260616-2.0.0
+ v1-rev20260623-2.0.0
+ GKE Hub API v1-rev20260623-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkehub/v1/README.md b/clients/google-api-services-gkehub/v1/README.md
index 3ec9fa935bb..303454f33f9 100644
--- a/clients/google-api-services-gkehub/v1/README.md
+++ b/clients/google-api-services-gkehub/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v1-rev20260616-2.0.0
+ v1-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v1alpha/2.0.0/README.md b/clients/google-api-services-gkehub/v1alpha/2.0.0/README.md
index ab29e510bbf..aed32a50079 100644
--- a/clients/google-api-services-gkehub/v1alpha/2.0.0/README.md
+++ b/clients/google-api-services-gkehub/v1alpha/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v1alpha-rev20260616-2.0.0
+ v1alpha-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v1alpha-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v1alpha-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/CommonFeatureSpec.java b/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/CommonFeatureSpec.java
index dbd6251fd91..bdee1b08988 100644
--- a/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/CommonFeatureSpec.java
+++ b/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/CommonFeatureSpec.java
@@ -64,6 +64,13 @@ public final class CommonFeatureSpec extends com.google.api.client.json.GenericJ
@com.google.api.client.util.Key
private FleetObservabilityFeatureSpec fleetobservability;
+ /**
+ * Servicemesh feature spec.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private ServiceMeshFeatureSpec mesh;
+
/**
* Multicluster Ingress-specific spec.
* The value may be {@code null}.
@@ -184,6 +191,23 @@ public CommonFeatureSpec setFleetobservability(FleetObservabilityFeatureSpec fle
return this;
}
+ /**
+ * Servicemesh feature spec.
+ * @return value or {@code null} for none
+ */
+ public ServiceMeshFeatureSpec getMesh() {
+ return mesh;
+ }
+
+ /**
+ * Servicemesh feature spec.
+ * @param mesh mesh or {@code null} for none
+ */
+ public CommonFeatureSpec setMesh(ServiceMeshFeatureSpec mesh) {
+ this.mesh = mesh;
+ return this;
+ }
+
/**
* Multicluster Ingress-specific spec.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/ServiceMeshFeatureSpec.java b/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/ServiceMeshFeatureSpec.java
new file mode 100644
index 00000000000..e4b72346f36
--- /dev/null
+++ b/clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/ServiceMeshFeatureSpec.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+/*
+ * This code was generated by https://github.com/googleapis/google-api-java-client-services/
+ * Modify at your own risk.
+ */
+
+package com.google.api.services.gkehub.v1alpha.model;
+
+/**
+ * **Service Mesh**: Spec for the fleet for the servicemesh feature
+ *
+ * This is the Java data model class that specifies how to parse/serialize into the JSON that is
+ * transmitted over HTTP when working with the GKE Hub API. For a detailed explanation see:
+ * https://developers.google.com/api-client-library/java/google-http-java-client/json
+ *
+ *
+ * @author Google, Inc.
+ */
+@SuppressWarnings("javadoc")
+public final class ServiceMeshFeatureSpec extends com.google.api.client.json.GenericJson {
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String modernizationCompatibility;
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getModernizationCompatibility() {
+ return modernizationCompatibility;
+ }
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * @param modernizationCompatibility modernizationCompatibility or {@code null} for none
+ */
+ public ServiceMeshFeatureSpec setModernizationCompatibility(java.lang.String modernizationCompatibility) {
+ this.modernizationCompatibility = modernizationCompatibility;
+ return this;
+ }
+
+ @Override
+ public ServiceMeshFeatureSpec set(String fieldName, Object value) {
+ return (ServiceMeshFeatureSpec) super.set(fieldName, value);
+ }
+
+ @Override
+ public ServiceMeshFeatureSpec clone() {
+ return (ServiceMeshFeatureSpec) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-gkehub/v1alpha/2.0.0/pom.xml b/clients/google-api-services-gkehub/v1alpha/2.0.0/pom.xml
index 9a690699861..e14043c78d6 100644
--- a/clients/google-api-services-gkehub/v1alpha/2.0.0/pom.xml
+++ b/clients/google-api-services-gkehub/v1alpha/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkehub
- v1alpha-rev20260616-2.0.0
- GKE Hub API v1alpha-rev20260616-2.0.0
+ v1alpha-rev20260623-2.0.0
+ GKE Hub API v1alpha-rev20260623-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkehub/v1alpha/README.md b/clients/google-api-services-gkehub/v1alpha/README.md
index ab29e510bbf..aed32a50079 100644
--- a/clients/google-api-services-gkehub/v1alpha/README.md
+++ b/clients/google-api-services-gkehub/v1alpha/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v1alpha-rev20260616-2.0.0
+ v1alpha-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v1alpha-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v1alpha-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v1beta/2.0.0/README.md b/clients/google-api-services-gkehub/v1beta/2.0.0/README.md
index 235d3e66485..010d6034440 100644
--- a/clients/google-api-services-gkehub/v1beta/2.0.0/README.md
+++ b/clients/google-api-services-gkehub/v1beta/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v1beta-rev20260616-2.0.0
+ v1beta-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureSpec.java b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureSpec.java
index 255cd8aac94..eb68cdc238e 100644
--- a/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureSpec.java
+++ b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureSpec.java
@@ -57,6 +57,13 @@ public final class CommonFeatureSpec extends com.google.api.client.json.GenericJ
@com.google.api.client.util.Key
private FleetObservabilityFeatureSpec fleetobservability;
+ /**
+ * Servicemesh feature spec.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private ServiceMeshFeatureSpec mesh;
+
/**
* Multicluster Ingress-specific spec.
* The value may be {@code null}.
@@ -146,6 +153,23 @@ public CommonFeatureSpec setFleetobservability(FleetObservabilityFeatureSpec fle
return this;
}
+ /**
+ * Servicemesh feature spec.
+ * @return value or {@code null} for none
+ */
+ public ServiceMeshFeatureSpec getMesh() {
+ return mesh;
+ }
+
+ /**
+ * Servicemesh feature spec.
+ * @param mesh mesh or {@code null} for none
+ */
+ public CommonFeatureSpec setMesh(ServiceMeshFeatureSpec mesh) {
+ this.mesh = mesh;
+ return this;
+ }
+
/**
* Multicluster Ingress-specific spec.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureSpec.java b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureSpec.java
new file mode 100644
index 00000000000..1e7f1cc55bb
--- /dev/null
+++ b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureSpec.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+/*
+ * This code was generated by https://github.com/googleapis/google-api-java-client-services/
+ * Modify at your own risk.
+ */
+
+package com.google.api.services.gkehub.v1beta.model;
+
+/**
+ * **Service Mesh**: Spec for the fleet for the servicemesh feature
+ *
+ * This is the Java data model class that specifies how to parse/serialize into the JSON that is
+ * transmitted over HTTP when working with the GKE Hub API. For a detailed explanation see:
+ * https://developers.google.com/api-client-library/java/google-http-java-client/json
+ *
+ *
+ * @author Google, Inc.
+ */
+@SuppressWarnings("javadoc")
+public final class ServiceMeshFeatureSpec extends com.google.api.client.json.GenericJson {
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String modernizationCompatibility;
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getModernizationCompatibility() {
+ return modernizationCompatibility;
+ }
+
+ /**
+ * Optional. Specifies modernization compatibility for the fleet.
+ * @param modernizationCompatibility modernizationCompatibility or {@code null} for none
+ */
+ public ServiceMeshFeatureSpec setModernizationCompatibility(java.lang.String modernizationCompatibility) {
+ this.modernizationCompatibility = modernizationCompatibility;
+ return this;
+ }
+
+ @Override
+ public ServiceMeshFeatureSpec set(String fieldName, Object value) {
+ return (ServiceMeshFeatureSpec) super.set(fieldName, value);
+ }
+
+ @Override
+ public ServiceMeshFeatureSpec clone() {
+ return (ServiceMeshFeatureSpec) super.clone();
+ }
+
+}
diff --git a/clients/google-api-services-gkehub/v1beta/2.0.0/pom.xml b/clients/google-api-services-gkehub/v1beta/2.0.0/pom.xml
index 367b90b02d1..9f1696a74c2 100644
--- a/clients/google-api-services-gkehub/v1beta/2.0.0/pom.xml
+++ b/clients/google-api-services-gkehub/v1beta/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkehub
- v1beta-rev20260616-2.0.0
- GKE Hub API v1beta-rev20260616-2.0.0
+ v1beta-rev20260623-2.0.0
+ GKE Hub API v1beta-rev20260623-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkehub/v1beta/README.md b/clients/google-api-services-gkehub/v1beta/README.md
index 235d3e66485..010d6034440 100644
--- a/clients/google-api-services-gkehub/v1beta/README.md
+++ b/clients/google-api-services-gkehub/v1beta/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v1beta-rev20260616-2.0.0
+ v1beta-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v2/2.0.0/README.md b/clients/google-api-services-gkehub/v2/2.0.0/README.md
index 3263fe5a734..70d55b3635f 100644
--- a/clients/google-api-services-gkehub/v2/2.0.0/README.md
+++ b/clients/google-api-services-gkehub/v2/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v2-rev20260616-2.0.0
+ v2-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v2-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v2-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v2/2.0.0/pom.xml b/clients/google-api-services-gkehub/v2/2.0.0/pom.xml
index 7a821fb7417..67efd7f2434 100644
--- a/clients/google-api-services-gkehub/v2/2.0.0/pom.xml
+++ b/clients/google-api-services-gkehub/v2/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkehub
- v2-rev20260616-2.0.0
- GKE Hub API v2-rev20260616-2.0.0
+ v2-rev20260623-2.0.0
+ GKE Hub API v2-rev20260623-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkehub/v2/README.md b/clients/google-api-services-gkehub/v2/README.md
index 3263fe5a734..70d55b3635f 100644
--- a/clients/google-api-services-gkehub/v2/README.md
+++ b/clients/google-api-services-gkehub/v2/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v2-rev20260616-2.0.0
+ v2-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v2-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v2-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v2alpha/2.0.0/README.md b/clients/google-api-services-gkehub/v2alpha/2.0.0/README.md
index 00cd4d1c41a..298ae36beee 100644
--- a/clients/google-api-services-gkehub/v2alpha/2.0.0/README.md
+++ b/clients/google-api-services-gkehub/v2alpha/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v2alpha-rev20260616-2.0.0
+ v2alpha-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v2alpha-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v2alpha-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v2alpha/2.0.0/pom.xml b/clients/google-api-services-gkehub/v2alpha/2.0.0/pom.xml
index 768d163f0a1..954b49ecfb9 100644
--- a/clients/google-api-services-gkehub/v2alpha/2.0.0/pom.xml
+++ b/clients/google-api-services-gkehub/v2alpha/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkehub
- v2alpha-rev20260616-2.0.0
- GKE Hub API v2alpha-rev20260616-2.0.0
+ v2alpha-rev20260623-2.0.0
+ GKE Hub API v2alpha-rev20260623-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkehub/v2alpha/README.md b/clients/google-api-services-gkehub/v2alpha/README.md
index 00cd4d1c41a..298ae36beee 100644
--- a/clients/google-api-services-gkehub/v2alpha/README.md
+++ b/clients/google-api-services-gkehub/v2alpha/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v2alpha-rev20260616-2.0.0
+ v2alpha-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v2alpha-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v2alpha-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v2beta/2.0.0/README.md b/clients/google-api-services-gkehub/v2beta/2.0.0/README.md
index 091f156a9a9..a19e3424d75 100644
--- a/clients/google-api-services-gkehub/v2beta/2.0.0/README.md
+++ b/clients/google-api-services-gkehub/v2beta/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v2beta-rev20260616-2.0.0
+ v2beta-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v2beta-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v2beta-rev20260623-2.0.0'
}
```
diff --git a/clients/google-api-services-gkehub/v2beta/2.0.0/pom.xml b/clients/google-api-services-gkehub/v2beta/2.0.0/pom.xml
index 67c9bfb1ec1..a2f39f64697 100644
--- a/clients/google-api-services-gkehub/v2beta/2.0.0/pom.xml
+++ b/clients/google-api-services-gkehub/v2beta/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-gkehub
- v2beta-rev20260616-2.0.0
- GKE Hub API v2beta-rev20260616-2.0.0
+ v2beta-rev20260623-2.0.0
+ GKE Hub API v2beta-rev20260623-2.0.0
jar
2011
diff --git a/clients/google-api-services-gkehub/v2beta/README.md b/clients/google-api-services-gkehub/v2beta/README.md
index 091f156a9a9..a19e3424d75 100644
--- a/clients/google-api-services-gkehub/v2beta/README.md
+++ b/clients/google-api-services-gkehub/v2beta/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-gkehub
- v2beta-rev20260616-2.0.0
+ v2beta-rev20260623-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-gkehub:v2beta-rev20260616-2.0.0'
+ implementation 'com.google.apis:google-api-services-gkehub:v2beta-rev20260623-2.0.0'
}
```