From bd99ddc442c44e4863a1baf62c9500d07e032bef Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Sun, 16 Aug 2026 17:42:36 -0700 Subject: [PATCH] chore: regenerate gkehub client --- .../v1beta/2.0.0/README.md | 4 +- .../v1beta/model/CommonFeatureState.java | 24 +++ .../model/ServiceMeshFeatureCondition.java | 138 ++++++++++++++++++ .../v1beta/model/ServiceMeshFeatureState.java | 72 +++++++++ .../v1beta/2.0.0/pom.xml | 4 +- .../v1beta/README.md | 4 +- 6 files changed, 240 insertions(+), 6 deletions(-) create mode 100644 clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureCondition.java create mode 100644 clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureState.java 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 ad0e315647a..fe907974b35 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-rev20260731-2.0.0 + v1beta-rev20260808-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260731-2.0.0' + implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260808-2.0.0' } ``` diff --git a/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureState.java b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureState.java index 2e98121ddf9..03eeaa93e2b 100644 --- a/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureState.java +++ b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/CommonFeatureState.java @@ -57,6 +57,13 @@ public final class CommonFeatureState extends com.google.api.client.json.Generic @com.google.api.client.util.Key private RBACRoleBindingActuationFeatureState rbacrolebindingactuation; + /** + * Service Mesh-specific state. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private ServiceMeshFeatureState servicemesh; + /** * Output only. The "running state" of the Feature in this Fleet. * The value may be {@code null}. @@ -139,6 +146,23 @@ public CommonFeatureState setRbacrolebindingactuation(RBACRoleBindingActuationFe return this; } + /** + * Service Mesh-specific state. + * @return value or {@code null} for none + */ + public ServiceMeshFeatureState getServicemesh() { + return servicemesh; + } + + /** + * Service Mesh-specific state. + * @param servicemesh servicemesh or {@code null} for none + */ + public CommonFeatureState setServicemesh(ServiceMeshFeatureState servicemesh) { + this.servicemesh = servicemesh; + return this; + } + /** * Output only. The "running state" of the Feature in this Fleet. * @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/ServiceMeshFeatureCondition.java b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureCondition.java new file mode 100644 index 00000000000..a4e654b83e1 --- /dev/null +++ b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureCondition.java @@ -0,0 +1,138 @@ +/* + * 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; + +/** + * Condition being reported. + * + *

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 ServiceMeshFeatureCondition extends com.google.api.client.json.GenericJson { + + /** + * Unique identifier of the condition which describes the condition recognizable to the user. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String code; + + /** + * A short summary about the issue. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String details; + + /** + * Links contains actionable information. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String documentationLink; + + /** + * Severity level of the condition. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String severity; + + /** + * Unique identifier of the condition which describes the condition recognizable to the user. + * @return value or {@code null} for none + */ + public java.lang.String getCode() { + return code; + } + + /** + * Unique identifier of the condition which describes the condition recognizable to the user. + * @param code code or {@code null} for none + */ + public ServiceMeshFeatureCondition setCode(java.lang.String code) { + this.code = code; + return this; + } + + /** + * A short summary about the issue. + * @return value or {@code null} for none + */ + public java.lang.String getDetails() { + return details; + } + + /** + * A short summary about the issue. + * @param details details or {@code null} for none + */ + public ServiceMeshFeatureCondition setDetails(java.lang.String details) { + this.details = details; + return this; + } + + /** + * Links contains actionable information. + * @return value or {@code null} for none + */ + public java.lang.String getDocumentationLink() { + return documentationLink; + } + + /** + * Links contains actionable information. + * @param documentationLink documentationLink or {@code null} for none + */ + public ServiceMeshFeatureCondition setDocumentationLink(java.lang.String documentationLink) { + this.documentationLink = documentationLink; + return this; + } + + /** + * Severity level of the condition. + * @return value or {@code null} for none + */ + public java.lang.String getSeverity() { + return severity; + } + + /** + * Severity level of the condition. + * @param severity severity or {@code null} for none + */ + public ServiceMeshFeatureCondition setSeverity(java.lang.String severity) { + this.severity = severity; + return this; + } + + @Override + public ServiceMeshFeatureCondition set(String fieldName, Object value) { + return (ServiceMeshFeatureCondition) super.set(fieldName, value); + } + + @Override + public ServiceMeshFeatureCondition clone() { + return (ServiceMeshFeatureCondition) super.clone(); + } + +} diff --git a/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureState.java b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureState.java new file mode 100644 index 00000000000..425d6fd9dc9 --- /dev/null +++ b/clients/google-api-services-gkehub/v1beta/2.0.0/com/google/api/services/gkehub/v1beta/model/ServiceMeshFeatureState.java @@ -0,0 +1,72 @@ +/* + * 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**: State for the whole Hub, as analyzed by the Service Mesh Hub Controller. + * + *

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 ServiceMeshFeatureState extends com.google.api.client.json.GenericJson { + + /** + * Output only. List of conditions reported for this feature. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.util.List conditions; + + static { + // hack to force ProGuard to consider ServiceMeshFeatureCondition used, since otherwise it would be stripped out + // see https://github.com/google/google-api-java-client/issues/543 + com.google.api.client.util.Data.nullOf(ServiceMeshFeatureCondition.class); + } + + /** + * Output only. List of conditions reported for this feature. + * @return value or {@code null} for none + */ + public java.util.List getConditions() { + return conditions; + } + + /** + * Output only. List of conditions reported for this feature. + * @param conditions conditions or {@code null} for none + */ + public ServiceMeshFeatureState setConditions(java.util.List conditions) { + this.conditions = conditions; + return this; + } + + @Override + public ServiceMeshFeatureState set(String fieldName, Object value) { + return (ServiceMeshFeatureState) super.set(fieldName, value); + } + + @Override + public ServiceMeshFeatureState clone() { + return (ServiceMeshFeatureState) 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 808df3a34ef..4fa494737fd 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-rev20260731-2.0.0 - GKE Hub API v1beta-rev20260731-2.0.0 + v1beta-rev20260808-2.0.0 + GKE Hub API v1beta-rev20260808-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 ad0e315647a..fe907974b35 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-rev20260731-2.0.0 + v1beta-rev20260808-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260731-2.0.0' + implementation 'com.google.apis:google-api-services-gkehub:v1beta-rev20260808-2.0.0' } ```