Skip to content

Commit 3f2929c

Browse files
committed
Generated 2015-12-01 for Dds.
1 parent b11d08c commit 3f2929c

25 files changed

+816
-4
lines changed

aliyun-java-sdk-dds/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-03 Version: 3.7.25
2+
- Generated 2015-12-01 for `Dds`.
3+
14
2025-07-31 Version: 3.7.23
25
- Generated 2015-12-01 for `Dds`.
36

aliyun-java-sdk-dds/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-dds</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.7.23</version>
7+
<version>3.7.25</version>
88
<name>aliyun-java-sdk-dds</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-dds/src/main/java/com/aliyuncs/dds/Endpoint.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public class Endpoint {
2828
put("cn-yushanfang", "mongodb.aliyuncs.com");
2929
put("cn-qingdao-nebula", "mongodb.aliyuncs.com");
3030
put("cn-heyuan", "mongodb.aliyuncs.com");
31-
put("na-south-1", "mongodb.na-south-1.aliyuncs.com");
3231
put("cn-beijing-finance-pop", "mongodb.aliyuncs.com");
3332
put("cn-wuhan", "mongodb.aliyuncs.com");
3433
put("cn-zhangjiakou", "mongodb.cn-zhangjiakou.aliyuncs.com");
@@ -56,7 +55,7 @@ public class Endpoint {
5655
put("cn-qingdao", "mongodb.aliyuncs.com");
5756
put("cn-hongkong-finance-pop", "mongodb.aliyuncs.com");
5857
put("cn-shanghai", "mongodb.aliyuncs.com");
59-
put("cn-shanghai-finance-1", "mongodb.aliyuncs.com");
58+
put("cn-shanghai-finance-1", "mongodb.cn-shanghai-finance-1.aliyuncs.com");
6059
put("cn-hongkong", "mongodb.cn-hongkong.aliyuncs.com");
6160
put("eu-central-1", "mongodb.eu-central-1.aliyuncs.com");
6261
put("cn-shenzhen", "mongodb.aliyuncs.com");
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.dds.model.v20151201;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.dds.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AllocateDBInstanceSrvNetworkAddressRequest extends RpcAcsRequest<AllocateDBInstanceSrvNetworkAddressResponse> {
26+
27+
28+
private Long resourceOwnerId;
29+
30+
private String dBInstanceId;
31+
32+
private String nodeId;
33+
34+
private String resourceOwnerAccount;
35+
36+
private String srvConnectionType;
37+
38+
private String ownerAccount;
39+
40+
private Long ownerId;
41+
public AllocateDBInstanceSrvNetworkAddressRequest() {
42+
super("Dds", "2015-12-01", "AllocateDBInstanceSrvNetworkAddress", "dds");
43+
setMethod(MethodType.POST);
44+
try {
45+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
46+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
47+
} catch (Exception e) {}
48+
}
49+
50+
public Long getResourceOwnerId() {
51+
return this.resourceOwnerId;
52+
}
53+
54+
public void setResourceOwnerId(Long resourceOwnerId) {
55+
this.resourceOwnerId = resourceOwnerId;
56+
if(resourceOwnerId != null){
57+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
58+
}
59+
}
60+
61+
public String getDBInstanceId() {
62+
return this.dBInstanceId;
63+
}
64+
65+
public void setDBInstanceId(String dBInstanceId) {
66+
this.dBInstanceId = dBInstanceId;
67+
if(dBInstanceId != null){
68+
putQueryParameter("DBInstanceId", dBInstanceId);
69+
}
70+
}
71+
72+
public String getNodeId() {
73+
return this.nodeId;
74+
}
75+
76+
public void setNodeId(String nodeId) {
77+
this.nodeId = nodeId;
78+
if(nodeId != null){
79+
putQueryParameter("NodeId", nodeId);
80+
}
81+
}
82+
83+
public String getResourceOwnerAccount() {
84+
return this.resourceOwnerAccount;
85+
}
86+
87+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
88+
this.resourceOwnerAccount = resourceOwnerAccount;
89+
if(resourceOwnerAccount != null){
90+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
91+
}
92+
}
93+
94+
public String getSrvConnectionType() {
95+
return this.srvConnectionType;
96+
}
97+
98+
public void setSrvConnectionType(String srvConnectionType) {
99+
this.srvConnectionType = srvConnectionType;
100+
if(srvConnectionType != null){
101+
putQueryParameter("SrvConnectionType", srvConnectionType);
102+
}
103+
}
104+
105+
public String getOwnerAccount() {
106+
return this.ownerAccount;
107+
}
108+
109+
public void setOwnerAccount(String ownerAccount) {
110+
this.ownerAccount = ownerAccount;
111+
if(ownerAccount != null){
112+
putQueryParameter("OwnerAccount", ownerAccount);
113+
}
114+
}
115+
116+
public Long getOwnerId() {
117+
return this.ownerId;
118+
}
119+
120+
public void setOwnerId(Long ownerId) {
121+
this.ownerId = ownerId;
122+
if(ownerId != null){
123+
putQueryParameter("OwnerId", ownerId.toString());
124+
}
125+
}
126+
127+
@Override
128+
public Class<AllocateDBInstanceSrvNetworkAddressResponse> getResponseClass() {
129+
return AllocateDBInstanceSrvNetworkAddressResponse.class;
130+
}
131+
132+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.dds.model.v20151201;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.dds.transform.v20151201.AllocateDBInstanceSrvNetworkAddressResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AllocateDBInstanceSrvNetworkAddressResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
public String getRequestId() {
30+
return this.requestId;
31+
}
32+
33+
public void setRequestId(String requestId) {
34+
this.requestId = requestId;
35+
}
36+
37+
@Override
38+
public AllocateDBInstanceSrvNetworkAddressResponse getInstance(UnmarshallerContext context) {
39+
return AllocateDBInstanceSrvNetworkAddressResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}

aliyun-java-sdk-dds/src/main/java/com/aliyuncs/dds/model/v20151201/CreateBackupResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ public class CreateBackupResponse extends AcsResponse {
2828

2929
private String requestId;
3030

31+
private String backupJobId;
32+
3133
public String getBackupId() {
3234
return this.backupId;
3335
}
@@ -44,6 +46,14 @@ public void setRequestId(String requestId) {
4446
this.requestId = requestId;
4547
}
4648

49+
public String getBackupJobId() {
50+
return this.backupJobId;
51+
}
52+
53+
public void setBackupJobId(String backupJobId) {
54+
this.backupJobId = backupJobId;
55+
}
56+
4757
@Override
4858
public CreateBackupResponse getInstance(UnmarshallerContext context) {
4959
return CreateBackupResponseUnmarshaller.unmarshall(this, context);

aliyun-java-sdk-dds/src/main/java/com/aliyuncs/dds/model/v20151201/DescribeActiveOperationTasksResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ public static class ItemsItem {
127127

128128
private Integer id;
129129

130+
private String taskParams;
131+
130132
private List<String> subInsNames;
131133

132134
public Integer getStatus() {
@@ -329,6 +331,14 @@ public void setId(Integer id) {
329331
this.id = id;
330332
}
331333

334+
public String getTaskParams() {
335+
return this.taskParams;
336+
}
337+
338+
public void setTaskParams(String taskParams) {
339+
this.taskParams = taskParams;
340+
}
341+
332342
public List<String> getSubInsNames() {
333343
return this.subInsNames;
334344
}

aliyun-java-sdk-dds/src/main/java/com/aliyuncs/dds/model/v20151201/DescribeBackupsRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
public class DescribeBackupsRequest extends RpcAcsRequest<DescribeBackupsResponse> {
2626

2727

28+
private String backupJobId;
29+
2830
private Long resourceOwnerId;
2931

3032
private String startTime;
@@ -33,6 +35,8 @@ public class DescribeBackupsRequest extends RpcAcsRequest<DescribeBackupsRespons
3335

3436
private Integer pageNumber;
3537

38+
private String resourceGroupId;
39+
3640
private Integer pageSize;
3741

3842
private String dBInstanceId;
@@ -59,6 +63,17 @@ public DescribeBackupsRequest() {
5963
} catch (Exception e) {}
6064
}
6165

66+
public String getBackupJobId() {
67+
return this.backupJobId;
68+
}
69+
70+
public void setBackupJobId(String backupJobId) {
71+
this.backupJobId = backupJobId;
72+
if(backupJobId != null){
73+
putQueryParameter("BackupJobId", backupJobId);
74+
}
75+
}
76+
6277
public Long getResourceOwnerId() {
6378
return this.resourceOwnerId;
6479
}
@@ -103,6 +118,17 @@ public void setPageNumber(Integer pageNumber) {
103118
}
104119
}
105120

121+
public String getResourceGroupId() {
122+
return this.resourceGroupId;
123+
}
124+
125+
public void setResourceGroupId(String resourceGroupId) {
126+
this.resourceGroupId = resourceGroupId;
127+
if(resourceGroupId != null){
128+
putQueryParameter("ResourceGroupId", resourceGroupId);
129+
}
130+
}
131+
106132
public Integer getPageSize() {
107133
return this.pageSize;
108134
}

aliyun-java-sdk-dds/src/main/java/com/aliyuncs/dds/model/v20151201/DescribeClusterBackupsRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,16 @@
2525
public class DescribeClusterBackupsRequest extends RpcAcsRequest<DescribeClusterBackupsResponse> {
2626

2727

28+
private String backupJobId;
29+
2830
private Long resourceOwnerId;
2931

3032
private String startTime;
3133

3234
private String srcRegion;
3335

36+
private String resourceGroupId;
37+
3438
private Integer pageSize;
3539

3640
private String dBInstanceId;
@@ -59,6 +63,17 @@ public DescribeClusterBackupsRequest() {
5963
} catch (Exception e) {}
6064
}
6165

66+
public String getBackupJobId() {
67+
return this.backupJobId;
68+
}
69+
70+
public void setBackupJobId(String backupJobId) {
71+
this.backupJobId = backupJobId;
72+
if(backupJobId != null){
73+
putQueryParameter("BackupJobId", backupJobId);
74+
}
75+
}
76+
6277
public Long getResourceOwnerId() {
6378
return this.resourceOwnerId;
6479
}
@@ -92,6 +107,17 @@ public void setSrcRegion(String srcRegion) {
92107
}
93108
}
94109

110+
public String getResourceGroupId() {
111+
return this.resourceGroupId;
112+
}
113+
114+
public void setResourceGroupId(String resourceGroupId) {
115+
this.resourceGroupId = resourceGroupId;
116+
if(resourceGroupId != null){
117+
putQueryParameter("ResourceGroupId", resourceGroupId);
118+
}
119+
}
120+
95121
public Integer getPageSize() {
96122
return this.pageSize;
97123
}

0 commit comments

Comments
 (0)