@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/dist/client.js
CHANGED
|
@@ -22818,6 +22818,7 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute extends $t
|
|
|
22818
22818
|
DBInstanceClass: 'DBInstanceClass',
|
|
22819
22819
|
DBInstanceClassType: 'DBInstanceClassType',
|
|
22820
22820
|
DBInstanceDescription: 'DBInstanceDescription',
|
|
22821
|
+
DBInstanceDiskUsed: 'DBInstanceDiskUsed',
|
|
22821
22822
|
DBInstanceId: 'DBInstanceId',
|
|
22822
22823
|
DBInstanceMemory: 'DBInstanceMemory',
|
|
22823
22824
|
DBInstanceNetType: 'DBInstanceNetType',
|
|
@@ -22892,6 +22893,7 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute extends $t
|
|
|
22892
22893
|
DBInstanceClass: 'string',
|
|
22893
22894
|
DBInstanceClassType: 'string',
|
|
22894
22895
|
DBInstanceDescription: 'string',
|
|
22896
|
+
DBInstanceDiskUsed: 'string',
|
|
22895
22897
|
DBInstanceId: 'string',
|
|
22896
22898
|
DBInstanceMemory: 'number',
|
|
22897
22899
|
DBInstanceNetType: 'string',
|
|
@@ -25100,7 +25102,7 @@ class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
25100
25102
|
regionId: 'string',
|
|
25101
25103
|
remainTime: 'number',
|
|
25102
25104
|
startTime: 'string',
|
|
25103
|
-
status: '
|
|
25105
|
+
status: 'string',
|
|
25104
25106
|
taskDetail: 'string',
|
|
25105
25107
|
taskId: 'string',
|
|
25106
25108
|
taskType: 'string',
|
|
@@ -28616,6 +28618,17 @@ class Client extends openapi_client_1.default {
|
|
|
28616
28618
|
let runtime = new $Util.RuntimeOptions({});
|
|
28617
28619
|
return await this.checkAccountNameAvailableWithOptions(request, runtime);
|
|
28618
28620
|
}
|
|
28621
|
+
/**
|
|
28622
|
+
* ### [](#)Supported database engines
|
|
28623
|
+
* * MySQL
|
|
28624
|
+
* * PostgreSQL
|
|
28625
|
+
* * SQL Server
|
|
28626
|
+
* * MariaDB
|
|
28627
|
+
*
|
|
28628
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
28629
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
28630
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
28631
|
+
*/
|
|
28619
28632
|
async checkCloudResourceAuthorizedWithOptions(request, runtime) {
|
|
28620
28633
|
tea_util_1.default.validateModel(request);
|
|
28621
28634
|
let query = {};
|
|
@@ -28662,6 +28675,16 @@ class Client extends openapi_client_1.default {
|
|
|
28662
28675
|
});
|
|
28663
28676
|
return $tea.cast(await this.callApi(params, req, runtime), new CheckCloudResourceAuthorizedResponse({}));
|
|
28664
28677
|
}
|
|
28678
|
+
/**
|
|
28679
|
+
* ### [](#)Supported database engines
|
|
28680
|
+
* * MySQL
|
|
28681
|
+
* * PostgreSQL
|
|
28682
|
+
* * SQL Server
|
|
28683
|
+
* * MariaDB
|
|
28684
|
+
*
|
|
28685
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
28686
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
28687
|
+
*/
|
|
28665
28688
|
async checkCloudResourceAuthorized(request) {
|
|
28666
28689
|
let runtime = new $Util.RuntimeOptions({});
|
|
28667
28690
|
return await this.checkCloudResourceAuthorizedWithOptions(request, runtime);
|
|
@@ -28852,6 +28875,14 @@ class Client extends openapi_client_1.default {
|
|
|
28852
28875
|
let runtime = new $Util.RuntimeOptions({});
|
|
28853
28876
|
return await this.checkInstanceExistWithOptions(request, runtime);
|
|
28854
28877
|
}
|
|
28878
|
+
/**
|
|
28879
|
+
* ### [](#)Supported database engines
|
|
28880
|
+
* * PostgreSQL
|
|
28881
|
+
*
|
|
28882
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
28883
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
28884
|
+
* @return CheckServiceLinkedRoleResponse
|
|
28885
|
+
*/
|
|
28855
28886
|
async checkServiceLinkedRoleWithOptions(request, runtime) {
|
|
28856
28887
|
tea_util_1.default.validateModel(request);
|
|
28857
28888
|
let query = {};
|
|
@@ -28889,6 +28920,13 @@ class Client extends openapi_client_1.default {
|
|
|
28889
28920
|
});
|
|
28890
28921
|
return $tea.cast(await this.callApi(params, req, runtime), new CheckServiceLinkedRoleResponse({}));
|
|
28891
28922
|
}
|
|
28923
|
+
/**
|
|
28924
|
+
* ### [](#)Supported database engines
|
|
28925
|
+
* * PostgreSQL
|
|
28926
|
+
*
|
|
28927
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
28928
|
+
* @return CheckServiceLinkedRoleResponse
|
|
28929
|
+
*/
|
|
28892
28930
|
async checkServiceLinkedRole(request) {
|
|
28893
28931
|
let runtime = new $Util.RuntimeOptions({});
|
|
28894
28932
|
return await this.checkServiceLinkedRoleWithOptions(request, runtime);
|
|
@@ -30513,12 +30551,11 @@ class Client extends openapi_client_1.default {
|
|
|
30513
30551
|
return await this.createDiagnosticReportWithOptions(request, runtime);
|
|
30514
30552
|
}
|
|
30515
30553
|
/**
|
|
30516
|
-
* ###
|
|
30517
|
-
* *
|
|
30518
|
-
*
|
|
30519
|
-
*
|
|
30520
|
-
*
|
|
30521
|
-
* For more information, see [Create and release an ApsaraDB RDS global active database cluster](~~328592~~).
|
|
30554
|
+
* ### [](#)Supported database engine
|
|
30555
|
+
* * MySQL
|
|
30556
|
+
* ### [](#)References
|
|
30557
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
30558
|
+
* [Create and release an ApsaraDB RDS global active database cluster](~~328592~~)
|
|
30522
30559
|
*
|
|
30523
30560
|
* @param request CreateGADInstanceRequest
|
|
30524
30561
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -30571,12 +30608,11 @@ class Client extends openapi_client_1.default {
|
|
|
30571
30608
|
return $tea.cast(await this.callApi(params, req, runtime), new CreateGADInstanceResponse({}));
|
|
30572
30609
|
}
|
|
30573
30610
|
/**
|
|
30574
|
-
* ###
|
|
30575
|
-
* *
|
|
30576
|
-
*
|
|
30577
|
-
*
|
|
30578
|
-
*
|
|
30579
|
-
* For more information, see [Create and release an ApsaraDB RDS global active database cluster](~~328592~~).
|
|
30611
|
+
* ### [](#)Supported database engine
|
|
30612
|
+
* * MySQL
|
|
30613
|
+
* ### [](#)References
|
|
30614
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
30615
|
+
* [Create and release an ApsaraDB RDS global active database cluster](~~328592~~)
|
|
30580
30616
|
*
|
|
30581
30617
|
* @param request CreateGADInstanceRequest
|
|
30582
30618
|
* @return CreateGADInstanceResponse
|
|
@@ -31311,6 +31347,14 @@ class Client extends openapi_client_1.default {
|
|
|
31311
31347
|
let runtime = new $Util.RuntimeOptions({});
|
|
31312
31348
|
return await this.createReadOnlyDBInstanceWithOptions(request, runtime);
|
|
31313
31349
|
}
|
|
31350
|
+
/**
|
|
31351
|
+
* ### [](#)Supported database engines
|
|
31352
|
+
* * MySQL
|
|
31353
|
+
*
|
|
31354
|
+
* @param request CreateSecretRequest
|
|
31355
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
31356
|
+
* @return CreateSecretResponse
|
|
31357
|
+
*/
|
|
31314
31358
|
async createSecretWithOptions(request, runtime) {
|
|
31315
31359
|
tea_util_1.default.validateModel(request);
|
|
31316
31360
|
let query = {};
|
|
@@ -31369,6 +31413,13 @@ class Client extends openapi_client_1.default {
|
|
|
31369
31413
|
});
|
|
31370
31414
|
return $tea.cast(await this.callApi(params, req, runtime), new CreateSecretResponse({}));
|
|
31371
31415
|
}
|
|
31416
|
+
/**
|
|
31417
|
+
* ### [](#)Supported database engines
|
|
31418
|
+
* * MySQL
|
|
31419
|
+
*
|
|
31420
|
+
* @param request CreateSecretRequest
|
|
31421
|
+
* @return CreateSecretResponse
|
|
31422
|
+
*/
|
|
31372
31423
|
async createSecret(request) {
|
|
31373
31424
|
let runtime = new $Util.RuntimeOptions({});
|
|
31374
31425
|
return await this.createSecretWithOptions(request, runtime);
|
|
@@ -32592,9 +32643,7 @@ class Client extends openapi_client_1.default {
|
|
|
32592
32643
|
}
|
|
32593
32644
|
/**
|
|
32594
32645
|
* ### [](#)Supported database engines
|
|
32595
|
-
* MySQL
|
|
32596
|
-
* ### [](#)References
|
|
32597
|
-
* [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
|
|
32646
|
+
* * MySQL
|
|
32598
32647
|
*
|
|
32599
32648
|
* @param request DescibeImportsFromDatabaseRequest
|
|
32600
32649
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -32660,9 +32709,7 @@ class Client extends openapi_client_1.default {
|
|
|
32660
32709
|
}
|
|
32661
32710
|
/**
|
|
32662
32711
|
* ### [](#)Supported database engines
|
|
32663
|
-
* MySQL
|
|
32664
|
-
* ### [](#)References
|
|
32665
|
-
* [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
|
|
32712
|
+
* * MySQL
|
|
32666
32713
|
*
|
|
32667
32714
|
* @param request DescibeImportsFromDatabaseRequest
|
|
32668
32715
|
* @return DescibeImportsFromDatabaseResponse
|
|
@@ -33003,6 +33050,16 @@ class Client extends openapi_client_1.default {
|
|
|
33003
33050
|
let runtime = new $Util.RuntimeOptions({});
|
|
33004
33051
|
return await this.describeAllWhitelistTemplateWithOptions(request, runtime);
|
|
33005
33052
|
}
|
|
33053
|
+
/**
|
|
33054
|
+
* ### [](#)Supported database engines
|
|
33055
|
+
* MySQL
|
|
33056
|
+
* ### [](#)References
|
|
33057
|
+
* [Create and view an analytic instance](~~155180~~)
|
|
33058
|
+
*
|
|
33059
|
+
* @param request DescribeAnalyticdbByPrimaryDBInstanceRequest
|
|
33060
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
33061
|
+
* @return DescribeAnalyticdbByPrimaryDBInstanceResponse
|
|
33062
|
+
*/
|
|
33006
33063
|
async describeAnalyticdbByPrimaryDBInstanceWithOptions(request, runtime) {
|
|
33007
33064
|
tea_util_1.default.validateModel(request);
|
|
33008
33065
|
let query = {};
|
|
@@ -33037,6 +33094,15 @@ class Client extends openapi_client_1.default {
|
|
|
33037
33094
|
});
|
|
33038
33095
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeAnalyticdbByPrimaryDBInstanceResponse({}));
|
|
33039
33096
|
}
|
|
33097
|
+
/**
|
|
33098
|
+
* ### [](#)Supported database engines
|
|
33099
|
+
* MySQL
|
|
33100
|
+
* ### [](#)References
|
|
33101
|
+
* [Create and view an analytic instance](~~155180~~)
|
|
33102
|
+
*
|
|
33103
|
+
* @param request DescribeAnalyticdbByPrimaryDBInstanceRequest
|
|
33104
|
+
* @return DescribeAnalyticdbByPrimaryDBInstanceResponse
|
|
33105
|
+
*/
|
|
33040
33106
|
async describeAnalyticdbByPrimaryDBInstance(request) {
|
|
33041
33107
|
let runtime = new $Util.RuntimeOptions({});
|
|
33042
33108
|
return await this.describeAnalyticdbByPrimaryDBInstanceWithOptions(request, runtime);
|
|
@@ -35090,6 +35156,17 @@ class Client extends openapi_client_1.default {
|
|
|
35090
35156
|
let runtime = new $Util.RuntimeOptions({});
|
|
35091
35157
|
return await this.describeDBInstanceNetInfoWithOptions(request, runtime);
|
|
35092
35158
|
}
|
|
35159
|
+
/**
|
|
35160
|
+
* ### [](#)Supported database engines
|
|
35161
|
+
* * MySQL
|
|
35162
|
+
* * PostgreSQL
|
|
35163
|
+
* * SQL Server
|
|
35164
|
+
* * MariaDB
|
|
35165
|
+
*
|
|
35166
|
+
* @param request DescribeDBInstanceNetInfoForChannelRequest
|
|
35167
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
35168
|
+
* @return DescribeDBInstanceNetInfoForChannelResponse
|
|
35169
|
+
*/
|
|
35093
35170
|
async describeDBInstanceNetInfoForChannelWithOptions(request, runtime) {
|
|
35094
35171
|
tea_util_1.default.validateModel(request);
|
|
35095
35172
|
let query = {};
|
|
@@ -35133,6 +35210,16 @@ class Client extends openapi_client_1.default {
|
|
|
35133
35210
|
});
|
|
35134
35211
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeDBInstanceNetInfoForChannelResponse({}));
|
|
35135
35212
|
}
|
|
35213
|
+
/**
|
|
35214
|
+
* ### [](#)Supported database engines
|
|
35215
|
+
* * MySQL
|
|
35216
|
+
* * PostgreSQL
|
|
35217
|
+
* * SQL Server
|
|
35218
|
+
* * MariaDB
|
|
35219
|
+
*
|
|
35220
|
+
* @param request DescribeDBInstanceNetInfoForChannelRequest
|
|
35221
|
+
* @return DescribeDBInstanceNetInfoForChannelResponse
|
|
35222
|
+
*/
|
|
35136
35223
|
async describeDBInstanceNetInfoForChannel(request) {
|
|
35137
35224
|
let runtime = new $Util.RuntimeOptions({});
|
|
35138
35225
|
return await this.describeDBInstanceNetInfoForChannelWithOptions(request, runtime);
|
|
@@ -36575,7 +36662,11 @@ class Client extends openapi_client_1.default {
|
|
|
36575
36662
|
return await this.describeDiagnosticReportListWithOptions(request, runtime);
|
|
36576
36663
|
}
|
|
36577
36664
|
/**
|
|
36578
|
-
*
|
|
36665
|
+
* ### [](#)Supported database engines
|
|
36666
|
+
* * MySQL
|
|
36667
|
+
* * PostgreSQL
|
|
36668
|
+
* * SQL Server
|
|
36669
|
+
* * MariaDB
|
|
36579
36670
|
*
|
|
36580
36671
|
* @param request DescribeErrorLogsRequest
|
|
36581
36672
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -36628,7 +36719,11 @@ class Client extends openapi_client_1.default {
|
|
|
36628
36719
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeErrorLogsResponse({}));
|
|
36629
36720
|
}
|
|
36630
36721
|
/**
|
|
36631
|
-
*
|
|
36722
|
+
* ### [](#)Supported database engines
|
|
36723
|
+
* * MySQL
|
|
36724
|
+
* * PostgreSQL
|
|
36725
|
+
* * SQL Server
|
|
36726
|
+
* * MariaDB
|
|
36632
36727
|
*
|
|
36633
36728
|
* @param request DescribeErrorLogsRequest
|
|
36634
36729
|
* @return DescribeErrorLogsResponse
|
|
@@ -36638,8 +36733,17 @@ class Client extends openapi_client_1.default {
|
|
|
36638
36733
|
return await this.describeErrorLogsWithOptions(request, runtime);
|
|
36639
36734
|
}
|
|
36640
36735
|
/**
|
|
36641
|
-
*
|
|
36642
|
-
*
|
|
36736
|
+
* ### [](#)Supported database engines
|
|
36737
|
+
* * MySQL
|
|
36738
|
+
* * PostgreSQL
|
|
36739
|
+
* * SQL Server
|
|
36740
|
+
* * MariaDB
|
|
36741
|
+
* ### [](#)References
|
|
36742
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
36743
|
+
* * [Historical events of an ApsaraDB RDS for MySQL instance](~~129759~~)
|
|
36744
|
+
* * [Historical events of an ApsaraDB RDS for PostgreSQL instance](~~131008~~)
|
|
36745
|
+
* * [Historical events of an ApsaraDB RDS for SQL Server instance](~~131013~~)
|
|
36746
|
+
* * [Historical events of an ApsaraDB RDS for MariaDB instance](~~131010~~)
|
|
36643
36747
|
*
|
|
36644
36748
|
* @param request DescribeEventsRequest
|
|
36645
36749
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -36689,8 +36793,17 @@ class Client extends openapi_client_1.default {
|
|
|
36689
36793
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeEventsResponse({}));
|
|
36690
36794
|
}
|
|
36691
36795
|
/**
|
|
36692
|
-
*
|
|
36693
|
-
*
|
|
36796
|
+
* ### [](#)Supported database engines
|
|
36797
|
+
* * MySQL
|
|
36798
|
+
* * PostgreSQL
|
|
36799
|
+
* * SQL Server
|
|
36800
|
+
* * MariaDB
|
|
36801
|
+
* ### [](#)References
|
|
36802
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
36803
|
+
* * [Historical events of an ApsaraDB RDS for MySQL instance](~~129759~~)
|
|
36804
|
+
* * [Historical events of an ApsaraDB RDS for PostgreSQL instance](~~131008~~)
|
|
36805
|
+
* * [Historical events of an ApsaraDB RDS for SQL Server instance](~~131013~~)
|
|
36806
|
+
* * [Historical events of an ApsaraDB RDS for MariaDB instance](~~131010~~)
|
|
36694
36807
|
*
|
|
36695
36808
|
* @param request DescribeEventsRequest
|
|
36696
36809
|
* @return DescribeEventsResponse
|
|
@@ -36747,7 +36860,13 @@ class Client extends openapi_client_1.default {
|
|
|
36747
36860
|
return await this.describeGadInstancesWithOptions(request, runtime);
|
|
36748
36861
|
}
|
|
36749
36862
|
/**
|
|
36750
|
-
*
|
|
36863
|
+
* ### [](#)Supported database engines
|
|
36864
|
+
* * MySQL
|
|
36865
|
+
* * PostgreSQL
|
|
36866
|
+
* * SQL Server
|
|
36867
|
+
* * MariaDB
|
|
36868
|
+
* ### [](#)References
|
|
36869
|
+
* [What is availability detection?](~~207467~~)
|
|
36751
36870
|
*
|
|
36752
36871
|
* @param request DescribeHADiagnoseConfigRequest
|
|
36753
36872
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -36788,7 +36907,13 @@ class Client extends openapi_client_1.default {
|
|
|
36788
36907
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeHADiagnoseConfigResponse({}));
|
|
36789
36908
|
}
|
|
36790
36909
|
/**
|
|
36791
|
-
*
|
|
36910
|
+
* ### [](#)Supported database engines
|
|
36911
|
+
* * MySQL
|
|
36912
|
+
* * PostgreSQL
|
|
36913
|
+
* * SQL Server
|
|
36914
|
+
* * MariaDB
|
|
36915
|
+
* ### [](#)References
|
|
36916
|
+
* [What is availability detection?](~~207467~~)
|
|
36792
36917
|
*
|
|
36793
36918
|
* @param request DescribeHADiagnoseConfigRequest
|
|
36794
36919
|
* @return DescribeHADiagnoseConfigResponse
|
|
@@ -36798,8 +36923,11 @@ class Client extends openapi_client_1.default {
|
|
|
36798
36923
|
return await this.describeHADiagnoseConfigWithOptions(request, runtime);
|
|
36799
36924
|
}
|
|
36800
36925
|
/**
|
|
36801
|
-
*
|
|
36802
|
-
*
|
|
36926
|
+
* ### [](#)Supported database engines
|
|
36927
|
+
* * MySQL
|
|
36928
|
+
* * PostgreSQL
|
|
36929
|
+
* * SQL Server
|
|
36930
|
+
* * MariaDB
|
|
36803
36931
|
*
|
|
36804
36932
|
* @param request DescribeHASwitchConfigRequest
|
|
36805
36933
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -36840,8 +36968,11 @@ class Client extends openapi_client_1.default {
|
|
|
36840
36968
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeHASwitchConfigResponse({}));
|
|
36841
36969
|
}
|
|
36842
36970
|
/**
|
|
36843
|
-
*
|
|
36844
|
-
*
|
|
36971
|
+
* ### [](#)Supported database engines
|
|
36972
|
+
* * MySQL
|
|
36973
|
+
* * PostgreSQL
|
|
36974
|
+
* * SQL Server
|
|
36975
|
+
* * MariaDB
|
|
36845
36976
|
*
|
|
36846
36977
|
* @param request DescribeHASwitchConfigRequest
|
|
36847
36978
|
* @return DescribeHASwitchConfigResponse
|
|
@@ -37064,6 +37195,17 @@ class Client extends openapi_client_1.default {
|
|
|
37064
37195
|
let runtime = new $Util.RuntimeOptions({});
|
|
37065
37196
|
return await this.describeHostWebShellWithOptions(request, runtime);
|
|
37066
37197
|
}
|
|
37198
|
+
/**
|
|
37199
|
+
* ### [](#)Supported database engines
|
|
37200
|
+
* * MySQL
|
|
37201
|
+
* * PostgreSQL
|
|
37202
|
+
* * SQL Server
|
|
37203
|
+
* * MariaDB
|
|
37204
|
+
*
|
|
37205
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
37206
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
37207
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
37208
|
+
*/
|
|
37067
37209
|
async describeInstanceAutoRenewalAttributeWithOptions(request, runtime) {
|
|
37068
37210
|
tea_util_1.default.validateModel(request);
|
|
37069
37211
|
let query = {};
|
|
@@ -37113,6 +37255,16 @@ class Client extends openapi_client_1.default {
|
|
|
37113
37255
|
});
|
|
37114
37256
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeInstanceAutoRenewalAttributeResponse({}));
|
|
37115
37257
|
}
|
|
37258
|
+
/**
|
|
37259
|
+
* ### [](#)Supported database engines
|
|
37260
|
+
* * MySQL
|
|
37261
|
+
* * PostgreSQL
|
|
37262
|
+
* * SQL Server
|
|
37263
|
+
* * MariaDB
|
|
37264
|
+
*
|
|
37265
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
37266
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
37267
|
+
*/
|
|
37116
37268
|
async describeInstanceAutoRenewalAttribute(request) {
|
|
37117
37269
|
let runtime = new $Util.RuntimeOptions({});
|
|
37118
37270
|
return await this.describeInstanceAutoRenewalAttributeWithOptions(request, runtime);
|
|
@@ -37123,7 +37275,8 @@ class Client extends openapi_client_1.default {
|
|
|
37123
37275
|
* * PostgreSQL
|
|
37124
37276
|
* * SQL Server
|
|
37125
37277
|
* ### [](#)References
|
|
37126
|
-
*
|
|
37278
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
37279
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
37127
37280
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
37128
37281
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
37129
37282
|
*
|
|
@@ -37171,7 +37324,8 @@ class Client extends openapi_client_1.default {
|
|
|
37171
37324
|
* * PostgreSQL
|
|
37172
37325
|
* * SQL Server
|
|
37173
37326
|
* ### [](#)References
|
|
37174
|
-
*
|
|
37327
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
37328
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
37175
37329
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
37176
37330
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
37177
37331
|
*
|
|
@@ -38811,10 +38965,10 @@ class Client extends openapi_client_1.default {
|
|
|
38811
38965
|
return await this.describeResourceUsageWithOptions(request, runtime);
|
|
38812
38966
|
}
|
|
38813
38967
|
/**
|
|
38814
|
-
*
|
|
38968
|
+
* ### [](#)Supported database engines
|
|
38815
38969
|
* * MySQL
|
|
38816
|
-
* * SQL Server 2008 R2
|
|
38817
38970
|
* * PostgreSQL
|
|
38971
|
+
* * SQL Server
|
|
38818
38972
|
*
|
|
38819
38973
|
* @param request DescribeSQLCollectorPolicyRequest
|
|
38820
38974
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -38861,10 +39015,10 @@ class Client extends openapi_client_1.default {
|
|
|
38861
39015
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeSQLCollectorPolicyResponse({}));
|
|
38862
39016
|
}
|
|
38863
39017
|
/**
|
|
38864
|
-
*
|
|
39018
|
+
* ### [](#)Supported database engines
|
|
38865
39019
|
* * MySQL
|
|
38866
|
-
* * SQL Server 2008 R2
|
|
38867
39020
|
* * PostgreSQL
|
|
39021
|
+
* * SQL Server
|
|
38868
39022
|
*
|
|
38869
39023
|
* @param request DescribeSQLCollectorPolicyRequest
|
|
38870
39024
|
* @return DescribeSQLCollectorPolicyResponse
|
|
@@ -39269,7 +39423,8 @@ class Client extends openapi_client_1.default {
|
|
|
39269
39423
|
return await this.describeSecurityGroupConfigurationWithOptions(request, runtime);
|
|
39270
39424
|
}
|
|
39271
39425
|
/**
|
|
39272
|
-
*
|
|
39426
|
+
* ### [](#)Supported database engines
|
|
39427
|
+
* * PostgreSQL
|
|
39273
39428
|
*
|
|
39274
39429
|
* @param request DescribeSlotsRequest
|
|
39275
39430
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -39316,7 +39471,8 @@ class Client extends openapi_client_1.default {
|
|
|
39316
39471
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeSlotsResponse({}));
|
|
39317
39472
|
}
|
|
39318
39473
|
/**
|
|
39319
|
-
*
|
|
39474
|
+
* ### [](#)Supported database engines
|
|
39475
|
+
* * PostgreSQL
|
|
39320
39476
|
*
|
|
39321
39477
|
* @param request DescribeSlotsRequest
|
|
39322
39478
|
* @return DescribeSlotsResponse
|
|
@@ -39754,6 +39910,14 @@ class Client extends openapi_client_1.default {
|
|
|
39754
39910
|
let runtime = new $Util.RuntimeOptions({});
|
|
39755
39911
|
return await this.describeUpgradeMajorVersionPrecheckTaskWithOptions(request, runtime);
|
|
39756
39912
|
}
|
|
39913
|
+
/**
|
|
39914
|
+
* ### [](#)Supported database engines
|
|
39915
|
+
* PostgreSQL
|
|
39916
|
+
*
|
|
39917
|
+
* @param request DescribeUpgradeMajorVersionTasksRequest
|
|
39918
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
39919
|
+
* @return DescribeUpgradeMajorVersionTasksResponse
|
|
39920
|
+
*/
|
|
39757
39921
|
async describeUpgradeMajorVersionTasksWithOptions(request, runtime) {
|
|
39758
39922
|
tea_util_1.default.validateModel(request);
|
|
39759
39923
|
let query = {};
|
|
@@ -39800,6 +39964,13 @@ class Client extends openapi_client_1.default {
|
|
|
39800
39964
|
});
|
|
39801
39965
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeUpgradeMajorVersionTasksResponse({}));
|
|
39802
39966
|
}
|
|
39967
|
+
/**
|
|
39968
|
+
* ### [](#)Supported database engines
|
|
39969
|
+
* PostgreSQL
|
|
39970
|
+
*
|
|
39971
|
+
* @param request DescribeUpgradeMajorVersionTasksRequest
|
|
39972
|
+
* @return DescribeUpgradeMajorVersionTasksResponse
|
|
39973
|
+
*/
|
|
39803
39974
|
async describeUpgradeMajorVersionTasks(request) {
|
|
39804
39975
|
let runtime = new $Util.RuntimeOptions({});
|
|
39805
39976
|
return await this.describeUpgradeMajorVersionTasksWithOptions(request, runtime);
|
|
@@ -40738,7 +40909,9 @@ class Client extends openapi_client_1.default {
|
|
|
40738
40909
|
return await this.listTagResourcesWithOptions(request, runtime);
|
|
40739
40910
|
}
|
|
40740
40911
|
/**
|
|
40741
|
-
*
|
|
40912
|
+
* ### [](#)Supported database engines
|
|
40913
|
+
* * MySQL
|
|
40914
|
+
* ### [](#)Feature description
|
|
40742
40915
|
* * 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~~).
|
|
40743
40916
|
* * 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.
|
|
40744
40917
|
* * You can call the [ImportUserBackupFile](~~260266~~) operation to import a full backup file into an ApsaraDB RDS for MySQL instance.
|
|
@@ -40797,7 +40970,9 @@ class Client extends openapi_client_1.default {
|
|
|
40797
40970
|
return $tea.cast(await this.callApi(params, req, runtime), new ListUserBackupFilesResponse({}));
|
|
40798
40971
|
}
|
|
40799
40972
|
/**
|
|
40800
|
-
*
|
|
40973
|
+
* ### [](#)Supported database engines
|
|
40974
|
+
* * MySQL
|
|
40975
|
+
* ### [](#)Feature description
|
|
40801
40976
|
* * 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~~).
|
|
40802
40977
|
* * 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.
|
|
40803
40978
|
* * You can call the [ImportUserBackupFile](~~260266~~) operation to import a full backup file into an ApsaraDB RDS for MySQL instance.
|
|
@@ -41726,7 +41901,13 @@ class Client extends openapi_client_1.default {
|
|
|
41726
41901
|
return await this.modifyDBDescriptionWithOptions(request, runtime);
|
|
41727
41902
|
}
|
|
41728
41903
|
/**
|
|
41729
|
-
*
|
|
41904
|
+
* ### [](#)Supported database engines
|
|
41905
|
+
* * MySQL
|
|
41906
|
+
* * PostgreSQL
|
|
41907
|
+
* ### [](#)References
|
|
41908
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
41909
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for MySQL instance](~~96059~~)
|
|
41910
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for PostgreSQL instance](~~146895~~)
|
|
41730
41911
|
*
|
|
41731
41912
|
* @param request ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
41732
41913
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -41770,7 +41951,13 @@ class Client extends openapi_client_1.default {
|
|
|
41770
41951
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstanceAutoUpgradeMinorVersionResponse({}));
|
|
41771
41952
|
}
|
|
41772
41953
|
/**
|
|
41773
|
-
*
|
|
41954
|
+
* ### [](#)Supported database engines
|
|
41955
|
+
* * MySQL
|
|
41956
|
+
* * PostgreSQL
|
|
41957
|
+
* ### [](#)References
|
|
41958
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
41959
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for MySQL instance](~~96059~~)
|
|
41960
|
+
* * [Modify automatic update settings for an ApsaraDB RDS for PostgreSQL instance](~~146895~~)
|
|
41774
41961
|
*
|
|
41775
41962
|
* @param request ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
41776
41963
|
* @return ModifyDBInstanceAutoUpgradeMinorVersionResponse
|
|
@@ -41780,12 +41967,9 @@ class Client extends openapi_client_1.default {
|
|
|
41780
41967
|
return await this.modifyDBInstanceAutoUpgradeMinorVersionWithOptions(request, runtime);
|
|
41781
41968
|
}
|
|
41782
41969
|
/**
|
|
41783
|
-
* ### Supported database engines
|
|
41784
|
-
* *
|
|
41785
|
-
*
|
|
41786
|
-
* * RDS SQL Server
|
|
41787
|
-
* * RDS MariaDB
|
|
41788
|
-
* > : The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
41970
|
+
* ### [](#)Supported database engines
|
|
41971
|
+
* * PostgreSQL
|
|
41972
|
+
* > The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
41789
41973
|
*
|
|
41790
41974
|
* @param request ModifyDBInstanceConfigRequest
|
|
41791
41975
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -41838,12 +42022,9 @@ class Client extends openapi_client_1.default {
|
|
|
41838
42022
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstanceConfigResponse({}));
|
|
41839
42023
|
}
|
|
41840
42024
|
/**
|
|
41841
|
-
* ### Supported database engines
|
|
41842
|
-
* *
|
|
41843
|
-
*
|
|
41844
|
-
* * RDS SQL Server
|
|
41845
|
-
* * RDS MariaDB
|
|
41846
|
-
* > : The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
42025
|
+
* ### [](#)Supported database engines
|
|
42026
|
+
* * PostgreSQL
|
|
42027
|
+
* > The configuration item that is supported is [PgBouncer](~~2398301~~) of ApsaraDB RDS for PostgreSQL instances.
|
|
41847
42028
|
*
|
|
41848
42029
|
* @param request ModifyDBInstanceConfigRequest
|
|
41849
42030
|
* @return ModifyDBInstanceConfigResponse
|
|
@@ -41995,6 +42176,17 @@ class Client extends openapi_client_1.default {
|
|
|
41995
42176
|
let runtime = new $Util.RuntimeOptions({});
|
|
41996
42177
|
return await this.modifyDBInstanceConnectionStringWithOptions(request, runtime);
|
|
41997
42178
|
}
|
|
42179
|
+
/**
|
|
42180
|
+
* ### [](#)Supported database engines
|
|
42181
|
+
* * MySQL
|
|
42182
|
+
* ### [](#)References
|
|
42183
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
42184
|
+
* * [Configure a data replication latency for a read-only ApsaraDB RDS for MySQL instance](~~96056~~)
|
|
42185
|
+
*
|
|
42186
|
+
* @param request ModifyDBInstanceDelayedReplicationTimeRequest
|
|
42187
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
42188
|
+
* @return ModifyDBInstanceDelayedReplicationTimeResponse
|
|
42189
|
+
*/
|
|
41998
42190
|
async modifyDBInstanceDelayedReplicationTimeWithOptions(request, runtime) {
|
|
41999
42191
|
tea_util_1.default.validateModel(request);
|
|
42000
42192
|
let query = {};
|
|
@@ -42029,12 +42221,32 @@ class Client extends openapi_client_1.default {
|
|
|
42029
42221
|
});
|
|
42030
42222
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstanceDelayedReplicationTimeResponse({}));
|
|
42031
42223
|
}
|
|
42224
|
+
/**
|
|
42225
|
+
* ### [](#)Supported database engines
|
|
42226
|
+
* * MySQL
|
|
42227
|
+
* ### [](#)References
|
|
42228
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
42229
|
+
* * [Configure a data replication latency for a read-only ApsaraDB RDS for MySQL instance](~~96056~~)
|
|
42230
|
+
*
|
|
42231
|
+
* @param request ModifyDBInstanceDelayedReplicationTimeRequest
|
|
42232
|
+
* @return ModifyDBInstanceDelayedReplicationTimeResponse
|
|
42233
|
+
*/
|
|
42032
42234
|
async modifyDBInstanceDelayedReplicationTime(request) {
|
|
42033
42235
|
let runtime = new $Util.RuntimeOptions({});
|
|
42034
42236
|
return await this.modifyDBInstanceDelayedReplicationTimeWithOptions(request, runtime);
|
|
42035
42237
|
}
|
|
42036
42238
|
/**
|
|
42037
|
-
*
|
|
42239
|
+
* ### [](#)Supported database engines
|
|
42240
|
+
* * MySQL
|
|
42241
|
+
* * PostgreSQL
|
|
42242
|
+
* * SQL Server
|
|
42243
|
+
* * MariaDB
|
|
42244
|
+
* ### [](#)References
|
|
42245
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
42246
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for MySQL instance](~~414512~~)
|
|
42247
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for PostgreSQL instance](~~471512~~)
|
|
42248
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for SQL Server instance](~~416209~~)
|
|
42249
|
+
* * [Enable and disable release protection for an ApsaraDB RDS for MariaDB instance](~~414512~~)
|
|
42038
42250
|
*
|
|
42039
42251
|
* @param request ModifyDBInstanceDeletionProtectionRequest
|
|
42040
42252
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -42081,7 +42293,17 @@ class Client extends openapi_client_1.default {
|
|
|
42081
42293
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstanceDeletionProtectionResponse({}));
|
|
42082
42294
|
}
|
|
42083
42295
|
/**
|
|
42084
|
-
*
|
|
42296
|
+
* ### [](#)Supported database engines
|
|
42297
|
+
* * MySQL
|
|
42298
|
+
* * PostgreSQL
|
|
42299
|
+
* * SQL Server
|
|
42300
|
+
* * MariaDB
|
|
42301
|
+
* ### [](#)References
|
|
42302
|
+
* > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
42303
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for MySQL instance](~~414512~~)
|
|
42304
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for PostgreSQL instance](~~471512~~)
|
|
42305
|
+
* * [Enable and disable instance release protection for an ApsaraDB RDS for SQL Server instance](~~416209~~)
|
|
42306
|
+
* * [Enable and disable release protection for an ApsaraDB RDS for MariaDB instance](~~414512~~)
|
|
42085
42307
|
*
|
|
42086
42308
|
* @param request ModifyDBInstanceDeletionProtectionRequest
|
|
42087
42309
|
* @return ModifyDBInstanceDeletionProtectionResponse
|
|
@@ -42311,7 +42533,17 @@ class Client extends openapi_client_1.default {
|
|
|
42311
42533
|
return await this.modifyDBInstanceHAConfigWithOptions(request, runtime);
|
|
42312
42534
|
}
|
|
42313
42535
|
/**
|
|
42314
|
-
*
|
|
42536
|
+
* ### [](#)Supported database engines
|
|
42537
|
+
* * MySQL
|
|
42538
|
+
* * PostgreSQL
|
|
42539
|
+
* * SQL Server
|
|
42540
|
+
* * MariaDB
|
|
42541
|
+
* ### [](#)References
|
|
42542
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
42543
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MySQL instance](~~96052~~)
|
|
42544
|
+
* * [Set a maintenance window for an ApsaraDB RDS for PostgreSQL instance](~~96799~~)
|
|
42545
|
+
* * [Set a maintenance window for an ApsaraDB RDS for SQL Sever instance](~~95657~~)
|
|
42546
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MariaDB instance](~~97473~~)
|
|
42315
42547
|
*
|
|
42316
42548
|
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
42317
42549
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -42358,7 +42590,17 @@ class Client extends openapi_client_1.default {
|
|
|
42358
42590
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstanceMaintainTimeResponse({}));
|
|
42359
42591
|
}
|
|
42360
42592
|
/**
|
|
42361
|
-
*
|
|
42593
|
+
* ### [](#)Supported database engines
|
|
42594
|
+
* * MySQL
|
|
42595
|
+
* * PostgreSQL
|
|
42596
|
+
* * SQL Server
|
|
42597
|
+
* * MariaDB
|
|
42598
|
+
* ### [](#)References
|
|
42599
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
42600
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MySQL instance](~~96052~~)
|
|
42601
|
+
* * [Set a maintenance window for an ApsaraDB RDS for PostgreSQL instance](~~96799~~)
|
|
42602
|
+
* * [Set a maintenance window for an ApsaraDB RDS for SQL Sever instance](~~95657~~)
|
|
42603
|
+
* * [Set a maintenance window for an ApsaraDB RDS for MariaDB instance](~~97473~~)
|
|
42362
42604
|
*
|
|
42363
42605
|
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
42364
42606
|
* @return ModifyDBInstanceMaintainTimeResponse
|
|
@@ -42497,7 +42739,12 @@ class Client extends openapi_client_1.default {
|
|
|
42497
42739
|
return await this.modifyDBInstanceMonitorWithOptions(request, runtime);
|
|
42498
42740
|
}
|
|
42499
42741
|
/**
|
|
42500
|
-
*
|
|
42742
|
+
* ### [](#)Supported database engines
|
|
42743
|
+
* * MySQL
|
|
42744
|
+
* * SQL Server
|
|
42745
|
+
* ### [](#)References
|
|
42746
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for MySQL instance](~~96110~~)
|
|
42747
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for SQL Server instance](~~95708~~)
|
|
42501
42748
|
*
|
|
42502
42749
|
* @param request ModifyDBInstanceNetworkExpireTimeRequest
|
|
42503
42750
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -42544,7 +42791,12 @@ class Client extends openapi_client_1.default {
|
|
|
42544
42791
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstanceNetworkExpireTimeResponse({}));
|
|
42545
42792
|
}
|
|
42546
42793
|
/**
|
|
42547
|
-
*
|
|
42794
|
+
* ### [](#)Supported database engines
|
|
42795
|
+
* * MySQL
|
|
42796
|
+
* * SQL Server
|
|
42797
|
+
* ### [](#)References
|
|
42798
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for MySQL instance](~~96110~~)
|
|
42799
|
+
* * [Configure the hybrid access solution for an ApsaraDB RDS for SQL Server instance](~~95708~~)
|
|
42548
42800
|
*
|
|
42549
42801
|
* @param request ModifyDBInstanceNetworkExpireTimeRequest
|
|
42550
42802
|
* @return ModifyDBInstanceNetworkExpireTimeResponse
|
|
@@ -42645,14 +42897,17 @@ class Client extends openapi_client_1.default {
|
|
|
42645
42897
|
return await this.modifyDBInstanceNetworkTypeWithOptions(request, runtime);
|
|
42646
42898
|
}
|
|
42647
42899
|
/**
|
|
42648
|
-
*
|
|
42649
|
-
*
|
|
42650
|
-
* *
|
|
42651
|
-
* *
|
|
42652
|
-
*
|
|
42653
|
-
*
|
|
42654
|
-
*
|
|
42655
|
-
* *
|
|
42900
|
+
* ### [](#)Supported database engines
|
|
42901
|
+
* * MySQL
|
|
42902
|
+
* * PostgreSQL
|
|
42903
|
+
* * SQL Server
|
|
42904
|
+
* * MariaDB
|
|
42905
|
+
* ### [](#)References
|
|
42906
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
42907
|
+
* * [Change the billing method of an ApsaraDB RDS for MySQL instance from pay-as-you-go to subscription](~~96048~~)
|
|
42908
|
+
* * [Change the billing method of an ApsaraDB RDS for PostgreSQL instance from pay-as-you-go to subscription](~~96743~~)
|
|
42909
|
+
* * [Change the billing method of an ApsaraDB RDS for SQL Server instance from pay-as-you-go to subscription](~~95631~~)
|
|
42910
|
+
* * [Change the billing method of an ApsaraDB RDS for MariaDB instance from pay-as-you-go to subscription](~~97120~~)
|
|
42656
42911
|
*
|
|
42657
42912
|
* @param request ModifyDBInstancePayTypeRequest
|
|
42658
42913
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -42693,14 +42948,17 @@ class Client extends openapi_client_1.default {
|
|
|
42693
42948
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyDBInstancePayTypeResponse({}));
|
|
42694
42949
|
}
|
|
42695
42950
|
/**
|
|
42696
|
-
*
|
|
42697
|
-
*
|
|
42698
|
-
* *
|
|
42699
|
-
* *
|
|
42700
|
-
*
|
|
42701
|
-
*
|
|
42702
|
-
*
|
|
42703
|
-
* *
|
|
42951
|
+
* ### [](#)Supported database engines
|
|
42952
|
+
* * MySQL
|
|
42953
|
+
* * PostgreSQL
|
|
42954
|
+
* * SQL Server
|
|
42955
|
+
* * MariaDB
|
|
42956
|
+
* ### [](#)References
|
|
42957
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
42958
|
+
* * [Change the billing method of an ApsaraDB RDS for MySQL instance from pay-as-you-go to subscription](~~96048~~)
|
|
42959
|
+
* * [Change the billing method of an ApsaraDB RDS for PostgreSQL instance from pay-as-you-go to subscription](~~96743~~)
|
|
42960
|
+
* * [Change the billing method of an ApsaraDB RDS for SQL Server instance from pay-as-you-go to subscription](~~95631~~)
|
|
42961
|
+
* * [Change the billing method of an ApsaraDB RDS for MariaDB instance from pay-as-you-go to subscription](~~97120~~)
|
|
42704
42962
|
*
|
|
42705
42963
|
* @param request ModifyDBInstancePayTypeRequest
|
|
42706
42964
|
* @return ModifyDBInstancePayTypeResponse
|
|
@@ -43770,7 +44028,14 @@ class Client extends openapi_client_1.default {
|
|
|
43770
44028
|
return await this.modifyDbProxyInstanceSslWithOptions(request, runtime);
|
|
43771
44029
|
}
|
|
43772
44030
|
/**
|
|
43773
|
-
*
|
|
44031
|
+
* ### [](#)Supported database engines
|
|
44032
|
+
* * MySQL
|
|
44033
|
+
* * PostgreSQL
|
|
44034
|
+
* * SQL Server
|
|
44035
|
+
* * MariaDB
|
|
44036
|
+
* ### [](#)References
|
|
44037
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44038
|
+
* [What is availability check?](~~207467~~)
|
|
43774
44039
|
*
|
|
43775
44040
|
* @param request ModifyHADiagnoseConfigRequest
|
|
43776
44041
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -43814,7 +44079,14 @@ class Client extends openapi_client_1.default {
|
|
|
43814
44079
|
return $tea.cast(await this.callApi(params, req, runtime), new ModifyHADiagnoseConfigResponse({}));
|
|
43815
44080
|
}
|
|
43816
44081
|
/**
|
|
43817
|
-
*
|
|
44082
|
+
* ### [](#)Supported database engines
|
|
44083
|
+
* * MySQL
|
|
44084
|
+
* * PostgreSQL
|
|
44085
|
+
* * SQL Server
|
|
44086
|
+
* * MariaDB
|
|
44087
|
+
* ### [](#)References
|
|
44088
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44089
|
+
* [What is availability check?](~~207467~~)
|
|
43818
44090
|
*
|
|
43819
44091
|
* @param request ModifyHADiagnoseConfigRequest
|
|
43820
44092
|
* @return ModifyHADiagnoseConfigResponse
|
|
@@ -43969,6 +44241,7 @@ class Client extends openapi_client_1.default {
|
|
|
43969
44241
|
* * PostgreSQL
|
|
43970
44242
|
* * SQL Server
|
|
43971
44243
|
* ### [](#)References
|
|
44244
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
43972
44245
|
* * [Use the cross-region backup feature of an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
43973
44246
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
43974
44247
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
@@ -44035,6 +44308,7 @@ class Client extends openapi_client_1.default {
|
|
|
44035
44308
|
* * PostgreSQL
|
|
44036
44309
|
* * SQL Server
|
|
44037
44310
|
* ### [](#)References
|
|
44311
|
+
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44038
44312
|
* * [Use the cross-region backup feature of an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
44039
44313
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
44040
44314
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
@@ -45636,12 +45910,17 @@ class Client extends openapi_client_1.default {
|
|
|
45636
45910
|
return await this.removeTagsFromResourceWithOptions(request, runtime);
|
|
45637
45911
|
}
|
|
45638
45912
|
/**
|
|
45639
|
-
*
|
|
45640
|
-
*
|
|
45641
|
-
* *
|
|
45642
|
-
* *
|
|
45643
|
-
*
|
|
45644
|
-
*
|
|
45913
|
+
* ### [](#)Supported database engines
|
|
45914
|
+
* * MySQL
|
|
45915
|
+
* * PostgreSQL
|
|
45916
|
+
* * SQL Server
|
|
45917
|
+
* * MariaDB
|
|
45918
|
+
* ### [](#)References
|
|
45919
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
45920
|
+
* * [Manually renew an ApsaraDB RDS for MySQL instance](~~96050~~)
|
|
45921
|
+
* * [Manually renew an ApsaraDB RDS for PostgreSQL instance](~~96741~~)
|
|
45922
|
+
* * [Manually renew an ApsaraDB RDS for SQL Server instance](~~95637~~)
|
|
45923
|
+
* * [Manually renew an ApsaraDB RDS for MariaDB instance](~~97122~~)
|
|
45645
45924
|
*
|
|
45646
45925
|
* @param request RenewInstanceRequest
|
|
45647
45926
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -45691,12 +45970,17 @@ class Client extends openapi_client_1.default {
|
|
|
45691
45970
|
return $tea.cast(await this.callApi(params, req, runtime), new RenewInstanceResponse({}));
|
|
45692
45971
|
}
|
|
45693
45972
|
/**
|
|
45694
|
-
*
|
|
45695
|
-
*
|
|
45696
|
-
* *
|
|
45697
|
-
* *
|
|
45698
|
-
*
|
|
45699
|
-
*
|
|
45973
|
+
* ### [](#)Supported database engines
|
|
45974
|
+
* * MySQL
|
|
45975
|
+
* * PostgreSQL
|
|
45976
|
+
* * SQL Server
|
|
45977
|
+
* * MariaDB
|
|
45978
|
+
* ### [](#)References
|
|
45979
|
+
* > Fees of an instance are changed if the call is successful. Before you call this operation, carefully read the following topics:
|
|
45980
|
+
* * [Manually renew an ApsaraDB RDS for MySQL instance](~~96050~~)
|
|
45981
|
+
* * [Manually renew an ApsaraDB RDS for PostgreSQL instance](~~96741~~)
|
|
45982
|
+
* * [Manually renew an ApsaraDB RDS for SQL Server instance](~~95637~~)
|
|
45983
|
+
* * [Manually renew an ApsaraDB RDS for MariaDB instance](~~97122~~)
|
|
45700
45984
|
*
|
|
45701
45985
|
* @param request RenewInstanceRequest
|
|
45702
45986
|
* @return RenewInstanceResponse
|