Skip to content

Commit 839ff01

Browse files
1 parent 5aeee56 commit 839ff01

File tree

6 files changed

+147
-6
lines changed

6 files changed

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

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+
* Agent 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 AgentStates extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The available version of the agent in artifact registry.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String availableVersion;
38+
39+
/**
40+
* Optional. The installed version of the agent on the host.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String installedVersion;
45+
46+
/**
47+
* Optional. The available version of the agent in artifact registry.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getAvailableVersion() {
51+
return availableVersion;
52+
}
53+
54+
/**
55+
* Optional. The available version of the agent in artifact registry.
56+
* @param availableVersion availableVersion or {@code null} for none
57+
*/
58+
public AgentStates setAvailableVersion(java.lang.String availableVersion) {
59+
this.availableVersion = availableVersion;
60+
return this;
61+
}
62+
63+
/**
64+
* Optional. The installed version of the agent on the host.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getInstalledVersion() {
68+
return installedVersion;
69+
}
70+
71+
/**
72+
* Optional. The installed version of the agent on the host.
73+
* @param installedVersion installedVersion or {@code null} for none
74+
*/
75+
public AgentStates setInstalledVersion(java.lang.String installedVersion) {
76+
this.installedVersion = installedVersion;
77+
return this;
78+
}
79+
80+
@Override
81+
public AgentStates set(String fieldName, Object value) {
82+
return (AgentStates) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public AgentStates clone() {
87+
return (AgentStates) super.clone();
88+
}
89+
90+
}

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ public final class Evaluation extends com.google.api.client.json.GenericJson {
6464
@com.google.api.client.util.Key
6565
private java.lang.String evaluationType;
6666

67+
/**
68+
* Optional. Immutable. Customer-managed encryption key name, in the format
69+
* projects/locations/keyRings/cryptoKeys.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.String kmsKey;
74+
6775
/**
6876
* Labels as key value pairs
6977
* The value may be {@code null}.
@@ -207,6 +215,25 @@ public Evaluation setEvaluationType(java.lang.String evaluationType) {
207215
return this;
208216
}
209217

218+
/**
219+
* Optional. Immutable. Customer-managed encryption key name, in the format
220+
* projects/locations/keyRings/cryptoKeys.
221+
* @return value or {@code null} for none
222+
*/
223+
public java.lang.String getKmsKey() {
224+
return kmsKey;
225+
}
226+
227+
/**
228+
* Optional. Immutable. Customer-managed encryption key name, in the format
229+
* projects/locations/keyRings/cryptoKeys.
230+
* @param kmsKey kmsKey or {@code null} for none
231+
*/
232+
public Evaluation setKmsKey(java.lang.String kmsKey) {
233+
this.kmsKey = kmsKey;
234+
return this;
235+
}
236+
210237
/**
211238
* Labels as key value pairs
212239
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,37 @@
2929
@SuppressWarnings("javadoc")
3030
public final class SapInstanceProperties extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Sap Instance Agent status.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private AgentStates agentStates;
38+
3239
/**
3340
* Optional. SAP Instance numbers. They are from '00' to '99'.
3441
* The value may be {@code null}.
3542
*/
3643
@com.google.api.client.util.Key
3744
private java.util.List<java.lang.String> numbers;
3845

46+
/**
47+
* Optional. Sap Instance Agent status.
48+
* @return value or {@code null} for none
49+
*/
50+
public AgentStates getAgentStates() {
51+
return agentStates;
52+
}
53+
54+
/**
55+
* Optional. Sap Instance Agent status.
56+
* @param agentStates agentStates or {@code null} for none
57+
*/
58+
public SapInstanceProperties setAgentStates(AgentStates agentStates) {
59+
this.agentStates = agentStates;
60+
return this;
61+
}
62+
3963
/**
4064
* Optional. SAP Instance numbers. They are from '00' to '99'.
4165
* @return value or {@code null} for none

clients/google-api-services-workloadmanager/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-workloadmanager</artifactId>
11-
<version>v1-rev20250714-2.0.0</version>
12-
<name>Workload Manager API v1-rev20250714-2.0.0</name>
11+
<version>v1-rev20250727-2.0.0</version>
12+
<name>Workload Manager API v1-rev20250727-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)