File tree Expand file tree Collapse file tree 5 files changed +73
-6
lines changed
clients/google-api-services-workloadmanager/v1
com/google/api/services/workloadmanager/v1/model Expand file tree Collapse file tree 5 files changed +73
-6
lines changed Original file line number Diff line number Diff 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-workloadmanager</artifactId >
25- <version >v1-rev20250903 -2.0.0</version >
25+ <version >v1-rev20250910 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-workloadmanager:v1-rev20250903 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-workloadmanager:v1-rev20250910 -2.0.0'
3939}
4040```
4141
Original file line number Diff line number Diff line change @@ -43,6 +43,13 @@ public final class Insight extends com.google.api.client.json.GenericJson {
4343 @ com .google .api .client .util .Key
4444 private java .lang .String instanceId ;
4545
46+ /**
47+ * The insights data for the OpenShift workload validation.
48+ * The value may be {@code null}.
49+ */
50+ @ com .google .api .client .util .Key
51+ private OpenShiftValidation openShiftValidation ;
52+
4653 /**
4754 * The insights data for SAP system discovery. This is a copy of SAP System proto and should get
4855 * updated whenever that one changes.
@@ -113,6 +120,23 @@ public Insight setInstanceId(java.lang.String instanceId) {
113120 return this ;
114121 }
115122
123+ /**
124+ * The insights data for the OpenShift workload validation.
125+ * @return value or {@code null} for none
126+ */
127+ public OpenShiftValidation getOpenShiftValidation () {
128+ return openShiftValidation ;
129+ }
130+
131+ /**
132+ * The insights data for the OpenShift workload validation.
133+ * @param openShiftValidation openShiftValidation or {@code null} for none
134+ */
135+ public Insight setOpenShiftValidation (OpenShiftValidation openShiftValidation ) {
136+ this .openShiftValidation = openShiftValidation ;
137+ return this ;
138+ }
139+
116140 /**
117141 * The insights data for SAP system discovery. This is a copy of SAP System proto and should get
118142 * updated whenever that one changes.
Original file line number Diff line number Diff line change 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 .workloadmanager .v1 .model ;
18+
19+ /**
20+ * A presentation of OpenShift workload insight. The schema of OpenShift workloads validation
21+ * related data.
22+ *
23+ * <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+ * transmitted over HTTP when working with the Workload Manager API. For a detailed explanation see:
25+ * <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>
26+ * </p>
27+ *
28+ * @author Google, Inc.
29+ */
30+ @ SuppressWarnings ("javadoc" )
31+ public final class OpenShiftValidation extends com .google .api .client .json .GenericJson {
32+
33+ @ Override
34+ public OpenShiftValidation set (String fieldName , Object value ) {
35+ return (OpenShiftValidation ) super .set (fieldName , value );
36+ }
37+
38+ @ Override
39+ public OpenShiftValidation clone () {
40+ return (OpenShiftValidation ) super .clone ();
41+ }
42+
43+ }
Original file line number Diff line number Diff line change 88
99 <groupId >com.google.apis</groupId >
1010 <artifactId >google-api-services-workloadmanager</artifactId >
11- <version >v1-rev20250903 -2.0.0</version >
12- <name >Workload Manager API v1-rev20250903 -2.0.0</name >
11+ <version >v1-rev20250910 -2.0.0</version >
12+ <name >Workload Manager API v1-rev20250910 -2.0.0</name >
1313 <packaging >jar</packaging >
1414
1515 <inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff 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-workloadmanager</artifactId >
25- <version >v1-rev20250903 -2.0.0</version >
25+ <version >v1-rev20250910 -2.0.0</version >
2626 </dependency >
2727 </dependencies >
2828</project >
@@ -35,7 +35,7 @@ repositories {
3535 mavenCentral()
3636}
3737dependencies {
38- implementation 'com.google.apis:google-api-services-workloadmanager:v1-rev20250903 -2.0.0'
38+ implementation 'com.google.apis:google-api-services-workloadmanager:v1-rev20250910 -2.0.0'
3939}
4040```
4141
You can’t perform that action at this time.
0 commit comments