Skip to content

Commit

Permalink
Support new feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 7, 2023
1 parent 78dde98 commit 090cd32
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-polardb/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-11-07 Version: 1.8.43
- Support new feature.

2023-10-30 Version: 1.8.42
- Support new feature.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-polardb/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-polardb</artifactId>
<packaging>jar</packaging>
<version>1.8.42</version>
<version>1.8.43</version>
<name>aliyun-java-sdk-polardb</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 DescribeDBClusterVersionRequest extends RpcAcsRequest<DescribeDBClu

private Long resourceOwnerId;

private String describeType;

private String resourceOwnerAccount;

private String dBClusterId;
Expand Down Expand Up @@ -54,6 +56,17 @@ public void setResourceOwnerId(Long resourceOwnerId) {
}
}

public String getDescribeType() {
return this.describeType;
}

public void setDescribeType(String describeType) {
this.describeType = describeType;
if(describeType != null){
putQueryParameter("DescribeType", describeType);
}
}

public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ public class OpenAITaskRequest extends RpcAcsRequest<OpenAITaskResponse> {

private String nodeType;

private String describeType;

private String resourceGroupId;

private String password;
Expand Down Expand Up @@ -75,17 +73,6 @@ public void setNodeType(String nodeType) {
}
}

public String getDescribeType() {
return this.describeType;
}

public void setDescribeType(String describeType) {
this.describeType = describeType;
if(describeType != null){
putQueryParameter("DescribeType", describeType);
}
}

public String getResourceGroupId() {
return this.resourceGroupId;
}
Expand Down

0 comments on commit 090cd32

Please sign in to comment.