Skip to content

Commit 66f19e5

Browse files
1 parent b022251 commit 66f19e5

24 files changed

Lines changed: 306 additions & 36 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-rev20260616-2.0.0</version>
25+
<version>v1-rev20260623-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-rev20260616-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260623-2.0.0'
3939
}
4040
```
4141

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

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

60+
/**
61+
* Servicemesh feature spec.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private ServiceMeshFeatureSpec mesh;
66+
6067
/**
6168
* Multicluster Ingress-specific spec.
6269
* The value may be {@code null}.
@@ -146,6 +153,23 @@ public CommonFeatureSpec setFleetobservability(FleetObservabilityFeatureSpec fle
146153
return this;
147154
}
148155

156+
/**
157+
* Servicemesh feature spec.
158+
* @return value or {@code null} for none
159+
*/
160+
public ServiceMeshFeatureSpec getMesh() {
161+
return mesh;
162+
}
163+
164+
/**
165+
* Servicemesh feature spec.
166+
* @param mesh mesh or {@code null} for none
167+
*/
168+
public CommonFeatureSpec setMesh(ServiceMeshFeatureSpec mesh) {
169+
this.mesh = mesh;
170+
return this;
171+
}
172+
149173
/**
150174
* Multicluster Ingress-specific spec.
151175
* @return value or {@code null} for none
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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**: Spec for the fleet for the servicemesh feature
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 ServiceMeshFeatureSpec extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Specifies modernization compatibility for the fleet.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String modernizationCompatibility;
38+
39+
/**
40+
* Optional. Specifies modernization compatibility for the fleet.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getModernizationCompatibility() {
44+
return modernizationCompatibility;
45+
}
46+
47+
/**
48+
* Optional. Specifies modernization compatibility for the fleet.
49+
* @param modernizationCompatibility modernizationCompatibility or {@code null} for none
50+
*/
51+
public ServiceMeshFeatureSpec setModernizationCompatibility(java.lang.String modernizationCompatibility) {
52+
this.modernizationCompatibility = modernizationCompatibility;
53+
return this;
54+
}
55+
56+
@Override
57+
public ServiceMeshFeatureSpec set(String fieldName, Object value) {
58+
return (ServiceMeshFeatureSpec) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ServiceMeshFeatureSpec clone() {
63+
return (ServiceMeshFeatureSpec) super.clone();
64+
}
65+
66+
}

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-rev20260616-2.0.0</version>
12-
<name>GKE Hub API v1-rev20260616-2.0.0</name>
11+
<version>v1-rev20260623-2.0.0</version>
12+
<name>GKE Hub API v1-rev20260623-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-rev20260616-2.0.0</version>
25+
<version>v1-rev20260623-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-rev20260616-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1-rev20260623-2.0.0'
3939
}
4040
```
4141

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

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/model/CommonFeatureSpec.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ public final class CommonFeatureSpec extends com.google.api.client.json.GenericJ
6464
@com.google.api.client.util.Key
6565
private FleetObservabilityFeatureSpec fleetobservability;
6666

67+
/**
68+
* Servicemesh feature spec.
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private ServiceMeshFeatureSpec mesh;
73+
6774
/**
6875
* Multicluster Ingress-specific spec.
6976
* The value may be {@code null}.
@@ -184,6 +191,23 @@ public CommonFeatureSpec setFleetobservability(FleetObservabilityFeatureSpec fle
184191
return this;
185192
}
186193

194+
/**
195+
* Servicemesh feature spec.
196+
* @return value or {@code null} for none
197+
*/
198+
public ServiceMeshFeatureSpec getMesh() {
199+
return mesh;
200+
}
201+
202+
/**
203+
* Servicemesh feature spec.
204+
* @param mesh mesh or {@code null} for none
205+
*/
206+
public CommonFeatureSpec setMesh(ServiceMeshFeatureSpec mesh) {
207+
this.mesh = mesh;
208+
return this;
209+
}
210+
187211
/**
188212
* Multicluster Ingress-specific spec.
189213
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.v1alpha.model;
18+
19+
/**
20+
* **Service Mesh**: Spec for the fleet for the servicemesh feature
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 ServiceMeshFeatureSpec extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Specifies modernization compatibility for the fleet.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String modernizationCompatibility;
38+
39+
/**
40+
* Optional. Specifies modernization compatibility for the fleet.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getModernizationCompatibility() {
44+
return modernizationCompatibility;
45+
}
46+
47+
/**
48+
* Optional. Specifies modernization compatibility for the fleet.
49+
* @param modernizationCompatibility modernizationCompatibility or {@code null} for none
50+
*/
51+
public ServiceMeshFeatureSpec setModernizationCompatibility(java.lang.String modernizationCompatibility) {
52+
this.modernizationCompatibility = modernizationCompatibility;
53+
return this;
54+
}
55+
56+
@Override
57+
public ServiceMeshFeatureSpec set(String fieldName, Object value) {
58+
return (ServiceMeshFeatureSpec) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ServiceMeshFeatureSpec clone() {
63+
return (ServiceMeshFeatureSpec) super.clone();
64+
}
65+
66+
}

clients/google-api-services-gkehub/v1alpha/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>v1alpha-rev20260616-2.0.0</version>
12-
<name>GKE Hub API v1alpha-rev20260616-2.0.0</name>
11+
<version>v1alpha-rev20260623-2.0.0</version>
12+
<name>GKE Hub API v1alpha-rev20260623-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)