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 Nov 16, 2023
1 parent ced5c69 commit e84cb35
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-11-16 Version: 4.2.15
- Generated 2020-05-18 for `dataworks-public`.

2023-09-25 Version: 4.2.14
- Support DIJob and DIAlarmRule related APIs.

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.14</version>
<version>4.2.15</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 @@ -25,6 +25,8 @@
public class CreateQualityRuleRequest extends RpcAcsRequest<CreateQualityRuleResponse> {


private String taskSetting;

private String trend;

private Integer blockType;
Expand Down Expand Up @@ -71,6 +73,17 @@ public CreateQualityRuleRequest() {
} catch (Exception e) {}
}

public String getTaskSetting() {
return this.taskSetting;
}

public void setTaskSetting(String taskSetting) {
this.taskSetting = taskSetting;
if(taskSetting != null){
putBodyParameter("TaskSetting", taskSetting);
}
}

public String getTrend() {
return this.trend;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
public class UpdateQualityRuleRequest extends RpcAcsRequest<UpdateQualityRuleResponse> {


private String taskSetting;

private String trend;

private Integer blockType;
Expand Down Expand Up @@ -75,6 +77,17 @@ public UpdateQualityRuleRequest() {
} catch (Exception e) {}
}

public String getTaskSetting() {
return this.taskSetting;
}

public void setTaskSetting(String taskSetting) {
this.taskSetting = taskSetting;
if(taskSetting != null){
putBodyParameter("TaskSetting", taskSetting);
}
}

public String getTrend() {
return this.trend;
}
Expand Down

0 comments on commit e84cb35

Please sign in to comment.