@alicloud/rds20140815 2.7.2 → 2.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +374 -91
- package/dist/client.js +375 -91
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +377 -92
package/src/client.ts
CHANGED
|
@@ -29509,6 +29509,7 @@ export class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute ext
|
|
|
29509
29509
|
DBInstanceClass?: string;
|
|
29510
29510
|
DBInstanceClassType?: string;
|
|
29511
29511
|
DBInstanceDescription?: string;
|
|
29512
|
+
DBInstanceDiskUsed?: string;
|
|
29512
29513
|
DBInstanceId?: string;
|
|
29513
29514
|
DBInstanceMemory?: number;
|
|
29514
29515
|
DBInstanceNetType?: string;
|
|
@@ -29581,6 +29582,7 @@ export class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute ext
|
|
|
29581
29582
|
DBInstanceClass: 'DBInstanceClass',
|
|
29582
29583
|
DBInstanceClassType: 'DBInstanceClassType',
|
|
29583
29584
|
DBInstanceDescription: 'DBInstanceDescription',
|
|
29585
|
+
DBInstanceDiskUsed: 'DBInstanceDiskUsed',
|
|
29584
29586
|
DBInstanceId: 'DBInstanceId',
|
|
29585
29587
|
DBInstanceMemory: 'DBInstanceMemory',
|
|
29586
29588
|
DBInstanceNetType: 'DBInstanceNetType',
|
|
@@ -29656,6 +29658,7 @@ export class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute ext
|
|
|
29656
29658
|
DBInstanceClass: 'string',
|
|
29657
29659
|
DBInstanceClassType: 'string',
|
|
29658
29660
|
DBInstanceDescription: 'string',
|
|
29661
|
+
DBInstanceDiskUsed: 'string',
|
|
29659
29662
|
DBInstanceId: 'string',
|
|
29660
29663
|
DBInstanceMemory: 'number',
|
|
29661
29664
|
DBInstanceNetType: 'string',
|
|
@@ -32458,7 +32461,7 @@ export class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
32458
32461
|
regionId?: string;
|
|
32459
32462
|
remainTime?: number;
|
|
32460
32463
|
startTime?: string;
|
|
32461
|
-
status?:
|
|
32464
|
+
status?: string;
|
|
32462
32465
|
taskDetail?: string;
|
|
32463
32466
|
taskId?: string;
|
|
32464
32467
|
taskType?: string;
|
|
@@ -32505,7 +32508,7 @@ export class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
32505
32508
|
regionId: 'string',
|
|
32506
32509
|
remainTime: 'number',
|
|
32507
32510
|
startTime: 'string',
|
|
32508
|
-
status: '
|
|
32511
|
+
status: 'string',
|
|
32509
32512
|
taskDetail: 'string',
|
|
32510
32513
|
taskId: 'string',
|
|
32511
32514
|
taskType: 'string',
|
|
@@ -36906,6 +36909,17 @@ export default class Client extends OpenApi {
|
|
|
36906
36909
|
return await this.checkAccountNameAvailableWithOptions(request, runtime);
|
|
36907
36910
|
}
|
|
36908
36911
|
|
|
36912
|
+
/**
|
|
36913
|
+
* ### [](#)Supported database engines
|
|
36914
|
+
* * MySQL
|
|
36915
|
+
* * PostgreSQL
|
|
36916
|
+
* * SQL Server
|
|
36917
|
+
* * MariaDB
|
|
36918
|
+
*
|
|
36919
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
36920
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
36921
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
36922
|
+
*/
|
|
36909
36923
|
async checkCloudResourceAuthorizedWithOptions(request: CheckCloudResourceAuthorizedRequest, runtime: $Util.RuntimeOptions): Promise<CheckCloudResourceAuthorizedResponse> {
|
|
36910
36924
|
Util.validateModel(request);
|
|
36911
36925
|
let query = { };
|
|
@@ -36962,6 +36976,16 @@ export default class Client extends OpenApi {
|
|
|
36962
36976
|
return $tea.cast<CheckCloudResourceAuthorizedResponse>(await this.callApi(params, req, runtime), new CheckCloudResourceAuthorizedResponse({}));
|
|
36963
36977
|
}
|
|
36964
36978
|
|
|
36979
|
+
/**
|
|
36980
|
+
* ### [](#)Supported database engines
|
|
36981
|
+
* * MySQL
|
|
36982
|
+
* * PostgreSQL
|
|
36983
|
+
* * SQL Server
|
|
36984
|
+
* * MariaDB
|
|
36985
|
+
*
|
|
36986
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
36987
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
36988
|
+
*/
|
|
36965
36989
|
async checkCloudResourceAuthorized(request: CheckCloudResourceAuthorizedRequest): Promise<CheckCloudResourceAuthorizedResponse> {
|
|
36966
36990
|
let runtime = new $Util.RuntimeOptions({ });
|
|
36967
36991
|
return await this.checkCloudResourceAuthorizedWithOptions(request, runtime);
|
|
@@ -37184,6 +37208,14 @@ export default class Client extends OpenApi {
|
|
|
37184
37208
|
return await this.checkInstanceExistWithOptions(request, runtime);
|
|
37185
37209
|
}
|
|
37186
37210
|
|
|
37211
|
+
/**
|
|
37212
|
+
* ### [](#)Supported database engines
|
|
37213
|
+
* * PostgreSQL
|
|
37214
|
+
*
|
|
37215
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
37216
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
37217
|
+
* @return CheckServiceLinkedRoleResponse
|
|
37218
|
+
*/
|
|
37187
37219
|
async checkServiceLinkedRoleWithOptions(request: CheckServiceLinkedRoleRequest, runtime: $Util.RuntimeOptions): Promise<CheckServiceLinkedRoleResponse> {
|
|
37188
37220
|
Util.validateModel(request);
|
|
37189
37221
|
let query = { };
|
|
@@ -37228,6 +37260,13 @@ export default class Client extends OpenApi {
|
|
|
37228
37260
|
return $tea.cast<CheckServiceLinkedRoleResponse>(await this.callApi(params, req, runtime), new CheckServiceLinkedRoleResponse({}));
|
|
37229
37261
|
}
|
|
37230
37262
|
|
|
37263
|
+
/**
|
|
37264
|
+
* ### [](#)Supported database engines
|
|
37265
|
+
* * PostgreSQL
|
|
37266
|
+
*
|
|
37267
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
37268
|
+
* @return CheckServiceLinkedRoleResponse
|
|
37269
|
+
*/
|
|
37231
37270
|
async checkServiceLinkedRole(request: CheckServiceLinkedRoleRequest): Promise<CheckServiceLinkedRoleResponse> {
|
|
37232
37271
|
let runtime = new $Util.RuntimeOptions({ });
|
|
37233
37272
|
return await this.checkServiceLinkedRoleWithOptions(request, runtime);
|
|
@@ -39132,12 +39171,11 @@ export default class Client extends OpenApi {
|
|
|
39132
39171
|
}
|
|
39133
39172
|
|
|
39134
39173
|
/**
|
|
39135
|
-
* ###
|
|
39136
|
-
* *
|
|
39137
|
-
*
|
|
39138
|
-
*
|
|
39139
|
-
*
|
|
39140
|
-
* For more information, see [Create and release an ApsaraDB RDS global active database cluster](~~328592~~).
|
|
39174
|
+
* ### [](#)Supported database engine
|
|
39175
|
+
* * MySQL
|
|
39176
|
+
* ### [](#)References
|
|
39177
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
39178
|
+
* [Create and release an ApsaraDB RDS global active database cluster](~~328592~~)
|
|
39141
39179
|
*
|
|
39142
39180
|
* @param request CreateGADInstanceRequest
|
|
39143
39181
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -39200,12 +39238,11 @@ export default class Client extends OpenApi {
|
|
|
39200
39238
|
}
|
|
39201
39239
|
|
|
39202
39240
|
/**
|
|
39203
|
-
* ###
|
|
39204
|
-
* *
|
|
39205
|
-
*
|
|
39206
|
-
*
|
|
39207
|
-
*
|
|
39208
|
-
* For more information, see [Create and release an ApsaraDB RDS global active database cluster](~~328592~~).
|
|
39241
|
+
* ### [](#)Supported database engine
|
|
39242
|
+
* * MySQL
|
|
39243
|
+
* ### [](#)References
|
|
39244
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
39245
|
+
* [Create and release an ApsaraDB RDS global active database cluster](~~328592~~)
|
|
39209
39246
|
*
|
|
39210
39247
|
* @param request CreateGADInstanceRequest
|
|
39211
39248
|
* @return CreateGADInstanceResponse
|
|
@@ -40073,6 +40110,14 @@ export default class Client extends OpenApi {
|
|
|
40073
40110
|
return await this.createReadOnlyDBInstanceWithOptions(request, runtime);
|
|
40074
40111
|
}
|
|
40075
40112
|
|
|
40113
|
+
/**
|
|
40114
|
+
* ### [](#)Supported database engines
|
|
40115
|
+
* * MySQL
|
|
40116
|
+
*
|
|
40117
|
+
* @param request CreateSecretRequest
|
|
40118
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
40119
|
+
* @return CreateSecretResponse
|
|
40120
|
+
*/
|
|
40076
40121
|
async createSecretWithOptions(request: CreateSecretRequest, runtime: $Util.RuntimeOptions): Promise<CreateSecretResponse> {
|
|
40077
40122
|
Util.validateModel(request);
|
|
40078
40123
|
let query = { };
|
|
@@ -40145,6 +40190,13 @@ export default class Client extends OpenApi {
|
|
|
40145
40190
|
return $tea.cast<CreateSecretResponse>(await this.callApi(params, req, runtime), new CreateSecretResponse({}));
|
|
40146
40191
|
}
|
|
40147
40192
|
|
|
40193
|
+
/**
|
|
40194
|
+
* ### [](#)Supported database engines
|
|
40195
|
+
* * MySQL
|
|
40196
|
+
*
|
|
40197
|
+
* @param request CreateSecretRequest
|
|
40198
|
+
* @return CreateSecretResponse
|
|
40199
|
+
*/
|
|
40148
40200
|
async createSecret(request: CreateSecretRequest): Promise<CreateSecretResponse> {
|
|
40149
40201
|
let runtime = new $Util.RuntimeOptions({ });
|
|
40150
40202
|
return await this.createSecretWithOptions(request, runtime);
|
|
@@ -41528,9 +41580,7 @@ export default class Client extends OpenApi {
|
|
|
41528
41580
|
|
|
41529
41581
|
/**
|
|
41530
41582
|
* ### [](#)Supported database engines
|
|
41531
|
-
* MySQL
|
|
41532
|
-
* ### [](#)References
|
|
41533
|
-
* [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
|
|
41583
|
+
* * MySQL
|
|
41534
41584
|
*
|
|
41535
41585
|
* @param request DescibeImportsFromDatabaseRequest
|
|
41536
41586
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -41610,9 +41660,7 @@ export default class Client extends OpenApi {
|
|
|
41610
41660
|
|
|
41611
41661
|
/**
|
|
41612
41662
|
* ### [](#)Supported database engines
|
|
41613
|
-
* MySQL
|
|
41614
|
-
* ### [](#)References
|
|
41615
|
-
* [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
|
|
41663
|
+
* * MySQL
|
|
41616
41664
|
*
|
|
41617
41665
|
* @param request DescibeImportsFromDatabaseRequest
|
|
41618
41666
|
* @return DescibeImportsFromDatabaseResponse
|
|
@@ -42004,6 +42052,16 @@ export default class Client extends OpenApi {
|
|
|
42004
42052
|
return await this.describeAllWhitelistTemplateWithOptions(request, runtime);
|
|
42005
42053
|
}
|
|
42006
42054
|
|
|
42055
|
+
/**
|
|
42056
|
+
* ### [](#)Supported database engines
|
|
42057
|
+
* MySQL
|
|
42058
|
+
* ### [](#)References
|
|
42059
|
+
* [Create and view an analytic instance](~~155180~~)
|
|
42060
|
+
*
|
|
42061
|
+
* @param request DescribeAnalyticdbByPrimaryDBInstanceRequest
|
|
42062
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
42063
|
+
* @return DescribeAnalyticdbByPrimaryDBInstanceResponse
|
|
42064
|
+
*/
|
|
42007
42065
|
async describeAnalyticdbByPrimaryDBInstanceWithOptions(request: DescribeAnalyticdbByPrimaryDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAnalyticdbByPrimaryDBInstanceResponse> {
|
|
42008
42066
|
Util.validateModel(request);
|
|
42009
42067
|
let query = { };
|
|
@@ -42044,6 +42102,15 @@ export default class Client extends OpenApi {
|
|
|
42044
42102
|
return $tea.cast<DescribeAnalyticdbByPrimaryDBInstanceResponse>(await this.callApi(params, req, runtime), new DescribeAnalyticdbByPrimaryDBInstanceResponse({}));
|
|
42045
42103
|
}
|
|
42046
42104
|
|
|
42105
|
+
/**
|
|
42106
|
+
* ### [](#)Supported database engines
|
|
42107
|
+
* MySQL
|
|
42108
|
+
* ### [](#)References
|
|
42109
|
+
* [Create and view an analytic instance](~~155180~~)
|
|
42110
|
+
*
|
|
42111
|
+
* @param request DescribeAnalyticdbByPrimaryDBInstanceRequest
|
|
42112
|
+
* @return DescribeAnalyticdbByPrimaryDBInstanceResponse
|
|
42113
|
+
*/
|
|
42047
42114
|
async describeAnalyticdbByPrimaryDBInstance(request: DescribeAnalyticdbByPrimaryDBInstanceRequest): Promise<DescribeAnalyticdbByPrimaryDBInstanceResponse> {
|
|
42048
42115
|
let runtime = new $Util.RuntimeOptions({ });
|
|
42049
42116
|
return await this.describeAnalyticdbByPrimaryDBInstanceWithOptions(request, runtime);
|
|
@@ -44396,6 +44463,17 @@ export default class Client extends OpenApi {
|
|
|
44396
44463
|
return await this.describeDBInstanceNetInfoWithOptions(request, runtime);
|
|
44397
44464
|
}
|
|
44398
44465
|
|
|
44466
|
+
/**
|
|
44467
|
+
* ### [](#)Supported database engines
|
|
44468
|
+
* * MySQL
|
|
44469
|
+
* * PostgreSQL
|
|
44470
|
+
* * SQL Server
|
|
44471
|
+
* * MariaDB
|
|
44472
|
+
*
|
|
44473
|
+
* @param request DescribeDBInstanceNetInfoForChannelRequest
|
|
44474
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
44475
|
+
* @return DescribeDBInstanceNetInfoForChannelResponse
|
|
44476
|
+
*/
|
|
44399
44477
|
async describeDBInstanceNetInfoForChannelWithOptions(request: DescribeDBInstanceNetInfoForChannelRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceNetInfoForChannelResponse> {
|
|
44400
44478
|
Util.validateModel(request);
|
|
44401
44479
|
let query = { };
|
|
@@ -44448,6 +44526,16 @@ export default class Client extends OpenApi {
|
|
|
44448
44526
|
return $tea.cast<DescribeDBInstanceNetInfoForChannelResponse>(await this.callApi(params, req, runtime), new DescribeDBInstanceNetInfoForChannelResponse({}));
|
|
44449
44527
|
}
|
|
44450
44528
|
|
|
44529
|
+
/**
|
|
44530
|
+
* ### [](#)Supported database engines
|
|
44531
|
+
* * MySQL
|
|
44532
|
+
* * PostgreSQL
|
|
44533
|
+
* * SQL Server
|
|
44534
|
+
* * MariaDB
|
|
44535
|
+
*
|
|
44536
|
+
* @param request DescribeDBInstanceNetInfoForChannelRequest
|
|
44537
|
+
* @return DescribeDBInstanceNetInfoForChannelResponse
|
|
44538
|
+
*/
|
|
44451
44539
|
async describeDBInstanceNetInfoForChannel(request: DescribeDBInstanceNetInfoForChannelRequest): Promise<DescribeDBInstanceNetInfoForChannelResponse> {
|
|
44452
44540
|
let runtime = new $Util.RuntimeOptions({ });
|
|
44453
44541
|
return await this.describeDBInstanceNetInfoForChannelWithOptions(request, runtime);
|
|
@@ -46136,7 +46224,11 @@ export default class Client extends OpenApi {
|
|
|
46136
46224
|
}
|
|
46137
46225
|
|
|
46138
46226
|
/**
|
|
46139
|
-
*
|
|
46227
|
+
* ### [](#)Supported database engines
|
|
46228
|
+
* * MySQL
|
|
46229
|
+
* * PostgreSQL
|
|
46230
|
+
* * SQL Server
|
|
46231
|
+
* * MariaDB
|
|
46140
46232
|
*
|
|
46141
46233
|
* @param request DescribeErrorLogsRequest
|
|
46142
46234
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46199,7 +46291,11 @@ export default class Client extends OpenApi {
|
|
|
46199
46291
|
}
|
|
46200
46292
|
|
|
46201
46293
|
/**
|
|
46202
|
-
*
|
|
46294
|
+
* ### [](#)Supported database engines
|
|
46295
|
+
* * MySQL
|
|
46296
|
+
* * PostgreSQL
|
|
46297
|
+
* * SQL Server
|
|
46298
|
+
* * MariaDB
|
|
46203
46299
|
*
|
|
46204
46300
|
* @param request DescribeErrorLogsRequest
|
|
46205
46301
|
* @return DescribeErrorLogsResponse
|
|
@@ -46210,8 +46306,17 @@ export default class Client extends OpenApi {
|
|
|
46210
46306
|
}
|
|
46211
46307
|
|
|
46212
46308
|
/**
|
|
46213
|
-
*
|
|
46214
|
-
*
|
|
46309
|
+
* ### [](#)Supported database engines
|
|
46310
|
+
* * MySQL
|
|
46311
|
+
* * PostgreSQL
|
|
46312
|
+
* * SQL Server
|
|
46313
|
+
* * MariaDB
|
|
46314
|
+
* ### [](#)References
|
|
46315
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
46316
|
+
* * [Historical events of an ApsaraDB RDS for MySQL instance](~~129759~~)
|
|
46317
|
+
* * [Historical events of an ApsaraDB RDS for PostgreSQL instance](~~131008~~)
|
|
46318
|
+
* * [Historical events of an ApsaraDB RDS for SQL Server instance](~~131013~~)
|
|
46319
|
+
* * [Historical events of an ApsaraDB RDS for MariaDB instance](~~131010~~)
|
|
46215
46320
|
*
|
|
46216
46321
|
* @param request DescribeEventsRequest
|
|
46217
46322
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46270,8 +46375,17 @@ export default class Client extends OpenApi {
|
|
|
46270
46375
|
}
|
|
46271
46376
|
|
|
46272
46377
|
/**
|
|
46273
|
-
*
|
|
46274
|
-
*
|
|
46378
|
+
* ### [](#)Supported database engines
|
|
46379
|
+
* * MySQL
|
|
46380
|
+
* * PostgreSQL
|
|
46381
|
+
* * SQL Server
|
|
46382
|
+
* * MariaDB
|
|
46383
|
+
* ### [](#)References
|
|
46384
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
46385
|
+
* * [Historical events of an ApsaraDB RDS for MySQL instance](~~129759~~)
|
|
46386
|
+
* * [Historical events of an ApsaraDB RDS for PostgreSQL instance](~~131008~~)
|
|
46387
|
+
* * [Historical events of an ApsaraDB RDS for SQL Server instance](~~131013~~)
|
|
46388
|
+
* * [Historical events of an ApsaraDB RDS for MariaDB instance](~~131010~~)
|
|
46275
46389
|
*
|
|
46276
46390
|
* @param request DescribeEventsRequest
|
|
46277
46391
|
* @return DescribeEventsResponse
|
|
@@ -46334,7 +46448,13 @@ export default class Client extends OpenApi {
|
|
|
46334
46448
|
}
|
|
46335
46449
|
|
|
46336
46450
|
/**
|
|
46337
|
-
*
|
|
46451
|
+
* ### [](#)Supported database engines
|
|
46452
|
+
* * MySQL
|
|
46453
|
+
* * PostgreSQL
|
|
46454
|
+
* * SQL Server
|
|
46455
|
+
* * MariaDB
|
|
46456
|
+
* ### [](#)References
|
|
46457
|
+
* [What is availability detection?](~~207467~~)
|
|
46338
46458
|
*
|
|
46339
46459
|
* @param request DescribeHADiagnoseConfigRequest
|
|
46340
46460
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46381,7 +46501,13 @@ export default class Client extends OpenApi {
|
|
|
46381
46501
|
}
|
|
46382
46502
|
|
|
46383
46503
|
/**
|
|
46384
|
-
*
|
|
46504
|
+
* ### [](#)Supported database engines
|
|
46505
|
+
* * MySQL
|
|
46506
|
+
* * PostgreSQL
|
|
46507
|
+
* * SQL Server
|
|
46508
|
+
* * MariaDB
|
|
46509
|
+
* ### [](#)References
|
|
46510
|
+
* [What is availability detection?](~~207467~~)
|
|
46385
46511
|
*
|
|
46386
46512
|
* @param request DescribeHADiagnoseConfigRequest
|
|
46387
46513
|
* @return DescribeHADiagnoseConfigResponse
|
|
@@ -46392,8 +46518,11 @@ export default class Client extends OpenApi {
|
|
|
46392
46518
|
}
|
|
46393
46519
|
|
|
46394
46520
|
/**
|
|
46395
|
-
*
|
|
46396
|
-
*
|
|
46521
|
+
* ### [](#)Supported database engines
|
|
46522
|
+
* * MySQL
|
|
46523
|
+
* * PostgreSQL
|
|
46524
|
+
* * SQL Server
|
|
46525
|
+
* * MariaDB
|
|
46397
46526
|
*
|
|
46398
46527
|
* @param request DescribeHASwitchConfigRequest
|
|
46399
46528
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46440,8 +46569,11 @@ export default class Client extends OpenApi {
|
|
|
46440
46569
|
}
|
|
46441
46570
|
|
|
46442
46571
|
/**
|
|
46443
|
-
*
|
|
46444
|
-
*
|
|
46572
|
+
* ### [](#)Supported database engines
|
|
46573
|
+
* * MySQL
|
|
46574
|
+
* * PostgreSQL
|
|
46575
|
+
* * SQL Server
|
|
46576
|
+
* * MariaDB
|
|
46445
46577
|
*
|
|
46446
46578
|
* @param request DescribeHASwitchConfigRequest
|
|
46447
46579
|
* @return DescribeHASwitchConfigResponse
|
|
@@ -46700,6 +46832,17 @@ export default class Client extends OpenApi {
|
|
|
46700
46832
|
return await this.describeHostWebShellWithOptions(request, runtime);
|
|
46701
46833
|
}
|
|
46702
46834
|
|
|
46835
|
+
/**
|
|
46836
|
+
* ### [](#)Supported database engines
|
|
46837
|
+
* * MySQL
|
|
46838
|
+
* * PostgreSQL
|
|
46839
|
+
* * SQL Server
|
|
46840
|
+
* * MariaDB
|
|
46841
|
+
*
|
|
46842
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
46843
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
46844
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
46845
|
+
*/
|
|
46703
46846
|
async describeInstanceAutoRenewalAttributeWithOptions(request: DescribeInstanceAutoRenewalAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceAutoRenewalAttributeResponse> {
|
|
46704
46847
|
Util.validateModel(request);
|
|
46705
46848
|
let query = { };
|
|
@@ -46760,6 +46903,16 @@ export default class Client extends OpenApi {
|
|
|
46760
46903
|
return $tea.cast<DescribeInstanceAutoRenewalAttributeResponse>(await this.callApi(params, req, runtime), new DescribeInstanceAutoRenewalAttributeResponse({}));
|
|
46761
46904
|
}
|
|
46762
46905
|
|
|
46906
|
+
/**
|
|
46907
|
+
* ### [](#)Supported database engines
|
|
46908
|
+
* * MySQL
|
|
46909
|
+
* * PostgreSQL
|
|
46910
|
+
* * SQL Server
|
|
46911
|
+
* * MariaDB
|
|
46912
|
+
*
|
|
46913
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
46914
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
46915
|
+
*/
|
|
46763
46916
|
async describeInstanceAutoRenewalAttribute(request: DescribeInstanceAutoRenewalAttributeRequest): Promise<DescribeInstanceAutoRenewalAttributeResponse> {
|
|
46764
46917
|
let runtime = new $Util.RuntimeOptions({ });
|
|
46765
46918
|
return await this.describeInstanceAutoRenewalAttributeWithOptions(request, runtime);
|
|
@@ -46771,7 +46924,8 @@ export default class Client extends OpenApi {
|
|
|
46771
46924
|
* * PostgreSQL
|
|
46772
46925
|
* * SQL Server
|
|
46773
46926
|
* ### [](#)References
|
|
46774
|
-
*
|
|
46927
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
46928
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
46775
46929
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
46776
46930
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
46777
46931
|
*
|
|
@@ -46825,7 +46979,8 @@ export default class Client extends OpenApi {
|
|
|
46825
46979
|
* * PostgreSQL
|
|
46826
46980
|
* * SQL Server
|
|
46827
46981
|
* ### [](#)References
|
|
46828
|
-
*
|
|
46982
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
46983
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
46829
46984
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
46830
46985
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
46831
46986
|
*
|
|
@@ -48718,10 +48873,10 @@ export default class Client extends OpenApi {
|
|
|
48718
48873
|
}
|
|
48719
48874
|
|
|
48720
48875
|
/**
|
|
48721
|
-
*
|
|
48876
|
+
* ### [](#)Supported database engines
|
|
48722
48877
|
* * MySQL
|
|
48723
|
-
* * SQL Server 2008 R2
|
|
48724
48878
|
* * PostgreSQL
|
|
48879
|
+
* * SQL Server
|
|
48725
48880
|
*
|
|
48726
48881
|
* @param request DescribeSQLCollectorPolicyRequest
|
|
48727
48882
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -48776,10 +48931,10 @@ export default class Client extends OpenApi {
|
|
|
48776
48931
|
}
|
|
48777
48932
|
|
|
48778
48933
|
/**
|
|
48779
|
-
*
|
|
48934
|
+
* ### [](#)Supported database engines
|
|
48780
48935
|
* * MySQL
|
|
48781
|
-
* * SQL Server 2008 R2
|
|
48782
48936
|
* * PostgreSQL
|
|
48937
|
+
* * SQL Server
|
|
48783
48938
|
*
|
|
48784
48939
|
* @param request DescribeSQLCollectorPolicyRequest
|
|
48785
48940
|
* @return DescribeSQLCollectorPolicyResponse
|
|
@@ -49251,7 +49406,8 @@ export default class Client extends OpenApi {
|
|
|
49251
49406
|
}
|
|
49252
49407
|
|
|
49253
49408
|
/**
|
|
49254
|
-
*
|
|
49409
|
+
* ### [](#)Supported database engines
|
|
49410
|
+
* * PostgreSQL
|
|
49255
49411
|
*
|
|
49256
49412
|
* @param request DescribeSlotsRequest
|
|
49257
49413
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -49306,7 +49462,8 @@ export default class Client extends OpenApi {
|
|
|
49306
49462
|
}
|
|
49307
49463
|
|
|
49308
49464
|
/**
|
|
49309
|
-
*
|
|
49465
|
+
* ### [](#)Supported database engines
|
|
49466
|
+
* * PostgreSQL
|
|
49310
49467
|
*
|
|
49311
49468
|
* @param request DescribeSlotsRequest
|
|
49312
49469
|
* @return DescribeSlotsResponse
|
|
@@ -49812,6 +49969,14 @@ export default class Client extends OpenApi {
|
|
|
49812
49969
|
return await this.describeUpgradeMajorVersionPrecheckTaskWithOptions(request, runtime);
|
|
49813
49970
|
}
|
|
49814
49971
|
|
|
49972
|
+
/**
|
|
49973
|
+
* ### [](#)Supported database engines
|
|
49974
|
+
* PostgreSQL
|
|
49975
|
+
*
|
|
49976
|
+
* @param request DescribeUpgradeMajorVersionTasksRequest
|
|
49977
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
49978
|
+
* @return DescribeUpgradeMajorVersionTasksResponse
|
|
49979
|
+
*/
|
|
49815
49980
|
async describeUpgradeMajorVersionTasksWithOptions(request: DescribeUpgradeMajorVersionTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUpgradeMajorVersionTasksResponse> {
|
|
49816
49981
|
Util.validateModel(request);
|
|
49817
49982
|
let query = { };
|
|
@@ -49868,6 +50033,13 @@ export default class Client extends OpenApi {
|
|
|
49868
50033
|
return $tea.cast<DescribeUpgradeMajorVersionTasksResponse>(await this.callApi(params, req, runtime), new DescribeUpgradeMajorVersionTasksResponse({}));
|
|
49869
50034
|
}
|
|
49870
50035
|
|
|
50036
|
+
/**
|
|
50037
|
+
* ### [](#)Supported database engines
|
|
50038
|
+
* PostgreSQL
|
|
50039
|
+
*
|
|
50040
|
+
* @param request DescribeUpgradeMajorVersionTasksRequest
|
|
50041
|
+
* @return DescribeUpgradeMajorVersionTasksResponse
|
|
50042
|
+
*/
|
|
49871
50043
|
async describeUpgradeMajorVersionTasks(request: DescribeUpgradeMajorVersionTasksRequest): Promise<DescribeUpgradeMajorVersionTasksResponse> {
|
|
49872
50044
|
let runtime = new $Util.RuntimeOptions({ });
|
|
49873
50045
|
return await this.describeUpgradeMajorVersionTasksWithOptions(request, runtime);
|
|
@@ -50933,7 +51105,9 @@ export default class Client extends OpenApi {
|
|
|
50933
51105
|
}
|
|
50934
51106
|
|
|
50935
51107
|
/**
|
|
50936
|
-
*
|
|
51108
|
+
* ### [](#)Supported database engines
|
|
51109
|
+
* * MySQL
|
|
51110
|
+
* ### [](#)Feature description
|
|
50937
51111
|
* * A full backup file contains the data of a self-managed MySQL database. You can restore the data of a self-managed MySQL database from a full backup file to an ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
|
|
50938
51112
|
* * Before you call the [CreateDBInstance](~~26228~~) operation to create an ApsaraDB RDS for MySQL instance into which you want to import full backup files, you can call this operation to query the IDs of full backup files.
|
|
50939
51113
|
* * You can call the [ImportUserBackupFile](~~260266~~) operation to import a full backup file into an ApsaraDB RDS for MySQL instance.
|
|
@@ -51003,7 +51177,9 @@ export default class Client extends OpenApi {
|
|
|
51003
51177
|
}
|
|
51004
51178
|
|
|
51005
51179
|
/**
|
|
51006
|
-
*
|
|
51180
|
+
* ### [](#)Supported database engines
|
|
51181
|
+
* * MySQL
|
|
51182
|
+
* ### [](#)Feature description
|
|
51007
51183
|
* * A full backup file contains the data of a self-managed MySQL database. You can restore the data of a self-managed MySQL database from a full backup file to an ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
|
|
51008
51184
|
* * Before you call the [CreateDBInstance](~~26228~~) operation to create an ApsaraDB RDS for MySQL instance into which you want to import full backup files, you can call this operation to query the IDs of full backup files.
|
|
51009
51185
|
* * You can call the [ImportUserBackupFile](~~260266~~) operation to import a full backup file into an ApsaraDB RDS for MySQL instance.
|
|
@@ -52078,7 +52254,13 @@ export default class Client extends OpenApi {
|
|
|
52078
52254
|
}
|
|
52079
52255
|
|
|
52080
52256
|
/**
|
|
52081
|
-
*
|
|
52257
|
+
* ### [](#)Supported database engines
|
|
52258
|
+
* * MySQL
|
|
52259
|
+
* * PostgreSQL
|
|
52260
|
+
* ### [](#)References
|
|
52261
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
52262
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for MySQL instance](~~96059~~)
|
|
52263
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for PostgreSQL instance](~~146895~~)
|
|
52082
52264
|
*
|
|
52083
52265
|
* @param request ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
52084
52266
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52129,7 +52311,13 @@ export default class Client extends OpenApi {
|
|
|
52129
52311
|
}
|
|
52130
52312
|
|
|
52131
52313
|
/**
|
|
52132
|
-
*
|
|
52314
|
+
* ### [](#)Supported database engines
|
|
52315
|
+
* * MySQL
|
|
52316
|
+
* * PostgreSQL
|
|
52317
|
+
* ### [](#)References
|
|
52318
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
52319
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for MySQL instance](~~96059~~)
|
|
52320
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for PostgreSQL instance](~~146895~~)
|
|
52133
52321
|
*
|
|
52134
52322
|
* @param request ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
52135
52323
|
* @return ModifyDBInstanceAutoUpgradeMinorVersionResponse
|
|
@@ -52140,12 +52328,9 @@ export default class Client extends OpenApi {
|
|
|
52140
52328
|
}
|
|
52141
52329
|
|
|
52142
52330
|
/**
|
|
52143
|
-
* ### Supported database engines
|
|
52144
|
-
* *
|
|
52145
|
-
*
|
|
52146
|
-
* * RDS SQL Server
|
|
52147
|
-
* * RDS MariaDB
|
|
52148
|
-
* > : The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52331
|
+
* ### [](#)Supported database engines
|
|
52332
|
+
* * PostgreSQL
|
|
52333
|
+
* > The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52149
52334
|
*
|
|
52150
52335
|
* @param request ModifyDBInstanceConfigRequest
|
|
52151
52336
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52208,12 +52393,9 @@ export default class Client extends OpenApi {
|
|
|
52208
52393
|
}
|
|
52209
52394
|
|
|
52210
52395
|
/**
|
|
52211
|
-
* ### Supported database engines
|
|
52212
|
-
* *
|
|
52213
|
-
*
|
|
52214
|
-
* * RDS SQL Server
|
|
52215
|
-
* * RDS MariaDB
|
|
52216
|
-
* > : The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52396
|
+
* ### [](#)Supported database engines
|
|
52397
|
+
* * PostgreSQL
|
|
52398
|
+
* > The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52217
52399
|
*
|
|
52218
52400
|
* @param request ModifyDBInstanceConfigRequest
|
|
52219
52401
|
* @return ModifyDBInstanceConfigResponse
|
|
@@ -52387,6 +52569,17 @@ export default class Client extends OpenApi {
|
|
|
52387
52569
|
return await this.modifyDBInstanceConnectionStringWithOptions(request, runtime);
|
|
52388
52570
|
}
|
|
52389
52571
|
|
|
52572
|
+
/**
|
|
52573
|
+
* ### [](#)Supported database engines
|
|
52574
|
+
* * MySQL
|
|
52575
|
+
* ### [](#)References
|
|
52576
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52577
|
+
* * [Configure a data replication latency for a read-only ApsaraDB RDS for MySQL instance](~~96056~~)
|
|
52578
|
+
*
|
|
52579
|
+
* @param request ModifyDBInstanceDelayedReplicationTimeRequest
|
|
52580
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
52581
|
+
* @return ModifyDBInstanceDelayedReplicationTimeResponse
|
|
52582
|
+
*/
|
|
52390
52583
|
async modifyDBInstanceDelayedReplicationTimeWithOptions(request: ModifyDBInstanceDelayedReplicationTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceDelayedReplicationTimeResponse> {
|
|
52391
52584
|
Util.validateModel(request);
|
|
52392
52585
|
let query = { };
|
|
@@ -52427,13 +52620,33 @@ export default class Client extends OpenApi {
|
|
|
52427
52620
|
return $tea.cast<ModifyDBInstanceDelayedReplicationTimeResponse>(await this.callApi(params, req, runtime), new ModifyDBInstanceDelayedReplicationTimeResponse({}));
|
|
52428
52621
|
}
|
|
52429
52622
|
|
|
52623
|
+
/**
|
|
52624
|
+
* ### [](#)Supported database engines
|
|
52625
|
+
* * MySQL
|
|
52626
|
+
* ### [](#)References
|
|
52627
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52628
|
+
* * [Configure a data replication latency for a read-only ApsaraDB RDS for MySQL instance](~~96056~~)
|
|
52629
|
+
*
|
|
52630
|
+
* @param request ModifyDBInstanceDelayedReplicationTimeRequest
|
|
52631
|
+
* @return ModifyDBInstanceDelayedReplicationTimeResponse
|
|
52632
|
+
*/
|
|
52430
52633
|
async modifyDBInstanceDelayedReplicationTime(request: ModifyDBInstanceDelayedReplicationTimeRequest): Promise<ModifyDBInstanceDelayedReplicationTimeResponse> {
|
|
52431
52634
|
let runtime = new $Util.RuntimeOptions({ });
|
|
52432
52635
|
return await this.modifyDBInstanceDelayedReplicationTimeWithOptions(request, runtime);
|
|
52433
52636
|
}
|
|
52434
52637
|
|
|
52435
52638
|
/**
|
|
52436
|
-
*
|
|
52639
|
+
* ### [](#)Supported database engines
|
|
52640
|
+
* * MySQL
|
|
52641
|
+
* * PostgreSQL
|
|
52642
|
+
* * SQL Server
|
|
52643
|
+
* * MariaDB
|
|
52644
|
+
* ### [](#)References
|
|
52645
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52646
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for MySQL instance](~~414512~~)
|
|
52647
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for PostgreSQL instance](~~471512~~)
|
|
52648
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for SQL Server instance](~~416209~~)
|
|
52649
|
+
* * [Enable and disable release protection for an ApsaraDB RDS for MariaDB instance](~~414512~~)
|
|
52437
52650
|
*
|
|
52438
52651
|
* @param request ModifyDBInstanceDeletionProtectionRequest
|
|
52439
52652
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52488,7 +52701,17 @@ export default class Client extends OpenApi {
|
|
|
52488
52701
|
}
|
|
52489
52702
|
|
|
52490
52703
|
/**
|
|
52491
|
-
*
|
|
52704
|
+
* ### [](#)Supported database engines
|
|
52705
|
+
* * MySQL
|
|
52706
|
+
* * PostgreSQL
|
|
52707
|
+
* * SQL Server
|
|
52708
|
+
* * MariaDB
|
|
52709
|
+
* ### [](#)References
|
|
52710
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52711
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for MySQL instance](~~414512~~)
|
|
52712
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for PostgreSQL instance](~~471512~~)
|
|
52713
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for SQL Server instance](~~416209~~)
|
|
52714
|
+
* * [Enable and disable release protection for an ApsaraDB RDS for MariaDB instance](~~414512~~)
|
|
52492
52715
|
*
|
|
52493
52716
|
* @param request ModifyDBInstanceDeletionProtectionRequest
|
|
52494
52717
|
* @return ModifyDBInstanceDeletionProtectionResponse
|
|
@@ -52757,7 +52980,17 @@ export default class Client extends OpenApi {
|
|
|
52757
52980
|
}
|
|
52758
52981
|
|
|
52759
52982
|
/**
|
|
52760
|
-
*
|
|
52983
|
+
* ### [](#)Supported database engines
|
|
52984
|
+
* * MySQL
|
|
52985
|
+
* * PostgreSQL
|
|
52986
|
+
* * SQL Server
|
|
52987
|
+
* * MariaDB
|
|
52988
|
+
* ### [](#)References
|
|
52989
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
52990
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MySQL instance](~~96052~~)
|
|
52991
|
+
* * [Set a maintenance window for an ApsaraDB RDS for PostgreSQL instance](~~96799~~)
|
|
52992
|
+
* * [Set a maintenance window for an ApsaraDB RDS for SQL Sever instance](~~95657~~)
|
|
52993
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MariaDB instance](~~97473~~)
|
|
52761
52994
|
*
|
|
52762
52995
|
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
52763
52996
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52812,7 +53045,17 @@ export default class Client extends OpenApi {
|
|
|
52812
53045
|
}
|
|
52813
53046
|
|
|
52814
53047
|
/**
|
|
52815
|
-
*
|
|
53048
|
+
* ### [](#)Supported database engines
|
|
53049
|
+
* * MySQL
|
|
53050
|
+
* * PostgreSQL
|
|
53051
|
+
* * SQL Server
|
|
53052
|
+
* * MariaDB
|
|
53053
|
+
* ### [](#)References
|
|
53054
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
53055
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MySQL instance](~~96052~~)
|
|
53056
|
+
* * [Set a maintenance window for an ApsaraDB RDS for PostgreSQL instance](~~96799~~)
|
|
53057
|
+
* * [Set a maintenance window for an ApsaraDB RDS for SQL Sever instance](~~95657~~)
|
|
53058
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MariaDB instance](~~97473~~)
|
|
52816
53059
|
*
|
|
52817
53060
|
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
52818
53061
|
* @return ModifyDBInstanceMaintainTimeResponse
|
|
@@ -52967,7 +53210,12 @@ export default class Client extends OpenApi {
|
|
|
52967
53210
|
}
|
|
52968
53211
|
|
|
52969
53212
|
/**
|
|
52970
|
-
*
|
|
53213
|
+
* ### [](#)Supported database engines
|
|
53214
|
+
* * MySQL
|
|
53215
|
+
* * SQL Server
|
|
53216
|
+
* ### [](#)References
|
|
53217
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for MySQL instance](~~96110~~)
|
|
53218
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for SQL Server instance](~~95708~~)
|
|
52971
53219
|
*
|
|
52972
53220
|
* @param request ModifyDBInstanceNetworkExpireTimeRequest
|
|
52973
53221
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -53022,7 +53270,12 @@ export default class Client extends OpenApi {
|
|
|
53022
53270
|
}
|
|
53023
53271
|
|
|
53024
53272
|
/**
|
|
53025
|
-
*
|
|
53273
|
+
* ### [](#)Supported database engines
|
|
53274
|
+
* * MySQL
|
|
53275
|
+
* * SQL Server
|
|
53276
|
+
* ### [](#)References
|
|
53277
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for MySQL instance](~~96110~~)
|
|
53278
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for SQL Server instance](~~95708~~)
|
|
53026
53279
|
*
|
|
53027
53280
|
* @param request ModifyDBInstanceNetworkExpireTimeRequest
|
|
53028
53281
|
* @return ModifyDBInstanceNetworkExpireTimeResponse
|
|
@@ -53139,14 +53392,17 @@ export default class Client extends OpenApi {
|
|
|
53139
53392
|
}
|
|
53140
53393
|
|
|
53141
53394
|
/**
|
|
53142
|
-
*
|
|
53143
|
-
*
|
|
53144
|
-
* *
|
|
53145
|
-
* *
|
|
53146
|
-
*
|
|
53147
|
-
*
|
|
53148
|
-
*
|
|
53149
|
-
* *
|
|
53395
|
+
* ### [](#)Supported database engines
|
|
53396
|
+
* * MySQL
|
|
53397
|
+
* * PostgreSQL
|
|
53398
|
+
* * SQL Server
|
|
53399
|
+
* * MariaDB
|
|
53400
|
+
* ### [](#)References
|
|
53401
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
53402
|
+
* * [Change the billing method of an ApsaraDB RDS for MySQL instance from pay-as-you-go to subscription](~~96048~~)
|
|
53403
|
+
* * [Change the billing method of an ApsaraDB RDS for PostgreSQL instance from pay-as-you-go to subscription](~~96743~~)
|
|
53404
|
+
* * [Change the billing method of an ApsaraDB RDS for SQL Server instance from pay-as-you-go to subscription](~~95631~~)
|
|
53405
|
+
* * [Change the billing method of an ApsaraDB RDS for MariaDB instance from pay-as-you-go to subscription](~~97120~~)
|
|
53150
53406
|
*
|
|
53151
53407
|
* @param request ModifyDBInstancePayTypeRequest
|
|
53152
53408
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -53193,14 +53449,17 @@ export default class Client extends OpenApi {
|
|
|
53193
53449
|
}
|
|
53194
53450
|
|
|
53195
53451
|
/**
|
|
53196
|
-
*
|
|
53197
|
-
*
|
|
53198
|
-
* *
|
|
53199
|
-
* *
|
|
53200
|
-
*
|
|
53201
|
-
*
|
|
53202
|
-
*
|
|
53203
|
-
* *
|
|
53452
|
+
* ### [](#)Supported database engines
|
|
53453
|
+
* * MySQL
|
|
53454
|
+
* * PostgreSQL
|
|
53455
|
+
* * SQL Server
|
|
53456
|
+
* * MariaDB
|
|
53457
|
+
* ### [](#)References
|
|
53458
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
53459
|
+
* * [Change the billing method of an ApsaraDB RDS for MySQL instance from pay-as-you-go to subscription](~~96048~~)
|
|
53460
|
+
* * [Change the billing method of an ApsaraDB RDS for PostgreSQL instance from pay-as-you-go to subscription](~~96743~~)
|
|
53461
|
+
* * [Change the billing method of an ApsaraDB RDS for SQL Server instance from pay-as-you-go to subscription](~~95631~~)
|
|
53462
|
+
* * [Change the billing method of an ApsaraDB RDS for MariaDB instance from pay-as-you-go to subscription](~~97120~~)
|
|
53204
53463
|
*
|
|
53205
53464
|
* @param request ModifyDBInstancePayTypeRequest
|
|
53206
53465
|
* @return ModifyDBInstancePayTypeResponse
|
|
@@ -54451,7 +54710,14 @@ export default class Client extends OpenApi {
|
|
|
54451
54710
|
}
|
|
54452
54711
|
|
|
54453
54712
|
/**
|
|
54454
|
-
*
|
|
54713
|
+
* ### [](#)Supported database engines
|
|
54714
|
+
* * MySQL
|
|
54715
|
+
* * PostgreSQL
|
|
54716
|
+
* * SQL Server
|
|
54717
|
+
* * MariaDB
|
|
54718
|
+
* ### [](#)References
|
|
54719
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54720
|
+
* [What is availability check?](~~207467~~)
|
|
54455
54721
|
*
|
|
54456
54722
|
* @param request ModifyHADiagnoseConfigRequest
|
|
54457
54723
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -54502,7 +54768,14 @@ export default class Client extends OpenApi {
|
|
|
54502
54768
|
}
|
|
54503
54769
|
|
|
54504
54770
|
/**
|
|
54505
|
-
*
|
|
54771
|
+
* ### [](#)Supported database engines
|
|
54772
|
+
* * MySQL
|
|
54773
|
+
* * PostgreSQL
|
|
54774
|
+
* * SQL Server
|
|
54775
|
+
* * MariaDB
|
|
54776
|
+
* ### [](#)References
|
|
54777
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54778
|
+
* [What is availability check?](~~207467~~)
|
|
54506
54779
|
*
|
|
54507
54780
|
* @param request ModifyHADiagnoseConfigRequest
|
|
54508
54781
|
* @return ModifyHADiagnoseConfigResponse
|
|
@@ -54678,6 +54951,7 @@ export default class Client extends OpenApi {
|
|
|
54678
54951
|
* * PostgreSQL
|
|
54679
54952
|
* * SQL Server
|
|
54680
54953
|
* ### [](#)References
|
|
54954
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54681
54955
|
* * [Use the cross-region backup feature of an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
54682
54956
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
54683
54957
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
@@ -54756,6 +55030,7 @@ export default class Client extends OpenApi {
|
|
|
54756
55030
|
* * PostgreSQL
|
|
54757
55031
|
* * SQL Server
|
|
54758
55032
|
* ### [](#)References
|
|
55033
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54759
55034
|
* * [Use the cross-region backup feature of an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
54760
55035
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
54761
55036
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
@@ -56598,12 +56873,17 @@ export default class Client extends OpenApi {
|
|
|
56598
56873
|
}
|
|
56599
56874
|
|
|
56600
56875
|
/**
|
|
56601
|
-
*
|
|
56602
|
-
*
|
|
56603
|
-
* *
|
|
56604
|
-
* *
|
|
56605
|
-
*
|
|
56606
|
-
*
|
|
56876
|
+
* ### [](#)Supported database engines
|
|
56877
|
+
* * MySQL
|
|
56878
|
+
* * PostgreSQL
|
|
56879
|
+
* * SQL Server
|
|
56880
|
+
* * MariaDB
|
|
56881
|
+
* ### [](#)References
|
|
56882
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
56883
|
+
* * [Manually renew an ApsaraDB RDS for MySQL instance](~~96050~~)
|
|
56884
|
+
* * [Manually renew an ApsaraDB RDS for PostgreSQL instance](~~96741~~)
|
|
56885
|
+
* * [Manually renew an ApsaraDB RDS for SQL Server instance](~~95637~~)
|
|
56886
|
+
* * [Manually renew an ApsaraDB RDS for MariaDB instance](~~97122~~)
|
|
56607
56887
|
*
|
|
56608
56888
|
* @param request RenewInstanceRequest
|
|
56609
56889
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -56662,12 +56942,17 @@ export default class Client extends OpenApi {
|
|
|
56662
56942
|
}
|
|
56663
56943
|
|
|
56664
56944
|
/**
|
|
56665
|
-
*
|
|
56666
|
-
*
|
|
56667
|
-
* *
|
|
56668
|
-
* *
|
|
56669
|
-
*
|
|
56670
|
-
*
|
|
56945
|
+
* ### [](#)Supported database engines
|
|
56946
|
+
* * MySQL
|
|
56947
|
+
* * PostgreSQL
|
|
56948
|
+
* * SQL Server
|
|
56949
|
+
* * MariaDB
|
|
56950
|
+
* ### [](#)References
|
|
56951
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
56952
|
+
* * [Manually renew an ApsaraDB RDS for MySQL instance](~~96050~~)
|
|
56953
|
+
* * [Manually renew an ApsaraDB RDS for PostgreSQL instance](~~96741~~)
|
|
56954
|
+
* * [Manually renew an ApsaraDB RDS for SQL Server instance](~~95637~~)
|
|
56955
|
+
* * [Manually renew an ApsaraDB RDS for MariaDB instance](~~97122~~)
|
|
56671
56956
|
*
|
|
56672
56957
|
* @param request RenewInstanceRequest
|
|
56673
56958
|
* @return RenewInstanceResponse
|