Skip to content

Commit 3f7fd0e

Browse files
1 parent b4a6617 commit 3f7fd0e

File tree

7 files changed

+315
-9
lines changed

7 files changed

+315
-9
lines changed

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

clients/google-api-services-workloadmanager/v1/2.0.0/com/google/api/services/workloadmanager/v1/model/AgentStates.java

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,41 @@ public final class AgentStates extends com.google.api.client.json.GenericJson {
3636
@com.google.api.client.util.Key
3737
private java.lang.String availableVersion;
3838

39+
/**
40+
* Optional. HANA monitoring metrics of the agent.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private ServiceStates hanaMonitoring;
45+
3946
/**
4047
* Optional. The installed version of the agent on the host.
4148
* The value may be {@code null}.
4249
*/
4350
@com.google.api.client.util.Key
4451
private java.lang.String installedVersion;
4552

53+
/**
54+
* Optional. Whether the agent is fully enabled. If false, the agent is has some issues.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.Boolean isFullyEnabled;
59+
60+
/**
61+
* Optional. The Process metrics of the agent.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private ServiceStates processMetrics;
66+
67+
/**
68+
* Optional. The System discovery metrics of the agent.
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private ServiceStates systemDiscovery;
73+
4674
/**
4775
* Optional. The available version of the agent in artifact registry.
4876
* @return value or {@code null} for none
@@ -60,6 +88,23 @@ public AgentStates setAvailableVersion(java.lang.String availableVersion) {
6088
return this;
6189
}
6290

91+
/**
92+
* Optional. HANA monitoring metrics of the agent.
93+
* @return value or {@code null} for none
94+
*/
95+
public ServiceStates getHanaMonitoring() {
96+
return hanaMonitoring;
97+
}
98+
99+
/**
100+
* Optional. HANA monitoring metrics of the agent.
101+
* @param hanaMonitoring hanaMonitoring or {@code null} for none
102+
*/
103+
public AgentStates setHanaMonitoring(ServiceStates hanaMonitoring) {
104+
this.hanaMonitoring = hanaMonitoring;
105+
return this;
106+
}
107+
63108
/**
64109
* Optional. The installed version of the agent on the host.
65110
* @return value or {@code null} for none
@@ -77,6 +122,57 @@ public AgentStates setInstalledVersion(java.lang.String installedVersion) {
77122
return this;
78123
}
79124

125+
/**
126+
* Optional. Whether the agent is fully enabled. If false, the agent is has some issues.
127+
* @return value or {@code null} for none
128+
*/
129+
public java.lang.Boolean getIsFullyEnabled() {
130+
return isFullyEnabled;
131+
}
132+
133+
/**
134+
* Optional. Whether the agent is fully enabled. If false, the agent is has some issues.
135+
* @param isFullyEnabled isFullyEnabled or {@code null} for none
136+
*/
137+
public AgentStates setIsFullyEnabled(java.lang.Boolean isFullyEnabled) {
138+
this.isFullyEnabled = isFullyEnabled;
139+
return this;
140+
}
141+
142+
/**
143+
* Optional. The Process metrics of the agent.
144+
* @return value or {@code null} for none
145+
*/
146+
public ServiceStates getProcessMetrics() {
147+
return processMetrics;
148+
}
149+
150+
/**
151+
* Optional. The Process metrics of the agent.
152+
* @param processMetrics processMetrics or {@code null} for none
153+
*/
154+
public AgentStates setProcessMetrics(ServiceStates processMetrics) {
155+
this.processMetrics = processMetrics;
156+
return this;
157+
}
158+
159+
/**
160+
* Optional. The System discovery metrics of the agent.
161+
* @return value or {@code null} for none
162+
*/
163+
public ServiceStates getSystemDiscovery() {
164+
return systemDiscovery;
165+
}
166+
167+
/**
168+
* Optional. The System discovery metrics of the agent.
169+
* @param systemDiscovery systemDiscovery or {@code null} for none
170+
*/
171+
public AgentStates setSystemDiscovery(ServiceStates systemDiscovery) {
172+
this.systemDiscovery = systemDiscovery;
173+
return this;
174+
}
175+
80176
@Override
81177
public AgentStates set(String fieldName, Object value) {
82178
return (AgentStates) super.set(fieldName, value);

clients/google-api-services-workloadmanager/v1/2.0.0/com/google/api/services/workloadmanager/v1/model/Execution.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class Execution extends com.google.api.client.json.GenericJson {
3636
@com.google.api.client.util.Key
3737
private String endTime;
3838

39+
/**
40+
* Optional. Engine
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String engine;
45+
3946
/**
4047
* Output only. [Output only] Evaluation ID
4148
* The value may be {@code null}.
@@ -132,6 +139,23 @@ public Execution setEndTime(String endTime) {
132139
return this;
133140
}
134141

142+
/**
143+
* Optional. Engine
144+
* @return value or {@code null} for none
145+
*/
146+
public java.lang.String getEngine() {
147+
return engine;
148+
}
149+
150+
/**
151+
* Optional. Engine
152+
* @param engine engine or {@code null} for none
153+
*/
154+
public Execution setEngine(java.lang.String engine) {
155+
this.engine = engine;
156+
return this;
157+
}
158+
135159
/**
136160
* Output only. [Output only] Evaluation ID
137161
* @return value or {@code null} for none
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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+
* The IAM permission status.
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 Workload Manager 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 IAMPermission extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Whether the permission is granted.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean granted;
38+
39+
/**
40+
* Output only. The name of the permission.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String name;
45+
46+
/**
47+
* Output only. Whether the permission is granted.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.Boolean getGranted() {
51+
return granted;
52+
}
53+
54+
/**
55+
* Output only. Whether the permission is granted.
56+
* @param granted granted or {@code null} for none
57+
*/
58+
public IAMPermission setGranted(java.lang.Boolean granted) {
59+
this.granted = granted;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. The name of the permission.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getName() {
68+
return name;
69+
}
70+
71+
/**
72+
* Output only. The name of the permission.
73+
* @param name name or {@code null} for none
74+
*/
75+
public IAMPermission setName(java.lang.String name) {
76+
this.name = name;
77+
return this;
78+
}
79+
80+
@Override
81+
public IAMPermission set(String fieldName, Object value) {
82+
return (IAMPermission) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public IAMPermission clone() {
87+
return (IAMPermission) super.clone();
88+
}
89+
90+
}
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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+
* The state of the service.
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 Workload Manager 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 ServiceStates extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Output only. The IAM permissions for the service.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<IAMPermission> iamPermissions;
38+
39+
static {
40+
// hack to force ProGuard to consider IAMPermission 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(IAMPermission.class);
43+
}
44+
45+
/**
46+
* Output only. The overall state of the service.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.String state;
51+
52+
/**
53+
* Optional. Output only. The IAM permissions for the service.
54+
* @return value or {@code null} for none
55+
*/
56+
public java.util.List<IAMPermission> getIamPermissions() {
57+
return iamPermissions;
58+
}
59+
60+
/**
61+
* Optional. Output only. The IAM permissions for the service.
62+
* @param iamPermissions iamPermissions or {@code null} for none
63+
*/
64+
public ServiceStates setIamPermissions(java.util.List<IAMPermission> iamPermissions) {
65+
this.iamPermissions = iamPermissions;
66+
return this;
67+
}
68+
69+
/**
70+
* Output only. The overall state of the service.
71+
* @return value or {@code null} for none
72+
*/
73+
public java.lang.String getState() {
74+
return state;
75+
}
76+
77+
/**
78+
* Output only. The overall state of the service.
79+
* @param state state or {@code null} for none
80+
*/
81+
public ServiceStates setState(java.lang.String state) {
82+
this.state = state;
83+
return this;
84+
}
85+
86+
@Override
87+
public ServiceStates set(String fieldName, Object value) {
88+
return (ServiceStates) super.set(fieldName, value);
89+
}
90+
91+
@Override
92+
public ServiceStates clone() {
93+
return (ServiceStates) super.clone();
94+
}
95+
96+
}

clients/google-api-services-workloadmanager/v1/2.0.0/pom.xml

Lines changed: 5 additions & 5 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-workloadmanager</artifactId>
11-
<version>v1-rev20250727-2.0.0</version>
12-
<name>Workload Manager API v1-rev20250727-2.0.0</name>
11+
<version>v1-rev20250806-2.0.0</version>
12+
<name>Workload Manager API v1-rev20250806-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -89,9 +89,9 @@
8989
<windowtitle>Workload Manager API ${project.version}</windowtitle>
9090
<links>
9191
<link>http://docs.oracle.com/javase/7/docs/api</link>
92-
<link>https://googleapis.dev/java/google-http-client/1.47.0/</link>
92+
<link>https://googleapis.dev/java/google-http-client/2.0.0/</link>
9393
<link>https://googleapis.dev/java/google-oauth-client/1.39.0/</link>
94-
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
94+
<link>https://googleapis.dev/java/google-api-client/2.8.1/</link>
9595
</links>
9696
</configuration>
9797
</plugin>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.google.api-client</groupId>
126126
<artifactId>google-api-client</artifactId>
127-
<version>2.7.2</version>
127+
<version>2.8.1</version>
128128
</dependency>
129129
</dependencies>
130130

0 commit comments

Comments
 (0)