Skip to content

Commit 86b0b24

Browse files
committed
Generated 2014-08-15 for Rds.
1 parent 931e4b4 commit 86b0b24

File tree

597 files changed

+29636
-9122
lines changed

Some content is hidden

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

597 files changed

+29636
-9122
lines changed

aliyun-java-sdk-rds/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-22 Version: 2.7.55
2+
- Generated 2014-08-15 for `Rds`.
3+
14
2024-08-13 Version: 2.7.54
25
- Support RDS Custom.
36

aliyun-java-sdk-rds/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-rds</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.7.54</version>
7+
<version>2.7.55</version>
88
<name>aliyun-java-sdk-rds</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>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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.rds.model.v20140815;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.rds.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AcceptRCInquiredSystemEventRequest extends RpcAcsRequest<AcceptRCInquiredSystemEventResponse> {
26+
27+
28+
private String eventId;
29+
public AcceptRCInquiredSystemEventRequest() {
30+
super("Rds", "2014-08-15", "AcceptRCInquiredSystemEvent", "rds");
31+
setMethod(MethodType.POST);
32+
try {
33+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
34+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
35+
} catch (Exception e) {}
36+
}
37+
38+
public String getEventId() {
39+
return this.eventId;
40+
}
41+
42+
public void setEventId(String eventId) {
43+
this.eventId = eventId;
44+
if(eventId != null){
45+
putQueryParameter("EventId", eventId);
46+
}
47+
}
48+
49+
@Override
50+
public Class<AcceptRCInquiredSystemEventResponse> getResponseClass() {
51+
return AcceptRCInquiredSystemEventResponse.class;
52+
}
53+
54+
}
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.rds.model.v20140815;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.rds.transform.v20140815.AcceptRCInquiredSystemEventResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AcceptRCInquiredSystemEventResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String orderId;
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 String getOrderId() {
40+
return this.orderId;
41+
}
42+
43+
public void setOrderId(String orderId) {
44+
this.orderId = orderId;
45+
}
46+
47+
@Override
48+
public AcceptRCInquiredSystemEventResponse getInstance(UnmarshallerContext context) {
49+
return AcceptRCInquiredSystemEventResponseUnmarshaller.unmarshall(this, context);
50+
}
51+
52+
@Override
53+
public boolean checkShowJsonItemName() {
54+
return false;
55+
}
56+
}

aliyun-java-sdk-rds/src/main/java/com/aliyuncs/rds/model/v20140815/ActivateMigrationTargetInstanceResponse.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public class ActivateMigrationTargetInstanceResponse extends AcsResponse {
2828

2929
private String requestId;
3030

31-
private Long taskId;
32-
3331
private String sourceIpAddress;
3432

3533
private Long sourcePort;
3634

35+
private Long taskId;
36+
3737
public String getDBInstanceName() {
3838
return this.dBInstanceName;
3939
}
@@ -50,14 +50,6 @@ public void setRequestId(String requestId) {
5050
this.requestId = requestId;
5151
}
5252

53-
public Long getTaskId() {
54-
return this.taskId;
55-
}
56-
57-
public void setTaskId(Long taskId) {
58-
this.taskId = taskId;
59-
}
60-
6153
public String getSourceIpAddress() {
6254
return this.sourceIpAddress;
6355
}
@@ -74,6 +66,14 @@ public void setSourcePort(Long sourcePort) {
7466
this.sourcePort = sourcePort;
7567
}
7668

69+
public Long getTaskId() {
70+
return this.taskId;
71+
}
72+
73+
public void setTaskId(Long taskId) {
74+
this.taskId = taskId;
75+
}
76+
7777
@Override
7878
public ActivateMigrationTargetInstanceResponse getInstance(UnmarshallerContext context) {
7979
return ActivateMigrationTargetInstanceResponseUnmarshaller.unmarshall(this, context);

aliyun-java-sdk-rds/src/main/java/com/aliyuncs/rds/model/v20140815/AllocateInstancePublicConnectionResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,19 @@
2424
*/
2525
public class AllocateInstancePublicConnectionResponse extends AcsResponse {
2626

27+
private String connectionString;
28+
2729
private String dbInstanceName;
2830

2931
private String requestId;
3032

31-
private String connectionString;
33+
public String getConnectionString() {
34+
return this.connectionString;
35+
}
36+
37+
public void setConnectionString(String connectionString) {
38+
this.connectionString = connectionString;
39+
}
3240

3341
public String getDbInstanceName() {
3442
return this.dbInstanceName;
@@ -46,14 +54,6 @@ public void setRequestId(String requestId) {
4654
this.requestId = requestId;
4755
}
4856

49-
public String getConnectionString() {
50-
return this.connectionString;
51-
}
52-
53-
public void setConnectionString(String connectionString) {
54-
this.connectionString = connectionString;
55-
}
56-
5757
@Override
5858
public AllocateInstancePublicConnectionResponse getInstance(UnmarshallerContext context) {
5959
return AllocateInstancePublicConnectionResponseUnmarshaller.unmarshall(this, context);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.rds.model.v20140815;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.rds.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AssociateEipAddressWithRCInstanceRequest extends RpcAcsRequest<AssociateEipAddressWithRCInstanceResponse> {
26+
27+
28+
private String allocationId;
29+
30+
private String instanceId;
31+
public AssociateEipAddressWithRCInstanceRequest() {
32+
super("Rds", "2014-08-15", "AssociateEipAddressWithRCInstance", "rds");
33+
setMethod(MethodType.POST);
34+
try {
35+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
36+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
37+
} catch (Exception e) {}
38+
}
39+
40+
public String getAllocationId() {
41+
return this.allocationId;
42+
}
43+
44+
public void setAllocationId(String allocationId) {
45+
this.allocationId = allocationId;
46+
if(allocationId != null){
47+
putQueryParameter("AllocationId", allocationId);
48+
}
49+
}
50+
51+
public String getInstanceId() {
52+
return this.instanceId;
53+
}
54+
55+
public void setInstanceId(String instanceId) {
56+
this.instanceId = instanceId;
57+
if(instanceId != null){
58+
putQueryParameter("InstanceId", instanceId);
59+
}
60+
}
61+
62+
@Override
63+
public Class<AssociateEipAddressWithRCInstanceResponse> getResponseClass() {
64+
return AssociateEipAddressWithRCInstanceResponse.class;
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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.rds.model.v20140815;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.rds.transform.v20140815.AssociateEipAddressWithRCInstanceResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AssociateEipAddressWithRCInstanceResponse 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 AssociateEipAddressWithRCInstanceResponse getInstance(UnmarshallerContext context) {
39+
return AssociateEipAddressWithRCInstanceResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
42+
@Override
43+
public boolean checkShowJsonItemName() {
44+
return false;
45+
}
46+
}

0 commit comments

Comments
 (0)