Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-gkehub/v1beta/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gkehub</artifactId>
<version>v1beta-rev20260731-2.0.0</version>
<version>v1beta-rev20260808-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
*
* <p> 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:
* <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>
* </p>
*
* @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();
}

}
Original file line number Diff line number Diff line change
@@ -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.
*
* <p> 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:
* <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>
* </p>
*
* @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<ServiceMeshFeatureCondition> 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<ServiceMeshFeatureCondition> 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<ServiceMeshFeatureCondition> 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();
}

}
4 changes: 2 additions & 2 deletions clients/google-api-services-gkehub/v1beta/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gkehub</artifactId>
<version>v1beta-rev20260731-2.0.0</version>
<name>GKE Hub API v1beta-rev20260731-2.0.0</name>
<version>v1beta-rev20260808-2.0.0</version>
<name>GKE Hub API v1beta-rev20260808-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-gkehub/v1beta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gkehub</artifactId>
<version>v1beta-rev20260731-2.0.0</version>
<version>v1beta-rev20260808-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Loading