Skip to content

Commit 221928d

Browse files
committed
Generated java-async 2024-05-18 for dataworks-public.
1 parent 332c099 commit 221928d

File tree

5 files changed

+67
-11
lines changed

5 files changed

+67
-11
lines changed

dataworks-public-20240518/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-09 Version: 7.0.5
2+
- Generated java-async 2024-05-18 for dataworks-public.
3+
14
2025-06-05 Version: 7.0.4
25
- Generated java-async 2024-05-18 for dataworks-public.
36

dataworks-public-20240518/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-dataworks_public20240518</artifactId>
6-
<version>7.0.4</version>
6+
<version>7.0.5</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-dataworks_public20240518</name>
99
<description>Alibaba Cloud dataworks-public (20240518) Async SDK for Java

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/CreateWorkflowInstancesRequest.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,9 @@ public static class DefaultRunProperties extends TeaModel {
719719
@com.aliyun.core.annotation.NameInMap("Parallelism")
720720
private Integer parallelism;
721721

722+
@com.aliyun.core.annotation.NameInMap("Priority")
723+
private Integer priority;
724+
722725
@com.aliyun.core.annotation.NameInMap("RootTaskIds")
723726
private java.util.List<Long> rootTaskIds;
724727

@@ -738,6 +741,7 @@ private DefaultRunProperties(Builder builder) {
738741
this.mode = builder.mode;
739742
this.order = builder.order;
740743
this.parallelism = builder.parallelism;
744+
this.priority = builder.priority;
741745
this.rootTaskIds = builder.rootTaskIds;
742746
this.runPolicy = builder.runPolicy;
743747
this.runtimeResource = builder.runtimeResource;
@@ -814,6 +818,13 @@ public Integer getParallelism() {
814818
return this.parallelism;
815819
}
816820

821+
/**
822+
* @return priority
823+
*/
824+
public Integer getPriority() {
825+
return this.priority;
826+
}
827+
817828
/**
818829
* @return rootTaskIds
819830
*/
@@ -845,6 +856,7 @@ public static final class Builder {
845856
private String mode;
846857
private String order;
847858
private Integer parallelism;
859+
private Integer priority;
848860
private java.util.List<Long> rootTaskIds;
849861
private RunPolicy runPolicy;
850862
private String runtimeResource;
@@ -862,6 +874,7 @@ private Builder(DefaultRunProperties model) {
862874
this.mode = model.mode;
863875
this.order = model.order;
864876
this.parallelism = model.parallelism;
877+
this.priority = model.priority;
865878
this.rootTaskIds = model.rootTaskIds;
866879
this.runPolicy = model.runPolicy;
867880
this.runtimeResource = model.runtimeResource;
@@ -958,6 +971,14 @@ public Builder parallelism(Integer parallelism) {
958971
return this;
959972
}
960973

974+
/**
975+
* Priority.
976+
*/
977+
public Builder priority(Integer priority) {
978+
this.priority = priority;
979+
return this;
980+
}
981+
961982
/**
962983
* <p>The root task IDs.</p>
963984
*/

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/UpdateBusinessRequest.java

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ public Builder regionId(String regionId) {
153153
}
154154

155155
/**
156+
* <p>The workflow ID. You can call the <a href="https://help.aliyun.com/document_detail/173945.html">ListBusiness</a> operation to query the ID.</p>
156157
* <p>This parameter is required.</p>
157158
*
158159
* <strong>example:</strong>
@@ -165,7 +166,10 @@ public Builder businessId(Long businessId) {
165166
}
166167

167168
/**
168-
* BusinessName.
169+
* <p>The name of the workflow. You can call the <a href="https://help.aliyun.com/document_detail/173945.html">ListBusiness</a> operation to query the name.</p>
170+
*
171+
* <strong>example:</strong>
172+
* <p>MyBusiness</p>
169173
*/
170174
public Builder businessName(String businessName) {
171175
this.putBodyParameter("BusinessName", businessName);
@@ -174,7 +178,10 @@ public Builder businessName(String businessName) {
174178
}
175179

176180
/**
177-
* Description.
181+
* <p>The description of the workflow.</p>
182+
*
183+
* <strong>example:</strong>
184+
* <p>modified from my first business</p>
178185
*/
179186
public Builder description(String description) {
180187
this.putBodyParameter("Description", description);
@@ -183,7 +190,10 @@ public Builder description(String description) {
183190
}
184191

185192
/**
186-
* Owner.
193+
* <p>The owner of the workflow. You can call the <a href="https://help.aliyun.com/document_detail/173945.html">ListBusiness</a> operation to query the owner.</p>
194+
*
195+
* <strong>example:</strong>
196+
* <p>348428****</p>
187197
*/
188198
public Builder owner(String owner) {
189199
this.putBodyParameter("Owner", owner);
@@ -192,7 +202,10 @@ public Builder owner(String owner) {
192202
}
193203

194204
/**
195-
* ProjectId.
205+
* <p>The DataWorks workspace ID. You can log on to the DataWorks console and go to the Workspace page to query the ID. You must configure either this parameter or the ProjectIdentifier parameter to determine the DataWorks workspace to which the operation is applied.</p>
206+
*
207+
* <strong>example:</strong>
208+
* <p>10000</p>
196209
*/
197210
public Builder projectId(Long projectId) {
198211
this.putBodyParameter("ProjectId", projectId);
@@ -201,7 +214,10 @@ public Builder projectId(Long projectId) {
201214
}
202215

203216
/**
204-
* ProjectIdentifier.
217+
* <p>The name of the DataWorks workspace. You can log on to the DataWorks console and go to the Workspace page to query the workspace name. You must configure either this parameter or the ProjectId parameter to determine the DataWorks workspace to which the operation is applied.</p>
218+
*
219+
* <strong>example:</strong>
220+
* <p>dw_project</p>
205221
*/
206222
public Builder projectIdentifier(String projectIdentifier) {
207223
this.putBodyParameter("ProjectIdentifier", projectIdentifier);

dataworks-public-20240518/src/main/java/com/aliyun/sdk/service/dataworks_public20240518/models/UpdateBusinessResponseBody.java

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,39 +106,55 @@ private Builder(UpdateBusinessResponseBody model) {
106106
}
107107

108108
/**
109-
* ErrorCode.
109+
* <p>The error code.</p>
110+
*
111+
* <strong>example:</strong>
112+
* <p>Invalid.Tenant.ConnectionNotExists</p>
110113
*/
111114
public Builder errorCode(String errorCode) {
112115
this.errorCode = errorCode;
113116
return this;
114117
}
115118

116119
/**
117-
* ErrorMessage.
120+
* <p>The error message.</p>
121+
*
122+
* <strong>example:</strong>
123+
* <p>The connection does not exist.</p>
118124
*/
119125
public Builder errorMessage(String errorMessage) {
120126
this.errorMessage = errorMessage;
121127
return this;
122128
}
123129

124130
/**
125-
* HttpStatusCode.
131+
* <p>The HTTP status code.</p>
132+
*
133+
* <strong>example:</strong>
134+
* <p>200</p>
126135
*/
127136
public Builder httpStatusCode(Integer httpStatusCode) {
128137
this.httpStatusCode = httpStatusCode;
129138
return this;
130139
}
131140

132141
/**
133-
* RequestId.
142+
* <p>The request ID.</p>
143+
*
144+
* <strong>example:</strong>
145+
* <p>0000-ABCD-EFG****</p>
134146
*/
135147
public Builder requestId(String requestId) {
136148
this.requestId = requestId;
137149
return this;
138150
}
139151

140152
/**
141-
* Success.
153+
* <p>Indicates whether the request was successful. Valid values:</p>
154+
* <p>true<br>false</p>
155+
*
156+
* <strong>example:</strong>
157+
* <p>true</p>
142158
*/
143159
public Builder success(Boolean success) {
144160
this.success = success;

0 commit comments

Comments
 (0)