Skip to content

Commit bc4e5e3

Browse files
committed
Generated java-async 2022-01-12 for PaiStudio.
1 parent d7867b3 commit bc4e5e3

File tree

5 files changed

+69
-1
lines changed

5 files changed

+69
-1
lines changed

paistudio-20220112/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: 2.0.16
2+
- Generated java-async 2022-01-12 for PaiStudio.
3+
14
2025-11-12 Version: 2.0.15
25
- Generated java-async 2022-01-12 for PaiStudio.
36

paistudio-20220112/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-paistudio20220112</artifactId>
6-
<version>2.0.15</version>
6+
<version>2.0.16</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-paistudio20220112</name>
99
<description>Alibaba Cloud PaiStudio (20220112) Async SDK for Java

paistudio-20220112/src/main/java/com/aliyun/sdk/service/paistudio20220112/models/CreateTrainingJobRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ public class CreateTrainingJobRequest extends Request {
3333
@com.aliyun.core.annotation.NameInMap("AlgorithmVersion")
3434
private String algorithmVersion;
3535

36+
@com.aliyun.core.annotation.Body
37+
@com.aliyun.core.annotation.NameInMap("AssignNodeSpec")
38+
private AssignNodeSpec assignNodeSpec;
39+
3640
@com.aliyun.core.annotation.Body
3741
@com.aliyun.core.annotation.NameInMap("CodeDir")
3842
private Location codeDir;
@@ -109,6 +113,7 @@ private CreateTrainingJobRequest(Builder builder) {
109113
this.algorithmProvider = builder.algorithmProvider;
110114
this.algorithmSpec = builder.algorithmSpec;
111115
this.algorithmVersion = builder.algorithmVersion;
116+
this.assignNodeSpec = builder.assignNodeSpec;
112117
this.codeDir = builder.codeDir;
113118
this.computeResource = builder.computeResource;
114119
this.environments = builder.environments;
@@ -169,6 +174,13 @@ public String getAlgorithmVersion() {
169174
return this.algorithmVersion;
170175
}
171176

177+
/**
178+
* @return assignNodeSpec
179+
*/
180+
public AssignNodeSpec getAssignNodeSpec() {
181+
return this.assignNodeSpec;
182+
}
183+
172184
/**
173185
* @return codeDir
174186
*/
@@ -293,6 +305,7 @@ public static final class Builder extends Request.Builder<CreateTrainingJobReque
293305
private String algorithmProvider;
294306
private AlgorithmSpec algorithmSpec;
295307
private String algorithmVersion;
308+
private AssignNodeSpec assignNodeSpec;
296309
private Location codeDir;
297310
private ComputeResource computeResource;
298311
private java.util.Map<String, String> environments;
@@ -321,6 +334,7 @@ private Builder(CreateTrainingJobRequest request) {
321334
this.algorithmProvider = request.algorithmProvider;
322335
this.algorithmSpec = request.algorithmSpec;
323336
this.algorithmVersion = request.algorithmVersion;
337+
this.assignNodeSpec = request.assignNodeSpec;
324338
this.codeDir = request.codeDir;
325339
this.computeResource = request.computeResource;
326340
this.environments = request.environments;
@@ -376,6 +390,15 @@ public Builder algorithmVersion(String algorithmVersion) {
376390
return this;
377391
}
378392

393+
/**
394+
* AssignNodeSpec.
395+
*/
396+
public Builder assignNodeSpec(AssignNodeSpec assignNodeSpec) {
397+
this.putBodyParameter("AssignNodeSpec", assignNodeSpec);
398+
this.assignNodeSpec = assignNodeSpec;
399+
return this;
400+
}
401+
379402
/**
380403
* CodeDir.
381404
*/

paistudio-20220112/src/main/java/com/aliyun/sdk/service/paistudio20220112/models/GetTrainingJobResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ public class GetTrainingJobResponseBody extends TeaModel {
3232
@com.aliyun.core.annotation.NameInMap("AlgorithmVersion")
3333
private String algorithmVersion;
3434

35+
@com.aliyun.core.annotation.NameInMap("AssignNodeSpec")
36+
private AssignNodeSpec assignNodeSpec;
37+
3538
@com.aliyun.core.annotation.NameInMap("ComputeResource")
3639
private ComputeResource computeResource;
3740

@@ -134,6 +137,7 @@ private GetTrainingJobResponseBody(Builder builder) {
134137
this.algorithmProvider = builder.algorithmProvider;
135138
this.algorithmSpec = builder.algorithmSpec;
136139
this.algorithmVersion = builder.algorithmVersion;
140+
this.assignNodeSpec = builder.assignNodeSpec;
137141
this.computeResource = builder.computeResource;
138142
this.duration = builder.duration;
139143
this.environments = builder.environments;
@@ -215,6 +219,13 @@ public String getAlgorithmVersion() {
215219
return this.algorithmVersion;
216220
}
217221

222+
/**
223+
* @return assignNodeSpec
224+
*/
225+
public AssignNodeSpec getAssignNodeSpec() {
226+
return this.assignNodeSpec;
227+
}
228+
218229
/**
219230
* @return computeResource
220231
*/
@@ -445,6 +456,7 @@ public static final class Builder {
445456
private String algorithmProvider;
446457
private AlgorithmSpec algorithmSpec;
447458
private String algorithmVersion;
459+
private AssignNodeSpec assignNodeSpec;
448460
private ComputeResource computeResource;
449461
private Long duration;
450462
private java.util.Map<String, String> environments;
@@ -487,6 +499,7 @@ private Builder(GetTrainingJobResponseBody model) {
487499
this.algorithmProvider = model.algorithmProvider;
488500
this.algorithmSpec = model.algorithmSpec;
489501
this.algorithmVersion = model.algorithmVersion;
502+
this.assignNodeSpec = model.assignNodeSpec;
490503
this.computeResource = model.computeResource;
491504
this.duration = model.duration;
492505
this.environments = model.environments;
@@ -561,6 +574,14 @@ public Builder algorithmVersion(String algorithmVersion) {
561574
return this;
562575
}
563576

577+
/**
578+
* AssignNodeSpec.
579+
*/
580+
public Builder assignNodeSpec(AssignNodeSpec assignNodeSpec) {
581+
this.assignNodeSpec = assignNodeSpec;
582+
return this;
583+
}
584+
564585
/**
565586
* ComputeResource.
566587
*/

paistudio-20220112/src/main/java/com/aliyun/sdk/service/paistudio20220112/models/ListTrainingJobsResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,6 +1214,9 @@ public static class TrainingJobs extends TeaModel {
12141214
@com.aliyun.core.annotation.NameInMap("AlgorithmVersion")
12151215
private String algorithmVersion;
12161216

1217+
@com.aliyun.core.annotation.NameInMap("AssignNodeSpec")
1218+
private AssignNodeSpec assignNodeSpec;
1219+
12171220
@com.aliyun.core.annotation.NameInMap("ComputeResource")
12181221
private ComputeResource computeResource;
12191222

@@ -1290,6 +1293,7 @@ private TrainingJobs(Builder builder) {
12901293
this.algorithmName = builder.algorithmName;
12911294
this.algorithmProvider = builder.algorithmProvider;
12921295
this.algorithmVersion = builder.algorithmVersion;
1296+
this.assignNodeSpec = builder.assignNodeSpec;
12931297
this.computeResource = builder.computeResource;
12941298
this.dlcJobId = builder.dlcJobId;
12951299
this.environments = builder.environments;
@@ -1345,6 +1349,13 @@ public String getAlgorithmVersion() {
13451349
return this.algorithmVersion;
13461350
}
13471351

1352+
/**
1353+
* @return assignNodeSpec
1354+
*/
1355+
public AssignNodeSpec getAssignNodeSpec() {
1356+
return this.assignNodeSpec;
1357+
}
1358+
13481359
/**
13491360
* @return computeResource
13501361
*/
@@ -1517,6 +1528,7 @@ public static final class Builder {
15171528
private String algorithmName;
15181529
private String algorithmProvider;
15191530
private String algorithmVersion;
1531+
private AssignNodeSpec assignNodeSpec;
15201532
private ComputeResource computeResource;
15211533
private String dlcJobId;
15221534
private java.util.Map<String, String> environments;
@@ -1549,6 +1561,7 @@ private Builder(TrainingJobs model) {
15491561
this.algorithmName = model.algorithmName;
15501562
this.algorithmProvider = model.algorithmProvider;
15511563
this.algorithmVersion = model.algorithmVersion;
1564+
this.assignNodeSpec = model.assignNodeSpec;
15521565
this.computeResource = model.computeResource;
15531566
this.dlcJobId = model.dlcJobId;
15541567
this.environments = model.environments;
@@ -1599,6 +1612,14 @@ public Builder algorithmVersion(String algorithmVersion) {
15991612
return this;
16001613
}
16011614

1615+
/**
1616+
* AssignNodeSpec.
1617+
*/
1618+
public Builder assignNodeSpec(AssignNodeSpec assignNodeSpec) {
1619+
this.assignNodeSpec = assignNodeSpec;
1620+
return this;
1621+
}
1622+
16021623
/**
16031624
* ComputeResource.
16041625
*/

0 commit comments

Comments
 (0)