Skip to content

Commit

Permalink
Generated 2020-05-18 for dataworks-public.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 29, 2024
1 parent 41be446 commit aed55b5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-dataworks-public/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-09-29 Version: 5.1.10
- Generated 2020-05-18 for `dataworks-public`.

2024-09-18 Version: 5.1.9
- Generated 2020-05-18 for `dataworks-public`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-dataworks-public/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dataworks-public</artifactId>
<packaging>jar</packaging>
<version>5.1.9</version>
<version>5.1.10</version>
<name>aliyun-java-sdk-dataworks-public</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public String getTaskContent() {
public void setTaskContent(String taskContent) {
this.taskContent = taskContent;
if(taskContent != null){
putQueryParameter("TaskContent", taskContent);
putBodyParameter("TaskContent", taskContent);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ public static class Data {

private String repeatability;

private Integer repeatMode;

private Long projectId;

private String programType;
Expand Down Expand Up @@ -162,6 +164,14 @@ public void setRepeatability(String repeatability) {
this.repeatability = repeatability;
}

public Integer getRepeatMode() {
return this.repeatMode;
}

public void setRepeatMode(Integer repeatMode) {
this.repeatMode = repeatMode;
}

public Long getProjectId() {
return this.projectId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public static GetNodeResponse unmarshall(GetNodeResponse getNodeResponse, Unmars
data.setSchedulerType(_ctx.stringValue("GetNodeResponse.Data.SchedulerType"));
data.setRepeatInterval(_ctx.longValue("GetNodeResponse.Data.RepeatInterval"));
data.setRepeatability(_ctx.stringValue("GetNodeResponse.Data.Repeatability"));
data.setRepeatMode(_ctx.integerValue("GetNodeResponse.Data.RepeatMode"));
data.setProjectId(_ctx.longValue("GetNodeResponse.Data.ProjectId"));
data.setProgramType(_ctx.stringValue("GetNodeResponse.Data.ProgramType"));
data.setPriority(_ctx.integerValue("GetNodeResponse.Data.Priority"));
Expand Down

0 comments on commit aed55b5

Please sign in to comment.