Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c8e7b3

Browse files
committed
DRDS SDK Auto Released By tingche.lxc,Version:2.6.3
发布日志: 1, createInstance support vpcId and vswitchId
1 parent 771f587 commit 2c8e7b3

File tree

44 files changed

+173
-86
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+173
-86
lines changed

aliyun-java-sdk-drds/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-02-20 Version: 2.6.3
2+
1, createInstance support vpcId and vswitchId
3+
14
2018-12-18 Version: 2.6.0
25
1, Add DescribeDrdsInstanceDbMonitor.
36
2, Add DescribeDrdsInstanceMonitor.

aliyun-java-sdk-drds/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-drds</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.6.0</version>
6+
<version>2.6.3</version>
77
<name>aliyun-java-sdk-drds</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>4.1.1</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/CreateDrdsAccountResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.drds.model.v20171016;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.drds.transform.v20171016.CreateDrdsAccountResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/CreateDrdsDBResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.drds.model.v20171016;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.drds.transform.v20171016.CreateDrdsDBResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/CreateDrdsInstanceRequest.java

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ public CreateDrdsInstanceRequest() {
3030

3131
private Integer quantity;
3232

33+
private String clientToken;
34+
3335
private String description;
3436

3537
private String specification;
@@ -74,6 +76,17 @@ public void setQuantity(Integer quantity) {
7476
}
7577
}
7678

79+
public String getClientToken() {
80+
return this.clientToken;
81+
}
82+
83+
public void setClientToken(String clientToken) {
84+
this.clientToken = clientToken;
85+
if(clientToken != null){
86+
putQueryParameter("ClientToken", clientToken);
87+
}
88+
}
89+
7790
public String getDescription() {
7891
return this.description;
7992
}
@@ -136,7 +149,7 @@ public Boolean getIsHa() {
136149
public void setIsHa(Boolean isHa) {
137150
this.isHa = isHa;
138151
if(isHa != null){
139-
putQueryParameter("isHa", isHa.toString());
152+
putQueryParameter("IsHa", isHa.toString());
140153
}
141154
}
142155

@@ -147,7 +160,7 @@ public String getInstanceSeries() {
147160
public void setInstanceSeries(String instanceSeries) {
148161
this.instanceSeries = instanceSeries;
149162
if(instanceSeries != null){
150-
putQueryParameter("instanceSeries", instanceSeries);
163+
putQueryParameter("InstanceSeries", instanceSeries);
151164
}
152165
}
153166

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/CreateDrdsInstanceResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
package com.aliyuncs.drds.model.v20171016;
1616

17-
import java.util.List;
18-
import java.util.Map;
17+
import java.util.List;
1918
import com.aliyuncs.AcsResponse;
2019
import com.aliyuncs.drds.transform.v20171016.CreateDrdsInstanceResponseUnmarshaller;
2120
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/CreateReadOnlyAccountResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.drds.model.v20171016;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.drds.transform.v20171016.CreateReadOnlyAccountResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/DeleteDrdsDBResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.drds.model.v20171016;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.drds.transform.v20171016.DeleteDrdsDBResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/DeleteFailedDrdsDBResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.drds.model.v20171016;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.drds.transform.v20171016.DeleteFailedDrdsDBResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-drds/src/main/java/com/aliyuncs/drds/model/v20171016/DescribeCreateDrdsInstanceStatusResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.drds.model.v20171016;
16-
17-
import java.util.Map;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.drds.transform.v20171016.DescribeCreateDrdsInstanceStatusResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;

0 commit comments

Comments
 (0)