Skip to content

Commit aa71b2d

Browse files
committed
Generated java-async 2014-08-15 for Rds.
1 parent 753604a commit aa71b2d

File tree

146 files changed

+9427
-851
lines changed

Some content is hidden

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

146 files changed

+9427
-851
lines changed

rds-20140815/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-11-03 Version: 1.4.19
2+
- Generated java-async 2014-08-15 for Rds.
3+
14
2023-10-21 Version: 1.4.18
25
- Generated java-async 2014-08-15 for Rds.
36

rds-20140815/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-rds20140815</artifactId>
6-
<version>1.4.18</version>
6+
<version>1.4.19</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-rds20140815</name>
99
<description>Alibaba Cloud Rds (20140815) Async SDK for Java

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/AsyncClient.java

Lines changed: 415 additions & 174 deletions
Large diffs are not rendered by default.

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/DefaultAsyncClient.java

Lines changed: 571 additions & 174 deletions
Large diffs are not rendered by default.

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/models/AddTagsToResourceRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public Builder tag(java.util.List < Tag> tag) {
205205
}
206206

207207
/**
208-
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must ensure that it is unique among different requests. The token can only contain ASCII characters and cannot exceed 64 characters in length.
208+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the generated token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
209209
*/
210210
public Builder clientToken(String clientToken) {
211211
this.putQueryParameter("ClientToken", clientToken);
@@ -214,7 +214,7 @@ public Builder clientToken(String clientToken) {
214214
}
215215

216216
/**
217-
* The ID of the instance.
217+
* The instance ID.
218218
* <p>
219219
*
220220
* > You can enter up to 30 instance IDs in a single request. If you enter more than one instance ID, you must separate the instance IDs with commas (,).
@@ -226,7 +226,7 @@ public Builder DBInstanceId(String DBInstanceId) {
226226
}
227227

228228
/**
229-
* The logon name of the RAM user.
229+
* OwnerAccount.
230230
*/
231231
public Builder ownerAccount(String ownerAccount) {
232232
this.putQueryParameter("OwnerAccount", ownerAccount);
@@ -244,7 +244,7 @@ public Builder ownerId(Long ownerId) {
244244
}
245245

246246
/**
247-
* The region ID of the instance. You can call the [DescribeRegions](~~26243~~) operation to query the most recent region list.
247+
* The region ID. You can call the [DescribeRegions](~~26243~~) operation to query the most recent region list.
248248
*/
249249
public Builder regionId(String regionId) {
250250
this.putQueryParameter("RegionId", regionId);
@@ -253,7 +253,7 @@ public Builder regionId(String regionId) {
253253
}
254254

255255
/**
256-
* ResourceGroupId.
256+
* The ID of the resource group.
257257
*/
258258
public Builder resourceGroupId(String resourceGroupId) {
259259
this.putQueryParameter("ResourceGroupId", resourceGroupId);
@@ -280,10 +280,10 @@ public Builder resourceOwnerId(Long resourceOwnerId) {
280280
}
281281

282282
/**
283-
* The tags that you want to bind. Each tag consists of a TagKey and a TagValue. You can specify up to five tags in a single request. Format: {"key1":"value1","key2":"value2"...}.
283+
* The tags that you want to add. Each tag consists of a tag key and a tag value. You can specify a maximum of five tags in the following format for each request: {"key1":"value1","key2":"value2"...}.
284284
* <p>
285285
*
286-
* > The TagKey is required, and the TagValue is optional.
286+
* > The tag key is required and the tag value is optional.
287287
*/
288288
public Builder tags(String tags) {
289289
this.putQueryParameter("Tags", tags);
@@ -292,7 +292,7 @@ public Builder tags(String tags) {
292292
}
293293

294294
/**
295-
* The ID of the proxy pattern.
295+
* The ID of the proxy mode.
296296
*/
297297
public Builder proxyId(String proxyId) {
298298
this.putQueryParameter("proxyId", proxyId);
@@ -346,15 +346,15 @@ public static final class Builder {
346346
private String value;
347347

348348
/**
349-
* The TagKey of the first tag that you want to bind. Each tag consists of a TagKey and a TagValue. You can specify up to five tags in a single request. The TagKey is required, and the TagValue is optional.
349+
* The tag key of the first tag that you want to add. Each tag consists of a tag key and a tag value. You can specify up to five tags in a single request. You cannot specify an empty string as the tag key. You can specify an empty string as the tag value.
350350
*/
351351
public Builder key(String key) {
352352
this.key = key;
353353
return this;
354354
}
355355

356356
/**
357-
* The TagValue of the first tag that you want to bind. Each tag consists of a TagKey and a TagValue. You can specify up to five tags in a single request. The TagKey is required, and the TagValue is optional.
357+
* The tag value of the first tag that you want to add. Each tag consists of a tag key and a tag value. You can specify up to five tags in a single request. You cannot specify an empty string as the tag key. You can specify an empty string as the tag value.
358358
*/
359359
public Builder value(String value) {
360360
this.value = value;

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/models/AddTagsToResourceResponseBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static final class Builder {
3838
private String requestId;
3939

4040
/**
41-
* The ID of the request.
41+
* The request ID.
4242
*/
4343
public Builder requestId(String requestId) {
4444
this.requestId = requestId;

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/models/CancelImportRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public Builder DBInstanceId(String DBInstanceId) {
151151
/**
152152
* The ID of the migration task.
153153
* <p>
154-
*
154+
*
155155
* > This parameter is returned when the migration task is started. For more information, see [ImportDatabaseBetweenInstances](~~26301~~).
156156
*/
157157
public Builder importId(Integer importId) {
@@ -179,7 +179,7 @@ public Builder ownerId(Long ownerId) {
179179
}
180180

181181
/**
182-
* ResourceGroupId.
182+
* The ID of the resource group.
183183
*/
184184
public Builder resourceGroupId(String resourceGroupId) {
185185
this.putQueryParameter("ResourceGroupId", resourceGroupId);

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/models/CancelImportResponseBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static final class Builder {
3838
private String requestId;
3939

4040
/**
41-
* The ID of the request.
41+
* The request ID.
4242
*/
4343
public Builder requestId(String requestId) {
4444
this.requestId = requestId;

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/models/CheckAccountNameAvailableRequest.java

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,25 @@ private Builder(CheckAccountNameAvailableRequest request) {
126126
}
127127

128128
/**
129-
* AccountName.
129+
* The username of the account.
130+
* <p>
131+
*
132+
* * The value must be unique.
133+
*
134+
* * The value must start with a lowercase letter, and end with a lowercase letter or a digit.
135+
*
136+
* * The value can contain lowercase letters, digits, and underscores (\_).
137+
*
138+
* * The length of the value must meet the following requirements:
139+
*
140+
* * If the instance runs MySQL 5.7 or MySQL 8.0, the value must be 2 to 32 characters in length.
141+
* * If the instance runs MySQL 5.6, the value must be 2 to 16 characters in length.
142+
* * If the instance runs SQL Server, the value must be 2 to 64 characters in length.
143+
* * If the instance runs PostgreSQL with cloud disks, the value must be 2 to 63 characters in length.
144+
* * If the instance runs PostgreSQL with local disks, the value must be 2 to 16 characters in length.
145+
* * If the instance runs MariaDB, the value must be 2 to 16 characters in length.
146+
*
147+
* * For more information about invalid characters, see [Forbidden keywords table](~~26317~~).
130148
*/
131149
public Builder accountName(String accountName) {
132150
this.putQueryParameter("AccountName", accountName);
@@ -135,7 +153,7 @@ public Builder accountName(String accountName) {
135153
}
136154

137155
/**
138-
* ClientToken.
156+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
139157
*/
140158
public Builder clientToken(String clientToken) {
141159
this.putQueryParameter("ClientToken", clientToken);
@@ -144,7 +162,10 @@ public Builder clientToken(String clientToken) {
144162
}
145163

146164
/**
147-
* DBInstanceId.
165+
* The instance ID. You can call the [DescribeDBInstances](~~610396~~) operation to query the ID of the instance.
166+
* <p>
167+
*
168+
* > This operation is not supported for instances that run SQL Server 2017 (cluster edition).
148169
*/
149170
public Builder DBInstanceId(String DBInstanceId) {
150171
this.putQueryParameter("DBInstanceId", DBInstanceId);

rds-20140815/src/main/java/com/aliyun/sdk/service/rds20140815/models/CheckAccountNameAvailableResponseBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static final class Builder {
3838
private String requestId;
3939

4040
/**
41-
* RequestId.
41+
* The request ID.
4242
*/
4343
public Builder requestId(String requestId) {
4444
this.requestId = requestId;

0 commit comments

Comments
 (0)