Skip to content

Commit d2afb79

Browse files
committed
Generated java-async 2022-01-04 for MaxCompute.
1 parent 7163c6c commit d2afb79

File tree

5 files changed

+134
-1
lines changed

5 files changed

+134
-1
lines changed

maxcompute-20220104/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-25 Version: 3.0.5
2+
- Generated java-async 2022-01-04 for MaxCompute.
3+
14
2025-11-24 Version: 3.0.4
25
- Generated java-async 2022-01-04 for MaxCompute.
36

maxcompute-20220104/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-maxcompute20220104</artifactId>
6-
<version>3.0.4</version>
6+
<version>3.0.5</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-maxcompute20220104</name>
99
<description>Alibaba Cloud MaxCompute (20220104) Async SDK for Java

maxcompute-20220104/src/main/java/com/aliyun/sdk/service/maxcompute20220104/models/ListJobInfosRequest.java

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public class ListJobInfosRequest extends Request {
2525
@com.aliyun.core.annotation.NameInMap("extNodeIdList")
2626
private java.util.List<String> extNodeIdList;
2727

28+
@com.aliyun.core.annotation.Body
29+
@com.aliyun.core.annotation.NameInMap("extNodeNameList")
30+
private java.util.List<String> extNodeNameList;
31+
2832
@com.aliyun.core.annotation.Body
2933
@com.aliyun.core.annotation.NameInMap("from")
3034
@com.aliyun.core.annotation.Validation(required = true)
@@ -70,6 +74,10 @@ public class ListJobInfosRequest extends Request {
7074
@com.aliyun.core.annotation.NameInMap("statusList")
7175
private java.util.List<String> statusList;
7276

77+
@com.aliyun.core.annotation.Body
78+
@com.aliyun.core.annotation.NameInMap("taskNameList")
79+
private java.util.List<String> taskNameList;
80+
7381
@com.aliyun.core.annotation.Body
7482
@com.aliyun.core.annotation.NameInMap("to")
7583
@com.aliyun.core.annotation.Validation(required = true)
@@ -103,6 +111,7 @@ private ListJobInfosRequest(Builder builder) {
103111
super(builder);
104112
this.ascOrder = builder.ascOrder;
105113
this.extNodeIdList = builder.extNodeIdList;
114+
this.extNodeNameList = builder.extNodeNameList;
106115
this.from = builder.from;
107116
this.instanceIdList = builder.instanceIdList;
108117
this.jobOwnerList = builder.jobOwnerList;
@@ -114,6 +123,7 @@ private ListJobInfosRequest(Builder builder) {
114123
this.sortByList = builder.sortByList;
115124
this.sortOrderList = builder.sortOrderList;
116125
this.statusList = builder.statusList;
126+
this.taskNameList = builder.taskNameList;
117127
this.to = builder.to;
118128
this.typeList = builder.typeList;
119129
this.orderColumn = builder.orderColumn;
@@ -150,6 +160,13 @@ public java.util.List<String> getExtNodeIdList() {
150160
return this.extNodeIdList;
151161
}
152162

163+
/**
164+
* @return extNodeNameList
165+
*/
166+
public java.util.List<String> getExtNodeNameList() {
167+
return this.extNodeNameList;
168+
}
169+
153170
/**
154171
* @return from
155172
*/
@@ -227,6 +244,13 @@ public java.util.List<String> getStatusList() {
227244
return this.statusList;
228245
}
229246

247+
/**
248+
* @return taskNameList
249+
*/
250+
public java.util.List<String> getTaskNameList() {
251+
return this.taskNameList;
252+
}
253+
230254
/**
231255
* @return to
232256
*/
@@ -279,6 +303,7 @@ public String getTenantId() {
279303
public static final class Builder extends Request.Builder<ListJobInfosRequest, Builder> {
280304
private Boolean ascOrder;
281305
private java.util.List<String> extNodeIdList;
306+
private java.util.List<String> extNodeNameList;
282307
private Long from;
283308
private java.util.List<String> instanceIdList;
284309
private java.util.List<String> jobOwnerList;
@@ -290,6 +315,7 @@ public static final class Builder extends Request.Builder<ListJobInfosRequest, B
290315
private java.util.List<String> sortByList;
291316
private java.util.List<String> sortOrderList;
292317
private java.util.List<String> statusList;
318+
private java.util.List<String> taskNameList;
293319
private Long to;
294320
private java.util.List<String> typeList;
295321
private String orderColumn;
@@ -306,6 +332,7 @@ private Builder(ListJobInfosRequest request) {
306332
super(request);
307333
this.ascOrder = request.ascOrder;
308334
this.extNodeIdList = request.extNodeIdList;
335+
this.extNodeNameList = request.extNodeNameList;
309336
this.from = request.from;
310337
this.instanceIdList = request.instanceIdList;
311338
this.jobOwnerList = request.jobOwnerList;
@@ -317,6 +344,7 @@ private Builder(ListJobInfosRequest request) {
317344
this.sortByList = request.sortByList;
318345
this.sortOrderList = request.sortOrderList;
319346
this.statusList = request.statusList;
347+
this.taskNameList = request.taskNameList;
320348
this.to = request.to;
321349
this.typeList = request.typeList;
322350
this.orderColumn = request.orderColumn;
@@ -347,6 +375,15 @@ public Builder extNodeIdList(java.util.List<String> extNodeIdList) {
347375
return this;
348376
}
349377

378+
/**
379+
* extNodeNameList.
380+
*/
381+
public Builder extNodeNameList(java.util.List<String> extNodeNameList) {
382+
this.putBodyParameter("extNodeNameList", extNodeNameList);
383+
this.extNodeNameList = extNodeNameList;
384+
return this;
385+
}
386+
350387
/**
351388
* <p>The start timestamp.</p>
352389
* <p>This parameter is required.</p>
@@ -453,6 +490,15 @@ public Builder statusList(java.util.List<String> statusList) {
453490
return this;
454491
}
455492

493+
/**
494+
* taskNameList.
495+
*/
496+
public Builder taskNameList(java.util.List<String> taskNameList) {
497+
this.putBodyParameter("taskNameList", taskNameList);
498+
this.taskNameList = taskNameList;
499+
return this;
500+
}
501+
456502
/**
457503
* <p>The end timestamp.</p>
458504
* <p>This parameter is required.</p>

maxcompute-20220104/src/main/java/com/aliyun/sdk/service/maxcompute20220104/models/ListJobInfosResponseBody.java

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,18 @@ public static class JobInfoList extends TeaModel {
311311
@com.aliyun.core.annotation.NameInMap("extNodeId")
312312
private String extNodeId;
313313

314+
@com.aliyun.core.annotation.NameInMap("extNodeName")
315+
private String extNodeName;
316+
314317
@com.aliyun.core.annotation.NameInMap("extNodeOnDuty")
315318
private String extNodeOnDuty;
316319

317320
@com.aliyun.core.annotation.NameInMap("extPlantFrom")
318321
private String extPlantFrom;
319322

323+
@com.aliyun.core.annotation.NameInMap("extPlatformId")
324+
private String extPlatformId;
325+
320326
@com.aliyun.core.annotation.NameInMap("inputBytes")
321327
private Double inputBytes;
322328

@@ -374,6 +380,9 @@ public static class JobInfoList extends TeaModel {
374380
@com.aliyun.core.annotation.NameInMap("tags")
375381
private String tags;
376382

383+
@com.aliyun.core.annotation.NameInMap("taskName")
384+
private String taskName;
385+
377386
@com.aliyun.core.annotation.NameInMap("tenantId")
378387
private String tenantId;
379388

@@ -389,8 +398,10 @@ private JobInfoList(Builder builder) {
389398
this.cuUsage = builder.cuUsage;
390399
this.endAtTime = builder.endAtTime;
391400
this.extNodeId = builder.extNodeId;
401+
this.extNodeName = builder.extNodeName;
392402
this.extNodeOnDuty = builder.extNodeOnDuty;
393403
this.extPlantFrom = builder.extPlantFrom;
404+
this.extPlatformId = builder.extPlatformId;
394405
this.inputBytes = builder.inputBytes;
395406
this.instanceId = builder.instanceId;
396407
this.jobOwner = builder.jobOwner;
@@ -410,6 +421,7 @@ private JobInfoList(Builder builder) {
410421
this.statusSnapshot = builder.statusSnapshot;
411422
this.submittedAtTime = builder.submittedAtTime;
412423
this.tags = builder.tags;
424+
this.taskName = builder.taskName;
413425
this.tenantId = builder.tenantId;
414426
this.totalTime = builder.totalTime;
415427
this.waitingTime = builder.waitingTime;
@@ -458,6 +470,13 @@ public String getExtNodeId() {
458470
return this.extNodeId;
459471
}
460472

473+
/**
474+
* @return extNodeName
475+
*/
476+
public String getExtNodeName() {
477+
return this.extNodeName;
478+
}
479+
461480
/**
462481
* @return extNodeOnDuty
463482
*/
@@ -472,6 +491,13 @@ public String getExtPlantFrom() {
472491
return this.extPlantFrom;
473492
}
474493

494+
/**
495+
* @return extPlatformId
496+
*/
497+
public String getExtPlatformId() {
498+
return this.extPlatformId;
499+
}
500+
475501
/**
476502
* @return inputBytes
477503
*/
@@ -605,6 +631,13 @@ public String getTags() {
605631
return this.tags;
606632
}
607633

634+
/**
635+
* @return taskName
636+
*/
637+
public String getTaskName() {
638+
return this.taskName;
639+
}
640+
608641
/**
609642
* @return tenantId
610643
*/
@@ -632,8 +665,10 @@ public static final class Builder {
632665
private Long cuUsage;
633666
private Long endAtTime;
634667
private String extNodeId;
668+
private String extNodeName;
635669
private String extNodeOnDuty;
636670
private String extPlantFrom;
671+
private String extPlatformId;
637672
private Double inputBytes;
638673
private String instanceId;
639674
private String jobOwner;
@@ -653,6 +688,7 @@ public static final class Builder {
653688
private String statusSnapshot;
654689
private Long submittedAtTime;
655690
private String tags;
691+
private String taskName;
656692
private String tenantId;
657693
private Long totalTime;
658694
private Long waitingTime;
@@ -666,8 +702,10 @@ private Builder(JobInfoList model) {
666702
this.cuUsage = model.cuUsage;
667703
this.endAtTime = model.endAtTime;
668704
this.extNodeId = model.extNodeId;
705+
this.extNodeName = model.extNodeName;
669706
this.extNodeOnDuty = model.extNodeOnDuty;
670707
this.extPlantFrom = model.extPlantFrom;
708+
this.extPlatformId = model.extPlatformId;
671709
this.inputBytes = model.inputBytes;
672710
this.instanceId = model.instanceId;
673711
this.jobOwner = model.jobOwner;
@@ -687,6 +725,7 @@ private Builder(JobInfoList model) {
687725
this.statusSnapshot = model.statusSnapshot;
688726
this.submittedAtTime = model.submittedAtTime;
689727
this.tags = model.tags;
728+
this.taskName = model.taskName;
690729
this.tenantId = model.tenantId;
691730
this.totalTime = model.totalTime;
692731
this.waitingTime = model.waitingTime;
@@ -747,6 +786,14 @@ public Builder extNodeId(String extNodeId) {
747786
return this;
748787
}
749788

789+
/**
790+
* extNodeName.
791+
*/
792+
public Builder extNodeName(String extNodeName) {
793+
this.extNodeName = extNodeName;
794+
return this;
795+
}
796+
750797
/**
751798
* <p>The account of the node owner.</p>
752799
*
@@ -769,6 +816,14 @@ public Builder extPlantFrom(String extPlantFrom) {
769816
return this;
770817
}
771818

819+
/**
820+
* extPlatformId.
821+
*/
822+
public Builder extPlatformId(String extPlatformId) {
823+
this.extPlatformId = extPlatformId;
824+
return this;
825+
}
826+
772827
/**
773828
* <p>The amount of scanned data for the job. Unit: byte.</p>
774829
*
@@ -975,6 +1030,14 @@ public Builder tags(String tags) {
9751030
return this;
9761031
}
9771032

1033+
/**
1034+
* taskName.
1035+
*/
1036+
public Builder taskName(String taskName) {
1037+
this.taskName = taskName;
1038+
return this;
1039+
}
1040+
9781041
/**
9791042
* <p>The tenant ID.</p>
9801043
*

maxcompute-20220104/src/main/java/com/aliyun/sdk/service/maxcompute20220104/models/ListJobSnapshotInfosResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,9 @@ public static class JobInfoList extends TeaModel {
195195
@com.aliyun.core.annotation.NameInMap("extPlantFrom")
196196
private String extPlantFrom;
197197

198+
@com.aliyun.core.annotation.NameInMap("extPlatformId")
199+
private String extPlatformId;
200+
198201
@com.aliyun.core.annotation.NameInMap("instanceId")
199202
private String instanceId;
200203

@@ -274,6 +277,7 @@ private JobInfoList(Builder builder) {
274277
this.extNodeId = builder.extNodeId;
275278
this.extNodeOnDuty = builder.extNodeOnDuty;
276279
this.extPlantFrom = builder.extPlantFrom;
280+
this.extPlatformId = builder.extPlatformId;
277281
this.instanceId = builder.instanceId;
278282
this.jobOwner = builder.jobOwner;
279283
this.jobType = builder.jobType;
@@ -350,6 +354,13 @@ public String getExtPlantFrom() {
350354
return this.extPlantFrom;
351355
}
352356

357+
/**
358+
* @return extPlatformId
359+
*/
360+
public String getExtPlatformId() {
361+
return this.extPlatformId;
362+
}
363+
353364
/**
354365
* @return instanceId
355366
*/
@@ -525,6 +536,7 @@ public static final class Builder {
525536
private String extNodeId;
526537
private String extNodeOnDuty;
527538
private String extPlantFrom;
539+
private String extPlatformId;
528540
private String instanceId;
529541
private String jobOwner;
530542
private String jobType;
@@ -560,6 +572,7 @@ private Builder(JobInfoList model) {
560572
this.extNodeId = model.extNodeId;
561573
this.extNodeOnDuty = model.extNodeOnDuty;
562574
this.extPlantFrom = model.extPlantFrom;
575+
this.extPlatformId = model.extPlatformId;
563576
this.instanceId = model.instanceId;
564577
this.jobOwner = model.jobOwner;
565578
this.jobType = model.jobType;
@@ -652,6 +665,14 @@ public Builder extPlantFrom(String extPlantFrom) {
652665
return this;
653666
}
654667

668+
/**
669+
* extPlatformId.
670+
*/
671+
public Builder extPlatformId(String extPlatformId) {
672+
this.extPlatformId = extPlatformId;
673+
return this;
674+
}
675+
655676
/**
656677
* <p>The instance ID.</p>
657678
*

0 commit comments

Comments
 (0)