Skip to content

Commit 8dea1e6

Browse files
committed
Bug Fix.
1 parent d0e782d commit 8dea1e6

File tree

4 files changed

+37
-1
lines changed

4 files changed

+37
-1
lines changed

aliyun-java-sdk-adb/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-29 Version: 1.0.28
2+
- Bug Fix.
3+
14
2025-04-28 Version: 1.0.27
25
- Support MigrateDBCluster.
36

aliyun-java-sdk-adb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-adb</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.27</version>
7+
<version>1.0.28</version>
88
<name>aliyun-java-sdk-adb</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-adb/src/main/java/com/aliyuncs/adb/model/v20190315/DescribeDBClusterAttributeResponse.java

+30
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@ public static class DBCluster {
143143

144144
private String secondaryVSwitchId;
145145

146+
private String reservedNodeSize;
147+
148+
private Integer reservedNodeCount;
149+
150+
private String productForm;
151+
146152
private List<Tag> tags;
147153

148154
private TaskInfo taskInfo;
@@ -531,6 +537,30 @@ public void setSecondaryVSwitchId(String secondaryVSwitchId) {
531537
this.secondaryVSwitchId = secondaryVSwitchId;
532538
}
533539

540+
public String getReservedNodeSize() {
541+
return this.reservedNodeSize;
542+
}
543+
544+
public void setReservedNodeSize(String reservedNodeSize) {
545+
this.reservedNodeSize = reservedNodeSize;
546+
}
547+
548+
public Integer getReservedNodeCount() {
549+
return this.reservedNodeCount;
550+
}
551+
552+
public void setReservedNodeCount(Integer reservedNodeCount) {
553+
this.reservedNodeCount = reservedNodeCount;
554+
}
555+
556+
public String getProductForm() {
557+
return this.productForm;
558+
}
559+
560+
public void setProductForm(String productForm) {
561+
this.productForm = productForm;
562+
}
563+
534564
public List<Tag> getTags() {
535565
return this.tags;
536566
}

aliyun-java-sdk-adb/src/main/java/com/aliyuncs/adb/transform/v20190315/DescribeDBClusterAttributeResponseUnmarshaller.java

+3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ public static DescribeDBClusterAttributeResponse unmarshall(DescribeDBClusterAtt
8282
dBCluster.setProductVersion(_ctx.stringValue("DescribeDBClusterAttributeResponse.Items["+ i +"].ProductVersion"));
8383
dBCluster.setSecondaryZoneId(_ctx.stringValue("DescribeDBClusterAttributeResponse.Items["+ i +"].SecondaryZoneId"));
8484
dBCluster.setSecondaryVSwitchId(_ctx.stringValue("DescribeDBClusterAttributeResponse.Items["+ i +"].SecondaryVSwitchId"));
85+
dBCluster.setReservedNodeSize(_ctx.stringValue("DescribeDBClusterAttributeResponse.Items["+ i +"].ReservedNodeSize"));
86+
dBCluster.setReservedNodeCount(_ctx.integerValue("DescribeDBClusterAttributeResponse.Items["+ i +"].ReservedNodeCount"));
87+
dBCluster.setProductForm(_ctx.stringValue("DescribeDBClusterAttributeResponse.Items["+ i +"].ProductForm"));
8588

8689
TaskInfo taskInfo = new TaskInfo();
8790
taskInfo.setName(_ctx.stringValue("DescribeDBClusterAttributeResponse.Items["+ i +"].TaskInfo.Name"));

0 commit comments

Comments
 (0)