Skip to content

Commit 97fb88a

Browse files
committed
Generated java-async 2024-06-24 for SchedulerX3.
1 parent c698f15 commit 97fb88a

File tree

5 files changed

+70
-1
lines changed

5 files changed

+70
-1
lines changed

schedulerx3-20240624/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-24 Version: 1.0.3
2+
- Generated java-async 2024-06-24 for SchedulerX3.
3+
14
2024-12-26 Version: 1.0.2
25
- Generated java-async 2024-06-24 for SchedulerX3.
36

schedulerx3-20240624/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-schedulerx320240624</artifactId>
6-
<version>1.0.2</version>
6+
<version>1.0.3</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-schedulerx320240624</name>
99
<description>Alibaba Cloud SchedulerX3 (20240624) Async SDK for Java

schedulerx3-20240624/src/main/java/com/aliyun/sdk/service/schedulerx320240624/models/CreateJobRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ public class CreateJobRequest extends Request {
3434
@com.aliyun.core.annotation.NameInMap("Calendar")
3535
private String calendar;
3636

37+
@com.aliyun.core.annotation.Body
38+
@com.aliyun.core.annotation.NameInMap("ChildJobId")
39+
private String childJobId;
40+
3741
@com.aliyun.core.annotation.Body
3842
@com.aliyun.core.annotation.NameInMap("ClusterId")
3943
@com.aliyun.core.annotation.Validation(required = true)
@@ -120,6 +124,7 @@ private CreateJobRequest(Builder builder) {
120124
this.appName = builder.appName;
121125
this.attemptInterval = builder.attemptInterval;
122126
this.calendar = builder.calendar;
127+
this.childJobId = builder.childJobId;
123128
this.clusterId = builder.clusterId;
124129
this.description = builder.description;
125130
this.executorBlockStrategy = builder.executorBlockStrategy;
@@ -181,6 +186,13 @@ public String getCalendar() {
181186
return this.calendar;
182187
}
183188

189+
/**
190+
* @return childJobId
191+
*/
192+
public String getChildJobId() {
193+
return this.childJobId;
194+
}
195+
184196
/**
185197
* @return clusterId
186198
*/
@@ -312,6 +324,7 @@ public static final class Builder extends Request.Builder<CreateJobRequest, Buil
312324
private String appName;
313325
private Integer attemptInterval;
314326
private String calendar;
327+
private String childJobId;
315328
private String clusterId;
316329
private String description;
317330
private Integer executorBlockStrategy;
@@ -341,6 +354,7 @@ private Builder(CreateJobRequest request) {
341354
this.appName = request.appName;
342355
this.attemptInterval = request.attemptInterval;
343356
this.calendar = request.calendar;
357+
this.childJobId = request.childJobId;
344358
this.clusterId = request.clusterId;
345359
this.description = request.description;
346360
this.executorBlockStrategy = request.executorBlockStrategy;
@@ -400,6 +414,15 @@ public Builder calendar(String calendar) {
400414
return this;
401415
}
402416

417+
/**
418+
* ChildJobId.
419+
*/
420+
public Builder childJobId(String childJobId) {
421+
this.putBodyParameter("ChildJobId", childJobId);
422+
this.childJobId = childJobId;
423+
return this;
424+
}
425+
403426
/**
404427
* <p>This parameter is required.</p>
405428
*

schedulerx3-20240624/src/main/java/com/aliyun/sdk/service/schedulerx320240624/models/ListJobsResponseBody.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ public static class Records extends TeaModel {
154154
@com.aliyun.core.annotation.NameInMap("Calendar")
155155
private String calendar;
156156

157+
@com.aliyun.core.annotation.NameInMap("ChildJobId")
158+
private String childJobId;
159+
157160
@com.aliyun.core.annotation.NameInMap("CleanMode")
158161
private String cleanMode;
159162

@@ -236,6 +239,7 @@ private Records(Builder builder) {
236239
this.appName = builder.appName;
237240
this.attemptInterval = builder.attemptInterval;
238241
this.calendar = builder.calendar;
242+
this.childJobId = builder.childJobId;
239243
this.cleanMode = builder.cleanMode;
240244
this.creator = builder.creator;
241245
this.currentExecuteStatus = builder.currentExecuteStatus;
@@ -293,6 +297,13 @@ public String getCalendar() {
293297
return this.calendar;
294298
}
295299

300+
/**
301+
* @return childJobId
302+
*/
303+
public String getChildJobId() {
304+
return this.childJobId;
305+
}
306+
296307
/**
297308
* @return cleanMode
298309
*/
@@ -479,6 +490,7 @@ public static final class Builder {
479490
private String appName;
480491
private Integer attemptInterval;
481492
private String calendar;
493+
private String childJobId;
482494
private String cleanMode;
483495
private String creator;
484496
private Integer currentExecuteStatus;
@@ -530,6 +542,14 @@ public Builder calendar(String calendar) {
530542
return this;
531543
}
532544

545+
/**
546+
* ChildJobId.
547+
*/
548+
public Builder childJobId(String childJobId) {
549+
this.childJobId = childJobId;
550+
return this;
551+
}
552+
533553
/**
534554
* CleanMode.
535555
*/

schedulerx3-20240624/src/main/java/com/aliyun/sdk/service/schedulerx320240624/models/UpdateJobRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ public class UpdateJobRequest extends Request {
3434
@com.aliyun.core.annotation.NameInMap("Calendar")
3535
private String calendar;
3636

37+
@com.aliyun.core.annotation.Body
38+
@com.aliyun.core.annotation.NameInMap("ChildJobId")
39+
private String childJobId;
40+
3741
@com.aliyun.core.annotation.Body
3842
@com.aliyun.core.annotation.NameInMap("ClusterId")
3943
@com.aliyun.core.annotation.Validation(required = true)
@@ -116,6 +120,7 @@ private UpdateJobRequest(Builder builder) {
116120
this.appName = builder.appName;
117121
this.attemptInterval = builder.attemptInterval;
118122
this.calendar = builder.calendar;
123+
this.childJobId = builder.childJobId;
119124
this.clusterId = builder.clusterId;
120125
this.description = builder.description;
121126
this.executorBlockStrategy = builder.executorBlockStrategy;
@@ -176,6 +181,13 @@ public String getCalendar() {
176181
return this.calendar;
177182
}
178183

184+
/**
185+
* @return childJobId
186+
*/
187+
public String getChildJobId() {
188+
return this.childJobId;
189+
}
190+
179191
/**
180192
* @return clusterId
181193
*/
@@ -300,6 +312,7 @@ public static final class Builder extends Request.Builder<UpdateJobRequest, Buil
300312
private String appName;
301313
private Integer attemptInterval;
302314
private String calendar;
315+
private String childJobId;
303316
private String clusterId;
304317
private String description;
305318
private Integer executorBlockStrategy;
@@ -328,6 +341,7 @@ private Builder(UpdateJobRequest request) {
328341
this.appName = request.appName;
329342
this.attemptInterval = request.attemptInterval;
330343
this.calendar = request.calendar;
344+
this.childJobId = request.childJobId;
331345
this.clusterId = request.clusterId;
332346
this.description = request.description;
333347
this.executorBlockStrategy = request.executorBlockStrategy;
@@ -386,6 +400,15 @@ public Builder calendar(String calendar) {
386400
return this;
387401
}
388402

403+
/**
404+
* ChildJobId.
405+
*/
406+
public Builder childJobId(String childJobId) {
407+
this.putBodyParameter("ChildJobId", childJobId);
408+
this.childJobId = childJobId;
409+
return this;
410+
}
411+
389412
/**
390413
* <p>This parameter is required.</p>
391414
*

0 commit comments

Comments
 (0)