Skip to content

Commit 18cde50

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent 3acfcb0 commit 18cde50

File tree

11 files changed

+313
-9
lines changed

11 files changed

+313
-9
lines changed

aliyun-java-sdk-dataworks-public/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-01-23 Version: 6.1.8
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2024-11-21 Version: 6.1.7
25
- Support CreateDISyncTask with large param.
36

aliyun-java-sdk-dataworks-public/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-dataworks-public</artifactId>
66
<packaging>jar</packaging>
7-
<version>6.1.7</version>
7+
<version>6.1.8</version>
88
<name>aliyun-java-sdk-dataworks-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/CreateFileRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ public class CreateFileRequest extends RpcAcsRequest<CreateFileResponse> {
3333

3434
private String projectIdentifier;
3535

36+
private Integer timeout;
37+
3638
private Long resourceGroupId;
3739

3840
private Boolean startImmediately;
@@ -141,6 +143,17 @@ public void setProjectIdentifier(String projectIdentifier) {
141143
}
142144
}
143145

146+
public Integer getTimeout() {
147+
return this.timeout;
148+
}
149+
150+
public void setTimeout(Integer timeout) {
151+
this.timeout = timeout;
152+
if(timeout != null){
153+
putBodyParameter("Timeout", timeout.toString());
154+
}
155+
}
156+
144157
public Long getResourceGroupId() {
145158
return this.resourceGroupId;
146159
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/GetDISyncTaskResponse.java

Lines changed: 171 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
*/
1414

1515
package com.aliyuncs.dataworks_public.model.v20200518;
16-
16+
17+
import java.util.List;
1718
import com.aliyuncs.AcsResponse;
1819
import com.aliyuncs.dataworks_public.transform.v20200518.GetDISyncTaskResponseUnmarshaller;
1920
import com.aliyuncs.transform.UnmarshallerContext;
@@ -62,6 +63,8 @@ public static class Data {
6263

6364
private String message;
6465

66+
private List<AlarmListItem> alarmList;
67+
6568
private SolutionDetail solutionDetail;
6669

6770
public String getCode() {
@@ -88,6 +91,14 @@ public void setMessage(String message) {
8891
this.message = message;
8992
}
9093

94+
public List<AlarmListItem> getAlarmList() {
95+
return this.alarmList;
96+
}
97+
98+
public void setAlarmList(List<AlarmListItem> alarmList) {
99+
this.alarmList = alarmList;
100+
}
101+
91102
public SolutionDetail getSolutionDetail() {
92103
return this.solutionDetail;
93104
}
@@ -96,6 +107,165 @@ public void setSolutionDetail(SolutionDetail solutionDetail) {
96107
this.solutionDetail = solutionDetail;
97108
}
98109

110+
public static class AlarmListItem {
111+
112+
private Long id;
113+
114+
private Boolean enabled;
115+
116+
private String ruleName;
117+
118+
private String metric;
119+
120+
private String description;
121+
122+
private List<AlarmRuleListItem> alarmRuleList;
123+
124+
private NotifyRule notifyRule;
125+
126+
public Long getId() {
127+
return this.id;
128+
}
129+
130+
public void setId(Long id) {
131+
this.id = id;
132+
}
133+
134+
public Boolean getEnabled() {
135+
return this.enabled;
136+
}
137+
138+
public void setEnabled(Boolean enabled) {
139+
this.enabled = enabled;
140+
}
141+
142+
public String getRuleName() {
143+
return this.ruleName;
144+
}
145+
146+
public void setRuleName(String ruleName) {
147+
this.ruleName = ruleName;
148+
}
149+
150+
public String getMetric() {
151+
return this.metric;
152+
}
153+
154+
public void setMetric(String metric) {
155+
this.metric = metric;
156+
}
157+
158+
public String getDescription() {
159+
return this.description;
160+
}
161+
162+
public void setDescription(String description) {
163+
this.description = description;
164+
}
165+
166+
public List<AlarmRuleListItem> getAlarmRuleList() {
167+
return this.alarmRuleList;
168+
}
169+
170+
public void setAlarmRuleList(List<AlarmRuleListItem> alarmRuleList) {
171+
this.alarmRuleList = alarmRuleList;
172+
}
173+
174+
public NotifyRule getNotifyRule() {
175+
return this.notifyRule;
176+
}
177+
178+
public void setNotifyRule(NotifyRule notifyRule) {
179+
this.notifyRule = notifyRule;
180+
}
181+
182+
public static class AlarmRuleListItem {
183+
184+
private String level;
185+
186+
private String comparator;
187+
188+
private Long threshold;
189+
190+
private Long duration;
191+
192+
private String aggregator;
193+
194+
public String getLevel() {
195+
return this.level;
196+
}
197+
198+
public void setLevel(String level) {
199+
this.level = level;
200+
}
201+
202+
public String getComparator() {
203+
return this.comparator;
204+
}
205+
206+
public void setComparator(String comparator) {
207+
this.comparator = comparator;
208+
}
209+
210+
public Long getThreshold() {
211+
return this.threshold;
212+
}
213+
214+
public void setThreshold(Long threshold) {
215+
this.threshold = threshold;
216+
}
217+
218+
public Long getDuration() {
219+
return this.duration;
220+
}
221+
222+
public void setDuration(Long duration) {
223+
this.duration = duration;
224+
}
225+
226+
public String getAggregator() {
227+
return this.aggregator;
228+
}
229+
230+
public void setAggregator(String aggregator) {
231+
this.aggregator = aggregator;
232+
}
233+
}
234+
235+
public static class NotifyRule {
236+
237+
private Long interval;
238+
239+
private List<String> warning;
240+
241+
private List<String> critical;
242+
243+
public Long getInterval() {
244+
return this.interval;
245+
}
246+
247+
public void setInterval(Long interval) {
248+
this.interval = interval;
249+
}
250+
251+
public List<String> getWarning() {
252+
return this.warning;
253+
}
254+
255+
public void setWarning(List<String> warning) {
256+
this.warning = warning;
257+
}
258+
259+
public List<String> getCritical() {
260+
return this.critical;
261+
}
262+
263+
public void setCritical(List<String> critical) {
264+
this.critical = critical;
265+
}
266+
}
267+
}
268+
99269
public static class SolutionDetail {
100270

101271
private String status;

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/GetFileResponse.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,10 @@ public static class NodeConfiguration {
382382

383383
private String applyScheduleImmediately;
384384

385+
private String ignoreParentSkipRunningProperty;
386+
387+
private Integer timeout;
388+
385389
private List<NodeInputOutput> inputList;
386390

387391
private List<NodeInputOutput1> outputList;
@@ -510,6 +514,22 @@ public void setApplyScheduleImmediately(String applyScheduleImmediately) {
510514
this.applyScheduleImmediately = applyScheduleImmediately;
511515
}
512516

517+
public String getIgnoreParentSkipRunningProperty() {
518+
return this.ignoreParentSkipRunningProperty;
519+
}
520+
521+
public void setIgnoreParentSkipRunningProperty(String ignoreParentSkipRunningProperty) {
522+
this.ignoreParentSkipRunningProperty = ignoreParentSkipRunningProperty;
523+
}
524+
525+
public Integer getTimeout() {
526+
return this.timeout;
527+
}
528+
529+
public void setTimeout(Integer timeout) {
530+
this.timeout = timeout;
531+
}
532+
513533
public List<NodeInputOutput> getInputList() {
514534
return this.inputList;
515535
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/GetInstanceResponse.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ public static class Data {
118118

119119
private Integer taskRerunTime;
120120

121+
private Integer periodNumber;
122+
121123
private Long modifyTime;
122124

123125
private Boolean repeatability;
@@ -142,6 +144,8 @@ public static class Data {
142144

143145
private String createUser;
144146

147+
private String owner;
148+
145149
public String getStatus() {
146150
return this.status;
147151
}
@@ -270,6 +274,14 @@ public void setTaskRerunTime(Integer taskRerunTime) {
270274
this.taskRerunTime = taskRerunTime;
271275
}
272276

277+
public Integer getPeriodNumber() {
278+
return this.periodNumber;
279+
}
280+
281+
public void setPeriodNumber(Integer periodNumber) {
282+
this.periodNumber = periodNumber;
283+
}
284+
273285
public Long getModifyTime() {
274286
return this.modifyTime;
275287
}
@@ -365,6 +377,14 @@ public String getCreateUser() {
365377
public void setCreateUser(String createUser) {
366378
this.createUser = createUser;
367379
}
380+
381+
public String getOwner() {
382+
return this.owner;
383+
}
384+
385+
public void setOwner(String owner) {
386+
this.owner = owner;
387+
}
368388
}
369389

370390
@Override

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/ListCheckProcessesRequest.java

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
public class ListCheckProcessesRequest extends RpcAcsRequest<ListCheckProcessesResponse> {
2727

2828

29-
private String eventCode;
29+
private String messageId;
3030

3131
private String operator;
3232

@@ -36,6 +36,8 @@ public class ListCheckProcessesRequest extends RpcAcsRequest<ListCheckProcessesR
3636

3737
private Long projectId;
3838

39+
private String eventCode;
40+
3941
private String status;
4042
public ListCheckProcessesRequest() {
4143
super("dataworks-public", "2020-05-18", "ListCheckProcesses");
@@ -47,14 +49,14 @@ public ListCheckProcessesRequest() {
4749
} catch (Exception e) {}
4850
}
4951

50-
public String getEventCode() {
51-
return this.eventCode;
52+
public String getMessageId() {
53+
return this.messageId;
5254
}
5355

54-
public void setEventCode(String eventCode) {
55-
this.eventCode = eventCode;
56-
if(eventCode != null){
57-
putBodyParameter("EventCode", eventCode);
56+
public void setMessageId(String messageId) {
57+
this.messageId = messageId;
58+
if(messageId != null){
59+
putBodyParameter("MessageId", messageId);
5860
}
5961
}
6062

@@ -102,6 +104,17 @@ public void setProjectId(Long projectId) {
102104
}
103105
}
104106

107+
public String getEventCode() {
108+
return this.eventCode;
109+
}
110+
111+
public void setEventCode(String eventCode) {
112+
this.eventCode = eventCode;
113+
if(eventCode != null){
114+
putBodyParameter("EventCode", eventCode);
115+
}
116+
}
117+
105118
public String getStatus() {
106119
return this.status;
107120
}

0 commit comments

Comments
 (0)