Skip to content

Commit

Permalink
Generated 2015-12-01 for Dds.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Aug 28, 2024
1 parent f9ad367 commit dac3c34
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-dds/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-08-28 Version: 3.7.20
- Generated 2015-12-01 for `Dds`.

2024-08-01 Version: 3.7.19
- Generated 2015-12-01 for `Dds`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-dds/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-dds</artifactId>
<packaging>jar</packaging>
<version>3.7.19</version>
<version>3.7.20</version>
<name>aliyun-java-sdk-dds</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 @@ -56,7 +56,7 @@ public class Endpoint {
put("cn-hongkong-finance-pop", "mongodb.aliyuncs.com");
put("cn-shanghai", "mongodb.aliyuncs.com");
put("cn-shanghai-finance-1", "mongodb.aliyuncs.com");
put("cn-hongkong", "mongodb.aliyuncs.com");
put("cn-hongkong", "mongodb.cn-hongkong.aliyuncs.com");
put("eu-central-1", "mongodb.eu-central-1.aliyuncs.com");
put("cn-shenzhen", "mongodb.aliyuncs.com");
put("cn-zhengzhou-nebula-1", "mongodb.aliyuncs.com");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,8 @@ public static class MongosAttribute {

private String vpcCloudInstanceId;

private String lockMode;

private Integer maxIOPS;

private String vSwitchId;
Expand Down Expand Up @@ -725,6 +727,14 @@ public void setVpcCloudInstanceId(String vpcCloudInstanceId) {
this.vpcCloudInstanceId = vpcCloudInstanceId;
}

public String getLockMode() {
return this.lockMode;
}

public void setLockMode(String lockMode) {
this.lockMode = lockMode;
}

public Integer getMaxIOPS() {
return this.maxIOPS;
}
Expand Down Expand Up @@ -808,6 +818,8 @@ public void setStatus(String status) {

public static class ShardAttribute {

private String lockMode;

private Integer maxIOPS;

private String connectString;
Expand All @@ -830,6 +842,14 @@ public static class ShardAttribute {

private String maxDiskMbps;

public String getLockMode() {
return this.lockMode;
}

public void setLockMode(String lockMode) {
this.lockMode = lockMode;
}

public Integer getMaxIOPS() {
return this.maxIOPS;
}
Expand Down Expand Up @@ -923,6 +943,8 @@ public static class ConfigserverAttribute {

private Integer maxIOPS;

private String lockMode;

private String connectString;

private String nodeClass;
Expand All @@ -947,6 +969,14 @@ public void setMaxIOPS(Integer maxIOPS) {
this.maxIOPS = maxIOPS;
}

public String getLockMode() {
return this.lockMode;
}

public void setLockMode(String lockMode) {
this.lockMode = lockMode;
}

public String getConnectString() {
return this.connectString;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ public static DescribeDBInstanceAttributeResponse unmarshall(DescribeDBInstanceA
for (int j = 0; j < _ctx.lengthValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].MongosList.Length"); j++) {
MongosAttribute mongosAttribute = new MongosAttribute();
mongosAttribute.setVpcCloudInstanceId(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].MongosList["+ j +"].VpcCloudInstanceId"));
mongosAttribute.setLockMode(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].MongosList["+ j +"].LockMode"));
mongosAttribute.setMaxIOPS(_ctx.integerValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].MongosList["+ j +"].MaxIOPS"));
mongosAttribute.setVSwitchId(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].MongosList["+ j +"].VSwitchId"));
mongosAttribute.setNodeClass(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].MongosList["+ j +"].NodeClass"));
Expand All @@ -134,6 +135,7 @@ public static DescribeDBInstanceAttributeResponse unmarshall(DescribeDBInstanceA
List<ShardAttribute> shardList = new ArrayList<ShardAttribute>();
for (int j = 0; j < _ctx.lengthValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ShardList.Length"); j++) {
ShardAttribute shardAttribute = new ShardAttribute();
shardAttribute.setLockMode(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ShardList["+ j +"].LockMode"));
shardAttribute.setMaxIOPS(_ctx.integerValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ShardList["+ j +"].MaxIOPS"));
shardAttribute.setConnectString(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ShardList["+ j +"].ConnectString"));
shardAttribute.setNodeClass(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ShardList["+ j +"].NodeClass"));
Expand All @@ -154,6 +156,7 @@ public static DescribeDBInstanceAttributeResponse unmarshall(DescribeDBInstanceA
for (int j = 0; j < _ctx.lengthValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ConfigserverList.Length"); j++) {
ConfigserverAttribute configserverAttribute = new ConfigserverAttribute();
configserverAttribute.setMaxIOPS(_ctx.integerValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ConfigserverList["+ j +"].MaxIOPS"));
configserverAttribute.setLockMode(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ConfigserverList["+ j +"].LockMode"));
configserverAttribute.setConnectString(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ConfigserverList["+ j +"].ConnectString"));
configserverAttribute.setNodeClass(_ctx.stringValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ConfigserverList["+ j +"].NodeClass"));
configserverAttribute.setMaxConnections(_ctx.integerValue("DescribeDBInstanceAttributeResponse.DBInstances["+ i +"].ConfigserverList["+ j +"].MaxConnections"));
Expand Down

0 comments on commit dac3c34

Please sign in to comment.