Skip to content

Commit a2b230f

Browse files
1 parent 769115c commit a2b230f

6 files changed

Lines changed: 240 additions & 6 deletions

File tree

clients/google-api-services-gkehub/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-gkehub</artifactId>
25-
<version>v1-rev20260731-2.0.0</version>
25+
<version>v1-rev20260808-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-gkehub:v1-rev20260731-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260808-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/CommonFeatureState.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ public final class CommonFeatureState extends com.google.api.client.json.Generic
5757
@com.google.api.client.util.Key
5858
private RBACRoleBindingActuationFeatureState rbacrolebindingactuation;
5959

60+
/**
61+
* Service Mesh-specific state.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private ServiceMeshFeatureState servicemesh;
66+
6067
/**
6168
* Output only. The "running state" of the Feature in this Fleet.
6269
* The value may be {@code null}.
@@ -139,6 +146,23 @@ public CommonFeatureState setRbacrolebindingactuation(RBACRoleBindingActuationFe
139146
return this;
140147
}
141148

149+
/**
150+
* Service Mesh-specific state.
151+
* @return value or {@code null} for none
152+
*/
153+
public ServiceMeshFeatureState getServicemesh() {
154+
return servicemesh;
155+
}
156+
157+
/**
158+
* Service Mesh-specific state.
159+
* @param servicemesh servicemesh or {@code null} for none
160+
*/
161+
public CommonFeatureState setServicemesh(ServiceMeshFeatureState servicemesh) {
162+
this.servicemesh = servicemesh;
163+
return this;
164+
}
165+
142166
/**
143167
* Output only. The "running state" of the Feature in this Fleet.
144168
* @return value or {@code null} for none
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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.gkehub.v1.model;
18+
19+
/**
20+
* Condition being reported.
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 GKE Hub API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ServiceMeshFeatureCondition extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Unique identifier of the condition which describes the condition recognizable to the user.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String code;
38+
39+
/**
40+
* A short summary about the issue.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String details;
45+
46+
/**
47+
* Links contains actionable information.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String documentationLink;
52+
53+
/**
54+
* Severity level of the condition.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String severity;
59+
60+
/**
61+
* Unique identifier of the condition which describes the condition recognizable to the user.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getCode() {
65+
return code;
66+
}
67+
68+
/**
69+
* Unique identifier of the condition which describes the condition recognizable to the user.
70+
* @param code code or {@code null} for none
71+
*/
72+
public ServiceMeshFeatureCondition setCode(java.lang.String code) {
73+
this.code = code;
74+
return this;
75+
}
76+
77+
/**
78+
* A short summary about the issue.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.String getDetails() {
82+
return details;
83+
}
84+
85+
/**
86+
* A short summary about the issue.
87+
* @param details details or {@code null} for none
88+
*/
89+
public ServiceMeshFeatureCondition setDetails(java.lang.String details) {
90+
this.details = details;
91+
return this;
92+
}
93+
94+
/**
95+
* Links contains actionable information.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getDocumentationLink() {
99+
return documentationLink;
100+
}
101+
102+
/**
103+
* Links contains actionable information.
104+
* @param documentationLink documentationLink or {@code null} for none
105+
*/
106+
public ServiceMeshFeatureCondition setDocumentationLink(java.lang.String documentationLink) {
107+
this.documentationLink = documentationLink;
108+
return this;
109+
}
110+
111+
/**
112+
* Severity level of the condition.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.String getSeverity() {
116+
return severity;
117+
}
118+
119+
/**
120+
* Severity level of the condition.
121+
* @param severity severity or {@code null} for none
122+
*/
123+
public ServiceMeshFeatureCondition setSeverity(java.lang.String severity) {
124+
this.severity = severity;
125+
return this;
126+
}
127+
128+
@Override
129+
public ServiceMeshFeatureCondition set(String fieldName, Object value) {
130+
return (ServiceMeshFeatureCondition) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public ServiceMeshFeatureCondition clone() {
135+
return (ServiceMeshFeatureCondition) super.clone();
136+
}
137+
138+
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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.gkehub.v1.model;
18+
19+
/**
20+
* **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub Controller.
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 GKE Hub API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ServiceMeshFeatureState extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. List of conditions reported for this feature.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<ServiceMeshFeatureCondition> conditions;
38+
39+
static {
40+
// hack to force ProGuard to consider ServiceMeshFeatureCondition used, since otherwise it would be stripped out
41+
// see https://github.com/google/google-api-java-client/issues/543
42+
com.google.api.client.util.Data.nullOf(ServiceMeshFeatureCondition.class);
43+
}
44+
45+
/**
46+
* Output only. List of conditions reported for this feature.
47+
* @return value or {@code null} for none
48+
*/
49+
public java.util.List<ServiceMeshFeatureCondition> getConditions() {
50+
return conditions;
51+
}
52+
53+
/**
54+
* Output only. List of conditions reported for this feature.
55+
* @param conditions conditions or {@code null} for none
56+
*/
57+
public ServiceMeshFeatureState setConditions(java.util.List<ServiceMeshFeatureCondition> conditions) {
58+
this.conditions = conditions;
59+
return this;
60+
}
61+
62+
@Override
63+
public ServiceMeshFeatureState set(String fieldName, Object value) {
64+
return (ServiceMeshFeatureState) super.set(fieldName, value);
65+
}
66+
67+
@Override
68+
public ServiceMeshFeatureState clone() {
69+
return (ServiceMeshFeatureState) super.clone();
70+
}
71+
72+
}

clients/google-api-services-gkehub/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-gkehub</artifactId>
11-
<version>v1-rev20260731-2.0.0</version>
12-
<name>GKE Hub API v1-rev20260731-2.0.0</name>
11+
<version>v1-rev20260808-2.0.0</version>
12+
<name>GKE Hub API v1-rev20260808-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-gkehub/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-gkehub</artifactId>
25-
<version>v1-rev20260731-2.0.0</version>
25+
<version>v1-rev20260808-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-gkehub:v1-rev20260731-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260808-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)