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 Dec 8, 2023
1 parent 8fc7df8 commit 5dd84a5
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
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 @@
2023-12-08 Version: 4.2.16
- Generated 2020-05-18 for `dataworks-public`.

2023-11-16 Version: 4.2.15
- 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>4.2.15</version>
<version>4.2.16</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 @@ -27,6 +27,8 @@ public class GetInstanceStatusStatisticRequest extends RpcAcsRequest<GetInstance

private String projectEnv;

private String schedulerPeriod;

private String dagType;

private String bizDate;
Expand Down Expand Up @@ -54,6 +56,17 @@ public void setProjectEnv(String projectEnv) {
}
}

public String getSchedulerPeriod() {
return this.schedulerPeriod;
}

public void setSchedulerPeriod(String schedulerPeriod) {
this.schedulerPeriod = schedulerPeriod;
if(schedulerPeriod != null){
putBodyParameter("SchedulerPeriod", schedulerPeriod);
}
}

public String getDagType() {
return this.dagType;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public class ListInstancesRequest extends RpcAcsRequest<ListInstancesResponse> {

private String beginBizdate;

private String orderBy;

private String endBizdate;

private Long dagId;
Expand Down Expand Up @@ -105,6 +107,17 @@ public void setBeginBizdate(String beginBizdate) {
}
}

public String getOrderBy() {
return this.orderBy;
}

public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
if(orderBy != null){
putBodyParameter("OrderBy", orderBy);
}
}

public String getEndBizdate() {
return this.endBizdate;
}
Expand Down

0 comments on commit 5dd84a5

Please sign in to comment.