Skip to content

Commit

Permalink
Update water-mark params
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 23, 2024
1 parent ea315c3 commit c41ff48
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-mts/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-23 Version: 3.3.63
- Update water-mark params

2024-07-11 Version: 3.3.62
- SubmitSnapshotJob suport timeArray.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-mts/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-mts</artifactId>
<packaging>jar</packaging>
<version>3.3.62</version>
<version>3.3.63</version>
<name>aliyun-java-sdk-mts</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 @@ -33,7 +33,7 @@ public class SubmitCopyrightJobRequest extends RpcAcsRequest<SubmitCopyrightJobR

private String userData;

private String level;
private Long level;

private String message;

Expand Down Expand Up @@ -99,14 +99,14 @@ public void setUserData(String userData) {
}
}

public String getLevel() {
public Long getLevel() {
return this.level;
}

public void setLevel(String level) {
public void setLevel(Long level) {
this.level = level;
if(level != null){
putQueryParameter("Level", level);
putQueryParameter("Level", level.toString());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class SubmitTraceAbJobRequest extends RpcAcsRequest<SubmitTraceAbJobRespo

private String cipherBase64ed;

private String level;
private Long level;

private String url;

Expand Down Expand Up @@ -95,14 +95,14 @@ public void setCipherBase64ed(String cipherBase64ed) {
}
}

public String getLevel() {
public Long getLevel() {
return this.level;
}

public void setLevel(String level) {
public void setLevel(Long level) {
this.level = level;
if(level != null){
putQueryParameter("Level", level);
putQueryParameter("Level", level.toString());
}
}

Expand Down

0 comments on commit c41ff48

Please sign in to comment.