@alicloud/rds20140815 2.7.3 → 2.7.5
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 +379 -95
- package/dist/client.js +384 -95
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +388 -96
package/src/client.ts
CHANGED
|
@@ -21618,6 +21618,7 @@ export class ModifyDBNodeRequest extends $tea.Model {
|
|
|
21618
21618
|
DBInstanceStorageType?: string;
|
|
21619
21619
|
DBNode?: ModifyDBNodeRequestDBNode[];
|
|
21620
21620
|
dryRun?: boolean;
|
|
21621
|
+
effectiveTime?: string;
|
|
21621
21622
|
ownerAccount?: string;
|
|
21622
21623
|
ownerId?: number;
|
|
21623
21624
|
produceAsync?: boolean;
|
|
@@ -21632,6 +21633,7 @@ export class ModifyDBNodeRequest extends $tea.Model {
|
|
|
21632
21633
|
DBInstanceStorageType: 'DBInstanceStorageType',
|
|
21633
21634
|
DBNode: 'DBNode',
|
|
21634
21635
|
dryRun: 'DryRun',
|
|
21636
|
+
effectiveTime: 'EffectiveTime',
|
|
21635
21637
|
ownerAccount: 'OwnerAccount',
|
|
21636
21638
|
ownerId: 'OwnerId',
|
|
21637
21639
|
produceAsync: 'ProduceAsync',
|
|
@@ -21649,6 +21651,7 @@ export class ModifyDBNodeRequest extends $tea.Model {
|
|
|
21649
21651
|
DBInstanceStorageType: 'string',
|
|
21650
21652
|
DBNode: { 'type': 'array', 'itemType': ModifyDBNodeRequestDBNode },
|
|
21651
21653
|
dryRun: 'boolean',
|
|
21654
|
+
effectiveTime: 'string',
|
|
21652
21655
|
ownerAccount: 'string',
|
|
21653
21656
|
ownerId: 'number',
|
|
21654
21657
|
produceAsync: 'boolean',
|
|
@@ -21670,6 +21673,7 @@ export class ModifyDBNodeShrinkRequest extends $tea.Model {
|
|
|
21670
21673
|
DBInstanceStorageType?: string;
|
|
21671
21674
|
DBNodeShrink?: string;
|
|
21672
21675
|
dryRun?: boolean;
|
|
21676
|
+
effectiveTime?: string;
|
|
21673
21677
|
ownerAccount?: string;
|
|
21674
21678
|
ownerId?: number;
|
|
21675
21679
|
produceAsync?: boolean;
|
|
@@ -21684,6 +21688,7 @@ export class ModifyDBNodeShrinkRequest extends $tea.Model {
|
|
|
21684
21688
|
DBInstanceStorageType: 'DBInstanceStorageType',
|
|
21685
21689
|
DBNodeShrink: 'DBNode',
|
|
21686
21690
|
dryRun: 'DryRun',
|
|
21691
|
+
effectiveTime: 'EffectiveTime',
|
|
21687
21692
|
ownerAccount: 'OwnerAccount',
|
|
21688
21693
|
ownerId: 'OwnerId',
|
|
21689
21694
|
produceAsync: 'ProduceAsync',
|
|
@@ -21701,6 +21706,7 @@ export class ModifyDBNodeShrinkRequest extends $tea.Model {
|
|
|
21701
21706
|
DBInstanceStorageType: 'string',
|
|
21702
21707
|
DBNodeShrink: 'string',
|
|
21703
21708
|
dryRun: 'boolean',
|
|
21709
|
+
effectiveTime: 'string',
|
|
21704
21710
|
ownerAccount: 'string',
|
|
21705
21711
|
ownerId: 'number',
|
|
21706
21712
|
produceAsync: 'boolean',
|
|
@@ -32461,7 +32467,7 @@ export class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
32461
32467
|
regionId?: string;
|
|
32462
32468
|
remainTime?: number;
|
|
32463
32469
|
startTime?: string;
|
|
32464
|
-
status?:
|
|
32470
|
+
status?: string;
|
|
32465
32471
|
taskDetail?: string;
|
|
32466
32472
|
taskId?: string;
|
|
32467
32473
|
taskType?: string;
|
|
@@ -32508,7 +32514,7 @@ export class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
32508
32514
|
regionId: 'string',
|
|
32509
32515
|
remainTime: 'number',
|
|
32510
32516
|
startTime: 'string',
|
|
32511
|
-
status: '
|
|
32517
|
+
status: 'string',
|
|
32512
32518
|
taskDetail: 'string',
|
|
32513
32519
|
taskId: 'string',
|
|
32514
32520
|
taskType: 'string',
|
|
@@ -36909,6 +36915,17 @@ export default class Client extends OpenApi {
|
|
|
36909
36915
|
return await this.checkAccountNameAvailableWithOptions(request, runtime);
|
|
36910
36916
|
}
|
|
36911
36917
|
|
|
36918
|
+
/**
|
|
36919
|
+
* ### [](#)Supported database engines
|
|
36920
|
+
* * MySQL
|
|
36921
|
+
* * PostgreSQL
|
|
36922
|
+
* * SQL Server
|
|
36923
|
+
* * MariaDB
|
|
36924
|
+
*
|
|
36925
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
36926
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
36927
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
36928
|
+
*/
|
|
36912
36929
|
async checkCloudResourceAuthorizedWithOptions(request: CheckCloudResourceAuthorizedRequest, runtime: $Util.RuntimeOptions): Promise<CheckCloudResourceAuthorizedResponse> {
|
|
36913
36930
|
Util.validateModel(request);
|
|
36914
36931
|
let query = { };
|
|
@@ -36965,6 +36982,16 @@ export default class Client extends OpenApi {
|
|
|
36965
36982
|
return $tea.cast<CheckCloudResourceAuthorizedResponse>(await this.callApi(params, req, runtime), new CheckCloudResourceAuthorizedResponse({}));
|
|
36966
36983
|
}
|
|
36967
36984
|
|
|
36985
|
+
/**
|
|
36986
|
+
* ### [](#)Supported database engines
|
|
36987
|
+
* * MySQL
|
|
36988
|
+
* * PostgreSQL
|
|
36989
|
+
* * SQL Server
|
|
36990
|
+
* * MariaDB
|
|
36991
|
+
*
|
|
36992
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
36993
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
36994
|
+
*/
|
|
36968
36995
|
async checkCloudResourceAuthorized(request: CheckCloudResourceAuthorizedRequest): Promise<CheckCloudResourceAuthorizedResponse> {
|
|
36969
36996
|
let runtime = new $Util.RuntimeOptions({ });
|
|
36970
36997
|
return await this.checkCloudResourceAuthorizedWithOptions(request, runtime);
|
|
@@ -37187,6 +37214,14 @@ export default class Client extends OpenApi {
|
|
|
37187
37214
|
return await this.checkInstanceExistWithOptions(request, runtime);
|
|
37188
37215
|
}
|
|
37189
37216
|
|
|
37217
|
+
/**
|
|
37218
|
+
* ### [](#)Supported database engines
|
|
37219
|
+
* * PostgreSQL
|
|
37220
|
+
*
|
|
37221
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
37222
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
37223
|
+
* @return CheckServiceLinkedRoleResponse
|
|
37224
|
+
*/
|
|
37190
37225
|
async checkServiceLinkedRoleWithOptions(request: CheckServiceLinkedRoleRequest, runtime: $Util.RuntimeOptions): Promise<CheckServiceLinkedRoleResponse> {
|
|
37191
37226
|
Util.validateModel(request);
|
|
37192
37227
|
let query = { };
|
|
@@ -37231,6 +37266,13 @@ export default class Client extends OpenApi {
|
|
|
37231
37266
|
return $tea.cast<CheckServiceLinkedRoleResponse>(await this.callApi(params, req, runtime), new CheckServiceLinkedRoleResponse({}));
|
|
37232
37267
|
}
|
|
37233
37268
|
|
|
37269
|
+
/**
|
|
37270
|
+
* ### [](#)Supported database engines
|
|
37271
|
+
* * PostgreSQL
|
|
37272
|
+
*
|
|
37273
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
37274
|
+
* @return CheckServiceLinkedRoleResponse
|
|
37275
|
+
*/
|
|
37234
37276
|
async checkServiceLinkedRole(request: CheckServiceLinkedRoleRequest): Promise<CheckServiceLinkedRoleResponse> {
|
|
37235
37277
|
let runtime = new $Util.RuntimeOptions({ });
|
|
37236
37278
|
return await this.checkServiceLinkedRoleWithOptions(request, runtime);
|
|
@@ -39135,12 +39177,11 @@ export default class Client extends OpenApi {
|
|
|
39135
39177
|
}
|
|
39136
39178
|
|
|
39137
39179
|
/**
|
|
39138
|
-
* ###
|
|
39139
|
-
* *
|
|
39140
|
-
*
|
|
39141
|
-
*
|
|
39142
|
-
*
|
|
39143
|
-
* For more information, see [Create and release an ApsaraDB RDS global active database cluster](~~328592~~).
|
|
39180
|
+
* ### [](#)Supported database engine
|
|
39181
|
+
* * MySQL
|
|
39182
|
+
* ### [](#)References
|
|
39183
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
39184
|
+
* [Create and release an ApsaraDB RDS global active database cluster](~~328592~~)
|
|
39144
39185
|
*
|
|
39145
39186
|
* @param request CreateGADInstanceRequest
|
|
39146
39187
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -39203,12 +39244,11 @@ export default class Client extends OpenApi {
|
|
|
39203
39244
|
}
|
|
39204
39245
|
|
|
39205
39246
|
/**
|
|
39206
|
-
* ###
|
|
39207
|
-
* *
|
|
39208
|
-
*
|
|
39209
|
-
*
|
|
39210
|
-
*
|
|
39211
|
-
* For more information, see [Create and release an ApsaraDB RDS global active database cluster](~~328592~~).
|
|
39247
|
+
* ### [](#)Supported database engine
|
|
39248
|
+
* * MySQL
|
|
39249
|
+
* ### [](#)References
|
|
39250
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
39251
|
+
* [Create and release an ApsaraDB RDS global active database cluster](~~328592~~)
|
|
39212
39252
|
*
|
|
39213
39253
|
* @param request CreateGADInstanceRequest
|
|
39214
39254
|
* @return CreateGADInstanceResponse
|
|
@@ -40076,6 +40116,14 @@ export default class Client extends OpenApi {
|
|
|
40076
40116
|
return await this.createReadOnlyDBInstanceWithOptions(request, runtime);
|
|
40077
40117
|
}
|
|
40078
40118
|
|
|
40119
|
+
/**
|
|
40120
|
+
* ### [](#)Supported database engines
|
|
40121
|
+
* * MySQL
|
|
40122
|
+
*
|
|
40123
|
+
* @param request CreateSecretRequest
|
|
40124
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
40125
|
+
* @return CreateSecretResponse
|
|
40126
|
+
*/
|
|
40079
40127
|
async createSecretWithOptions(request: CreateSecretRequest, runtime: $Util.RuntimeOptions): Promise<CreateSecretResponse> {
|
|
40080
40128
|
Util.validateModel(request);
|
|
40081
40129
|
let query = { };
|
|
@@ -40148,6 +40196,13 @@ export default class Client extends OpenApi {
|
|
|
40148
40196
|
return $tea.cast<CreateSecretResponse>(await this.callApi(params, req, runtime), new CreateSecretResponse({}));
|
|
40149
40197
|
}
|
|
40150
40198
|
|
|
40199
|
+
/**
|
|
40200
|
+
* ### [](#)Supported database engines
|
|
40201
|
+
* * MySQL
|
|
40202
|
+
*
|
|
40203
|
+
* @param request CreateSecretRequest
|
|
40204
|
+
* @return CreateSecretResponse
|
|
40205
|
+
*/
|
|
40151
40206
|
async createSecret(request: CreateSecretRequest): Promise<CreateSecretResponse> {
|
|
40152
40207
|
let runtime = new $Util.RuntimeOptions({ });
|
|
40153
40208
|
return await this.createSecretWithOptions(request, runtime);
|
|
@@ -41531,9 +41586,7 @@ export default class Client extends OpenApi {
|
|
|
41531
41586
|
|
|
41532
41587
|
/**
|
|
41533
41588
|
* ### [](#)Supported database engines
|
|
41534
|
-
* MySQL
|
|
41535
|
-
* ### [](#)References
|
|
41536
|
-
* [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
|
|
41589
|
+
* * MySQL
|
|
41537
41590
|
*
|
|
41538
41591
|
* @param request DescibeImportsFromDatabaseRequest
|
|
41539
41592
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -41613,9 +41666,7 @@ export default class Client extends OpenApi {
|
|
|
41613
41666
|
|
|
41614
41667
|
/**
|
|
41615
41668
|
* ### [](#)Supported database engines
|
|
41616
|
-
* MySQL
|
|
41617
|
-
* ### [](#)References
|
|
41618
|
-
* [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
|
|
41669
|
+
* * MySQL
|
|
41619
41670
|
*
|
|
41620
41671
|
* @param request DescibeImportsFromDatabaseRequest
|
|
41621
41672
|
* @return DescibeImportsFromDatabaseResponse
|
|
@@ -42007,6 +42058,16 @@ export default class Client extends OpenApi {
|
|
|
42007
42058
|
return await this.describeAllWhitelistTemplateWithOptions(request, runtime);
|
|
42008
42059
|
}
|
|
42009
42060
|
|
|
42061
|
+
/**
|
|
42062
|
+
* ### [](#)Supported database engines
|
|
42063
|
+
* MySQL
|
|
42064
|
+
* ### [](#)References
|
|
42065
|
+
* [Create and view an analytic instance](~~155180~~)
|
|
42066
|
+
*
|
|
42067
|
+
* @param request DescribeAnalyticdbByPrimaryDBInstanceRequest
|
|
42068
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
42069
|
+
* @return DescribeAnalyticdbByPrimaryDBInstanceResponse
|
|
42070
|
+
*/
|
|
42010
42071
|
async describeAnalyticdbByPrimaryDBInstanceWithOptions(request: DescribeAnalyticdbByPrimaryDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAnalyticdbByPrimaryDBInstanceResponse> {
|
|
42011
42072
|
Util.validateModel(request);
|
|
42012
42073
|
let query = { };
|
|
@@ -42047,6 +42108,15 @@ export default class Client extends OpenApi {
|
|
|
42047
42108
|
return $tea.cast<DescribeAnalyticdbByPrimaryDBInstanceResponse>(await this.callApi(params, req, runtime), new DescribeAnalyticdbByPrimaryDBInstanceResponse({}));
|
|
42048
42109
|
}
|
|
42049
42110
|
|
|
42111
|
+
/**
|
|
42112
|
+
* ### [](#)Supported database engines
|
|
42113
|
+
* MySQL
|
|
42114
|
+
* ### [](#)References
|
|
42115
|
+
* [Create and view an analytic instance](~~155180~~)
|
|
42116
|
+
*
|
|
42117
|
+
* @param request DescribeAnalyticdbByPrimaryDBInstanceRequest
|
|
42118
|
+
* @return DescribeAnalyticdbByPrimaryDBInstanceResponse
|
|
42119
|
+
*/
|
|
42050
42120
|
async describeAnalyticdbByPrimaryDBInstance(request: DescribeAnalyticdbByPrimaryDBInstanceRequest): Promise<DescribeAnalyticdbByPrimaryDBInstanceResponse> {
|
|
42051
42121
|
let runtime = new $Util.RuntimeOptions({ });
|
|
42052
42122
|
return await this.describeAnalyticdbByPrimaryDBInstanceWithOptions(request, runtime);
|
|
@@ -44399,6 +44469,17 @@ export default class Client extends OpenApi {
|
|
|
44399
44469
|
return await this.describeDBInstanceNetInfoWithOptions(request, runtime);
|
|
44400
44470
|
}
|
|
44401
44471
|
|
|
44472
|
+
/**
|
|
44473
|
+
* ### [](#)Supported database engines
|
|
44474
|
+
* * MySQL
|
|
44475
|
+
* * PostgreSQL
|
|
44476
|
+
* * SQL Server
|
|
44477
|
+
* * MariaDB
|
|
44478
|
+
*
|
|
44479
|
+
* @param request DescribeDBInstanceNetInfoForChannelRequest
|
|
44480
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
44481
|
+
* @return DescribeDBInstanceNetInfoForChannelResponse
|
|
44482
|
+
*/
|
|
44402
44483
|
async describeDBInstanceNetInfoForChannelWithOptions(request: DescribeDBInstanceNetInfoForChannelRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceNetInfoForChannelResponse> {
|
|
44403
44484
|
Util.validateModel(request);
|
|
44404
44485
|
let query = { };
|
|
@@ -44451,6 +44532,16 @@ export default class Client extends OpenApi {
|
|
|
44451
44532
|
return $tea.cast<DescribeDBInstanceNetInfoForChannelResponse>(await this.callApi(params, req, runtime), new DescribeDBInstanceNetInfoForChannelResponse({}));
|
|
44452
44533
|
}
|
|
44453
44534
|
|
|
44535
|
+
/**
|
|
44536
|
+
* ### [](#)Supported database engines
|
|
44537
|
+
* * MySQL
|
|
44538
|
+
* * PostgreSQL
|
|
44539
|
+
* * SQL Server
|
|
44540
|
+
* * MariaDB
|
|
44541
|
+
*
|
|
44542
|
+
* @param request DescribeDBInstanceNetInfoForChannelRequest
|
|
44543
|
+
* @return DescribeDBInstanceNetInfoForChannelResponse
|
|
44544
|
+
*/
|
|
44454
44545
|
async describeDBInstanceNetInfoForChannel(request: DescribeDBInstanceNetInfoForChannelRequest): Promise<DescribeDBInstanceNetInfoForChannelResponse> {
|
|
44455
44546
|
let runtime = new $Util.RuntimeOptions({ });
|
|
44456
44547
|
return await this.describeDBInstanceNetInfoForChannelWithOptions(request, runtime);
|
|
@@ -46139,7 +46230,11 @@ export default class Client extends OpenApi {
|
|
|
46139
46230
|
}
|
|
46140
46231
|
|
|
46141
46232
|
/**
|
|
46142
|
-
*
|
|
46233
|
+
* ### [](#)Supported database engines
|
|
46234
|
+
* * MySQL
|
|
46235
|
+
* * PostgreSQL
|
|
46236
|
+
* * SQL Server
|
|
46237
|
+
* * MariaDB
|
|
46143
46238
|
*
|
|
46144
46239
|
* @param request DescribeErrorLogsRequest
|
|
46145
46240
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46202,7 +46297,11 @@ export default class Client extends OpenApi {
|
|
|
46202
46297
|
}
|
|
46203
46298
|
|
|
46204
46299
|
/**
|
|
46205
|
-
*
|
|
46300
|
+
* ### [](#)Supported database engines
|
|
46301
|
+
* * MySQL
|
|
46302
|
+
* * PostgreSQL
|
|
46303
|
+
* * SQL Server
|
|
46304
|
+
* * MariaDB
|
|
46206
46305
|
*
|
|
46207
46306
|
* @param request DescribeErrorLogsRequest
|
|
46208
46307
|
* @return DescribeErrorLogsResponse
|
|
@@ -46213,8 +46312,17 @@ export default class Client extends OpenApi {
|
|
|
46213
46312
|
}
|
|
46214
46313
|
|
|
46215
46314
|
/**
|
|
46216
|
-
*
|
|
46217
|
-
*
|
|
46315
|
+
* ### [](#)Supported database engines
|
|
46316
|
+
* * MySQL
|
|
46317
|
+
* * PostgreSQL
|
|
46318
|
+
* * SQL Server
|
|
46319
|
+
* * MariaDB
|
|
46320
|
+
* ### [](#)References
|
|
46321
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
46322
|
+
* * [Historical events of an ApsaraDB RDS for MySQL instance](~~129759~~)
|
|
46323
|
+
* * [Historical events of an ApsaraDB RDS for PostgreSQL instance](~~131008~~)
|
|
46324
|
+
* * [Historical events of an ApsaraDB RDS for SQL Server instance](~~131013~~)
|
|
46325
|
+
* * [Historical events of an ApsaraDB RDS for MariaDB instance](~~131010~~)
|
|
46218
46326
|
*
|
|
46219
46327
|
* @param request DescribeEventsRequest
|
|
46220
46328
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46273,8 +46381,17 @@ export default class Client extends OpenApi {
|
|
|
46273
46381
|
}
|
|
46274
46382
|
|
|
46275
46383
|
/**
|
|
46276
|
-
*
|
|
46277
|
-
*
|
|
46384
|
+
* ### [](#)Supported database engines
|
|
46385
|
+
* * MySQL
|
|
46386
|
+
* * PostgreSQL
|
|
46387
|
+
* * SQL Server
|
|
46388
|
+
* * MariaDB
|
|
46389
|
+
* ### [](#)References
|
|
46390
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
46391
|
+
* * [Historical events of an ApsaraDB RDS for MySQL instance](~~129759~~)
|
|
46392
|
+
* * [Historical events of an ApsaraDB RDS for PostgreSQL instance](~~131008~~)
|
|
46393
|
+
* * [Historical events of an ApsaraDB RDS for SQL Server instance](~~131013~~)
|
|
46394
|
+
* * [Historical events of an ApsaraDB RDS for MariaDB instance](~~131010~~)
|
|
46278
46395
|
*
|
|
46279
46396
|
* @param request DescribeEventsRequest
|
|
46280
46397
|
* @return DescribeEventsResponse
|
|
@@ -46337,7 +46454,13 @@ export default class Client extends OpenApi {
|
|
|
46337
46454
|
}
|
|
46338
46455
|
|
|
46339
46456
|
/**
|
|
46340
|
-
*
|
|
46457
|
+
* ### [](#)Supported database engines
|
|
46458
|
+
* * MySQL
|
|
46459
|
+
* * PostgreSQL
|
|
46460
|
+
* * SQL Server
|
|
46461
|
+
* * MariaDB
|
|
46462
|
+
* ### [](#)References
|
|
46463
|
+
* [What is availability detection?](~~207467~~)
|
|
46341
46464
|
*
|
|
46342
46465
|
* @param request DescribeHADiagnoseConfigRequest
|
|
46343
46466
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46384,7 +46507,13 @@ export default class Client extends OpenApi {
|
|
|
46384
46507
|
}
|
|
46385
46508
|
|
|
46386
46509
|
/**
|
|
46387
|
-
*
|
|
46510
|
+
* ### [](#)Supported database engines
|
|
46511
|
+
* * MySQL
|
|
46512
|
+
* * PostgreSQL
|
|
46513
|
+
* * SQL Server
|
|
46514
|
+
* * MariaDB
|
|
46515
|
+
* ### [](#)References
|
|
46516
|
+
* [What is availability detection?](~~207467~~)
|
|
46388
46517
|
*
|
|
46389
46518
|
* @param request DescribeHADiagnoseConfigRequest
|
|
46390
46519
|
* @return DescribeHADiagnoseConfigResponse
|
|
@@ -46395,8 +46524,11 @@ export default class Client extends OpenApi {
|
|
|
46395
46524
|
}
|
|
46396
46525
|
|
|
46397
46526
|
/**
|
|
46398
|
-
*
|
|
46399
|
-
*
|
|
46527
|
+
* ### [](#)Supported database engines
|
|
46528
|
+
* * MySQL
|
|
46529
|
+
* * PostgreSQL
|
|
46530
|
+
* * SQL Server
|
|
46531
|
+
* * MariaDB
|
|
46400
46532
|
*
|
|
46401
46533
|
* @param request DescribeHASwitchConfigRequest
|
|
46402
46534
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -46443,8 +46575,11 @@ export default class Client extends OpenApi {
|
|
|
46443
46575
|
}
|
|
46444
46576
|
|
|
46445
46577
|
/**
|
|
46446
|
-
*
|
|
46447
|
-
*
|
|
46578
|
+
* ### [](#)Supported database engines
|
|
46579
|
+
* * MySQL
|
|
46580
|
+
* * PostgreSQL
|
|
46581
|
+
* * SQL Server
|
|
46582
|
+
* * MariaDB
|
|
46448
46583
|
*
|
|
46449
46584
|
* @param request DescribeHASwitchConfigRequest
|
|
46450
46585
|
* @return DescribeHASwitchConfigResponse
|
|
@@ -46703,6 +46838,17 @@ export default class Client extends OpenApi {
|
|
|
46703
46838
|
return await this.describeHostWebShellWithOptions(request, runtime);
|
|
46704
46839
|
}
|
|
46705
46840
|
|
|
46841
|
+
/**
|
|
46842
|
+
* ### [](#)Supported database engines
|
|
46843
|
+
* * MySQL
|
|
46844
|
+
* * PostgreSQL
|
|
46845
|
+
* * SQL Server
|
|
46846
|
+
* * MariaDB
|
|
46847
|
+
*
|
|
46848
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
46849
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
46850
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
46851
|
+
*/
|
|
46706
46852
|
async describeInstanceAutoRenewalAttributeWithOptions(request: DescribeInstanceAutoRenewalAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceAutoRenewalAttributeResponse> {
|
|
46707
46853
|
Util.validateModel(request);
|
|
46708
46854
|
let query = { };
|
|
@@ -46763,6 +46909,16 @@ export default class Client extends OpenApi {
|
|
|
46763
46909
|
return $tea.cast<DescribeInstanceAutoRenewalAttributeResponse>(await this.callApi(params, req, runtime), new DescribeInstanceAutoRenewalAttributeResponse({}));
|
|
46764
46910
|
}
|
|
46765
46911
|
|
|
46912
|
+
/**
|
|
46913
|
+
* ### [](#)Supported database engines
|
|
46914
|
+
* * MySQL
|
|
46915
|
+
* * PostgreSQL
|
|
46916
|
+
* * SQL Server
|
|
46917
|
+
* * MariaDB
|
|
46918
|
+
*
|
|
46919
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
46920
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
46921
|
+
*/
|
|
46766
46922
|
async describeInstanceAutoRenewalAttribute(request: DescribeInstanceAutoRenewalAttributeRequest): Promise<DescribeInstanceAutoRenewalAttributeResponse> {
|
|
46767
46923
|
let runtime = new $Util.RuntimeOptions({ });
|
|
46768
46924
|
return await this.describeInstanceAutoRenewalAttributeWithOptions(request, runtime);
|
|
@@ -46774,7 +46930,8 @@ export default class Client extends OpenApi {
|
|
|
46774
46930
|
* * PostgreSQL
|
|
46775
46931
|
* * SQL Server
|
|
46776
46932
|
* ### [](#)References
|
|
46777
|
-
*
|
|
46933
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
46934
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
46778
46935
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
46779
46936
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
46780
46937
|
*
|
|
@@ -46828,7 +46985,8 @@ export default class Client extends OpenApi {
|
|
|
46828
46985
|
* * PostgreSQL
|
|
46829
46986
|
* * SQL Server
|
|
46830
46987
|
* ### [](#)References
|
|
46831
|
-
*
|
|
46988
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
46989
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
46832
46990
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
46833
46991
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
46834
46992
|
*
|
|
@@ -47015,8 +47173,8 @@ export default class Client extends OpenApi {
|
|
|
47015
47173
|
|
|
47016
47174
|
/**
|
|
47017
47175
|
* ### [](#)Supported database engines
|
|
47018
|
-
*
|
|
47019
|
-
* > You can call the
|
|
47176
|
+
* SQL Server
|
|
47177
|
+
* > You can call the DescribeBinlogFiles operation to query the log files of instances that run different database engines.
|
|
47020
47178
|
*
|
|
47021
47179
|
* @param request DescribeLogBackupFilesRequest
|
|
47022
47180
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -47080,8 +47238,8 @@ export default class Client extends OpenApi {
|
|
|
47080
47238
|
|
|
47081
47239
|
/**
|
|
47082
47240
|
* ### [](#)Supported database engines
|
|
47083
|
-
*
|
|
47084
|
-
* > You can call the
|
|
47241
|
+
* SQL Server
|
|
47242
|
+
* > You can call the DescribeBinlogFiles operation to query the log files of instances that run different database engines.
|
|
47085
47243
|
*
|
|
47086
47244
|
* @param request DescribeLogBackupFilesRequest
|
|
47087
47245
|
* @return DescribeLogBackupFilesResponse
|
|
@@ -48721,10 +48879,10 @@ export default class Client extends OpenApi {
|
|
|
48721
48879
|
}
|
|
48722
48880
|
|
|
48723
48881
|
/**
|
|
48724
|
-
*
|
|
48882
|
+
* ### [](#)Supported database engines
|
|
48725
48883
|
* * MySQL
|
|
48726
|
-
* * SQL Server 2008 R2
|
|
48727
48884
|
* * PostgreSQL
|
|
48885
|
+
* * SQL Server
|
|
48728
48886
|
*
|
|
48729
48887
|
* @param request DescribeSQLCollectorPolicyRequest
|
|
48730
48888
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -48779,10 +48937,10 @@ export default class Client extends OpenApi {
|
|
|
48779
48937
|
}
|
|
48780
48938
|
|
|
48781
48939
|
/**
|
|
48782
|
-
*
|
|
48940
|
+
* ### [](#)Supported database engines
|
|
48783
48941
|
* * MySQL
|
|
48784
|
-
* * SQL Server 2008 R2
|
|
48785
48942
|
* * PostgreSQL
|
|
48943
|
+
* * SQL Server
|
|
48786
48944
|
*
|
|
48787
48945
|
* @param request DescribeSQLCollectorPolicyRequest
|
|
48788
48946
|
* @return DescribeSQLCollectorPolicyResponse
|
|
@@ -49254,7 +49412,8 @@ export default class Client extends OpenApi {
|
|
|
49254
49412
|
}
|
|
49255
49413
|
|
|
49256
49414
|
/**
|
|
49257
|
-
*
|
|
49415
|
+
* ### [](#)Supported database engines
|
|
49416
|
+
* * PostgreSQL
|
|
49258
49417
|
*
|
|
49259
49418
|
* @param request DescribeSlotsRequest
|
|
49260
49419
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -49309,7 +49468,8 @@ export default class Client extends OpenApi {
|
|
|
49309
49468
|
}
|
|
49310
49469
|
|
|
49311
49470
|
/**
|
|
49312
|
-
*
|
|
49471
|
+
* ### [](#)Supported database engines
|
|
49472
|
+
* * PostgreSQL
|
|
49313
49473
|
*
|
|
49314
49474
|
* @param request DescribeSlotsRequest
|
|
49315
49475
|
* @return DescribeSlotsResponse
|
|
@@ -49815,6 +49975,14 @@ export default class Client extends OpenApi {
|
|
|
49815
49975
|
return await this.describeUpgradeMajorVersionPrecheckTaskWithOptions(request, runtime);
|
|
49816
49976
|
}
|
|
49817
49977
|
|
|
49978
|
+
/**
|
|
49979
|
+
* ### [](#)Supported database engines
|
|
49980
|
+
* PostgreSQL
|
|
49981
|
+
*
|
|
49982
|
+
* @param request DescribeUpgradeMajorVersionTasksRequest
|
|
49983
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
49984
|
+
* @return DescribeUpgradeMajorVersionTasksResponse
|
|
49985
|
+
*/
|
|
49818
49986
|
async describeUpgradeMajorVersionTasksWithOptions(request: DescribeUpgradeMajorVersionTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUpgradeMajorVersionTasksResponse> {
|
|
49819
49987
|
Util.validateModel(request);
|
|
49820
49988
|
let query = { };
|
|
@@ -49871,6 +50039,13 @@ export default class Client extends OpenApi {
|
|
|
49871
50039
|
return $tea.cast<DescribeUpgradeMajorVersionTasksResponse>(await this.callApi(params, req, runtime), new DescribeUpgradeMajorVersionTasksResponse({}));
|
|
49872
50040
|
}
|
|
49873
50041
|
|
|
50042
|
+
/**
|
|
50043
|
+
* ### [](#)Supported database engines
|
|
50044
|
+
* PostgreSQL
|
|
50045
|
+
*
|
|
50046
|
+
* @param request DescribeUpgradeMajorVersionTasksRequest
|
|
50047
|
+
* @return DescribeUpgradeMajorVersionTasksResponse
|
|
50048
|
+
*/
|
|
49874
50049
|
async describeUpgradeMajorVersionTasks(request: DescribeUpgradeMajorVersionTasksRequest): Promise<DescribeUpgradeMajorVersionTasksResponse> {
|
|
49875
50050
|
let runtime = new $Util.RuntimeOptions({ });
|
|
49876
50051
|
return await this.describeUpgradeMajorVersionTasksWithOptions(request, runtime);
|
|
@@ -50936,7 +51111,9 @@ export default class Client extends OpenApi {
|
|
|
50936
51111
|
}
|
|
50937
51112
|
|
|
50938
51113
|
/**
|
|
50939
|
-
*
|
|
51114
|
+
* ### [](#)Supported database engines
|
|
51115
|
+
* * MySQL
|
|
51116
|
+
* ### [](#)Feature description
|
|
50940
51117
|
* * 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~~).
|
|
50941
51118
|
* * 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.
|
|
50942
51119
|
* * You can call the [ImportUserBackupFile](~~260266~~) operation to import a full backup file into an ApsaraDB RDS for MySQL instance.
|
|
@@ -51006,7 +51183,9 @@ export default class Client extends OpenApi {
|
|
|
51006
51183
|
}
|
|
51007
51184
|
|
|
51008
51185
|
/**
|
|
51009
|
-
*
|
|
51186
|
+
* ### [](#)Supported database engines
|
|
51187
|
+
* * MySQL
|
|
51188
|
+
* ### [](#)Feature description
|
|
51010
51189
|
* * 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~~).
|
|
51011
51190
|
* * 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.
|
|
51012
51191
|
* * You can call the [ImportUserBackupFile](~~260266~~) operation to import a full backup file into an ApsaraDB RDS for MySQL instance.
|
|
@@ -52081,7 +52260,13 @@ export default class Client extends OpenApi {
|
|
|
52081
52260
|
}
|
|
52082
52261
|
|
|
52083
52262
|
/**
|
|
52084
|
-
*
|
|
52263
|
+
* ### [](#)Supported database engines
|
|
52264
|
+
* * MySQL
|
|
52265
|
+
* * PostgreSQL
|
|
52266
|
+
* ### [](#)References
|
|
52267
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
52268
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for MySQL instance](~~96059~~)
|
|
52269
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for PostgreSQL instance](~~146895~~)
|
|
52085
52270
|
*
|
|
52086
52271
|
* @param request ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
52087
52272
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52132,7 +52317,13 @@ export default class Client extends OpenApi {
|
|
|
52132
52317
|
}
|
|
52133
52318
|
|
|
52134
52319
|
/**
|
|
52135
|
-
*
|
|
52320
|
+
* ### [](#)Supported database engines
|
|
52321
|
+
* * MySQL
|
|
52322
|
+
* * PostgreSQL
|
|
52323
|
+
* ### [](#)References
|
|
52324
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
52325
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for MySQL instance](~~96059~~)
|
|
52326
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for PostgreSQL instance](~~146895~~)
|
|
52136
52327
|
*
|
|
52137
52328
|
* @param request ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
52138
52329
|
* @return ModifyDBInstanceAutoUpgradeMinorVersionResponse
|
|
@@ -52143,12 +52334,9 @@ export default class Client extends OpenApi {
|
|
|
52143
52334
|
}
|
|
52144
52335
|
|
|
52145
52336
|
/**
|
|
52146
|
-
* ### Supported database engines
|
|
52147
|
-
* *
|
|
52148
|
-
*
|
|
52149
|
-
* * RDS SQL Server
|
|
52150
|
-
* * RDS MariaDB
|
|
52151
|
-
* > : The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52337
|
+
* ### [](#)Supported database engines
|
|
52338
|
+
* * PostgreSQL
|
|
52339
|
+
* > The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52152
52340
|
*
|
|
52153
52341
|
* @param request ModifyDBInstanceConfigRequest
|
|
52154
52342
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52211,12 +52399,9 @@ export default class Client extends OpenApi {
|
|
|
52211
52399
|
}
|
|
52212
52400
|
|
|
52213
52401
|
/**
|
|
52214
|
-
* ### Supported database engines
|
|
52215
|
-
* *
|
|
52216
|
-
*
|
|
52217
|
-
* * RDS SQL Server
|
|
52218
|
-
* * RDS MariaDB
|
|
52219
|
-
* > : The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52402
|
+
* ### [](#)Supported database engines
|
|
52403
|
+
* * PostgreSQL
|
|
52404
|
+
* > The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
52220
52405
|
*
|
|
52221
52406
|
* @param request ModifyDBInstanceConfigRequest
|
|
52222
52407
|
* @return ModifyDBInstanceConfigResponse
|
|
@@ -52390,6 +52575,17 @@ export default class Client extends OpenApi {
|
|
|
52390
52575
|
return await this.modifyDBInstanceConnectionStringWithOptions(request, runtime);
|
|
52391
52576
|
}
|
|
52392
52577
|
|
|
52578
|
+
/**
|
|
52579
|
+
* ### [](#)Supported database engines
|
|
52580
|
+
* * MySQL
|
|
52581
|
+
* ### [](#)References
|
|
52582
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52583
|
+
* * [Configure a data replication latency for a read-only ApsaraDB RDS for MySQL instance](~~96056~~)
|
|
52584
|
+
*
|
|
52585
|
+
* @param request ModifyDBInstanceDelayedReplicationTimeRequest
|
|
52586
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
52587
|
+
* @return ModifyDBInstanceDelayedReplicationTimeResponse
|
|
52588
|
+
*/
|
|
52393
52589
|
async modifyDBInstanceDelayedReplicationTimeWithOptions(request: ModifyDBInstanceDelayedReplicationTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceDelayedReplicationTimeResponse> {
|
|
52394
52590
|
Util.validateModel(request);
|
|
52395
52591
|
let query = { };
|
|
@@ -52430,13 +52626,33 @@ export default class Client extends OpenApi {
|
|
|
52430
52626
|
return $tea.cast<ModifyDBInstanceDelayedReplicationTimeResponse>(await this.callApi(params, req, runtime), new ModifyDBInstanceDelayedReplicationTimeResponse({}));
|
|
52431
52627
|
}
|
|
52432
52628
|
|
|
52629
|
+
/**
|
|
52630
|
+
* ### [](#)Supported database engines
|
|
52631
|
+
* * MySQL
|
|
52632
|
+
* ### [](#)References
|
|
52633
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52634
|
+
* * [Configure a data replication latency for a read-only ApsaraDB RDS for MySQL instance](~~96056~~)
|
|
52635
|
+
*
|
|
52636
|
+
* @param request ModifyDBInstanceDelayedReplicationTimeRequest
|
|
52637
|
+
* @return ModifyDBInstanceDelayedReplicationTimeResponse
|
|
52638
|
+
*/
|
|
52433
52639
|
async modifyDBInstanceDelayedReplicationTime(request: ModifyDBInstanceDelayedReplicationTimeRequest): Promise<ModifyDBInstanceDelayedReplicationTimeResponse> {
|
|
52434
52640
|
let runtime = new $Util.RuntimeOptions({ });
|
|
52435
52641
|
return await this.modifyDBInstanceDelayedReplicationTimeWithOptions(request, runtime);
|
|
52436
52642
|
}
|
|
52437
52643
|
|
|
52438
52644
|
/**
|
|
52439
|
-
*
|
|
52645
|
+
* ### [](#)Supported database engines
|
|
52646
|
+
* * MySQL
|
|
52647
|
+
* * PostgreSQL
|
|
52648
|
+
* * SQL Server
|
|
52649
|
+
* * MariaDB
|
|
52650
|
+
* ### [](#)References
|
|
52651
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52652
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for MySQL instance](~~414512~~)
|
|
52653
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for PostgreSQL instance](~~471512~~)
|
|
52654
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for SQL Server instance](~~416209~~)
|
|
52655
|
+
* * [Enable and disable release protection for an ApsaraDB RDS for MariaDB instance](~~414512~~)
|
|
52440
52656
|
*
|
|
52441
52657
|
* @param request ModifyDBInstanceDeletionProtectionRequest
|
|
52442
52658
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52491,7 +52707,17 @@ export default class Client extends OpenApi {
|
|
|
52491
52707
|
}
|
|
52492
52708
|
|
|
52493
52709
|
/**
|
|
52494
|
-
*
|
|
52710
|
+
* ### [](#)Supported database engines
|
|
52711
|
+
* * MySQL
|
|
52712
|
+
* * PostgreSQL
|
|
52713
|
+
* * SQL Server
|
|
52714
|
+
* * MariaDB
|
|
52715
|
+
* ### [](#)References
|
|
52716
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
52717
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for MySQL instance](~~414512~~)
|
|
52718
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for PostgreSQL instance](~~471512~~)
|
|
52719
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for SQL Server instance](~~416209~~)
|
|
52720
|
+
* * [Enable and disable release protection for an ApsaraDB RDS for MariaDB instance](~~414512~~)
|
|
52495
52721
|
*
|
|
52496
52722
|
* @param request ModifyDBInstanceDeletionProtectionRequest
|
|
52497
52723
|
* @return ModifyDBInstanceDeletionProtectionResponse
|
|
@@ -52760,7 +52986,17 @@ export default class Client extends OpenApi {
|
|
|
52760
52986
|
}
|
|
52761
52987
|
|
|
52762
52988
|
/**
|
|
52763
|
-
*
|
|
52989
|
+
* ### [](#)Supported database engines
|
|
52990
|
+
* * MySQL
|
|
52991
|
+
* * PostgreSQL
|
|
52992
|
+
* * SQL Server
|
|
52993
|
+
* * MariaDB
|
|
52994
|
+
* ### [](#)References
|
|
52995
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
52996
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MySQL instance](~~96052~~)
|
|
52997
|
+
* * [Set a maintenance window for an ApsaraDB RDS for PostgreSQL instance](~~96799~~)
|
|
52998
|
+
* * [Set a maintenance window for an ApsaraDB RDS for SQL Sever instance](~~95657~~)
|
|
52999
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MariaDB instance](~~97473~~)
|
|
52764
53000
|
*
|
|
52765
53001
|
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
52766
53002
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -52815,7 +53051,17 @@ export default class Client extends OpenApi {
|
|
|
52815
53051
|
}
|
|
52816
53052
|
|
|
52817
53053
|
/**
|
|
52818
|
-
*
|
|
53054
|
+
* ### [](#)Supported database engines
|
|
53055
|
+
* * MySQL
|
|
53056
|
+
* * PostgreSQL
|
|
53057
|
+
* * SQL Server
|
|
53058
|
+
* * MariaDB
|
|
53059
|
+
* ### [](#)References
|
|
53060
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
53061
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MySQL instance](~~96052~~)
|
|
53062
|
+
* * [Set a maintenance window for an ApsaraDB RDS for PostgreSQL instance](~~96799~~)
|
|
53063
|
+
* * [Set a maintenance window for an ApsaraDB RDS for SQL Sever instance](~~95657~~)
|
|
53064
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MariaDB instance](~~97473~~)
|
|
52819
53065
|
*
|
|
52820
53066
|
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
52821
53067
|
* @return ModifyDBInstanceMaintainTimeResponse
|
|
@@ -52970,7 +53216,12 @@ export default class Client extends OpenApi {
|
|
|
52970
53216
|
}
|
|
52971
53217
|
|
|
52972
53218
|
/**
|
|
52973
|
-
*
|
|
53219
|
+
* ### [](#)Supported database engines
|
|
53220
|
+
* * MySQL
|
|
53221
|
+
* * SQL Server
|
|
53222
|
+
* ### [](#)References
|
|
53223
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for MySQL instance](~~96110~~)
|
|
53224
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for SQL Server instance](~~95708~~)
|
|
52974
53225
|
*
|
|
52975
53226
|
* @param request ModifyDBInstanceNetworkExpireTimeRequest
|
|
52976
53227
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -53025,7 +53276,12 @@ export default class Client extends OpenApi {
|
|
|
53025
53276
|
}
|
|
53026
53277
|
|
|
53027
53278
|
/**
|
|
53028
|
-
*
|
|
53279
|
+
* ### [](#)Supported database engines
|
|
53280
|
+
* * MySQL
|
|
53281
|
+
* * SQL Server
|
|
53282
|
+
* ### [](#)References
|
|
53283
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for MySQL instance](~~96110~~)
|
|
53284
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for SQL Server instance](~~95708~~)
|
|
53029
53285
|
*
|
|
53030
53286
|
* @param request ModifyDBInstanceNetworkExpireTimeRequest
|
|
53031
53287
|
* @return ModifyDBInstanceNetworkExpireTimeResponse
|
|
@@ -53142,14 +53398,17 @@ export default class Client extends OpenApi {
|
|
|
53142
53398
|
}
|
|
53143
53399
|
|
|
53144
53400
|
/**
|
|
53145
|
-
*
|
|
53146
|
-
*
|
|
53147
|
-
* *
|
|
53148
|
-
* *
|
|
53149
|
-
*
|
|
53150
|
-
*
|
|
53151
|
-
*
|
|
53152
|
-
* *
|
|
53401
|
+
* ### [](#)Supported database engines
|
|
53402
|
+
* * MySQL
|
|
53403
|
+
* * PostgreSQL
|
|
53404
|
+
* * SQL Server
|
|
53405
|
+
* * MariaDB
|
|
53406
|
+
* ### [](#)References
|
|
53407
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
53408
|
+
* * [Change the billing method of an ApsaraDB RDS for MySQL instance from pay-as-you-go to subscription](~~96048~~)
|
|
53409
|
+
* * [Change the billing method of an ApsaraDB RDS for PostgreSQL instance from pay-as-you-go to subscription](~~96743~~)
|
|
53410
|
+
* * [Change the billing method of an ApsaraDB RDS for SQL Server instance from pay-as-you-go to subscription](~~95631~~)
|
|
53411
|
+
* * [Change the billing method of an ApsaraDB RDS for MariaDB instance from pay-as-you-go to subscription](~~97120~~)
|
|
53153
53412
|
*
|
|
53154
53413
|
* @param request ModifyDBInstancePayTypeRequest
|
|
53155
53414
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -53196,14 +53455,17 @@ export default class Client extends OpenApi {
|
|
|
53196
53455
|
}
|
|
53197
53456
|
|
|
53198
53457
|
/**
|
|
53199
|
-
*
|
|
53200
|
-
*
|
|
53201
|
-
* *
|
|
53202
|
-
* *
|
|
53203
|
-
*
|
|
53204
|
-
*
|
|
53205
|
-
*
|
|
53206
|
-
* *
|
|
53458
|
+
* ### [](#)Supported database engines
|
|
53459
|
+
* * MySQL
|
|
53460
|
+
* * PostgreSQL
|
|
53461
|
+
* * SQL Server
|
|
53462
|
+
* * MariaDB
|
|
53463
|
+
* ### [](#)References
|
|
53464
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
53465
|
+
* * [Change the billing method of an ApsaraDB RDS for MySQL instance from pay-as-you-go to subscription](~~96048~~)
|
|
53466
|
+
* * [Change the billing method of an ApsaraDB RDS for PostgreSQL instance from pay-as-you-go to subscription](~~96743~~)
|
|
53467
|
+
* * [Change the billing method of an ApsaraDB RDS for SQL Server instance from pay-as-you-go to subscription](~~95631~~)
|
|
53468
|
+
* * [Change the billing method of an ApsaraDB RDS for MariaDB instance from pay-as-you-go to subscription](~~97120~~)
|
|
53207
53469
|
*
|
|
53208
53470
|
* @param request ModifyDBInstancePayTypeRequest
|
|
53209
53471
|
* @return ModifyDBInstancePayTypeResponse
|
|
@@ -53703,6 +53965,10 @@ export default class Client extends OpenApi {
|
|
|
53703
53965
|
query["DryRun"] = request.dryRun;
|
|
53704
53966
|
}
|
|
53705
53967
|
|
|
53968
|
+
if (!Util.isUnset(request.effectiveTime)) {
|
|
53969
|
+
query["EffectiveTime"] = request.effectiveTime;
|
|
53970
|
+
}
|
|
53971
|
+
|
|
53706
53972
|
if (!Util.isUnset(request.ownerAccount)) {
|
|
53707
53973
|
query["OwnerAccount"] = request.ownerAccount;
|
|
53708
53974
|
}
|
|
@@ -54454,7 +54720,14 @@ export default class Client extends OpenApi {
|
|
|
54454
54720
|
}
|
|
54455
54721
|
|
|
54456
54722
|
/**
|
|
54457
|
-
*
|
|
54723
|
+
* ### [](#)Supported database engines
|
|
54724
|
+
* * MySQL
|
|
54725
|
+
* * PostgreSQL
|
|
54726
|
+
* * SQL Server
|
|
54727
|
+
* * MariaDB
|
|
54728
|
+
* ### [](#)References
|
|
54729
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54730
|
+
* [What is availability check?](~~207467~~)
|
|
54458
54731
|
*
|
|
54459
54732
|
* @param request ModifyHADiagnoseConfigRequest
|
|
54460
54733
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -54505,7 +54778,14 @@ export default class Client extends OpenApi {
|
|
|
54505
54778
|
}
|
|
54506
54779
|
|
|
54507
54780
|
/**
|
|
54508
|
-
*
|
|
54781
|
+
* ### [](#)Supported database engines
|
|
54782
|
+
* * MySQL
|
|
54783
|
+
* * PostgreSQL
|
|
54784
|
+
* * SQL Server
|
|
54785
|
+
* * MariaDB
|
|
54786
|
+
* ### [](#)References
|
|
54787
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54788
|
+
* [What is availability check?](~~207467~~)
|
|
54509
54789
|
*
|
|
54510
54790
|
* @param request ModifyHADiagnoseConfigRequest
|
|
54511
54791
|
* @return ModifyHADiagnoseConfigResponse
|
|
@@ -54681,6 +54961,7 @@ export default class Client extends OpenApi {
|
|
|
54681
54961
|
* * PostgreSQL
|
|
54682
54962
|
* * SQL Server
|
|
54683
54963
|
* ### [](#)References
|
|
54964
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54684
54965
|
* * [Use the cross-region backup feature of an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
54685
54966
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
54686
54967
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
@@ -54759,6 +55040,7 @@ export default class Client extends OpenApi {
|
|
|
54759
55040
|
* * PostgreSQL
|
|
54760
55041
|
* * SQL Server
|
|
54761
55042
|
* ### [](#)References
|
|
55043
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
54762
55044
|
* * [Use the cross-region backup feature of an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
54763
55045
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
54764
55046
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
@@ -56601,12 +56883,17 @@ export default class Client extends OpenApi {
|
|
|
56601
56883
|
}
|
|
56602
56884
|
|
|
56603
56885
|
/**
|
|
56604
|
-
*
|
|
56605
|
-
*
|
|
56606
|
-
* *
|
|
56607
|
-
* *
|
|
56608
|
-
*
|
|
56609
|
-
*
|
|
56886
|
+
* ### [](#)Supported database engines
|
|
56887
|
+
* * MySQL
|
|
56888
|
+
* * PostgreSQL
|
|
56889
|
+
* * SQL Server
|
|
56890
|
+
* * MariaDB
|
|
56891
|
+
* ### [](#)References
|
|
56892
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
56893
|
+
* * [Manually renew an ApsaraDB RDS for MySQL instance](~~96050~~)
|
|
56894
|
+
* * [Manually renew an ApsaraDB RDS for PostgreSQL instance](~~96741~~)
|
|
56895
|
+
* * [Manually renew an ApsaraDB RDS for SQL Server instance](~~95637~~)
|
|
56896
|
+
* * [Manually renew an ApsaraDB RDS for MariaDB instance](~~97122~~)
|
|
56610
56897
|
*
|
|
56611
56898
|
* @param request RenewInstanceRequest
|
|
56612
56899
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -56665,12 +56952,17 @@ export default class Client extends OpenApi {
|
|
|
56665
56952
|
}
|
|
56666
56953
|
|
|
56667
56954
|
/**
|
|
56668
|
-
*
|
|
56669
|
-
*
|
|
56670
|
-
* *
|
|
56671
|
-
* *
|
|
56672
|
-
*
|
|
56673
|
-
*
|
|
56955
|
+
* ### [](#)Supported database engines
|
|
56956
|
+
* * MySQL
|
|
56957
|
+
* * PostgreSQL
|
|
56958
|
+
* * SQL Server
|
|
56959
|
+
* * MariaDB
|
|
56960
|
+
* ### [](#)References
|
|
56961
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
56962
|
+
* * [Manually renew an ApsaraDB RDS for MySQL instance](~~96050~~)
|
|
56963
|
+
* * [Manually renew an ApsaraDB RDS for PostgreSQL instance](~~96741~~)
|
|
56964
|
+
* * [Manually renew an ApsaraDB RDS for SQL Server instance](~~95637~~)
|
|
56965
|
+
* * [Manually renew an ApsaraDB RDS for MariaDB instance](~~97122~~)
|
|
56674
56966
|
*
|
|
56675
56967
|
* @param request RenewInstanceRequest
|
|
56676
56968
|
* @return RenewInstanceResponse
|