Skip to content

Commit 2799c31

Browse files
1 parent a22d4b7 commit 2799c31

File tree

6 files changed

+126
-12
lines changed

6 files changed

+126
-12
lines changed

clients/google-api-services-workloadmanager/v1/2.0.0/README.md

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public final class Execution extends com.google.api.client.json.GenericJson {
8080
private java.util.List<Notice> notices;
8181

8282
/**
83-
* Output only. [Output only] Result summary
83+
* Output only. [Output only] Result summary for the execution
8484
* The value may be {@code null}.
8585
*/
8686
@com.google.api.client.util.Key
@@ -237,15 +237,15 @@ public Execution setNotices(java.util.List<Notice> notices) {
237237
}
238238

239239
/**
240-
* Output only. [Output only] Result summary
240+
* Output only. [Output only] Result summary for the execution
241241
* @return value or {@code null} for none
242242
*/
243243
public Summary getResultSummary() {
244244
return resultSummary;
245245
}
246246

247247
/**
248-
* Output only. [Output only] Result summary
248+
* Output only. [Output only] Result summary for the execution
249249
* @param resultSummary resultSummary or {@code null} for none
250250
*/
251251
public Execution setResultSummary(Summary resultSummary) {

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

+27-3
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,19 @@ public final class SapDiscoveryComponent extends com.google.api.client.json.Gene
5858
@com.google.api.client.util.Key
5959
private java.lang.String hostProject;
6060

61+
/**
62+
* Optional. The region this component's resources are primarily located in.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String region;
67+
6168
/**
6269
* Optional. A list of replication sites used in Disaster Recovery (DR) configurations.
6370
* The value may be {@code null}.
6471
*/
6572
@com.google.api.client.util.Key
66-
private java.util.List<SapDiscoveryComponent> replicationSites;
73+
private java.util.List<SapDiscoveryComponentReplicationSite> replicationSites;
6774

6875
/**
6976
* Optional. The resources in a component.
@@ -157,19 +164,36 @@ public SapDiscoveryComponent setHostProject(java.lang.String hostProject) {
157164
return this;
158165
}
159166

167+
/**
168+
* Optional. The region this component's resources are primarily located in.
169+
* @return value or {@code null} for none
170+
*/
171+
public java.lang.String getRegion() {
172+
return region;
173+
}
174+
175+
/**
176+
* Optional. The region this component's resources are primarily located in.
177+
* @param region region or {@code null} for none
178+
*/
179+
public SapDiscoveryComponent setRegion(java.lang.String region) {
180+
this.region = region;
181+
return this;
182+
}
183+
160184
/**
161185
* Optional. A list of replication sites used in Disaster Recovery (DR) configurations.
162186
* @return value or {@code null} for none
163187
*/
164-
public java.util.List<SapDiscoveryComponent> getReplicationSites() {
188+
public java.util.List<SapDiscoveryComponentReplicationSite> getReplicationSites() {
165189
return replicationSites;
166190
}
167191

168192
/**
169193
* Optional. A list of replication sites used in Disaster Recovery (DR) configurations.
170194
* @param replicationSites replicationSites or {@code null} for none
171195
*/
172-
public SapDiscoveryComponent setReplicationSites(java.util.List<SapDiscoveryComponent> replicationSites) {
196+
public SapDiscoveryComponent setReplicationSites(java.util.List<SapDiscoveryComponentReplicationSite> replicationSites) {
173197
this.replicationSites = replicationSites;
174198
return this;
175199
}
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+
* A replication site used in Disaster Recovery (DR) configurations.
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 SapDiscoveryComponentReplicationSite extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The system component for the site.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private SapDiscoveryComponent component;
38+
39+
/**
40+
* Optional. The name of the source site from which this one replicates.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String sourceSite;
45+
46+
/**
47+
* Optional. The system component for the site.
48+
* @return value or {@code null} for none
49+
*/
50+
public SapDiscoveryComponent getComponent() {
51+
return component;
52+
}
53+
54+
/**
55+
* Optional. The system component for the site.
56+
* @param component component or {@code null} for none
57+
*/
58+
public SapDiscoveryComponentReplicationSite setComponent(SapDiscoveryComponent component) {
59+
this.component = component;
60+
return this;
61+
}
62+
63+
/**
64+
* Optional. The name of the source site from which this one replicates.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getSourceSite() {
68+
return sourceSite;
69+
}
70+
71+
/**
72+
* Optional. The name of the source site from which this one replicates.
73+
* @param sourceSite sourceSite or {@code null} for none
74+
*/
75+
public SapDiscoveryComponentReplicationSite setSourceSite(java.lang.String sourceSite) {
76+
this.sourceSite = sourceSite;
77+
return this;
78+
}
79+
80+
@Override
81+
public SapDiscoveryComponentReplicationSite set(String fieldName, Object value) {
82+
return (SapDiscoveryComponentReplicationSite) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public SapDiscoveryComponentReplicationSite clone() {
87+
return (SapDiscoveryComponentReplicationSite) super.clone();
88+
}
89+
90+
}

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

+2-2
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-rev20241209-2.0.0</version>
12-
<name>Workload Manager API v1-rev20241209-2.0.0</name>
11+
<version>v1-rev20250101-2.0.0</version>
12+
<name>Workload Manager API v1-rev20250101-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-workloadmanager/v1/README.md

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

0 commit comments

Comments
 (0)