Skip to content

Commit 4c44c27

Browse files
committed
Generated 2015-12-01 for Dds.
1 parent ccd499b commit 4c44c27

File tree

35 files changed

+1717
-9
lines changed

35 files changed

+1717
-9
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-04-08 Version: 3.7.22
2+
- Generated 2015-12-01 for `Dds`.
3+
14
2024-11-05 Version: 3.7.21
25
- Generated 2015-12-01 for `Dds`.
36

aliyun-java-sdk-dds/pom.xml

Lines changed: 2 additions & 2 deletions
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.21</version>
7+
<version>3.7.22</version>
88
<name>aliyun-java-sdk-dds</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -91,7 +91,7 @@ http://www.aliyun.com</description>
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-gpg-plugin</artifactId>
94-
<version>1.5</version>
94+
<version>3.1.0</version>
9595
<executions>
9696
<execution>
9797
<id>sign-artifacts</id>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Endpoint {
2424
put("cn-beijing", "mongodb.aliyuncs.com");
2525
put("cn-shanghai-inner", "mongodb.aliyuncs.com");
2626
put("cn-hangzhou-internal-prod-1", "mongodb.aliyuncs.com");
27-
put("cn-north-2-gov-1", "mongodb.aliyuncs.com");
27+
put("cn-north-2-gov-1", "mongodb.cn-north-2-gov-1.aliyuncs.com");
2828
put("cn-yushanfang", "mongodb.aliyuncs.com");
2929
put("cn-qingdao-nebula", "mongodb.aliyuncs.com");
3030
put("cn-heyuan", "mongodb.aliyuncs.com");
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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 CheckServiceLinkedRoleRequest extends RpcAcsRequest<CheckServiceLinkedRoleResponse> {
26+
27+
28+
private String resourceOwnerAccount;
29+
30+
private String ownerAccount;
31+
32+
private Long ownerId;
33+
public CheckServiceLinkedRoleRequest() {
34+
super("Dds", "2015-12-01", "CheckServiceLinkedRole", "dds");
35+
setMethod(MethodType.POST);
36+
try {
37+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
38+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
39+
} catch (Exception e) {}
40+
}
41+
42+
public String getResourceOwnerAccount() {
43+
return this.resourceOwnerAccount;
44+
}
45+
46+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
47+
this.resourceOwnerAccount = resourceOwnerAccount;
48+
if(resourceOwnerAccount != null){
49+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
50+
}
51+
}
52+
53+
public String getOwnerAccount() {
54+
return this.ownerAccount;
55+
}
56+
57+
public void setOwnerAccount(String ownerAccount) {
58+
this.ownerAccount = ownerAccount;
59+
if(ownerAccount != null){
60+
putQueryParameter("OwnerAccount", ownerAccount);
61+
}
62+
}
63+
64+
public Long getOwnerId() {
65+
return this.ownerId;
66+
}
67+
68+
public void setOwnerId(Long ownerId) {
69+
this.ownerId = ownerId;
70+
if(ownerId != null){
71+
putQueryParameter("OwnerId", ownerId.toString());
72+
}
73+
}
74+
75+
@Override
76+
public Class<CheckServiceLinkedRoleResponse> getResponseClass() {
77+
return CheckServiceLinkedRoleResponse.class;
78+
}
79+
80+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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.CheckServiceLinkedRoleResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CheckServiceLinkedRoleResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Boolean serviceLinkedRoleExists;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public Boolean getServiceLinkedRoleExists() {
40+
return this.serviceLinkedRoleExists;
41+
}
42+
43+
public void setServiceLinkedRoleExists(Boolean serviceLinkedRoleExists) {
44+
this.serviceLinkedRoleExists = serviceLinkedRoleExists;
45+
}
46+
47+
@Override
48+
public CheckServiceLinkedRoleResponse getInstance(UnmarshallerContext context) {
49+
return CheckServiceLinkedRoleResponseUnmarshaller.unmarshall(this, context);
50+
}
51+
52+
@Override
53+
public boolean checkShowJsonItemName() {
54+
return false;
55+
}
56+
}

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ public class CreateAccountRequest extends RpcAcsRequest<CreateAccountResponse> {
3737

3838
private Long ownerId;
3939

40-
private String accountPassword;
40+
private String accountPassword;
41+
42+
private String characterType;
4143
public CreateAccountRequest() {
4244
super("Dds", "2015-12-01", "CreateAccount", "dds");
4345
setMethod(MethodType.POST);
@@ -122,6 +124,17 @@ public void setAccountPassword(String accountPassword) {
122124
if(accountPassword != null){
123125
putQueryParameter("AccountPassword", accountPassword);
124126
}
127+
}
128+
129+
public String getCharacterType() {
130+
return this.characterType;
131+
}
132+
133+
public void setCharacterType(String characterType) {
134+
this.characterType = characterType;
135+
if(characterType != null){
136+
putQueryParameter("CharacterType", characterType);
137+
}
125138
}
126139

127140
@Override
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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 DescribeActiveOperationMaintenanceConfigRequest extends RpcAcsRequest<DescribeActiveOperationMaintenanceConfigResponse> {
26+
27+
28+
private Long resourceOwnerId;
29+
30+
private String resourceOwnerAccount;
31+
32+
private String ownerAccount;
33+
34+
private Long ownerId;
35+
public DescribeActiveOperationMaintenanceConfigRequest() {
36+
super("Dds", "2015-12-01", "DescribeActiveOperationMaintenanceConfig", "dds");
37+
setMethod(MethodType.POST);
38+
try {
39+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
40+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
41+
} catch (Exception e) {}
42+
}
43+
44+
public Long getResourceOwnerId() {
45+
return this.resourceOwnerId;
46+
}
47+
48+
public void setResourceOwnerId(Long resourceOwnerId) {
49+
this.resourceOwnerId = resourceOwnerId;
50+
if(resourceOwnerId != null){
51+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
52+
}
53+
}
54+
55+
public String getResourceOwnerAccount() {
56+
return this.resourceOwnerAccount;
57+
}
58+
59+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
60+
this.resourceOwnerAccount = resourceOwnerAccount;
61+
if(resourceOwnerAccount != null){
62+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
63+
}
64+
}
65+
66+
public String getOwnerAccount() {
67+
return this.ownerAccount;
68+
}
69+
70+
public void setOwnerAccount(String ownerAccount) {
71+
this.ownerAccount = ownerAccount;
72+
if(ownerAccount != null){
73+
putQueryParameter("OwnerAccount", ownerAccount);
74+
}
75+
}
76+
77+
public Long getOwnerId() {
78+
return this.ownerId;
79+
}
80+
81+
public void setOwnerId(Long ownerId) {
82+
this.ownerId = ownerId;
83+
if(ownerId != null){
84+
putQueryParameter("OwnerId", ownerId.toString());
85+
}
86+
}
87+
88+
@Override
89+
public Class<DescribeActiveOperationMaintenanceConfigResponse> getResponseClass() {
90+
return DescribeActiveOperationMaintenanceConfigResponse.class;
91+
}
92+
93+
}

0 commit comments

Comments
 (0)